@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500;700;900&family=Zen+Old+Mincho:wght@700&display=swap');
/* ===== Base ===== */
:root{
  --bg: #EFF6FB;
  --bg-alt: #fff;
  --bg-footer:#D4E6F3;
  --text: #1b1f2a;
  --muted: #5f6b7a;
  --primary: #3058A0;     /* 青系（画像のボタン雰囲気） */
  --primary-2: #163575;
  --border: #D4E6F3;
  --shadow: 10px 10px 15px -15px rgba(10, 30, 60, .12);
  --radius: 4px;
  --container: 1080px;
  --copybg:#D9D9D9;
  --copytxt: #757575;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Zen Kaku Gothic Antique",system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
a{ color: inherit; text-decoration: none; color: var(--primary); }
img{ max-width:100%; height:auto; }
.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section{ padding: 56px 0; }
.section--alt{ background: var(--bg-alt); }
.section__head{ text-align:center; margin-bottom: 26px; }
.section__title{
    font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: .02em;
  color: var(--primary);
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
  width: 100%;
  text-align: center;
}
/* 左右に横線 */

.section__title::before,
.section__title::after {
  background-color:var(--primary); /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  flex-grow: 1; /* 横幅いっぱい */
}
.section__title::before {
  margin-right: 15px; /* 文字との余白 */
}
.section__title::after {
  margin-left: 15px; /* 文字との余白 */
}
.section__desc{ color: var(--primary); margin: 20px 0; font-weight: 700;font-size: 20px;text-align: center;}

/* ===== Header ===== */
.header{
  position: sticky;
  top: 0;
  background: var(--bg-footer);
  backdrop-filter: blur(10px);
   z-index: 100000; /* ← 1つに統一、drawerより上に */

    box-shadow: var(--shadow);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
    height: 60px;
    position: relative; /* ← 追加 */
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
  width: 125px;
}

.logo__text{ letter-spacing:.08em; }

.nav--pc{
  display:none;
  gap: 18px;
  align-items:center;
}
.nav__link{
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.nav__link:hover{ color: var(--muted); }

.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  position: relative; /* ← 追加 */
   z-index: 2; /* ← ヘッダー内での相対的な位置 */
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn--sm{ padding: 2px 0; font-size: 14px; width: 140px;box-sizing: border-box;}
.btn--block{ width:100%; }
.btn--primary{
  background: var(--primary);
  color:#fff;
  box-shadow: 10px 10px 15px -15px rgba(36,74,154,.25);
}
.btn--primary:hover{ background: var(--primary-2); transform: translateY(-1px); }

.btn--ghost{
  background: #fff;
  border-color: var(--border);
}
.btn--ghost:hover{ border-color: rgba(36,74,154,.35); }

/* ===== Hamburger（3本線 → × 変形アニメーション） ===== */
.hamburger{
  width: 44px; 
  height: 44px;
  border: none; /* 枠削除 */
  background: transparent; /* 背景削除 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 3; /* ← header__actions内で最上位 */
}

.hamburger__line{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

/* 開いている時（× に変形） */
.hamburger.is-active .hamburger__line:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2){
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active .hamburger__line:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}



/* ドロワー本体 */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 99999; /* ← ヘッダー(100000)より下 */
  pointer-events: none; /* 閉じてる時はクリック無効 */
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}

.drawer.is-open{
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

/* 背景（backdrop） */
.drawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* 半透明黒 */
  z-index: 1;
}

/* パネル（右からスライド） */
.drawer__panel{
  position: fixed; /* absolute → fixed に変更 */
  right: 0; 
  top: 0; 
  bottom: 0; /* 画面下端まで */
  width: 100vw;
  max-height: 80vh; /* 追加：画面高さを超えない */
  background: var(--bg-footer);
  box-shadow: -4px 0 24px rgba(10, 30, 60, 0.2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
    transform: translateX(100%);
  transition: transform 0.3s ease;
}

.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

/* ドロワーヘッダー */
.drawer__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.drawer__title{ 
  font-weight: 800; 
  letter-spacing: .08em; 
  font-size: 16px;
}

.drawer__close{
  border: 1px solid var(--border);
  background: #fff;
  width: 40px; 
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}
.drawer__close:hover{
  background: var(--bg-alt);
}

/* ナビリンク */
.drawer__nav{
  display: flex;
  flex-direction: column;
align-items: center;
  gap: 8px;
  padding: 10px 0;
  overflow-y: auto; /* 項目多い時スクロール */
}

.drawer__link{
  padding: 6px 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  transition: .2s ease;
}
.drawer__link:hover{ 
  background: var(--bg-alt); 
  color: var(--text); 
}

/* CTAボタン */
.drawer__cta{ 
  padding-top: 12px; 
}

/* body固定（スクロール防止） */
body.is-locked{ 
  overflow: hidden; 
  position: fixed;
  width: 100%;
}


/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 520px;
  display:grid;
  align-items:center;
  overflow:hidden;
}

.hero__inner{
  position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
}

.hero__title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
}
.hero__lead{
  margin: 0 0 18px;
  max-width: 100%;
  color: rgba(255,255,255,.9);
}
.hero__cta{ display:flex; gap: 10px; flex-wrap: wrap; }

/* ===== Grid / Card ===== */
.grid{ display:grid; gap: 16px; margin: 30px auto;width: 80%;}
.grid--3{ grid-template-columns: 1fr; }

.card{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(10, 30, 60, .06);
}
.card__media{
  height: 200px;
  background: #dbe6ff center/cover no-repeat;
}
/* .card__body{ padding: 16px; }
.card__title{ margin: 0 0 6px; font-size: 18px; }
.card__text{ margin: 0 0 10px; color: var(--muted); }
.card__link{ color: var(--primary); font-weight: 800; } */

#tour .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature{
  display:grid;
  gap: 18px;
  align-items:center;
  margin: 30px 0;
}
.feature__media{
  height: 260px;
  border-radius: var(--radius);
  background: #dbe6ff url("../img/img4.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.checklist{
  margin: 12px 0 18px;
  padding-left: 18px;
}
.checklist li{ margin: 6px 0; }

/* ===== Band ===== */
.band{
  padding: 46px 0;
}
.band__inner{ text-align:center; }
.band__title{
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 30px);
}
.band__text{ margin: 30px 0;  }

/* ===== Form ===== */
#contact{
    background-color: var(--bg-alt);
}
.form{
  max-width: 720px;
  margin: 0 auto;
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(10,30,60,.06);
  display:grid;
  gap: 12px;
}
.field{ display:grid; gap: 8px; }
.field__label{ font-weight: 800; font-size: 14px; color: var(--muted); }
.field__input,
.field__textarea{
  width:100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
}
.field__input:focus,
.field__textarea:focus{
  border-color: rgba(36,74,154,.45);
  box-shadow: 0 0 0 4px rgba(36,74,154,.12);
}

/* ===== Reviews ===== */
.review{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.review__stars{ color: #f0b429; letter-spacing: .12em; }
.review__title{ margin: 8px 0 6px; font-size: 18px; }
.review__text{ margin: 0 0 10px; color: var(--muted); }
.review__name{ margin: 0; font-weight: 800; color: var(--text); }

/* ===== Blog posts ===== */
.post{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  display:block;
  box-shadow: 0 10px 24px rgba(10,30,60,.06);
}
.post__thumb{
  height: 160px;
  background: #dbe6ff center/cover no-repeat;
}
.post__body{ padding: 14px 16px; }
.post__date{ margin:0 0 6px; color: var(--muted); font-size: 12px; }
.post__title{ margin:0 0 6px; font-size: 18px; }
.post__excerpt{ margin:0; color: var(--muted); }

.center{ display:flex; justify-content:center; margin-top: 18px; }

/* ===== Footer ===== */
.footer{
    background-color: var(--bg-footer);
  color: var(--text);
  padding: 0;
}
.footer__inner{
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  padding: 30px 0;
}
.site-footer__left{
  min-width: 240px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer__small{ padding: 10px 0; opacity:.8; font-size: 12px; color: var(--copytxt);background-color: var(--copybg);width: 100%;text-align: center;margin: 0;}
.footer__nav{
  width: 100%;
  display:flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background-color: var(--primary);
  font-weight: 700;
  padding: 10px;
}
.footer__nav a{ opacity: .9; color: #fff;}
.footer__nav a.social,.drawer__nav a.social{ width: 24px;height: 24px;}
.footer__nav a:hover{ opacity: 1; text-decoration: underline; }
.footer__info span{
    font-weight: 700;
}
.footer__policy{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--primary);
    font-weight: 700;
    height: 100%;
}

/* ===== Responsive ===== */
@media (min-width: 900px){
  .nav--pc{ display:flex; }
  .header__actions{
display:none;
}
  .hamburger{ display:none; }

  .grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--blog .post:nth-child(n+2) {
    display: block;
  }
  .feature{
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
  }
  .sp{display: none;}
.pc{display: inherit;}
.hero__bg.pc{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,18,35,.62), rgba(10,18,35,.22) 55%, rgba(10,18,35,.08)),
    url("../img/fv_pc.png") center/cover no-repeat;
  transform: scale(1.02);
}
}

@media (max-width: 899px){
.pc{display: none;}
.sp{display: inherit;}
.btn{width: 100%;}
.hero__inner {
    height: 100%;
    padding: 20px 0;
}
.hero__bg.sp{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,18,35,.62), rgba(10,18,35,.22) 55%, rgba(10,18,35,.08)),
    url("../img/fv_sp.png") center/cover no-repeat;
  transform: scale(1.02);
}
.footer__inner{
  flex-direction: column;
}
.site-footer__left{
  min-width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__brand .logo{
    width: 230px;
}
.footer__policy{
    flex-direction: column;
    align-items: center;
}
.grid--3{ 
  grid-template-columns: 1fr; /* モバイルは1列 */
}
.grid--blog .post:nth-child(n+2) {
  display: none; /* モバイルで2件目以降を非表示 */
}
.footer__nav{
  flex-direction: column;
}
div.social {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
}

/* ===== Contact Form 7 Styling ===== */
.cf7{
  max-width: 720px;
  margin: 0 auto;
}

.cf7 .wpcf7{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

/* フィールド全体 */
.cf7-field{
  margin-bottom: 24px;
}

/* ラベル */
.cf7-label{
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.cf7-label .required{
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

/* 入力フィールド */
.cf7 input[type="text"],
.cf7 input[type="email"],
.cf7 input[type="tel"],
.cf7 input[type="url"],
.cf7 select,
.cf7 textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: all .2s ease;
  color: var(--text);
}

.cf7 textarea{
  min-height: 160px;
  resize: vertical;
}

/* フォーカス時 */
.cf7 input:focus,
.cf7 select:focus,
.cf7 textarea:focus{
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

/* プレースホルダー */
.cf7 input::placeholder,
.cf7 textarea::placeholder{
  color: var(--muted);
  opacity: 0.7;
}

/* 送信ボタンエリア */
.cf7-submit{
  margin-top: 32px;
  text-align: center;
}

/* 送信ボタン */
.cf7 input[type="submit"]{
  width: 100%;
  max-width: 320px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all .2s ease;
}

.cf7 input[type="submit"]:hover{
  background: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cf7 input[type="submit"]:active{
  transform: translateY(0);
}

/* バリデーションエラー */
.cf7 .wpcf7-not-valid{
  border-color: #e74c3c !important;
}

.cf7 .wpcf7-not-valid-tip{
  font-size: 13px;
  color: #e74c3c;
  margin-top: 6px;
  display: block;
}

/* 送信後メッセージ */
.cf7 .wpcf7-response-output{
  margin: 20px 0 0;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
}

.cf7 .wpcf7-mail-sent-ok{
  background: #d4edda;
  border-color: #28a745;
  color: #155724;
}

.cf7 .wpcf7-validation-errors,
.cf7 .wpcf7-mail-sent-ng{
  background: #f8d7da;
  border-color: #e74c3c;
  color: #721c24;
}

.cf7 .wpcf7-spam-blocked{
  background: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

/* ローディング（スピナー） */
.cf7 .wpcf7-spinner{
  margin-left: 12px;
  vertical-align: middle;
}

/* モバイル調整 */
@media (max-width: 899px){
  .cf7 .wpcf7{
    padding: 24px 16px;
  }
  
  .cf7-field{
    margin-bottom: 20px;
  }
  
  .cf7 input[type="submit"]{
    max-width: 100%;
  }
}

/* プレースホルダー削除（デバッグ用） */
.cf7__placeholder{
  display: none;
}

/* ===== Page Header ===== */
.page-header{
  padding: 60px 0 40px;
  background: var(--bg);
}

.page-header__title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: var(--primary);
  text-align: center;
  margin: 0;
}

.page-header__desc{
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Page Content ===== */
.page-content{
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.page-content__thumbnail{
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-content__thumbnail img{
  width: 100%;
  height: auto;
  display: block;
}

.page-content__body h2{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--primary);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.page-content__body h3{
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  margin: 32px 0 12px;
}

.page-content__body h4{
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 24px 0 10px;
}

.page-content__body p{
  margin: 0 0 20px;
  line-height: 1.8;
}

.page-content__body ul,
.page-content__body ol{
  margin: 0 0 20px;
  padding-left: 24px;
}

.page-content__body li{
  margin: 8px 0;
  line-height: 1.7;
}

.page-content__body a{
  color: var(--primary);
  text-decoration: underline;
}

.page-content__body a:hover{
  opacity: 0.7;
}

.page-content__body img{
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 20px 0;
}

.page-content__body blockquote{
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--primary);
  background: var(--bg-alt);
  border-radius: var(--radius);
  color: var(--muted);
}

/* ===== Post Header (Single) ===== */
.post-header{
  padding: 60px 0 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.post-header__meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.post-header__date{
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.post-header__categories{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-header__category{
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  transition: .2s ease;
}

.post-header__category:hover{
  background: var(--primary-2);
}

.post-header__title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--primary);
  text-align: center;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Post Content (Single) ===== */
.post-content{
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.post-content__thumbnail{
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.post-content__thumbnail img{
  width: 100%;
  height: auto;
  display: block;
}

.post-content__body{
  font-size: 16px;
  line-height: 1.8;
}

.post-content__body h2{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--primary);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.post-content__body h3{
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  margin: 32px 0 12px;
}

.post-content__body h4{
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 24px 0 10px;
}

.post-content__body p{
  margin: 0 0 20px;
}

.post-content__body ul,
.post-content__body ol{
  margin: 0 0 20px;
  padding-left: 24px;
}

.post-content__body li{
  margin: 8px 0;
}

.post-content__body a{
  color: var(--primary);
  text-decoration: underline;
}

.post-content__body a:hover{
  opacity: 0.7;
}

.post-content__body img{
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 20px 0;
}

.post-content__body blockquote{
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--primary);
  background: var(--bg-alt);
  border-radius: var(--radius);
  color: var(--muted);
}

/* タグ */
.post-tags{
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tags__label{
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
}

.post-tag{
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: .2s ease;
}

.post-tag:hover{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== Post Categories (Archive) ===== */
.post__categories{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.post__category{
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
}

/* ===== Post Navigation ===== */
.post-navigation{
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-navigation__links{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.post-navigation__link{
  display: block;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: .2s ease;
}

.post-navigation__link:hover{
  background: var(--bg);
  box-shadow: var(--shadow);
}

.post-navigation__label{
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.post-navigation__title{
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ===== Page Navigation ===== */
.page-navigation{
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ===== Pagination ===== */
.pagination{
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.pagination .nav-links{
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.pagination a,
.pagination .current{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.pagination a{
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.pagination a:hover{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination .current{
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.pagination .prev,
.pagination .next{
  font-weight: 700;
}

.pagination__number{
  /* ページ番号用のスタイル */
}

/* ===== No Posts ===== */
.no-posts{
  text-align: center;
  padding: 60px 20px;
}

.no-posts p{
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ===== Page Links (ページ分割) ===== */
.page-links{
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-links-title{
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
}

.page-links a,
.page-links > span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  transition: .2s ease;
}

.page-links a:hover{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 899px){
  .page-header{
    padding: 40px 0 30px;
  }
  
  .page-content,
  .post-content{
    padding: 24px 16px;
  }
  
  .post-navigation__links{
    grid-template-columns: 1fr;
  }
  
  .page-navigation{
    flex-direction: column;
  }
}

@media (min-width: 900px){
  .post-navigation__links{
    grid-template-columns: 1fr 1fr;
  }
  
  .post-navigation__link--next{
    text-align: right;
  }
}
/* ===== Plan Slider ===== */
.plan-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 60px;
}

.plan-slider__viewport {
  overflow: hidden;
  position: relative;
}

.plan-slider__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* カードの高さを統一 */
.plan-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  background: #fff;
  border-radius: 8px;
  overflow: visible; /* タグが見えるように変更 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 560px !important;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.plan-card__media {
  height: 220px !important;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #e8e8e8;
  position: relative;
  flex-shrink: 0;
  border-radius: 4px 4px 0 0; /* 上部の角丸を維持 */
  overflow: hidden; /* 画像エリア内だけクリップ */
}

.plan-card__media:not([style*="background-image"])::after {
  content: "画像なし";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(10,20,40,0.35);
  font-size: 14px;
  font-weight: 500;
}

.plan-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 2; /* タグを最前面に */
}

.plan-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 340px;
  overflow: hidden;
}

.plan-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading);
  line-height: 1.4;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

.plan-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(10,20,40,0.7);
  min-height: 56px; /* 高さを少し増やす */
  flex-shrink: 0;
}

.plan-meta__item {
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  height: fit-content;
}

.plan-card__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(10,20,40,0.75);
  height: 110px; /* 少し調整 */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

/* .plan-card__actions {
  margin-top: auto;
  padding-top: 10px;
  flex-shrink: 0;
} */

.plan-card__body .btn {
  display: inline-block;
  min-width: 140px;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  line-height: 1.4;
}

.plan-card__body .btn--primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

.plan-card__body .btn--primary:hover {
  background: #1565c0;
  border-color: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33,150,243,0.3);
}

.plan-card__body .btn--outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.plan-card__body .btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33,150,243,0.25);
}

/* 矢印ボタン */
.plan-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 2px solid var(--primary);
  background: #fff;
  border-radius: 50%;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-slider__arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.plan-slider__arrow--prev {
  left: 0;
}

.plan-slider__arrow--next {
  right: 0;
}

/* ドットインジケーター */
.plan-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.plan-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(10,20,40,0.2);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-slider__dot:hover {
  background: rgba(10,20,40,0.4);
}

.plan-slider__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
  width: 32px;
  border-radius: 6px;
}

/* ===== 人気のアクティビティ（固定3列） ===== */
.activity-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.activity-section__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--heading);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--primary);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* アクティビティカードのスタイル統一 */
.activity-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%; /* グリッド内で高さ統一 */
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.activity-card__media {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #e8e8e8;
  position: relative;
}

.activity-card__media:not([style*="background-image"])::after {
  content: "画像なし";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(10,20,40,0.35);
  font-size: 14px;
}

.activity-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.activity-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading);
  line-height: 1.4;
}

.activity-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
}

.activity-card__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(10,20,40,0.75);
  flex: 1;
}

/* .activity-card__actions {
  margin-top: auto;
} */

/* モバイル */
@media (max-width: 899px) {
  .plan-slider {
    padding: 0 20px;
  }

  .plan-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto !important;
    overflow: hidden; /* モバイルは通常のoverflow */
  }

  .plan-card__body {
    height: auto;
  }

  .plan-card__title,
  .plan-card__meta,
  .plan-card__text {
    height: auto;
  }

  .plan-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .plan-slider__arrow--prev {
    left: -5px;
  }

  .plan-slider__arrow--next {
    right: -5px;
  }

  /* アクティビティグリッドをモバイル1列に */
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ===== Plan Card & Activity Card 共通スタイル ===== */
.plan-card,
.activity-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 30, 60, .06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card__media,
.activity-card__media {
  height: 200px;
  background: #dbe6ff center/cover no-repeat;
  position: relative;
}

/* タグ（バッジ） */
.plan-card__badge,
.activity-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
}

/* タグアイコン */
.plan-card__badge::before {
  content: "⭐";
  font-size: 14px;
}

.activity-card__badge::before {
  content: "🔥";
  font-size: 14px;
}

/* カード本体 */
.plan-card__body,
.activity-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-card__title,
.activity-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

/* メタ情報 */
.plan-card__meta,
.activity-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}

.plan-meta__item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-meta__icon {
  font-size: 16px;
  line-height: 1;
}

/* 説明文 */
.plan-card__text,
.activity-card__text {
  margin: 0 0 12px;
  color: var(--muted);
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

/* 詳細を見るボタン（全幅） */
.plan-card__link,
.activity-card__link {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: var(--radius);
  transition: .2s ease;
  margin-top: auto;
  text-decoration: none;
}

.plan-card__link:hover,
.activity-card__link:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(36, 74, 154, .25);
}

/* Activity Grid */
.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Plan Header Meta ===== */
.plan-header__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.plan-meta__item{
  padding: 8px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.plan-meta__price{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-size: 16px;
}

/* ===== Plan Booking Button ===== */
.plan-booking{
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.plan-booking .btn{
  max-width: 400px;
  font-size: 18px;
}
/* ===== Flow Page ===== */
.flow-intro{
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
}

.flow-intro__text{
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}

/* ===== Flow Step ===== */
.flow-step{
  position: relative;
  margin-bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.flow-step:last-child{
  margin-bottom: 0;
}

/* ステップ番号 */
.flow-step__number{
  flex-shrink: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.flow-step__badge{
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .1em;
  text-align: center;
}

.flow-step__num{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(48, 88, 160, .3);
}

/* 矢印（次のステップへ） */
.flow-step:not(:last-child)::after{
  content: '↓';
  position: absolute;
  left: 50px;
  top: 100%;
  transform: translateX(-50%);
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
  z-index: 1;
  margin-top: -16px;
}

/* コンテンツエリア */
.flow-step__content{
  flex: 1;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
}

.flow-step__icon{
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--border);
}

.flow-step__icon img{
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.flow-step__title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--primary);
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.4;
}

.flow-step__body{
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

.flow-step__body p{
  margin: 0 0 16px;
}

.flow-step__list{
  margin: 16px 0 0;
  padding-left: 20px;
  list-style: none;
}

.flow-step__list li{
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.7;
}

.flow-step__list li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 899px){
  .flow-intro{
    padding: 24px 16px;
    margin-bottom: 32px;
  }
  
  .flow-intro__text{
    font-size: 14px;
  }
  
  .flow-step{
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }
  
  .flow-step__number{
    width: 80px;
  }
  
  .flow-step__num{
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .flow-step:not(:last-child)::after{
    left: 50%;
    top: auto;
    bottom: -48px;
    margin-top: 0;
  }
  
  .flow-step__content{
    width: 100%;
    padding: 20px 16px;
  }
  
  .flow-step__icon{
    width: 80px;
    height: 80px;
  }
  
  .flow-step__title{
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .flow-step__body{
    font-size: 14px;
  }
  
  .flow-step__list{
    padding-left: 16px;
  }
  
  .flow-step__list li{
    padding-left: 18px;
    font-size: 14px;
  }
}

@media (min-width: 900px){
  .flow-step{
    padding-left: 40px;
  }
  
  .flow-step:not(:last-child)::after{
    left: 90px;
  }
}
/* ===== Q&A List ===== */
.qa-list{
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Q&A Item ===== */
.qa-item{
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
}

.qa-item:last-child{
  margin-bottom: 0;
}

/* 質問ボタン */
.qa-item__question{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  transition: background .2s ease;
}

.qa-item__question:hover{
  background: var(--primary-2);
}

.qa-item__question[aria-expanded="true"]{
  background: var(--primary-2);
}

/* Q ラベル */
.qa-item__label{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.qa-item__label--answer{
  background: var(--primary);
  color: #fff;
}

/* 質問テキスト */
.qa-item__text{
  flex: 1;
  line-height: 1.5;
}

/* 開閉アイコン */
.qa-item__icon{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  transition: transform .3s ease;
}

.qa-item__question[aria-expanded="true"] .qa-item__icon{
  transform: rotate(45deg);
}

/* 回答エリア */
.qa-item__answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.qa-item__answer.is-open{
  max-height: 1000px; /* 十分な高さを確保 */
}

.qa-item__answer-inner{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-top: 2px solid var(--border);
}

.qa-item__answer-inner p{
  flex: 1;
  margin: 0;
  line-height: 1.8;
  color: var(--text);
  font-size: 15px;
}

.qa-item__answer-inner a{
  color: var(--primary);
  text-decoration: underline;
}

.qa-item__answer-inner a:hover{
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 899px){
  .qa-item__question{
    padding: 14px 16px;
    font-size: 14px;
    gap: 10px;
  }
  
  .qa-item__label{
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .qa-item__icon{
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .qa-item__answer-inner{
    padding: 16px;
    gap: 10px;
  }
  
  .qa-item__answer-inner p{
    font-size: 14px;
  }
}
/* ===== About Content ===== */
.about-content{
  display: grid;
  gap: 40px;
  align-items: start;
}

.about-content__text{
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.about-content__text p{
  margin: 0 0 20px;
}

.about-content__text p:last-child{
  margin-bottom: 0;
}

/* About Images */
.about-content__images{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.about-image{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 30, 60, .1);
}

.about-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image--large{
  height: 300px;
}

.about-image--small{
  height: 250px;
}

/* ===== Company Info ===== */
.company-info{
  max-width: 900px;
  margin: 0 auto;
}

.company-table{
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
  border-collapse: separate;
  border-spacing: 0;
}

.company-table th,
.company-table td{
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.company-table tr:last-child th,
.company-table tr:last-child td{
  border-bottom: none;
}

.company-table th{
  background: var(--bg);
  color: var(--primary);
  font-weight: 700;
  width: 30%;
  font-size: 14px;
}

.company-table td{
  background: #fff;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 899px){
  .about-content{
    gap: 32px;
  }
  
  .about-content__text{
    font-size: 14px;
  }
  
  .about-content__text p{
    margin-bottom: 16px;
  }
  
  .about-image--large{
    height: 220px;
  }
  
  .about-image--small{
    height: 180px;
  }
  
  .company-table th,
  .company-table td{
    padding: 12px 16px;
    font-size: 13px;
    display: block;
    width: 100%;
  }
  
  .company-table th{
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-bottom: none;
  }
  
  .company-table td{
    padding: 12px 16px 16px;
  }
  
  .company-table tr{
    display: block;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10, 30, 60, .06);
  }
  
  .company-table tr:last-child{
    margin-bottom: 0;
  }
}

@media (min-width: 900px){
  .about-content{
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  .about-content__images{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .about-image--large{
    grid-column: 1 / -1;
    height: 320px;
  }
  
  .about-image--small{
    height: 280px;
  }
}
/* ===== Policy Content ===== */
.policy-content{
  max-width: 900px;
  margin: 0 auto;
}

.policy-intro{
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
}

.policy-intro p{
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  color: var(--text);
}

/* ===== Policy Section ===== */
.policy-section{
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
}

.policy-section:last-of-type{
  margin-bottom: 32px;
}

.policy-section__title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--primary);
  margin: 0 0 16px;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.policy-section__body{
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.policy-section__body p{
  margin: 0 0 16px;
}

.policy-section__body p:last-child{
  margin-bottom: 0;
}

.policy-section__body ul{
  margin: 16px 0;
  padding-left: 24px;
  list-style: none;
}

.policy-section__body ul li{
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
}

.policy-section__body ul li::before{
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.policy-section__body a{
  color: var(--primary);
  text-decoration: underline;
}

.policy-section__body a:hover{
  opacity: 0.7;
}

/* ===== Policy Contact ===== */
.policy-contact{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
}

.policy-contact p{
  margin: 0 0 8px;
  line-height: 1.7;
}

.policy-contact p:last-child{
  margin-bottom: 0;
}

.policy-contact strong{
  color: var(--primary);
  font-size: 16px;
}

/* ===== Policy Footer ===== */
.policy-footer{
  text-align: right;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-top: 32px;
}

.policy-footer p{
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.policy-footer p:last-child{
  margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 899px){
  .policy-intro{
    padding: 16px 20px;
    margin-bottom: 24px;
  }
  
  .policy-intro p{
    font-size: 14px;
  }
  
  .policy-section{
    padding: 20px 16px;
    margin-bottom: 20px;
  }
  
  .policy-section__title{
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  
  .policy-section__body{
    font-size: 14px;
  }
  
  .policy-section__body p{
    margin-bottom: 12px;
  }
  
  .policy-section__body ul{
    padding-left: 20px;
    margin: 12px 0;
  }
  
  .policy-section__body ul li{
    padding-left: 18px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .policy-contact{
    padding: 16px;
  }
  
  .policy-contact p{
    font-size: 14px;
  }
  
  .policy-footer{
    padding: 16px 20px;
    text-align: center;
  }
  
  .policy-footer p{
    font-size: 13px;
  }
}
/* ===== 404 Error Page ===== */
.page-header--error{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  padding: 80px 0;
}

.error-404__content{
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.error-404__title{
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1;
  opacity: 0.9;
}

.error-404__subtitle{
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 20px;
}

.error-404__text{
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
}

.error-404__actions{
  max-width: 900px;
  margin: 0 auto;
}

.error-404__search,
.error-404__links,
.error-404__posts{
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
}

.error-404__heading{
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  margin: 0 0 20px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.error-404__cta{
  text-align: center;
  margin-top: 32px;
}

/* ===== Search Form ===== */
.search-form__group{
  display: flex;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.search-form__input{
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  outline: none;
  transition: all .2s ease;
}

.search-form__input:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(48, 88, 160, .12);
}

.search-form__button{
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.search-form__button:hover{
  background: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 88, 160, .3);
}

.search-form--large .search-form__input{
  padding: 16px 24px;
  font-size: 18px;
}

.search-form--large .search-form__button{
  padding: 16px 40px;
  font-size: 18px;
}

/* ===== Quick Links ===== */
.quick-links{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.quick-link{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s ease;
}

.quick-link:hover{
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(10, 30, 60, .1);
}

.quick-link__icon{
  font-size: 32px;
}

.quick-link__text{
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

/* ===== Recent Posts List ===== */
.recent-posts-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item{
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s ease;
}

.recent-post-item:hover{
  background: #fff;
  box-shadow: 0 4px 12px rgba(10, 30, 60, .1);
  transform: translateX(4px);
}

.recent-post-item__thumb{
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: #dbe6ff center/cover no-repeat;
}

.recent-post-item__content{
  flex: 1;
}

.recent-post-item__date{
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}

.recent-post-item__title{
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== No Results ===== */
.no-results{
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(10, 30, 60, .06);
}

.no-results__icon{
  font-size: 80px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.no-results__title{
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--primary);
  margin: 0 0 16px;
  line-height: 1.4;
}

.no-results__text{
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 32px;
}

.no-results__search{
  margin-bottom: 40px;
}

.no-results__links{
  margin-top: 40px;
}

.no-results__heading{
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 20px;
}

/* ===== Plan Card Type Badge ===== */
.plan-card__type{
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 8px;
}

/* ===== Button Large ===== */
.btn--lg{
  padding: 16px 48px;
  font-size: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 899px){
  .page-header--error{
    padding: 60px 0;
  }
  
  .error-404__title{
    font-size: 80px;
  }
  
  .error-404__subtitle{
    font-size: 24px;
  }
  
  .error-404__text{
    font-size: 14px;
  }
  
  .error-404__search,
  .error-404__links,
  .error-404__posts{
    padding: 24px 16px;
  }
  
  .error-404__heading{
    font-size: 18px;
  }
  
  .search-form__group{
    flex-direction: column;
  }
  
  .search-form__button{
    width: 100%;
  }
  
  .quick-links{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quick-link{
    padding: 16px 12px;
  }
  
  .quick-link__icon{
    font-size: 28px;
  }
  
  .quick-link__text{
    font-size: 13px;
  }
  
  .recent-post-item{
    padding: 12px;
    gap: 12px;
  }
  
  .recent-post-item__thumb{
    width: 60px;
    height: 60px;
  }
  
  .recent-post-item__title{
    font-size: 14px;
  }
  
  .no-results{
    padding: 40px 16px;
  }
  
  .no-results__icon{
    font-size: 60px;
  }
  
  .btn--lg{
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
  }
}
