@charset "UTF-8";
/* =====================================================
   DRホテル サンプルサイト
   style.css

   デザイン：DESIGN-airbnb.md 準拠（日本人向けアレンジ）
   - 純白キャンバス（#fff）に墨色（#222）。アクセントは紅（#ff385c）一色のみ
   - 見出しは控えめなサイズ・ウェイト（写真が主役、文字は語りすぎない）
   - 角は柔らかく：ボタン8px・カード14px・検索バーは完全なピル形
   - 影は一段だけ（ホバー・検索バー・予約カードのみ）
   - 日本語主体。英語はロゴ等の最小限にとどめる

   【目次】
   1. 変数（デザイントークン）
   2. リセット・ベース
   3. 共通パーツ（ボタン・見出し・セクション）
   4. ヘッダー
   5. ヒーロー＋検索ピル
   6. 客室カード（photo-first）
   7. 評価（レーティング）セクション
   8. 滞在・館内施設
   9. 観光カード（4:5）
   10. お知らせ
   11. CTAバンド
   12. フッター（白・3カラム＋リーガル帯）
   13. 下層ページ共通
   14. 下層：各ページ固有
   15. フォーム
   16. レスポンシブ

   ※色・角丸・余白はすべて「1. 変数」で一元管理。
===================================================== */

/* -----------------------------------------------------
   1. 変数（デザイントークン）
----------------------------------------------------- */
:root {
  /* ブランド（紅は一点豪華主義。CTAと検索オーブのみ） */
  --primary:        #ff385c;
  --primary-active: #e00b41;

  /* テキスト */
  --ink:        #222222;
  --body:       #3f3f3f;
  --muted:      #6a6a6a;
  --muted-soft: #929292;

  /* サーフェス・罫線 */
  --canvas:         #ffffff;
  --surface-soft:   #f7f7f7;
  --surface-strong: #f2f2f2;
  --hairline:       #dddddd;
  --hairline-soft:  #ebebeb;

  /* 角丸（ハードコーナー禁止） */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* 影（系で唯一の一段だけ） */
  --shadow: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px 0, rgba(0,0,0,0.1) 0 4px 8px 0;

  /* フォント：Cereal代替＝Inter＋Noto Sans JP */
  --font: "Noto Sans JP", "Inter", -apple-system, system-ui, Roboto, "Helvetica Neue", sans-serif;
  --font-num: "Inter", "Noto Sans JP", sans-serif;

  /* 余白（マーケットプレイス密度：セクション64px） */
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-base: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-xxl: 48px;
  --sp-section: 64px;

  /* コンテンツ幅 */
  --w-content: 1280px;
  --w-narrow: 1080px;
}

/* -----------------------------------------------------
   2. リセット・ベース
----------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--canvas);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--ink);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

strong {
  font-weight: 600;
}

/* -----------------------------------------------------
   3. 共通パーツ
----------------------------------------------------- */

/* --- セクション共通（64px・密度高め） --- */
.section {
  padding: var(--sp-section) 0;
}

.section__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 40px;
}

/* 見出し：控えめなサイズが掟（写真に語らせる） */
.section__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.section__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--sp-xl);
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  border-radius: var(--r-sm);
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--canvas);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--surface-soft);
}

/* プライマリ（紅）。系で最も熱い色はここと検索オーブのみ */
.btn--solid {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn--solid:hover {
  background: var(--primary-active);
  border-color: var(--primary-active);
  color: #fff;
}

/* ピル型の小ボタン */
.btn--pill {
  border-radius: var(--r-full);
  min-height: 40px;
  padding: 10px 20px;
  font-size: 14px;
}

/* テキストリンク（下線つき三次ボタン） */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--primary);
}

/* -----------------------------------------------------
   4. ヘッダー（白・80px・下罫線のみ）
----------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
}

.header__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ：紅のワードマーク（英語はここだけ控えめに） */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  line-height: 1.2;
}

.logo__sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ナビ（中央・墨色、現在地は下線） */
.gnav__list {
  display: flex;
  gap: 4px;
}

.gnav__list a {
  display: block;
  white-space: nowrap;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-full);
  transition: color 0.2s, background 0.2s;
}

.gnav__list a:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.gnav__list a.is-current {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}

.gnav__list a.is-current::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ヘッダー右：予約CTA */
.header__cta {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--r-full);
}

/* スマホ用メニューボタン（円形＝機能ボタンの掟） */
.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header__menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.header__menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------------
   5. ヒーロー＋検索ピル
----------------------------------------------------- */
.hero {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 24px 40px 0;
}

/* 写真は角丸14pxで額装（Airbnbのカード作法をヒーローにも） */
.hero__photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  /* メイン写真：images/hero.jpg（横長 2400×1200px） */
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--surface-strong);
}

.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
}

.hero__copy {
  position: relative;
  padding: 40px 48px;
  color: #fff;
}

.hero__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  margin-bottom: 6px;
}

.hero__sub {
  font-size: 15px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* 検索ピル：白いピル＋紅のオーブ。ページ随一の見せ場 */
.search-pill {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: -32px auto 0;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 0;
}

.search-pill__seg {
  flex: 1;
  padding: 8px 28px;
  line-height: 1.4;
  cursor: pointer;
  border-radius: var(--r-full);
  transition: background 0.2s;
}

.search-pill__seg:hover {
  background: var(--surface-soft);
}

.search-pill__seg + .search-pill__seg {
  border-left: 1px solid var(--hairline);
}

.search-pill__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.search-pill__value {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

/* 紅の円形オーブ（48px）。最も熱い一点 */
.search-pill__orb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.search-pill__orb:hover {
  background: var(--primary-active);
}

.search-pill__orb svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* -----------------------------------------------------
   6. 客室カード（photo-first・角丸14px）
----------------------------------------------------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-base);
}

.room-card {
  display: block;
  border-radius: var(--r-md);
  transition: transform 0.2s;
}

.room-card:hover {
  transform: translateY(-2px);
}

.room-card__photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 10px;
}

.room-card__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--surface-strong);
  transition: transform 0.3s;
}

.room-card:hover .room-card__photo img {
  transform: scale(1.04);
}

/* 写真上の白ピルバッジ（系で唯一影をまとう小物） */
.room-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--canvas);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.room-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.room-card__meta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.room-card__price {
  font-size: 14px;
  color: var(--ink);
  margin-top: 2px;
}

.room-card__price strong {
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 600;
}

.room-card__price small {
  color: var(--muted);
  font-weight: 400;
}

/* -----------------------------------------------------
   7. 評価（レーティング）セクション
   ※系で唯一、文字が大声を出してよい場所（64px）
----------------------------------------------------- */
.rating-band {
  text-align: center;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.rating-band__score {
  font-family: var(--font-num);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
}

.rating-band__laurel {
  font-size: 24px;
  vertical-align: 18px;
  margin: 0 10px;
}

.rating-band__caption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: var(--sp-xl);
}

/* 口コミ2カラム */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl) var(--sp-xxl);
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  object-fit: cover;
  background: var(--surface-strong);
}

.review__name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.review__date {
  font-size: 13px;
  color: var(--muted);
}

.review__stars {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.review__text {
  font-size: 14px;
  color: var(--body);
}

/* -----------------------------------------------------
   8. 滞在・館内施設
----------------------------------------------------- */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-base);
}

.stay-card {
  display: block;
  border-radius: var(--r-md);
}

.stay-card__photo {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 10px;
}

.stay-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--surface-strong);
  transition: transform 0.3s;
}

.stay-card:hover .stay-card__photo img {
  transform: scale(1.04);
}

.stay-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.stay-card__text {
  font-size: 14px;
  color: var(--muted);
}

/* 設備・アメニティ行（amenity-row） */
.amenity-list {
  max-width: 720px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 8px 0;
  margin: 0 auto;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  font-size: 16px;
  color: var(--ink);
}

.amenity-list li + li {
  border-top: 1px solid var(--hairline-soft);
}

.amenity-list .icon {
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

/* -----------------------------------------------------
   9. 観光カード（4:5・experience-card）
----------------------------------------------------- */
.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-base);
}

.spot-card {
  display: block;
  border-radius: var(--r-md);
}

.spot-card__photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 10px;
}

.spot-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--surface-strong);
  transition: transform 0.3s;
}

.spot-card:hover .spot-card__photo img {
  transform: scale(1.04);
}

.spot-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--canvas);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.spot-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.spot-card__text {
  font-size: 14px;
  color: var(--muted);
}

/* -----------------------------------------------------
   10. お知らせ
----------------------------------------------------- */
.news-list {
  max-width: 860px;
  margin: 0 auto;
}

.news-list li + li {
  border-top: 1px solid var(--hairline-soft);
}

.news-list a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 8px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}

.news-list a:hover {
  background: var(--surface-soft);
}

.news-list__date {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
  width: 96px;
}

.news-list__cat {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface-strong);
  border-radius: var(--r-full);
  padding: 2px 12px;
}

.news-list__title {
  font-size: 14px;
  color: var(--body);
}

/* -----------------------------------------------------
   11. CTAバンド（白地・控えめ。紅はボタンだけ）
----------------------------------------------------- */
.cta-band {
  background: var(--surface-soft);
  padding: var(--sp-section) 40px;
  text-align: center;
}

.cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 8px;
}

.cta-band__text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--sp-lg);
}

.cta-band__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-band__tel {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.cta-band__tel strong {
  font-family: var(--font-num);
  font-size: 16px;
  color: var(--ink);
}

/* -----------------------------------------------------
   12. フッター（白・3カラム＋リーガル帯）
----------------------------------------------------- */
.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline-soft);
  padding: var(--sp-xxl) 0 0;
}

.footer__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 40px var(--sp-xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-lg);
}

.footer__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.footer__address {
  font-size: 13px;
  line-height: 1.9;
  color: var(--body);
}

.footer__head {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.footer__nav li {
  margin-bottom: 8px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--ink);
}

.footer__nav a:hover {
  text-decoration: underline;
}

/* リーガル帯 */
.footer__legal {
  border-top: 1px solid var(--hairline-soft);
  padding: 18px 40px;
  max-width: var(--w-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: var(--muted);
}

.footer__legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* -----------------------------------------------------
   13. 下層ページ共通
----------------------------------------------------- */
.page-header {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 40px 40px 8px;
}

.page-header__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.43;
  color: var(--ink);
}

.page-header__sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* パンくず */
.breadcrumb {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 16px 40px 0;
  font-size: 13px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li + li::before {
  content: "\203A";
  margin: 0 8px;
  color: var(--muted-soft);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.breadcrumb li {
  color: var(--body);
}

/* 下層用の中見出し（控えめ21px/600） */
.heading-2 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: var(--sp-base);
}

/* -----------------------------------------------------
   14. 下層：各ページ固有
----------------------------------------------------- */

/* --- 客室詳細（写真＋予約レール風の2カラム） --- */
.room-detail {
  display: flex;
  gap: var(--sp-xl);
  align-items: flex-start;
  padding: var(--sp-xl) 0;
}

.room-detail + .room-detail {
  border-top: 1px solid var(--hairline-soft);
}

.room-detail__photo {
  width: 46%;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}

.room-detail__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--surface-strong);
}

.room-detail__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 4px;
}

.room-detail__meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}

.room-detail__text {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 14px;
}

.room-detail__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.room-detail__amenities li {
  font-size: 13px;
  color: var(--body);
  background: var(--surface-soft);
  border-radius: var(--r-full);
  padding: 4px 14px;
}

.room-detail__price {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.room-detail__price strong {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

/* --- 滞在案内：時間表など --- */
.info-table {
  width: 100%;
  max-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table th,
.info-table td {
  border-bottom: 1px solid var(--hairline-soft);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  color: var(--muted);
  font-weight: 500;
  width: 30%;
  white-space: nowrap;
}

/* 案内ボックス */
.notice-box {
  background: var(--surface-soft);
  border-radius: var(--r-md);
  padding: 20px 26px;
  font-size: 14px;
  color: var(--body);
}

.notice-box__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

/* --- アクセス --- */
.map-frame {
  margin-top: var(--sp-base);
  border-radius: var(--r-md);
  background: var(--surface-soft);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* --- FAQ --- */
.faq-group {
  margin-bottom: var(--sp-xxl);
}

.faq-item {
  border-bottom: 1px solid var(--hairline-soft);
}

.faq-item__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 44px 18px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 14px;
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
}

.faq-item[open] .faq-item__q::after {
  content: "\2212";
}

.faq-item__a {
  padding: 0 4px 18px;
  font-size: 14px;
  color: var(--body);
}

/* -----------------------------------------------------
   15. フォーム
----------------------------------------------------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-base);
  margin-bottom: var(--sp-xxl);
}

.contact-method {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-method__text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.contact-method__tel {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  padding: 14px 0;
}

.form-row__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-required,
.form-optional {
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--r-full);
  padding: 1px 10px;
}

.form-required {
  color: #fff;
  background: var(--primary);
}

.form-optional {
  color: var(--muted);
  background: var(--surface-strong);
}

.form-row__field input[type="text"],
.form-row__field input[type="email"],
.form-row__field input[type="tel"],
.form-row__field input[type="date"],
.form-row__field select,
.form-row__field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  padding: 14px 12px;
  min-height: 56px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row__field input::placeholder,
.form-row__field textarea::placeholder {
  color: var(--muted-soft);
}

/* フォーカスは墨色2px。光らせない（Airbnbの掟） */
.form-row__field input:focus,
.form-row__field select:focus,
.form-row__field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.form-row__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23222222' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row__field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* 2カラムの行（日付・人数など） */
.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-base);
}

.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-checks label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  padding: 8px 18px;
  cursor: pointer;
  color: var(--body);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.form-checks label:hover {
  border-color: var(--ink);
}

.form-checks label:has(input:checked) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.form-checks input[type="checkbox"] {
  accent-color: #fff;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.form-agree {
  text-align: center;
  font-size: 13px;
  margin: 24px 0 18px;
}

.form-agree a {
  text-decoration: underline;
}

.form-agree input[type="checkbox"] {
  accent-color: var(--primary);
  margin-right: 8px;
}

.form-submit {
  text-align: center;
}

.form-submit .btn {
  min-width: 300px;
  font-size: 16px;
}

/* -----------------------------------------------------
   16. レスポンシブ
----------------------------------------------------- */

/* === タブレット（〜1128px） === */
@media (max-width: 1128px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stay-grid,
  .spot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === ナビ折りたたみ（〜1024px） === */
@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .gnav {
    display: none;
    position: fixed;
    inset: 80px 0 0 0;
    background: var(--canvas);
    z-index: 99;
    border-top: 1px solid var(--hairline-soft);
    overflow-y: auto;
  }

  .gnav.is-open {
    display: block;
  }

  .gnav__list {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 24px;
  }

  .gnav__list a {
    padding: 16px 4px;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--hairline-soft);
  }

  .gnav__list a.is-current::after {
    content: none;
  }
}

/* === スマホ（〜744px・Airbnbの公称ブレークポイント） === */
@media (max-width: 744px) {
  html {
    scroll-padding-top: 84px;
  }

  .header__inner {
    padding: 0 20px;
    height: 64px;
  }

  .gnav {
    inset: 64px 0 0 0;
  }

  .logo__name {
    font-size: 17px;
  }

  /* --- ヒーロー＋検索ピル --- */
  .hero {
    padding: 12px 16px 0;
  }

  .hero__photo {
    min-height: 380px;
  }

  .hero__copy {
    padding: 24px 22px;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero__sub {
    font-size: 13px;
  }

  /* 検索ピルは縦積みの丸角カードに変形 */
  .search-pill {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--r-md);
    padding: 8px;
    margin: -24px 16px 0;
  }

  .search-pill__seg {
    padding: 10px 16px;
    border-radius: var(--r-sm);
  }

  .search-pill__seg + .search-pill__seg {
    border-left: none;
    border-top: 1px solid var(--hairline-soft);
  }

  .search-pill__orb {
    width: 100%;
    border-radius: var(--r-sm);
    margin-top: 4px;
  }

  /* --- セクション --- */
  .section {
    padding: 48px 0;
  }

  .section__inner {
    padding: 0 20px;
  }

  .section__title {
    font-size: 22px;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .stay-grid,
  .spot-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .rating-band__score {
    font-size: 52px;
  }

  /* --- 下層 --- */
  .page-header {
    padding: 24px 20px 4px;
  }

  .page-header__title {
    font-size: 23px;
  }

  .breadcrumb {
    padding: 12px 20px 0;
  }

  .room-detail {
    flex-direction: column;
  }

  .room-detail__photo {
    width: 100%;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .form-row--half {
    grid-template-columns: 1fr;
  }

  .form-submit .btn {
    min-width: 0;
    width: 100%;
  }

  .cta-band {
    padding: 48px 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
    padding: 0 20px var(--sp-lg);
  }

  .footer__legal {
    padding: 16px 20px;
    flex-direction: column;
  }
}
