/* ============================================================
   カスタムスタイル - オキナワクリーンサポート
   ============================================================ */

/* ----- 背景色：ニュアンスホワイト ----- */
body {
  background-color: #F5F8FA !important;
}

/* ページ内の白背景セクションは引き続き白 */
.bg_white {
  background-color: #ffffff !important;
}


/* ============================================================
   スティッキーヘッダー
   ============================================================ */
#site_header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  box-shadow: 0 2px 14px rgba(0, 80, 70, 0.10);
}

/* ロゴ行 */
.site_header_logo_row {
  background-color: #ffffff;
  padding: 1em 0;
}

/* ナビ行 */
.site_header_nav_row {
  background-color: #e8fdf9;
  border-top: 1px solid rgba(160, 251, 233, 0.5);
}

/* 内側共通ラッパー */
.site_header_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5em;
}

.site_header_logo_row .site_header_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site_header_nav_row .site_header_inner {
  display: flex;
  align-items: stretch;
}

/* ロゴ左寄せ */
.site_text_logo--left {
  text-align: left !important;
}

/* ナビ行のリンク色調整 */
.site_header_nav_row .nav_normal a {
  color: #333;
  padding: 0.55em 0;
}

.site_header_nav_row .nav_normal a span {
  color: #1aab8a;
}

.site_header_nav_row nav {
  width: 100%;
}

/* サイトタイトルの黒影 */
.site_text_logo__main {
  text-shadow: 1px 1px 0 rgba(0,0,0,0.6), 0 2px 6px rgba(0,0,0,0.5);
}
.site_text_logo__sub {
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
}

/* ヘッダー右端：TEL＋問い合わせボタン */
.site_header_logo_row .site_header_inner {
  justify-content: space-between;
}
.header_contact_area {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-shrink: 0;
}
.header_tel {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: #1aab8a;
  font-weight: 800;
  font-size: 1.15em;
  text-decoration: none;
  white-space: nowrap;
}
.header_tel i {
  font-size: 0.9em;
}
.header_contact_btn {
  display: inline-block;
  background: #1aab8a;
  color: #fff !important;
  padding: 0.5em 1.3em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9em;
  white-space: nowrap;
  transition: background 0.2s;
}
.header_contact_btn:hover {
  background: #148f73;
}

/* スマホではヘッダーナビを非表示 */
@media screen and (max-width: 896px) {
  .site_header_nav_row {
    display: none;
  }
  .site_header_logo_row {
    padding: 0.5em 0;
  }
  .header_contact_area {
    display: none;
  }
}

/* btn_normalボタンのテキストを黒字に */
.btn_normal a {
  color: #333 !important;
}


/* ============================================================
   フッターナビゲーション
   ============================================================ */
.footer_flex_layout {
  align-items: flex-start;
  gap: 2em;
}
.footer_nav_area {
  padding-top: 1em;
}
.footer_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer_nav ul li {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer_nav ul li:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer_nav ul li a {
  display: block;
  padding: 0.75em 0.5em 0.75em 1em;
  color: #333;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.footer_nav ul li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #1aab8a;
  font-weight: bold;
}
.footer_nav ul li a:hover {
  color: #1aab8a;
  background: rgba(26,171,138,0.05);
}
@media screen and (max-width: 896px) {
  .footer_flex_layout {
    flex-direction: column;
  }
  .footer_nav_area {
    width: 100% !important;
    padding-top: 0;
  }
  .footer_nav ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer_nav ul li {
    width: 50%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .footer_nav ul li:first-child {
    border-top: none;
  }
}


/* ============================================================
   サービスメニューカード：丸ゴシック + タイトル拡大
   ============================================================ */

/* 丸ゴシック書体 */
.page_link_iconlink li h3,
.page_link_iconlink li p {
  font-family: 'M PLUS Rounded 1c', 'Zen Maru Gothic',
    "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN",
    "BIZ UDPGothic", sans-serif !important;
}

/* タイトルを大きく・見やすく */
.page_link_iconlink li h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.03em !important;
  color: #1aab8a !important;
  margin-bottom: 0.75em !important;
}

/* 説明文の行間を広げて読みやすく */
.page_link_iconlink li p {
  font-size: 13.5px !important;
  line-height: 1.9 !important;
  color: #444 !important;
}


/* ============================================================
   service.php 内タイトルも丸ゴシック
   ============================================================ */
.mbox .base_color.bold {
  font-family: 'M PLUS Rounded 1c', 'Zen Maru Gothic',
    "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN",
    "BIZ UDPGothic", sans-serif !important;
}


/* ============================================================
   ハンバーガーメニュー & SP固定ボタン: 896px以下で表示
   ============================================================ */
@media screen and (max-width: 896px) {
  #nav_slide_toggle.sponly {
    display: flex !important;
  }
  .sp_btn.sponly {
    display: block !important;
  }
}


/* ============================================================
   グローバルメニュー: 両端（ホーム左・お問い合わせ右）にボーダー追加
   ============================================================ */
.site_header_nav_row .commonnav > li:first-child {
  border-left: 1px solid rgba(0, 120, 90, 0.18);
}
.site_header_nav_row .commonnav > li:last-child {
  border-right: 1px solid rgba(0, 120, 90, 0.18) !important;
}

/* ナビ行のリンクを少し太く・均等幅に */
.site_header_nav_row .nav_normal.set4 > ul {
  display: flex;
  width: 100%;
}
.site_header_nav_row .nav_normal.set4 > ul > li {
  flex: 1;
  padding: 0;
  text-align: center;
}
.site_header_nav_row .nav_normal.set4 > ul > li > a {
  padding: 0.65em 0.5em;
}


/* ============================================================
   カテゴリーアイコン四隅の色修正
   ============================================================ */
.page_link_iconlink .card_img {
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}
.page_link_iconlink .card_img img {
  border-radius: 12px;
  display: block;
  mix-blend-mode: multiply;
}


/* ============================================================
   LINEボタン（バナー右端）
   ============================================================ */
.hero_line_btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}
.hero_line_btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  padding: 1em 1.2em;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  min-width: 80px;
  box-shadow: -4px 4px 16px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
}
.hero_line_btn a:hover {
  background: #05B04C;
  transform: translateX(-3px) translateY(-50%);
}
.hero_line_btn .line_logo_wrap {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.hero_line_btn .line_logo_wrap i {
  font-size: 2em;
  line-height: 1;
}
.hero_line_btn .line_word {
  font-size: 0.85em;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}
.hero_line_btn .line_sub {
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 896px) {
  .hero_line_btn {
    top: auto;
    bottom: 80px;
    transform: none;
  }
  .hero_line_btn a {
    padding: 0.7em 0.9em;
    min-width: 60px;
  }
  .hero_line_btn .line_logo_wrap i {
    font-size: 1.5em;
  }
  .hero_line_btn .line_sub {
    font-size: 0.65em;
  }
}


/* ============================================================
   フッター：CONTACTセクション
   ============================================================ */

/* 背景画像の上に白テキストが読めるようにオーバーレイ */
footer .bg_img.type1a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 60, 0.55);
  z-index: 1;
  pointer-events: none;
}
footer .bg_img.type1a > * {
  position: relative;
  z-index: 2;
}

/* 清掃項目ボックス */
.footer_service_box {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 12px;
  padding: 1.4em 2em;
  max-width: 680px;
  margin: 0 auto;
}
.footer_service_box hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0.6em 0 0.8em;
}

@media screen and (max-width: 896px) {
  .footer_service_box {
    padding: 1.1em 1.2em;
  }
}


/* ============================================================
   title_box / title_box3 のテキストを黒字に
   ============================================================ */
.title_box {
  color: #333 !important;
}
.title_box3 {
  color: #333 !important;
}

/* ============================================================
   オプション説明文
   ============================================================ */
.options_list li.has_desc {
  flex-direction: column;
  align-items: flex-start;
}
.options_list li.has_desc .opt_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.options_list li .opt_desc {
  margin-top: 6px;
  font-size: 0.85em;
  color: #64748b;
  line-height: 1.6;
}
