/* ============================================================
   style.css
   記述順：ベース（モバイル） → タブレット(768px~) → PC(1025px~)
   フォント: fot-tsukuardgothic-std (Adobe Fonts)
   ============================================================ */

/* ─── リセット・変数 ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #68A7BE;
  --teal-dark:  #4e8fa5;
  --teal-light: #e8f4f8;
  --pink:       #E9969F;
  --beige:      #FFF6E8;
  --cream:      #FAFAF8;
  --white:      #FFFFFF;
  --gold:       #C9A96E;
  --text:       #3E3E3E;
  --text-mid:   #6E6E6E;
  --text-light: #AEAAA6;
  --border:     #E0DBD6;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 100px; }

body {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
}


/* ============================================================
   共通ユーティリティ
   ============================================================ */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  background: linear-gradient(135deg, #E2EEEE 0%, #D0E6E6 100%);
  color: var(--teal);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* セクション見出し共通 */
.sec-kicker {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--pink);
  display: block;
}
/* メニュー・料金とご予約・お問い合わせは元の文字間を維持 */
#menu .sec-kicker,
#contact .sec-kicker {
  letter-spacing: 0.05em;
}
.sec-title {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--teal);
}
.sec-rule {
  width: 36px;
  height: 1px;
  background: var(--teal);
  margin: 18px 0;
}
.sec-rule--center { margin: 18px auto; }


/* ============================================================
   ヘッダー
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.7);
  transition: background 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.logo-icon { width: 28px; height: 28px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo img {
  display: block;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* モバイル：PCナビ非表示 */
.header-nav { display: none; }
.header-nav-dot { display: none; }

/* ハンバーガー */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: .3s;
}
.hamburger span:nth-child(2) {
  background: var(--teal);
}

/* モバイルナビ */
#mobile-nav {
  display: flex;
  position: fixed;
  inset: 80px 0 0;
  background: #fff;
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility .5s ease;
}
#mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ハンバーガー → ✕ アニメーション */
/* ハンバーガーメニュー開閉時：ヘッダー背景を100%不透明に */
#header:has(+ * .hamburger.is-open),
#header:has(.hamburger.is-open) {
  background: rgba(255, 255, 255, 1);
}
#header:has(.hamburger.is-open) {
  background: rgba(255, 255, 255, 1);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
#mobile-nav a {
  font-size: 0.9375rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color .4s ease;
}
#mobile-nav a:hover { color: var(--teal); }
#mobile-nav .btn-nav-reserve {
  margin-top: 8px;
  padding: 10px 40px !important;
  font-size: 0.8125rem !important;
  border-radius: 28px;
}

/* 予約ボタン共通スタイル（モバイルナビ内でも使用） */
.btn-nav-reserve {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 28px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  transition: background .25s, transform .2s !important;
}
.btn-nav-reserve:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.btn-nav-reserve {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btn-nav-reserve::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('./images/arrow.svg') center / contain no-repeat;
  filter: brightness(0) invert(1);
}


/* ============================================================
   ボタン共通
   ============================================================ */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--teal);
  color: #fff;
  padding: 12px 40px;
  border-radius: 28px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  position: relative;
  min-width: 200px;
}
.btn-primary:hover {
  background: var(--teal-dark); 
  transform: translateY(-2px);
}
.btn-primary::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('./images/arrow.svg') center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 12px 30px;
  border-radius: 28px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all .25s;
  background: transparent;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  cursor: pointer;
}
.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--teal);
  padding: 13px 38px;
  border-radius: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }


/* ============================================================
   01 HERO
   ============================================================ */
#hero {
  background: var(--white);
  overflow: hidden;
}
/* モバイル・タブレット: 写真フル幅 + テキスト左上に重ねる */
.hero-inner {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-text {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 60%;
}
.hero-kicker {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-heading {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 310px;
  white-space: nowrap;
}
.hero-heading span {
  color: var(--pink);
}
.hero-desc {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-photo .img-ph {
  width: 100%;
  height: 100%;
  background: none;
}
.hero-photo .img-ph img {
  width: 100%;
  height: 85%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}


/* ============================================================
   02 よつ葉の訪問美容
   ============================================================ */
#about {
  margin-top: -20px;
  padding: 0;
  background: var(--white);
}
.about-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.about-cols {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-photo-main {
  width: 100%;
  aspect-ratio: 4/3.5;
  border-radius: 4px;
  overflow: hidden;
}
.about-right {
  padding-top: 0; 
}
.about-right-text {
  margin-bottom: 14px;
  padding-bottom: 30px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  /* 点線 */
  background-image: linear-gradient(to right, #68A7BE 40%, transparent 50%);
  background-position: left bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
.about-right-text p {
  margin: 0 0 1.2em;
}
.about-right-text p:last-child {
  margin-bottom: 0;
}
.about-right-text span {
  color: var(--pink);
}
.about-sub div {
  margin-top: 37px;
  margin-bottom: 20px;
  padding: 20px 48px;
  background: var(--beige);
  border-radius: 10px;
}
.about-sub h3 {
  margin-bottom: 8px;
  color: var(--teal);
  text-align: center;
}



/* ============================================================
   03 訪問美容よつ葉の特徴
   ============================================================ */
#feature {
  padding: 64px 0;
  background: var(--white);
}
.feature-heading-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.feature-heading-wrap .sec-title {
  font-size: 1.25rem;
}
.feature-list li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  list-style: none;
  background-image: linear-gradient(to right, #68A7BE 40%, transparent 50%);
  background-position: left bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
.feature-list li:last-child {
  background: none;
}
.feature-list li span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pink);
}
.feature-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
}
.feature-photo {
  aspect-ratio: 3 / 4;
  border-radius: 5px;
  overflow: hidden;
  object-fit: cover;
}
.feature-photo .img-ph {
  background: linear-gradient(135deg, #E5EEEE 0%, #D4E5E5 100%);
}


/* ============================================================
   04 メニュー・料金
   ============================================================ */
#menu {
  padding: 64px 0;
  background:
    linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
    url('./images/menu-bg.jpg') center center / cover no-repeat;
}
.container--menu {
  max-width: 1280px;
}
.menu-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.menu-desc {
  margin-bottom: 80px;
  line-height: 1.9;
}
.menu-tax {
  margin-bottom: 2px;
  font-size: 0.875rem;
  text-align: right;
}

/* 料金ブロック共通 */
/* ベージュ：全メニューを一括で囲う外枠 */
.menu-price-beige {
  background-color:rgba(255,246,232,0.6);
  border-radius: 12px;
  padding: 60px 6%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* 各ブロック：白カード */
.price-block {
  width: min(1000px, 100%);
  margin: auto;
  background: #fff;
  padding: 32px 48px 36px;
  border-radius: 8px;
}
/* カテゴリタイトル：縦並び（テキスト上、実線下） */
.price-block-head {
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
  margin-bottom: 20px;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.price-cat {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.4375rem;
  color: var(--pink);
}
.price-cat-rule {
  width: 100%;
  height: 2px;
  background: var(--pink);
  opacity: 0.5;
}

/* 料金行 */
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
  max-width: 670px;
  margin: 0 auto;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
}
.price-name {
  white-space: nowrap;
  min-width: 6em;
  flex-shrink: 0;
}
.price-dots {
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-bottom: 3px;
}
.price-dots::after {
  content: '';
  display: block;
  border-bottom: 1px dashed #3E3E3E;
  width: 100%;
}
.price-val {
  white-space: nowrap;
  font-size: 0.875rem;
  color: var(--text);
  flex-shrink: 0;
}
/* 補足行：料金の下に右寄せで表示 */
.price-note-row {
  list-style: none;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--text-mid);
  margin-top: -6px;
}
.price-area {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 2.2;
  text-align: left;
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}

/* 出張費・補助券ブロック：外枠ベージュ＋内側白カード */
.price-extra-block {
  width: min(1000px, 100%);
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
  background: #fff;
  padding: 24px 48px 0;
}
.price-extra-head {
  max-width: 700px;
  margin: 0 auto;
  padding: 4px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 6px;
}
.price-extra-block--teal .price-extra-head { 
  font-size: 1.3125rem;
  border: 1px solid var(--teal);
  color: var(--teal);
}
.price-extra-block--pink .price-extra-head { 
  font-size: 1.3125rem;
  border: 1px solid var(--pink);
  color: var(--pink);
  }
.price-extra-inner {
  background: #fff;
  padding: 20px 0 28px;
}
.price-list--extra {
  padding: 0;
}
.price-list--extra .price-row {
  max-width: 100%;
  margin: 0 auto;
}
.price-list--extra .price-name {
  min-width: 0;
  width: 100px;
  flex-shrink: 0;
}
.price-list--extra .price-val {
  width: 100px;
  text-align: right;
  flex-shrink: 0;
}
.price-list--extra .price-dots {
  min-width: 40px;
}


/* ============================================================
   ご予約・お問い合わせ（contact）
   ============================================================ */
#contact {
  padding: 64px 20px;
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url('./images/menu-bg.jpg') center center / cover no-repeat;
}
.contact-inner {
  /* 白カードを中央に */
}
#contact .container--narrow {
  max-width: 1280px;
  background: #fff;
  border-radius: 16px;
  padding: 56px 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
/* 見出し */
.contact-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
.contact-title {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
/* TEL行 */
.contact-tel-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto 60px;
  max-width: 990px;
}
.contact-tel-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-tel-num-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.contact-tel-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-mid);
}
.contact-tel-number {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.contact-tel-hours {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 2.2em; /* "Tel "分のインデント */
}
.contact-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 13px 44px;
  position: relative;
  border-radius: 28px;
  font-size: 0.875rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all .25s;
}
.btn-contact--teal { background: var(--teal); color: #fff; }
.btn-contact--teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-contact--green { background: #8DB975; color: #fff; }
.btn-contact--green:hover { background: #5AAF7C; transform: translateY(-1px); }
.btn-contact::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('./images/arrow.svg') center / contain no-repeat;
  filter: brightness(0) invert(1);
}
/* フォーム */
/* フォームエリア */
.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-desc {
  font-size: 1rem;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.9;
  margin-bottom: 32px;
}
.contact-form-group {
  margin-bottom: 24px;
}
.contact-form-group:has(.contact-textarea) {
  margin-bottom: 0 !important;
}
.contact-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.875rem;
  color: var(--text);
}
.contact-form-group br {
  display: none;
}
.contact-label .req {
  color: var(--pink);
  margin-left: 2px;
}
.contact-ctrl {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 5px;
  font-size: 0.875rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  color: var(--text);
  background: #F2F2F2;
  outline: none;
  transition: box-shadow .2s;
}
.contact-ctrl:focus {
  box-shadow: 0 0 0 2px rgba(123,191,190,.3);
}
.contact-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.8;
}
.req-star { color: var(--pink); }
.contact-required-note {
  font-size: 0.875rem;
  color: var(--text);
  text-align: right;
  margin-bottom: 24px;
}
.contact-submit-wrap {
  text-align: center;
}
.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 10px 70px;
  border-radius: 32px;
  font-size: 1rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-contact-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }

.form-desc {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 2;
  text-align: center;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.form-label .req {
  font-size: 0.625rem;
  color: var(--white);
  background: var(--teal);
  padding: 1px 6px;
  border-radius: 3px;
}
.form-label .opt {
  font-size: 0.625rem;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 3px;
}
.form-ctrl {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  color: var(--text);
  background: #F2F2F2;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(123,191,190,.14);
  background: #fff;
}
.form-ctrl::placeholder { color: var(--text-light); }
select.form-ctrl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23AEAAA6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}
textarea.form-ctrl {
  resize: vertical;
  min-height: 110px;
  line-height: 1.8;
}
.form-submit-wrap { margin-top: 28px; text-align: center; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 28px;
  font-size: 0.875rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background .25s, transform .2s;
  box-shadow: 0 4px 18px rgba(123,191,190,.35);
  width: 100%;
  justify-content: center;
}
.btn-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }
.form-note {
  text-align: center;
  font-size: 0.7188rem;
  color: var(--text-light);
  margin-top: 18px;
  line-height: 1.9;
}
.form-note a { color: var(--teal); text-decoration: none; }


/* ============================================================
   05 CTA バナー
   ============================================================ */
#cta {
  background: var(--teal);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.cta-title {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  line-height: 1.6;
}
.cta-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
}


/* ============================================================
   06 ご利用の流れ
   ============================================================ */
/* ============================================================
   05 ご利用の流れ
   ============================================================ */
#flow {
  padding: 64px 0;
  background:
    linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
    url('./images/flow-bg.jpg') center center / cover no-repeat;
  position: relative;
}
#flow .container--narrow {
  max-width: 1000px;
}
.flow-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.flow-list {
  display: flex;
  flex-direction: column;
}
.flow-item {
  position: relative;
}
/* ステップ間の横点線 */
.flow-divider {
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--teal) 40%, transparent 50%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  margin: 28px 0;
  opacity: 0.4;
}
/* ─── モバイル：縦並び ─── */
.flow-item-main {
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
}
/* 上段：番号＋タイトル横並び */
.flow-row-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
/* 下段：テキスト＋ボタン縦並び */
.flow-row-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: calc(2.75rem + 0px);
}
.flow-num {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.4375rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.flow-title {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.4375rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.06em;
}
.flow-text {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.9;
}
.flow-link {
  color: var(--pink);
}
.flow-btn-wrap {
  text-align: left;
}
.btn-flow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--teal);
  color: #fff;
  font-size: 0.875rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.06em;
  padding: 12px 40px;
  border-radius: 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, transform .2s;
  position: relative;
  min-width: 220px;
}
.btn-flow::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('./images/arrow.svg') center / contain no-repeat;
  filter: brightness(0) invert(1);
}
.btn-flow:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}


/* ============================================================
   07 よくある質問
   ============================================================ */
#faq {
  padding: 64px 0;
  background: var(--white);
}
.faq-heading-wrap { text-align: center; margin-bottom: 60px; }
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  background-image: linear-gradient(to right, var(--pink) 40%, transparent 50%);
  background-position: left bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
.faq-item:first-child {
  border-top: none;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
.faq-q-icon {
  flex-shrink: 0;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
  min-width: 2em;
}
.faq-q-text {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
}
.faq-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform .3s;
}
.faq-arrow-img {
  width: 14px;
  height: auto;
  display: block;
}
.faq-item.is-open .faq-arrow {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.is-open .faq-answer {
  padding-bottom: 20px;
}
.faq-answer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 10px;
  background: var(--beige);
  border-radius: 10px;
}
.faq-a-icon {
  flex-shrink: 0;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 2em;
}
.faq-a-text { font-size: 0.875rem; color: var(--text); line-height: 1.9; }


/* ============================================================
   08 お客様の声
   ============================================================ */
#voice {
  padding: 64px 0;
  background:
    linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
    url('./images/voice-bg.jpg') center center / cover no-repeat;
}
.voice-heading-wrap { text-align: center; margin-bottom: 60px; }
.voice-list {
  display: flex;
  flex-direction: column;
}
.voice-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 32px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 40px;
}
.voice-row:last-child {
  margin-bottom: 0;
}
/* 名前 */
.voice-name {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--pink);
  padding-bottom: 16px;
  font-weight: 700;
}
/* モバイル：名前下の横点線 */
.voice-name::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 16px;
  background-image: linear-gradient(to right, var(--pink) 40%, transparent 50%);
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
/* 本文 */
.voice-text {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.9;
  padding-top: 16px;
}


/* ============================================================
   09 自己紹介
   ============================================================ */
#intro {
  padding: 64px 0;
  background: var(--white);
}
.intro-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}
/* 上段：左テキスト＋右写真 */
.intro-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}
.intro-left {
  display: flex;
  flex-direction: column;
}
.intro-role {
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.intro-name {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.4;
}
/* 資格・趣味ブロック */
.intro-section {
  margin-top: 50px;
}
.intro-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}
.intro-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 0;
}
.intro-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.9;
  padding-left: 1em;
  position: relative;
}
.intro-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}
.intro-hobby {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.9;
}
/* 写真 */
.intro-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
}
.intro-photo .img-ph {
  background: linear-gradient(145deg, #DCE9E9 0%, #C8DEDE 100%);
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 下段：挨拶カード */
.intro-greeting {
  background: var(--beige);
  border-radius: 12px;
  padding: 36px 28px;
}
.intro-greeting-title {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.4325rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-align: left;
}
.intro-greeting-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.9;
}


/* ============================================================
   10 ご予約
   ============================================================ */
#reserve {
  padding: 64px 0;
  background: var(--cream);
}
.reserve-heading-wrap { text-align: center; margin-bottom: 60px; }
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.reserve-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px 18px;
  border: 1px solid var(--border);
}
.reserve-card-label { font-size: 0.625rem; letter-spacing: 0.22em; color: var(--teal); text-transform: uppercase; margin-bottom: 8px; }
.reserve-card-value { font-family: "fot-tsukuardgothic-std", sans-serif; font-size: 0.9375rem; font-weight: 500; line-height: 1.7; color: var(--text); }
.reserve-card-sub { font-size: 0.7188rem; color: var(--text-light); margin-top: 6px; }
.reserve-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}


/* ============================================================
   11 ブログ
   ============================================================ */
#blog {
  padding: 64px 0;
  background: var(--white);
}
.blog-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 36px;
}
.blog-card {
  text-decoration: none;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: opacity .3s;
}
.blog-card:hover { opacity: 0.7; }
.blog-card-thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: 10px; }
.blog-card-thumb .img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E4EEEE 0%, #D2E4E4 100%);
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 14px 16px 18px 0; }
.blog-title { font-size: 0.875rem; font-weight: 400; color: var(--text); line-height: 1.7; margin-bottom: 8px; }
.blog-date { font-size: 0.8125rem; color: var(--text); letter-spacing: 0.06em; }
.blog-footer {
  text-align: center;
  margin-top: 8px;
}


/* ============================================================

/* ============================================================
   フッター
   ============================================================ */
#footer {
  background: var(--white);
}
.footer-inner {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ロゴ左・右側縦積みの2カラム */
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 30px;
}
/* 左：ロゴ */
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
/* 右：ページトップ・ナビ・ボタン・コピーライト縦積み */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
/* ページトップボタン：セクションとフッターの境界上に表示 */
.footer-pagetop-outer {
  display: flex;
  justify-content: flex-end;
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-50%);
}
#page-top {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .25s, color .25s;
}
#page-top:hover {
  background: var(--teal);
  color: #fff;
}
/* ナビ */
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color .2s;
  white-space: nowrap;
}
.footer-nav a:hover { 
  color: var(--teal);
}
.footer-nav-dot {
  display: none;
  font-size: 0.375rem;
  color: var(--teal);
  line-height: 1;
}
/* 予約ボタン */
.footer-btn-reserve {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--teal);
  color: #fff;
  font-size: 0.8125rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.08em;
  padding: 12px 45px;
  border-radius: 28px;
  text-decoration: none;
  transition: background .25s, transform .25s;
  white-space: nowrap;
  position: relative;
  min-width: 220px;
}
.footer-btn-reserve:hover {
  background: var(--teal-dark); 
  transform: translateY(-2px);
}

.footer-btn-reserve::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('./images/arrow.svg') center / contain no-repeat;
  filter: brightness(0) invert(1);
}
.footer-btn-reserve:hover { background: var(--teal-dark); }
/* コピーライト */
.footer-copy {
  font-size: 0.6875rem;
  color: var(--text-light);
  white-space: nowrap;
  margin-top: 10px;
  padding-left: 20px;
  margin-bottom: 30px;
  }



/* ============================================================
   スクロールフェードイン
   ============================================================ */
.js-fade-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .85s ease, transform .85s ease;
}
.js-fade-ready.d1 { transition-delay: .08s; }
.js-fade-ready.d2 { transition-delay: .16s; }
.js-fade-ready.d3 { transition-delay: .24s; }
.js-fade-ready.d4 { transition-delay: .32s; }
.js-fade-ready.is-visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   タブレット: min-width 768px
   ============================================================ */
@media (min-width: 768px) {

  html { scroll-padding-top: 90px; }

  .container { padding: 0 32px; }
  .container--narrow { padding: 0 32px; }

  .sec-title { font-size: 1.5rem; }

  /* ヘッダー */
  .header-inner { padding: 0 32px; height: 80px; }
  .logo img { height: 40px; max-width: 200px; }
  .hamburger { display: none; }
  .header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .header-nav-dot {
    font-size: 0.375rem;
    color: var(--teal);
    line-height: 1;
    pointer-events: none;
  }
  .header-nav a {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    padding: 5px 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color .2s;
  }
  .header-nav a:hover { color: var(--teal); }

  /* ヒーロー */
  .hero-inner {
    min-height: 520px;
  }
  .hero-text {
    padding: 0 40px 0 48px;
    max-width: 55%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    justify-content: center;
  }
  .hero-heading { font-size: 1.875rem; }

  /* About */
  #about {
    margin-top: 0px;
    padding: 80px 0;
  }
  .about-heading-wrap { margin-bottom: 60px; }
  .about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  /* スタッフ */
  #staff { padding: 80px 0; }
  .staff-text-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
  }
  .staff-photos { gap: 16px; }

  /* フィーチャー: タブレット以上で2×2グリッド＋中央縦横点線 */
  #feature { 
    padding: 0 0 96px 0;
  }
  .feature-heading-wrap {
    margin-bottom: 40px;
  }
  .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    margin-bottom: 48px;
    list-style: none;
  }
  /* li: 左パディングにテキストのインデント分(1.875rem + 0.75rem余白)を加算
     → 数字は margin-left で引き戻し、テキストのみインデントされた位置に揃える */
  .feature-list li {
    padding: 36px 48px 44px calc(48px + 2.625rem);
    margin-bottom: 0;
    display: block;
  }
  /* 横点線：上段（1・2番目）の下辺のみ */
  .feature-list li:nth-child(1),
  .feature-list li:nth-child(2) {
    background-image: linear-gradient(to right, #68A7BE 40%, transparent 50%);
    background-position: left bottom;
    background-size: 10px 2px;
    background-repeat: repeat-x;
  }
  /* 下段（3・4番目）はモバイルの点線をリセット */
  .feature-list li:nth-child(3),
  .feature-list li:nth-child(4) {
    background: none;
    margin-bottom: 0;
    padding-bottom: 44px;
  }
  /* 縦点線：左列（1・3番目）の::afterで各セルに描画
     top/bottomのinsetを固定値にすることでテキスト折り返しに左右されず常に等間隔になる */
  .feature-list li:nth-child(1),
  .feature-list li:nth-child(3) {
    position: relative;
  }
  .feature-list li:nth-child(1)::after,
  .feature-list li:nth-child(3)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background-image: linear-gradient(to bottom, #68A7BE 40%, transparent 50%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
  }
  /* span（数字）: margin-left で左に引き戻してliの左端（48px位置）に揃える */
  .feature-list li span {
    display: block;
    margin-left: -2.625rem;
    font-size: 1.6825rem;
    font-weight: 700;
    line-height: 1;
    color: var(--pink);
  }

  /* フォーム */
  #menu { padding: 80px 0; }

  /* CTA */
  #cta { padding: 56px 40px; }
  .cta-title { font-size: 1.3125rem; letter-spacing: 0.12em; }

  /* contact */
  #contact { padding: 80px 32px; }
  .contact-tel-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .contact-tel-group {
    align-items: flex-start;
    text-align: left;
  }
  .contact-btn-group {
    flex-direction: row;
    gap: 16px;
  }
  .btn-contact {
    width: 248px;
  }

  /* フロー */
  #flow { padding: 80px 0; }
  /* タブレット以上：item-mainを2段構造 */
  /* .flow-item-main {
    gap: 16px;
  } */
  /* 上段：番号＋タイトル横並び（そのまま） */
  /* 下段：テキスト＋ボタンを横並びに */
  .flow-row-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .flow-btn-wrap {
    flex-shrink: 0;
  }
  .flow-title { font-size: 1.0625rem; }

  /* FAQ */
  #faq { padding: 80px 0; }
  .faq-btn { padding: 22px 8px; gap: 20px; }
  .faq-q-text { font-size: 0.9375rem; }
  .faq-answer-inner { padding: 16px 32px 16px 11px; gap: 20px; }

  /* 声 */
  #voice { padding: 80px 0; }
  .voice-heading-wrap { margin-bottom: 100px; }
  .voice-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    align-items: center;
    padding: 32px 40px;
  }
  /* PC：横点線を非表示にして縦の点線に切り替え */
  .voice-name::after { display: none; }
  .voice-name {
    padding-bottom: 0;
    padding-right: 32px;
    /* 縦点線 */
    background-image: linear-gradient(to bottom, var(--pink) 40%, transparent 50%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
    background-position: right top;
  }
  .voice-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    align-items: center;
    padding: 32px 40px;
  }
  .voice-text { padding-top: 0; padding-left: 32px; }
  .voice-name { font-size: 1rem; }

  /* 自己紹介 */
  #intro { padding: 80px 0; }
  .intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
    margin-bottom: 90px;
  }
  .intro-photo {
    aspect-ratio: unset;
    height: 100%;
    width: 100%;
  }
  .intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .intro-name { font-size: 1.75rem; }
  .intro-greeting { padding: 80px 150px; }
  .intro-greeting-text { font-size: 0.875rem; }

  /* ご予約 */
  #reserve { padding: 80px 0; }
  .reserve-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .reserve-actions { flex-direction: row; }

  /* ブログ */
  #blog { padding: 80px 0; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }



  /* フッター */
  .footer-inner { padding: 0 32px; }
  .footer-pagetop-outer { padding: 0 32px; }
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-right {
    align-items: flex-end;
    width: auto;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px 10px;
  }
  .footer-nav-dot { display: inline; }
  .footer-nav a { font-size: 0.8125rem; }
  .footer-copy {
      text-align: right;
      padding: 0 40px 30px;
      max-width: 1650px;
      margin: auto;
  }
}


/* ============================================================
   PC: min-width 1025px
   ============================================================ */
@media (min-width: 1025px) {

  html { scroll-padding-top: 120px; }

  body { font-size: 1.0625rem; line-height: 1.85; }

  .btn-primary { font-size: 1.0625rem; }

  .sec-kicker {
    font-size: 18px;
  }
  .sec-title { 
    font-size: 34px;
    line-height: 1.3;
  }

  .container { max-width: 1280px; padding: 0 40px; }
  .container--narrow { max-width: 780px; padding: 0 40px; }

  /* ヘッダー */
  .header-inner {
    padding: 0 40px 0 max(40px, calc((100vw - 1650px) / 2 + 40px));
    height: auto;
    gap: 40px;
    align-items: stretch;
  }
  .logo {
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    align-self: center;
  }
  .logo img { 
    height: 80px;
    max-width: 500px;
  }
  /* 右ブロック：ナビ上・ボタン下 */
  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    flex: 1;
    padding: 14px 0;
    gap: 5px;
  }
  .header-right .btn-nav-reserve {
    padding: 13px 44px !important;
    font-size: 1.0625rem !important;
    border-radius: 28px !important;
    text-decoration: none !important;
  }
  .header-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }
  .header-nav-dot { display: inline-flex; align-items: center; font-size: 0.375rem; color: var(--teal); }
  .header-nav a:not(.btn-nav-reserve) { padding: 5px 14px; font-size: 1.125rem; }
  .header-inner > .btn-nav-reserve { display: none; } /* 旧対応を無効化 */

  /* ヒーロー: PC = 左右並列レイアウトに切り替え */
  .hero-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 792px;
    position: relative;
    width: 100%;
  }
  .hero-text {
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 2;
    flex: 0 0 42%;
    max-width: 42%;
    padding: 0 48px 80px max(40px, calc((100vw - 1650px) / 2 + 40px));
    justify-content: flex-end;
  }
  .hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 1600px;
    height: 792px;
    max-width: 1600px;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    z-index: 1;
  }
  .hero-photo .img-ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-heading {
    font-size: 3.375rem;
    white-space: nowrap;
    line-height: 1.5;
  }
  .hero-kicker { font-size: 0.8125rem; margin-bottom: 28px; }
  .hero-desc { max-width: 320px; font-size: 0.875rem; }

  /* About */
  #about { padding: 120px 0; }
  #feature { padding: 0 0 120px; }
  .feature-heading-wrap .sec-title { font-size: 1.875rem; }
  #about .container { max-width: 1650px; padding: 0 40px; }
  .about-heading-wrap { margin-bottom: 100px; }
  .about-cols { gap: 40px; align-items: stretch; }
  .about-photo-sub { width: 72%; }
  .about-photo-main {
    aspect-ratio: unset;
    height: 100%;
    border-radius: 4px;
  }
  .about-photo-main .img-ph,
  .about-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  /* スタッフ */
  #staff { padding: 96px 0; }
  .staff-text-cols { gap: 40px; margin-bottom: 48px; }
  .staff-photos { gap: 20px; }

  /* フォーム */
  #menu { padding: 120px 0; }
  .menu-heading-wrap { margin-bottom: 100px; }
  .menu-desc { text-align: center; }
  .price-row { font-size: 1.0625rem; }
  .price-val { font-size: 1.0625rem; }
  .price-area { font-size: 1.0625rem; }

  /* CTA */
  #cta { padding: 56px 40px; }

  /* contact */
  #contact { padding: 120px 40px; }
  #contact .container--narrow { padding: 64px 72px; }
  .contact-form-desc { font-size: 1.0625rem; }
  .contact-tel-label { font-size: 1.0625rem; }
  .contact-tel-hours { font-size: 1.0625rem; }
  .btn-contact { font-size: 1.0625rem; }
  .contact-label { font-size: 1.0625rem; }
  .contact-ctrl { font-size: 1.0625rem; }
  .contact-required-note { font-size: 1.0625rem; }
  .btn-contact-submit { font-size: 1.0625rem; }
  .contact-tel-number { font-size: 2.25rem; }

  /* フロー */
  #flow { padding: 120px 0; }
  .flow-heading-wrap { margin-bottom: 100px; }
  .flow-num { font-size: 30px; }
  .flow-title { font-size: 28px; }
  .flow-text { font-size: 1.0625rem; }
  .btn-flow { font-size: 1.0625rem; }

  /* FAQ */
  #faq { padding: 120px 0; }
  .faq-heading-wrap { margin-bottom: 100px; }
  .faq-q-text { font-size: 1.0625rem; }
  .faq-a-text { font-size: 0.9375rem; }

  /* 声 */
  #voice { padding: 120px 0; }
  .voice-row {
    padding: 36px 48px;
    align-items: stretch;
  }
  .voice-name {
    font-size: 21px;
    display: flex;
    align-items: center;
  }
  .voice-text { font-size: 17px; }

  /* 自己紹介 */
  #intro { padding: 120px 0 0; }
  .intro-heading-wrap { margin-bottom: 100px; }
  .intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .intro-list li { font-size: 1.0625rem; }
  .intro-hobby { font-size: 1.0625rem; }
  .intro-greeting-text { font-size: 1.0625rem; }
  .intro-greeting-title {
    font-size: 1.75rem;
  }

  /* ご予約 */
  #reserve { padding: 120px 0; }
  .reserve-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }

  /* ブログ */
  #blog { padding: 120px 0; }
  .blog-heading-wrap { margin-bottom: 100px; }
  .blog-grid { gap: 24px; }



  /* フッター */
  .footer-inner { padding: 0 40px; }
  .footer-pagetop-outer { padding: 0 40px; }
  .footer-logo img { height: 80px; }
  #page-top { 
    width: 100px;
    height: 100px;
  }
  #page-top svg {
    width: 42px;
    height: 42px;
  }
  #page-top svg path {
    stroke-width: 0.5;
  }
  .footer-nav a {
    font-size: 1.125rem;
  }
  .footer-btn-reserve {
    padding: 10px 46px !important;
    font-size: 1rem !important;
  }

  /* ページトップ */
}

/* ============================================================
   ブログ共通
   ============================================================ */
.breadcrumb-wrap { background: var(--white); }
.breadcrumb {
  max-width: 1280px; margin: 0 auto; padding: 16px 20px;
  font-size: 0.75rem; color: var(--text-light);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }
.page-hero {
  background: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url('./images/menu-bg.jpg') center center / cover no-repeat;
  padding: 56px 0 48px; text-align: center;
}
.page-hero .sec-kicker { margin-bottom: 6px; }
.page-hero .sec-title  { margin-bottom: 0; }

/* ============================================================
   ブログ一覧（blog-archive.html）
   ============================================================ */
.blog-list-section { background: var(--white); padding: 48px 0 80px; }
.blog-list-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.blog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.blog-filter-btn {
  padding: 6px 20px; border-radius: 20px; border: 1.5px solid var(--border); text-decoration: none;
  font-size: 0.875rem; font-family: "fot-tsukuardgothic-std", sans-serif;
  color: var(--text-mid); background: transparent; cursor: pointer;
  transition: all .2s; letter-spacing: 0.04em;
}
.blog-filter-btn:hover, .blog-filter-btn.is-active {
  background: var(--teal); border-color: var(--teal); color: #fff;
}
.blog-list-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
.blog-list-card {
  text-decoration: none; display: block; border-radius: 10px;
  background: var(--white); transition: opacity .3s;
}
.blog-list-card:hover { opacity: 0.75; }
.blog-list-thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: 10px; }
.blog-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-list-thumb .img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E4EEEE 0%, #D2E4E4 100%);
}
.blog-list-body { padding: 16px 0 8px; background: var(--white); }
.blog-list-date { font-size: 0.6875rem; color: var(--text-light); letter-spacing: 0.06em; margin-bottom: 8px; }
.blog-list-title { font-size: 1rem; font-weight: 500; color: var(--text); line-height: 1.7; margin-bottom: 10px; }
.blog-list-excerpt {
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.9;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; }
.blog-pager {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 0.875rem;
  text-decoration: none; color: var(--text-mid); border: 1.5px solid var(--border);
  transition: all .2s; font-family: "fot-tsukuardgothic-std", sans-serif;
}
.blog-pager:hover, .blog-pager.is-current { background: var(--teal); border-color: var(--teal); color: #fff; }
.blog-pager--arrow { color: var(--teal); }

/* ============================================================
   ブログ記事（blog.html）
   ============================================================ */
.post-section { background: var(--white); padding: 40px 0 80px; }
.post-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; gap: 48px;
}
.post-header { margin-bottom: 32px; }
.post-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.post-date { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; }
.post-cat {
  display: inline-block; background: var(--teal-light); color: var(--teal);
  font-size: 0.6875rem; padding: 3px 14px; border-radius: 12px;
}
.post-title {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.5625rem; font-weight: 700; color: var(--text); line-height: 1.6; letter-spacing: 0.04em;
}
.post-eyecatch { width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; margin-bottom: 36px; }
.post-eyecatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-eyecatch .img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E4EEEE 0%, #D2E4E4 100%);
}
.post-body { font-size: 0.9375rem; color: var(--text); line-height: 1.9; }
.post-body p { margin-bottom: 1.6em; }
.post-body h2 {
  font-family: "fot-tsukuardgothic-std", sans-serif; font-size: 1.3125rem; font-weight: 700;
  color: var(--text); padding: 12px 16px; border-left: 4px solid var(--teal);
  background: var(--cream); border-radius: 0 6px 6px 0; margin: 2em 0 1em; line-height: 1.5;
}
.post-body h3 {
  font-family: "fot-tsukuardgothic-std", sans-serif; font-size: 1.1875rem; font-weight: 700;
  color: var(--teal); border-bottom: 1px dashed var(--teal); padding-bottom: 8px; margin: 1.8em 0 0.8em;
}
.post-body ul { padding-left: 1.4em; margin-bottom: 1.6em; }
.post-body ul li { margin-bottom: 0.5em; }
.post-body .post-note {
  background: var(--beige); border-radius: 8px; padding: 20px 24px; margin: 1.6em 0; font-size: 0.875rem;
}
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.post-nav-link {
  text-decoration: none; padding: 16px; background: var(--cream);
  border-radius: 8px; transition: background .2s; display: flex; flex-direction: column; gap: 6px;
}
.post-nav-link:hover { background: var(--beige); }
.post-nav-link--prev { align-items: flex-start; }
.post-nav-link--next { align-items: flex-end; text-align: right; }
.post-nav-label { font-size: 0.875rem; color: var(--teal); letter-spacing: 0.1em; }
.post-nav-title {
  font-size: 0.875rem; color: var(--text); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
/* サイドバー */
.post-sidebar { display: flex; flex-direction: column; gap: 36px; }
.sidebar-widget-title {
  font-family: "fot-tsukuardgothic-std", sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--teal); letter-spacing: 0.1em; padding-bottom: 10px;
  border-bottom: 1px solid var(--border); margin-bottom: 16px;
}
.sidebar-cat-list { display: flex; flex-direction: column; }
.sidebar-cat-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px dashed var(--border);
  text-decoration: none; font-size: 0.875rem; color: var(--text-mid); transition: color .2s;
}
.sidebar-cat-item:hover { color: var(--teal); }
.sidebar-cat-count { font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   ブログ レスポンシブ
   ============================================================ */
@media (min-width: 768px) {
  .page-hero { padding: 72px 0 64px; }
  .breadcrumb { padding: 20px 32px; }
  .blog-list-inner { padding: 0 32px; }
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .blog-filter { gap: 10px; }
  .post-section { padding: 48px 0 96px; }
  .post-inner { padding: 0 32px; }
  .post-title { font-size: 1.6875rem; }
}
@media (min-width: 1025px) {
  .page-hero { padding: 96px 0 80px; }
  .breadcrumb { padding: 20px 40px; }
  .blog-list-inner { padding: 0 40px; }
  .blog-list-section { padding: 64px 0 96px; }
  .blog-list-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .post-section { padding: 56px 0 112px; }
  .post-inner { padding: 0 40px; flex-direction: row; align-items: flex-start; gap: 56px; }
  .post-main { flex: 1; min-width: 0; }
  .post-sidebar { width: 300px; flex-shrink: 0; }
  .post-title { font-size: 1.875rem; }
  .post-body { font-size: 1.0625rem; }
  .post-body .post-note { font-size: 1rem; }
  .blog-list-title { font-size: 1.0625rem; }
  .blog-list-excerpt { font-size: 0.875rem; }
  .blog-pager { font-size: 1rem; }
  .sidebar-widget-title { font-size: 1rem; }
}
/* ヘッダー内予約ボタン：モバイルでは非表示 */
/* ヘッダー予約ボタン：スマホのみ非表示 */
@media (max-width: 1024px) {
  #header .header-right .btn-nav-reserve,
  #header .header-inner > .btn-nav-reserve { display: none !important; }
}

/* ─── スクロール時コンパクト（PC） ─── */
@media (min-width: 1025px) {
  #header {
    transition: box-shadow .6s ease;
  }
  .logo img {
    transition: height .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .logo {
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .header-right {
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    flex: 1;
  }
  .header-right .btn-nav-reserve {
    display: inline-flex;
    padding: 10px 46px !important;
    font-size: 1rem !important;
    border-radius: 28px !important;
    text-decoration: none !important;
  }
  #header.is-scrolled .logo {
    padding-top: 0;
    padding-bottom: 0;
    align-self: center;
  }
  #header.is-scrolled .logo img {
    height: 80px;
  }
  #header.is-scrolled .header-right {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
/* ─── Webフォントちらつき防止 ─── */
.wf-loading body {
  opacity: 0;
}
.wf-active body,
.wf-inactive body {
  opacity: 1;
  transition: opacity .4s ease;
}

/* ─── ページロードアニメーション ─── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#header {
  animation: fadeIn 2s ease-out both;
}
.hero-text {
  animation: fadeIn 2.4s ease-out .5s both;
}
.hero-text.js-fade-ready,
.hero-text.js-fade-ready.is-visible {
  transform: none !important;
}
.hero-photo {
  animation: fadeIn 2.2s ease-out .2s both;
}
/* ============================================================
   スマホ専用調整（〜767px）
   ============================================================ */
@media (max-width: 767px) {

  /* ── 対象の方・対象エリアカード ── */
  .about-sub div {
    padding: 20px 24px;
  }

  /* ── 料金表 白カード ── */
  .menu-price-beige {
    padding: 40px 4%;
  }
  .price-block {
    padding: 24px 20px 28px;
  }

  /* 料金行：横並びを維持しつつ点線幅を安定させる */
  .price-row {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }
  .price-name {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .price-dots {
    flex: 1 1 20px;
    min-width: 20px;
    align-self: center;
    padding-top: 0;
  }
  .price-val {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .price-note-row {
    font-size: 0.75rem;
    margin-top: -8px;
  }

  /* 出張費・補助券ブロック */
  .price-extra-block {
    padding: 20px 20px 0;
  }

  /* ── お問い合わせ ── */
  #contact .container--narrow {
    padding: 40px 20px;
  }
  .contact-title {
    font-size: 1.5rem;
  }
  .btn-contact {
    width: 100%;
  }
}
/* ============================================================
   Contact Form 7 カスタマイズ
   ============================================================ */
/* 送信後メッセージ：中央揃え・1rem・枠線なし */
.wpcf7-response-output {
  font-size: 1rem;
  text-align: center;
  border: none !important;
  margin: 16px 0 0;
  padding: 0;
}
/* スピナー非表示 */
.wpcf7-spinner {
  display: none !important;
}
/* ============================================================
   reCAPTCHA バッジ非表示
   ============================================================ */
.grecaptcha-badge {
  visibility: hidden !important;
}
.recaptcha-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.625rem;
  color: var(--text-light);
}
.recaptcha-note a {
  color: var(--teal);
  transition: .3s;
}
.recaptcha-note a:hover {
  color: var(--teal-dark);
}