/*
Theme Name: Okuda Shokou
Theme URI:
Author: Okuda Shokou
Description: 奥田商工株式会社 コーポレートサイトテーマ
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: okuda-theme
*/
/* ============================================================
   style.css — 奥田業工 コーポレートサイト
   ============================================================ */

/* ============================
   Reset & Base
============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* スクリーンリーダー専用 */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================
   CSS Variables
============================ */
:root {
  --navy:        #0C2C5D;
  --navy-mid:    #1B3F6A;
  --teal:        #0395b5;
  --teal-dark:   #027a99;
  --orange:      #E8722A;
  --orange-dark: #CF5E1A;
  --gray-bg:     #F2F5F8;
  --gray-line:   #D8E2EC;
  --text:        #333333;
  --text-sub:    #666666;
  --white:       #FFFFFF;
}

/* ============================
   Container
============================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================
   Section タイトル共通
============================ */
.section-title-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.quality-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.section-en {
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 100;
  color: #D8E6EF;
  line-height: 1;
  letter-spacing: 3px;
  font-family: 'Noto Sans Hebrew', sans-serif;
}

.section-ja {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ============================
   Fade-in アニメーション
============================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   ボタン共通定義

   デザイン確認による角丸まとめ:
   - pill ボタン（強み・施工事例）: border-radius: 50px
   - ヘッダーオレンジ:             border-radius: 2px
   - 採用情報を見る（orange）:     border-radius: 0（スクエア）
   - Worksタブ:                    border-radius: 0（スクエア）
   - Companyリンク:                border-radius: 0（スクエア）
   - Contactボタン:                border-radius: 0（スクエア）
   - ロゴマーク:                   border-radius: 50%（円）
   - Newsもっと見る:               border-radius: 50%（円）
   - Heroリクルートバッジ:         border-radius: 0（スクエア）
============================ */

/* ヘッダー 電話 pill */
.header-phone-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F0F0F0;
  padding: 8px 18px;
  border-radius: 50px;          /* pill */
}

.phone-icon {
  width: 16px;
  height: 16px;
  color: #555;
  flex-shrink: 0;
}

.phone-text { line-height: 1.3; }

.phone-num {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}

.phone-hours {
  font-size: 10px;
  color: #888;
}

/* ヘッダー お問い合わせ pill（グレー） */
.btn-pill-gray {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F0F0F0;
  color: #333;
  padding: 10px 24px;
  border-radius: 50px;          /* pill */
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-pill-gray:hover {
  background: #E0E0E0;
  color: #111;
}

/* ヘッダー 採用情報 pill（オレンジ） */
.btn-pill-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;          /* pill */
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-pill-orange:hover { background: var(--orange-dark); }

/* ヘッダー ネイビー丸ボタン */
.header-circle-navy {
  width: 44px;
  height: 44px;
  border-radius: 50%;           /* 完全な円 */
  background: var(--navy);
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.header-circle-navy:hover { background: var(--navy-mid); }

/* ネイビー pill ボタン（About） */
.btn-navy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 18px 28px;
  border-radius: 50px;          /* pill */
  font-size: 13px;
  font-weight: 400;
  min-width: 260px;
  margin-top: 24px;
  transition: background 0.2s;
}
.btn-navy-pill:hover {
  background: var(--navy-mid);
}
.btn-navy-pill::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 28px;
}

/* ティール pill ボタン（Works） */
.btn-teal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--teal);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  min-width: 260px;
  transition: background 0.2s;
}
.btn-teal-pill:hover { background: var(--teal-dark); }
.btn-teal-pill::after {
  content: '›';
  font-size: 18px;
  position: absolute;
  right: 28px;
}

/* オレンジ矩形ボタン（採用情報を見る） */
.btn-orange-rect {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 13px 36px;
  border-radius: 4px;           /* デザイン通り小さな角丸 */
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-orange-rect:hover { background: var(--orange-dark); }
.btn-orange-rect::after { content: '›'; font-size: 20px; }

/* Contactボタン — 電話 */
.btn-contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: #fff;
  padding: 12px 28px;
  border-radius: 4px;           /* デザイン通り小さな角丸 */
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-contact-tel svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-contact-tel:hover {
  background: var(--teal);
  color: #fff;
}

/* Contactボタン — メール */
.btn-contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;           /* デザイン通り小さな角丸 */
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-contact-mail svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-contact-mail:hover { background: var(--orange-dark); }


/* ============================
   HEADER
============================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 40px 14px 40px;
}

/* ============================
   ロゴ
============================ */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

/* ============================
   ヘッダー右側
============================ */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================
   グローバルナビ
============================ */
.global-nav {
}

.global-nav > ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0 40px 0 40px;
}

.global-nav ul li:last-child a {
  padding-right: 0;             /* 末尾アイテムの右余白をなくして右端に揃える */
}

.global-nav ul li a {
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  color: #555;
  transition: color 0.2s;
  white-space: nowrap;
}

.global-nav ul li a:hover { color: var(--navy); }

/* --- PC ドロップダウン --- */
.has-dropdown { position: relative; }

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
  list-style: none;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: var(--navy);
}

/* ============================
   ハンバーガーボタン
============================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================
   モバイルナビ オーバーレイ
============================ */
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  /* 非表示状態 */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

.mobile-nav .mobile-link {
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

.mobile-nav .mobile-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  margin-top: 5px;
  transition: width 0.25s ease;
}

.mobile-nav .mobile-link:hover {
  opacity: 1;
  color: var(--teal);
}

.mobile-nav .mobile-link:hover::after {
  width: 100%;
}

/* --- モバイル アコーディオン --- */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.75;
  white-space: nowrap;
  padding: 0;
}

.mobile-dropdown-arrow {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-arrow {
  transform: rotate(90deg);
}

.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin 0.35s ease;
  margin-top: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 300px;
  margin-top: 16px;
}

.mobile-sub-link {
  font-size: 14px !important;
  opacity: 0.65 !important;
}

.mobile-sub-link:hover {
  opacity: 1 !important;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.mobile-nav-close:hover { opacity: 1; }


/* ============================
   HERO
============================ */
#hero {
  padding: 16px;
  background: #fff;
  position: relative;           /* バッジ・円の基準点 */
}

/* カード全体 — 角丸・白地・overflow hidden */
.hero-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 620px;            /* 縦幅を大きく */
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* テキストエリア（上部左側・白地） */
.hero-text {
  position: relative;
  z-index: 2;
  padding: 80px 60px 40px 80px; /* 左余白を増やす */
  max-width: 900px;
}

.hero-text h1 {
  font-size: clamp(50px, 3.4vw, 58px);
  font-weight: 400;
  /* 上→下グラデーション（明るい水色 → 深いティール） */
  background: linear-gradient(to bottom, #7DD8EE 0%, #1A9BC5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.6;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-text p {
  font-size: 20px;
  color: #777;
  line-height: 1.9;
  letter-spacing: 0.02em;
  padding-left: 4px;
}

/* ヒーロー キャッチコピー アニメーション */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim--1 { animation-delay: 0.3s; }
.hero-anim--2 { animation-delay: 0.7s; }

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 水の写真（下62%・全幅） */
.hero-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62%;
  background-color: #A8D8EA;
  /* background-image: ACF動的出力 (default: main.png) */
  background-size: cover;
  background-position: center 40%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
}

/* ============================
   Recruit バッジ
   - #hero 直下に position: absolute
   - right: 0 で画面右端まで伸びる
   - 左側のみ border-radius
============================ */
.hero-recruit {
  position: absolute;
  /* カード下端 = #hero の bottom:16px */
  bottom: 44px;
  right: 0;                     /* 画面右端まで */
  z-index: 10;
  padding: 22px 130px 26px 36px; /* 右padding でグレー円の下もオレンジに */
  background: var(--orange);
  color: #fff;
  border-radius: 14px 0 0 14px; /* 左のみ角丸・右は画面端まで直線 */
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-recruit:hover { background: var(--orange-dark); }

.recruit-label {
  font-size: 11px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.5px;
}

.recruit-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #fff;
}

.recruit-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.9);
}

/* ============================
   グレー円
   - #hero 直下に position: absolute
   - バッジ上端より上にはみ出してオーバーラップ
   バッジ高さ ≈ 22+11+5+35+5+11+26 = 115px
   バッジ bottom: 16px → バッジ top: 16+115 = 131px
   円(90px)のbottom = 131 - 90×0.4 = 95px (60%がバッジ上に出る)
============================ */
.recruit-circle {                                                                                       
    position: absolute;
    bottom: 123px;                                                                                        
    right: 26px;  
    width: 88px;                                                                                          
    height: 88px;
    border-radius: 50%;                                                                                   
    background: #D0D8E0;
    z-index: 11;
    display: flex;
    align-items: center;                                                                                  
    justify-content: center;
    font-size: 8px;                                                                                       
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.5px;
  } 


/* ============================
   ABOUT
============================ */
#about {
  padding: 80px 0 100px;
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.about-text {
  padding-left: 80px;
}

.about-text h2 {
  font-size: clamp(22px, 6.5vw, 30px);
  font-weight: 700;
  color: #1f528b;
  margin-bottom: 32px;
  white-space: nowrap;
}

.about-text p {
  font-size: 15px;
  color: #1f528b;
  margin-bottom: 24px;
  line-height: 2.2;
}

/* ベン図 */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.venn {
  position: relative;
  width: 320px;
  height: 300px;
}

.venn-circle {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid #B8D4E0;
  background: rgba(184, 212, 224, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
}

.venn-top   { top: 0;   left: 50%; transform: translateX(-50%); }
.venn-left  { bottom: 0; left: 0;  }
.venn-right { bottom: 0; right: 0; }


/* ============================
   SERVICE
============================ */
#service {
  padding: 80px 0 0;
  background: var(--gray-bg);
}

.service-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 36px;
}

.service-head .en {
  font-size: 70px;
  font-weight: 300;
  font-family: 'Noto Sans Hebrew', sans-serif;
  color: var(--navy);
  line-height: 1;
}

.service-head .ja {
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* サービスカードリンク */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* サービスカード */
.service-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  cursor: pointer;
}

.service-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

/* 画像プレースホルダー（実画像に差し替え可能） */
.service-img-01 {
  background-color: #2a5f7a;
  /* background-image: ACF動的出力 (default: works1.png) */
  background-size: cover;
  background-position: center;
}

.service-img-02 {
  background-color: #1a3a5c;
  /* background-image: ACF動的出力 (default: works1.png) */
  background-size: cover;
  background-position: center;
}

.service-img-03 {
  background-color: #234060;
  /* background-image: ACF動的出力 (default: works1.png) */
  background-size: cover;
  background-position: center;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background 0.35s ease;
}

.service-card:hover .service-card-overlay {
  background: rgba(10, 30, 60, 0.65);
}

/* ホバー時に表示する説明文とボタン */
.service-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 40px;
  padding-bottom: 100px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.service-card:hover .service-card-hover {
  opacity: 1;
}

.service-card-desc {
  color: #fff;
  font-size: 15px;
  line-height: 2.2;
  text-align: justify;
  margin-bottom: 24px;
}

.service-view-more {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.45);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s ease;
  align-self: flex-end;
}

.service-view-more:hover {
  background: rgba(41, 171, 226, 0.7);
}

.service-card-body {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 24px 28px;
  color: #fff;
  z-index: 3;
  text-align: center;
}

.service-num {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 86px;
  font-weight: 200;
  opacity: 1;
  line-height: 1;
  letter-spacing: -1px;
  text-align: left;
}

.service-name {
  font-size: 24px;
  font-weight: 300;
  margin-top: 10px;
  letter-spacing: 0.03em;
}


/* ============================
   WORKS
============================ */
#works {
  display: grid;
  grid-template-columns: 520px 1fr;
  background: #d2e0e1;
  margin-top: -80px;            /* 背景だけServiceカードの下に潜り込む */
  padding-top: 80px;            /* コンテンツは元の位置に戻す */
}

/* works-left-col：カード＋ボタンをまとめるラッパー */
.works-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 110px;
  position: relative;
  z-index: 1;
  align-self: start;
}

.works-left {
  background: var(--navy);
  color: #fff;
  padding: 32px 48px 36px;
  border-radius: 0 14px 0 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.works-right {
  padding-top: 170px;           /* カードの重なり分だけ下げる */
}

/* タイトル幅をラインの基準にするラッパー */
.works-left-content {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: min-content;
  margin-bottom: 20px;
  gap: 0;
}

.works-left-title {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.works-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  line-height: 1;
  padding: 18px 0;
  position: relative;
}

/* ラインを円の上端・下端に重ねる */
.works-stat::before,
.works-stat::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.works-stat::before { top: 30px; }    /* 円の上端より内側 */
.works-stat::after  { bottom: 30px; } /* 円の下端より内側 */

.works-stat-label { font-size: 28px; font-weight: 300; color: #fff; }

.works-stat-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.works-stat-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.works-stat-unit { font-size: 28px; font-weight: 300; color: #fff; }

.works-left p:not(.works-left-title) {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 0;
  text-align: left;
}

/* カード下のCTAボタン */
.works-cta {
  margin-top: 28px;
  align-self: center;
}

.works-right {
  background: transparent;
  padding: 80px 48px 56px;
  position: relative;
  z-index: 2;
}

.works-title-en {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  font-family: 'Noto Sans Hebrew', sans-serif;
  color: rgba(255,255,255,0.5);
  text-align: right;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.works-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-left: -100px;          /* works-leftに重なるよう左に伸ばす */
  position: relative;
  z-index: 2;                   /* works-leftより前面 */
}

.works-category-card {
  background: #fff;
  overflow: hidden;
}

.works-cat-img {
  background: #E8EFF4;
  aspect-ratio: 3 / 4;
}

.works-category-card p {
  font-size: 13px;
  color: #555;
  text-align: center;
  padding: 14px 0;
}

/* 行政機関カード：画像＋テキストオーバーレイ */
.works-cat-gyosei {
  position: relative;
  /* background-image: ACF動的出力 (default: gyosei.jpg) */
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
}

.works-cat-gyosei p,
.works-cat-school p,
.works-cat-hospital p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 12px 0;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
}

.works-cat-school {
  position: relative;
  /* background-image: ACF動的出力 (default: school.jpg) */
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
}

.works-cat-hospital {
  position: relative;
  /* background-image: ACF動的出力 (default: hospital.jpg) */
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
}


/* ============================
   COMPANY
============================ */
#company {
  padding: 60px 0 80px;
  background: #d2e0e1;
}

#company .container {
  max-width: 1500px;
}

.company-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 70px 160px;
}

.company-title-en {
  font-size: 70px;
  font-weight: 300;
  color: #999;
  font-family: 'Noto Sans Hebrew', sans-serif;
  text-align: center;
  line-height: 1;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

.company-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.company-catch {
  font-size: 18px;
  font-weight: 400;
  color: #888;
  margin-bottom: 40px;
  line-height: 2;
}

.company-links {
  display: flex;
  flex-direction: column;
}

.company-links::after {
  content: '';
  display: block;
  height: 1.5px;
  background: linear-gradient(to right, #0395b5, #0D2B4E);
}

.company-link-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 16px;
  border: none;
  text-decoration: none;
  position: relative;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.company-link-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(to right, #0395b5, #0D2B4E);
}

.company-link-item:hover { color: var(--teal); }

.link-arrow { font-size: 16px; color: #aaa; }

.company-img {
  background: #C8D8E8;
  border-radius: 0;
  aspect-ratio: 4 / 3;
  width: 80%;
  margin: 0 auto;
  /* background-image: ACF動的出力 (default: company.png) */
  background-size: cover;
  background-position: center;
}


/* ============================
   RECRUITMENT
============================ */
#recruitment {
  position: relative;
  padding: 90px 0;
  background: #d2e0e1;
  overflow: hidden;
}

/* 大きな背景テキスト */
.recruitment-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 100;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 4px;
  user-select: none;
  font-family: 'Noto Sans Hebrew', sans-serif;
}

.recruitment-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruitment-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 16px;
  padding: 36px 52px 48px;
  max-width: 720px;
  width: 100%;
  position: relative;
}

.recruitment-label {
  font-size: 11px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-align: right;
}

.recruitment-content p {
  font-size: 16px;
  color: var(--navy);
  line-height: 2.4;
}

.recruitment-btn-wrap {
  width: 100%;
  max-width: 720px;
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.btn-recruit-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--orange);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  min-width: 260px;
  justify-content: center;
  transition: background 0.2s;
}
.btn-recruit-pill span { font-size: 18px; }
.btn-recruit-pill:hover { background: var(--orange-dark); }


/* ============================
   NEWS
============================ */
#news {
  padding: 0 0 90px;
  background: transparent;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.news-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.news-left {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-en {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.news-ja {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Newsもっと見るボタン — 円形＋テキスト */
.news-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.news-more-btn:hover {
  background: var(--teal-dark);
  transform: scale(1.06);
}

.news-more-btn span:first-child {
  font-weight: 300;
}

.news-more-btn span:last-child {
  font-size: 30px;
  line-height: 1;
}

.news-list {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: opacity 0.2s;
}

.news-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.news-item:hover { opacity: 0.72; }

.news-date {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ニュースカテゴリ — スクエア */
.news-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: var(--teal);
  color: #fff;
  padding: 3px 10px;
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 14px;
  color: #fff;
}


/* ============================
   CONTACT
============================ */
#contact {
  padding: 80px 0 90px;
  background: #fff;
}

.contact-card {
  background: #d2e0e1;
  border-radius: 16px;
  padding: 48px 56px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 0;
}

.contact-title-en {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 100;
  color: #bbb;
  line-height: 1;
  font-family: 'Noto Sans Hebrew', sans-serif;
}

.contact-title-ja {
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 1px;
}

.contact-divider {
  border: none;
  border-top: 1px solid #aac0c4;
  margin: 24px 0;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-phone-col,
.contact-mail-col {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #666;
  margin-bottom: 12px;
}

.contact-col-label svg {
  fill: var(--teal);
  flex-shrink: 0;
}

.contact-tel-num {
  display: block;
  font-size: 38px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

.contact-hours {
  font-size: 12px;
  color: #999;
}

.contact-mail-btn {
  margin-top: 8px;
}


/* ============================
   FOOTER
============================ */
#footer {
  background: #fff;
}

.footer-main {
  padding: 64px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-col-nav-group {
  display: flex;
  gap: 75px;
  justify-content: center;
  padding: 0 20px;
}

.footer-col-info {
  padding-left: 20px;
}

.footer-logo-img {
  width: 160px;
  max-width: none;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-cert-img {
  width: 180px;
  display: block;
  margin-top: 20px;
}

.footer-address {
  font-size: 12px;
  color: var(--navy);
  line-height: 1.9;
  font-style: normal;
  opacity: 0.65;
}

.footer-col-nav {
  padding-top: 4px;
}

.footer-nav-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.footer-nav-sub,
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.footer-nav-sub a,
.footer-nav-list a {
  font-size: 14px;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.footer-nav-sub a:hover,
.footer-nav-list a:hover {
  opacity: 1;
}

.footer-col-recruit {
  display: flex;
  align-items: flex-start;
  margin-left: -20px;
}

.footer-recruit-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--orange);
  border-radius: 12px;
  padding: 20px 20px 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s;
  min-height: 110px;
}

.footer-recruit-card:hover {
  opacity: 0.88;
}

.footer-recruit-text {
  position: relative;
  z-index: 1;
}

.footer-recruit-text .recruit-label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-recruit-text .recruit-title {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Noto Sans Hebrew', sans-serif;
}

.footer-recruit-text .recruit-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

 .footer-recruit-circle {                                                                                
    width: 70px;                                                                                          
    height: 70px;
    border-radius: 50%;                                                                                   
    background: #fff;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);                                                                          
    display: flex;
    align-items: center;                                                                                  
    justify-content: center;
    font-size: 8px;
    font-weight: 700;                                                                                     
    color: var(--orange);
    letter-spacing: 0.5px;                                                                                
  } 

.footer-bottom {
  background: #d2e0e1;
  padding: 18px 0;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: #333;
}


/* ============================
   RESPONSIVE — Tablet (≤ 1024px)
============================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* Header */
  .header-inner { padding: 12px 28px; }
  .header-phone-pill { display: none; }
  .header-circle-navy { display: none; }
  .global-nav ul { padding: 0 28px; }
  .global-nav ul li a { padding: 10px 14px; font-size: 12px; }

  /* Hero */
  .hero-card { min-height: 500px; }
  .hero-text { padding: 60px 40px 32px 48px; }
  .hero-text h1 { font-size: clamp(32px, 4vw, 44px); }
  .hero-recruit { padding: 18px 100px 22px 28px; }
  .recruit-title { font-size: 26px; }
  .recruit-circle { width: 72px; height: 72px; bottom: 110px; right: 20px; }

  /* About */
  #about { padding: 60px 0 80px; }
  #about .section-title-wrap { margin-bottom: 48px; }
  .about-text { padding-left: 32px; }
  .about-text h2 { font-size: 24px; }
  .about-text p { font-size: 14px; }
  .quality-img { max-width: 300px; }

  /* Service */
  .service-head .en { font-size: 52px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .service-card-desc { font-size: 13px; }
  /* タブレット: 1タップ目でオーバーレイ表示 */
  .service-card-hover { opacity: 0; }
  .service-card-link--active .service-card-hover { opacity: 1; }
  .service-card-link--active .service-card-overlay { background: rgba(10, 30, 60, 0.65); }

  /* Works */
  #works { grid-template-columns: 1fr 1fr; }
  .works-left-col { margin-top: 80px; }
  .works-left { padding: 32px 28px; }
  .works-left-title { font-size: 24px; }
  .works-stat-num { font-size: 42px; }
  .works-stat-circle { width: 72px; height: 72px; }
  .works-stat-label,
  .works-stat-unit { font-size: 22px; }
  .works-stat::before { top: 24px; }
  .works-stat::after { bottom: 24px; }
  .works-right { padding: 60px 36px; }
  .works-cta { margin-left: 28px; }
  .works-category-grid { margin-left: -60px; }

  /* Company */
  #company .container { max-width: 100%; }
  .company-card {
    padding: 48px 48px;
  }
  .company-card-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .company-title-en { font-size: 56px; margin-bottom: 32px; }
  .company-img { aspect-ratio: 16 / 7; width: 100%; }
  .company-link-item { font-size: 18px; padding: 22px 12px; }

  /* Recruitment */
  .recruitment-content { padding: 32px 36px 40px; }

  /* News */
  .news-card { padding: 36px 40px; gap: 40px; }

  /* Contact */
  .contact-card { padding: 36px 40px; }
  .contact-tel-num { font-size: 30px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 200px 1fr 180px;
    gap: 28px;
  }
  .footer-col-nav-group { gap: 24px; padding: 0 8px; }
  .footer-cert-img { width: 140px; display: block; margin-top: 16px; }
  .footer-recruit-card { min-height: 100px; }
  .footer-recruit-text .recruit-title { font-size: 22px; }
  .footer-recruit-circle { width: 56px; height: 56px; }
}


/* ============================
   RESPONSIVE — Mobile (≤ 640px)
============================ */
@media (max-width: 640px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 60px;
  }
  .container { padding: 0 20px; }

  /* Header */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  }
  .header-inner        { padding: 12px 20px; box-sizing: border-box; }
  .logo-img            { height: 36px; width: auto; max-width: none; }
  .header-phone-pill   { display: none; }
  .btn-pill-gray       { display: none; }
  .btn-pill-orange     { display: none; }
  .header-circle-navy  { display: none; }
  .global-nav          { display: none; }
  .hamburger           { display: flex; }

  /* Hero */
  #hero { padding: 10px; }
  .hero-card    { min-height: 420px; border-radius: 16px; }
  .hero-text    { padding: 60px 24px 24px; }
  .hero-text h1 { font-size: 23px; margin-bottom: 14px; white-space: normal; }
  .hero-text p { font-size: 13px; padding-left: 2px; }
  .hero-img     { height: 50%; }
  .hero-recruit { bottom: 10px; padding: 14px 80px 18px 20px; border-radius: 10px 0 0 10px; }
  .recruit-title { font-size: 20px; }
  .recruit-circle { width: 60px; height: 60px; right: 12px; bottom: 72px; }

  /* Section タイトル */
  .section-en { font-size: 36px; }

  /* About */
  #about { padding: 48px 0 64px; }
  #about .section-title-wrap { margin-bottom: 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 16px; justify-items: center; }
  .about-visual { order: -1; }
  .about-text {
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-text p { font-size: 13px; }
  .quality-img { max-width: 220px; }

  /* Service */
  #service { padding: 48px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16 / 9; }
  .service-head .en { font-size: 36px; }
  .service-card { aspect-ratio: 16/9; }
  .service-num { display: none; }
  .service-card-body { top: 0; bottom: auto; padding: 12px 16px; }
  .service-name { font-size: 18px; }
  .service-card-hover {
    opacity: 0;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 16px 14px;
  }
  .service-card-link--active .service-card-hover {
    opacity: 1;
  }
  .service-card-link--active .service-card-overlay {
    background: rgba(10, 30, 60, 0.65);
  }
  .service-card-desc { font-size: 11px; line-height: 1.6; margin-bottom: 0; opacity: 0.7; flex: 1; margin-right: 10px; }
  .service-view-more { width: 52px; height: 52px; font-size: 8px; flex-shrink: 0; align-self: auto; word-spacing: 100vw; line-height: 1.6; text-align: center; }
  .service-card-overlay { background: rgba(10, 30, 60, 0.25); }

  /* Works */
  #works {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 0;
  }
  .works-left-col {
    margin-top: 0;
    align-items: center;
  }
  .works-left {
    border-radius: 0;
    padding: 36px 28px;
    width: 100%;
  }
  .works-left-content {
    display: flex;
    width: 100%;
    align-items: center;
  }
  .works-left-title {
    white-space: normal;
    font-size: 20px;
    text-align: center;
  }
  #works, .works-left, .works-right, .works-left-col {
    max-width: 100%;
    overflow: hidden;
  }
  .works-stat-num { font-size: 36px; }
  .works-stat-label,
  .works-stat-unit { font-size: 18px; }
  .works-stat-circle { width: 60px; height: 60px; }
  .works-right {
    padding: 36px 20px 40px;
  }
  .works-title-en {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
  }
  .works-category-grid {
    margin-left: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .works-cat-img { aspect-ratio: 1 / 1; }
  .works-cta {
    align-self: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }

  /* Company */
  #company { padding: 48px 0 64px; }
  .company-card { padding: 32px 24px; }
  .company-card-body { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .company-img  { display: block; width: 100%; aspect-ratio: 16 / 9; order: -1; }
  .company-title-en { font-size: 48px; margin-bottom: 28px; }
  .company-link-item { font-size: 15px; }
  .company-catch { font-size: 14px; }

  /* Company subnav */
  .page-subnav-list { grid-template-columns: repeat(2, 1fr); }

  /* Recruitment */
  #recruitment { padding: 60px 0; overflow: hidden; }
  .recruitment-inner  { align-items: center; }
  .recruitment-content { max-width: 100%; padding: 28px 24px; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .recruitment-bg-word {
    font-size: clamp(44px, 13vw, 60px);
    white-space: nowrap;
    top: 14px;
    left: 50%;
    width: auto;
    transform: translateX(-50%);
    letter-spacing: 2px;
  }
  .recruitment-btn-wrap { max-width: 100%; justify-content: center; }

  /* News */
  #news { padding: 40px 0 64px; margin-top: -50px; position: relative; z-index: 2; }
  .news-card { flex-direction: column; padding: 32px 24px; gap: 24px; }
  .news-left { flex: none; flex-direction: row; align-items: center; gap: 16px; }
  .news-ja { margin-bottom: 0; }
  .news-more-btn { flex-shrink: 0; width: 64px; height: 64px; font-size: 8px; margin-left: auto; }
  .news-more-btn span:last-child { font-size: 22px; }
  .news-item { flex-wrap: wrap; gap: 8px; }

  /* Contact */
  #contact { padding: 24px 0 48px; overflow: hidden; }
  .contact-card { padding: 24px 16px; max-width: 100%; overflow: hidden; }
  .contact-body { grid-template-columns: 1fr; gap: 12px; }
  .contact-phone-col,
  .contact-mail-col { padding: 20px 16px; }
  .contact-tel-num { font-size: 28px; }
  .contact-title-en { font-size: 36px; }

  /* Footer */
  .footer-main { padding: 40px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; max-width: 100%; text-align: center; }
  .footer-col-info { padding-left: 0; display: flex; flex-direction: column; align-items: center; }
  .footer-logo-img { width: 240px; max-width: 240px; margin: 0 auto; }
  .footer-cert-img { width: 180px; margin: 0 auto; }
  .footer-address { text-align: center; }
  .footer-col-nav-group { flex-direction: row; gap: 20px; justify-content: center; padding: 0; }
  .footer-col-nav { flex: 1; }
  .footer-nav-heading { text-align: left; }
  .footer-nav-sub, .footer-nav-list { gap: 10px; margin-bottom: 10px; flex-direction: column; align-items: flex-start; }
  .footer-col-recruit { margin-left: 0; justify-content: center; }
  .footer-recruit-card { max-width: 100%; min-height: 90px; }
  #footer { overflow: hidden; }
}

@media (max-width: 480px) {
  .footer-col-nav-group { flex-direction: row; gap: 16px; }
}


/* ============================
   ページヒーロー（共通）
============================ */
.page-hero {
  height: 450px;
  margin-top: 0;
  display: flex;
  align-items: center;
  background: url('http://webkikaku-yoloi.site/okudashoukou/wp-content/uploads/2026/03/machi.jpg') center/cover no-repeat;
  overflow: hidden;
}

.page-hero-title-box {
  margin-left: auto;
  margin-right: 0;
  background: rgba(255, 255, 255, 0.88);
  padding: 28px 140px;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 3px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .page-hero { margin-top: 0; height: 240px; }
  .page-hero-title-box { margin-left: auto; margin-right: 0; padding: 20px 32px; min-width: auto; }
  .page-hero-title { font-size: 18px; letter-spacing: 2px; }
}

/* パンくずリスト */
.breadcrumb {
  background: transparent;
  padding: 12px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 4px 0;
}

.breadcrumb-item {
  color: #888;
  white-space: nowrap;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '>';
  margin: 0 10px;
  color: #bbb;
  font-size: 11px;
}

.breadcrumb-item a {
  color: #555;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.breadcrumb-current {
  color: var(--navy);
  font-weight: 500;
}
