/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .suncity-btn (--primary/--ghost/--ghost-dark/--lg/--full) - フラットな長方形ボタン（角丸なし）
 * .suncity-script (--lg)        - 暗背景上の手書き風(Cormorant italic)スクリプト見出し
 * .suncity-textlink             - Cormorant英字の下線テキストリンク（VIEW ALL等）
 * .suncity-eyebrow (__en/__ja)  - 左寄せ大型英字＋線付き日本語ラベルのセクション見出し
 * .suncity-section (--sm)       - 流動的な上下左右paddingのセクション枠
 * .suncity-wrap (--1100〜880)   - 中央寄せ最大幅ラッパー（デザインの各最大幅に対応）
 * .suncity-header (__inner/__logo/__nav/__link/__cta) - 半透明スティッキーヘッダー
 * .suncity-hero (__bg/__slide/__overlay/__inner/__script/__title/__lead/__btns/__vtext) - MVクロスフェード
 * .suncity-secthead             - 見出しと右側テキストリンクの両端揃え
 * .suncity-strip (__cell/__icon/__label/__sub) - 全幅3分割の写真ストリップ
 * .suncity-numgrid / .suncity-numcard (__num/__title/__text) - 上線＋番号の特徴カード
 * .suncity-photo (--4-5)        - aspect比固定の背景写真ブロック
 * .suncity-figure (__badge)     - 写真＋重なりバッジ
 * .suncity-gallery              - 写真グリッド
 * .suncity-cta (__inner/__lead/__desc/__btns) - 暗背景の予約CTA
 * .suncity-faq (__item/__q/__qlabel/__mark/__a) - native details のFAQ
 * .suncity-map (__note) / .suncity-addr        - Google Map埋め込み
 * .suncity-pagehero (__inner/__script/__title/__lead) - 下層ページ深緑ヒーロー
 * .suncity-movie (__play/__note) - 動画プレースホルダー枠
 * .suncity-amenity (__cell/__icon/__title/__sub/__note) - 設備アイコングリッド
 * .suncity-facts (__row/__label/__value) - 行リスト（所要時間等）
 * .suncity-spec (__row/__label/__value)  - 仕様グリッド（宿泊情報）
 * .suncity-platforms / .suncity-platform (__label/__title/__text) - 予約サイトカード
 * .suncity-banner               - 全幅写真バンド
 * .suncity-footer (各__要素)     - フッター
 * .sc-reveal                    - スクロールフェードイン
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * - 構造不足：左寄せ大型英字＋線付き日本語ラベルの見出し（heading系に該当なし）→ .suncity-eyebrow
 * - 構造不足：MVのCSSクロスフェード＋左寄せテキスト＋縦書き装飾（mv-kenbursは中央寄せ前提）→ .suncity-hero
 * - 値の粒度不足：clamp()による流動的なpadding/最大幅（.section/.containerは固定値＋BP）→ .suncity-section/.suncity-wrap
 * - 装飾パターン不足：角丸なしのフラット長方形ボタン（.btnは radius:10px 前提）→ .suncity-btn
 * - 構造不足：1pxギャップで罫線を見せる設備アイコングリッド → .suncity-amenity
 */

/* ---- base 微調整（デザインに合わせる）---- */
body { line-height: 1.95; }
main { display: block; }

/* ============================================================
   ボタン
   ============================================================ */
.suncity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.suncity-btn .font-en { font-size: 1.1em; }
.suncity-btn--lg { padding: 18px 34px; font-size: 1.6rem; }
.suncity-btn--full { width: 100%; }
.suncity-btn--primary { background: #E71E2C; color: #fff; }
.suncity-btn--primary:hover { background: #C2161F; transform: translateY(-2px); }
.suncity-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(238, 243, 233, 0.4);
}
.suncity-btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }
.suncity-btn--ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(242, 245, 238, 0.45);
}
.suncity-btn--ghost-dark:hover { background: rgba(242, 245, 238, 0.1); }

/* ============================================================
   テキスト装飾（スクリプト見出し / テキストリンク / アイブロウ）
   ============================================================ */
.suncity-script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  letter-spacing: 0.06em;
  color: #A9C7A6;
  line-height: 1.1;
}
.suncity-script--lg { font-size: clamp(2.8rem, 4vw, 4.6rem); }

.suncity-textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: #112A13;
  padding-bottom: 4px;
  border-bottom: 1px solid #112A13;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.suncity-textlink:hover { color: #3D6B47; border-color: #3D6B47; }

.suncity-eyebrow { display: block; }
.suncity-eyebrow__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #112A13;
}
.suncity-eyebrow__ja {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 14px;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: #3D6B47;
}
.suncity-eyebrow__ja::before {
  content: "";
  width: 26px;
  height: 1px;
  background: #3D6B47;
}

/* ============================================================
   セクション枠 / ラッパー
   ============================================================ */
.suncity-section { padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 72px); }
.suncity-section--sm { padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 72px); }
.suncity-section--bottomtight { padding-bottom: clamp(40px, 5vw, 72px); }
.suncity-bg-pale { background: #F2F5EE; }
.suncity-bg-body { background: #FBFBF8; }

.suncity-wrap { max-width: 1200px; margin: 0 auto; }
.suncity-wrap--1100 { max-width: 1100px; }
.suncity-wrap--1000 { max-width: 1000px; }
.suncity-wrap--980 { max-width: 980px; }
.suncity-wrap--920 { max-width: 920px; }
.suncity-wrap--880 { max-width: 880px; }

.suncity-secthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 52px);
}
.suncity-lead { color: #46554A; font-size: 1.55rem; line-height: 2.05; }
.suncity-lead + .suncity-lead { margin-top: 18px; }

/* ============================================================
   ヘッダー
   ============================================================ */
.suncity-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 251, 248, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid #DDE3D8;
  transition: box-shadow 0.3s ease;
}
.suncity-header.is-scrolled { box-shadow: 0 6px 24px rgba(17, 42, 19, 0.08); }
.suncity-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
}
.suncity-header__logo { display: flex; align-items: center; padding: 11px 0; }
.suncity-header__logo img { height: 58px; width: auto; }
.suncity-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  flex-wrap: wrap;
}
.suncity-header__link {
  position: relative;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #1E2A20;
  padding-bottom: 6px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.suncity-header__link:hover { color: #3D6B47; }
.suncity-header__link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #3D6B47;
}
.suncity-header__cta {
  background: #E71E2C;
  color: #fff;
  padding: 11px 22px;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.suncity-header__cta:hover { background: #C2161F; }

@media (max-width: 1100px) {
  .suncity-header__nav { display: none; }
}

/* ============================================================
   メインビュー（MV）
   ============================================================ */
.suncity-hero {
  position: relative;
  height: clamp(560px, 86vh, 820px);
  overflow: hidden;
  background: #0C1F0E;
  color: #fff;
}
.suncity-hero__bg { position: absolute; inset: 0; }
.suncity-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: scHeroFade 24s infinite, scKenburns 26s ease-in-out infinite alternate;
}
.suncity-hero__slide:nth-child(1) { animation-delay: 0s, 0s; }
.suncity-hero__slide:nth-child(2) { animation-delay: 8s, 0s; }
.suncity-hero__slide:nth-child(3) { animation-delay: 16s, 0s; }
@keyframes scHeroFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes scKenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.09); }
}
.suncity-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(7, 18, 9, 0.82) 0%, rgba(7, 18, 9, 0.4) 54%, rgba(7, 18, 9, 0.08) 100%);
}
.suncity-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.suncity-hero__script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
  letter-spacing: 0.26em;
  color: #A9C7A6;
  margin-bottom: 24px;
}
.suncity-hero__title {
  font-weight: 600;
  font-size: clamp(3rem, 5.4vw, 6.2rem);
  line-height: 1.42;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 30px rgba(6, 14, 7, 0.45);
}
.suncity-hero__lead {
  margin-top: 28px;
  max-width: 680px;
  font-size: clamp(1.45rem, 1.7vw, 1.8rem);
  line-height: 2.05;
  color: rgba(238, 243, 233, 0.92);
  letter-spacing: 0.02em;
}
.suncity-hero__btns {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.suncity-hero__btns .suncity-btn { min-width: 230px; }
.suncity-hero__vtext {
  position: absolute;
  right: clamp(14px, 3vw, 40px);
  bottom: clamp(26px, 6vh, 60px);
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  color: rgba(238, 243, 233, 0.55);
}

/* ============================================================
   施設紹介（写真＋重なりバッジ）
   ============================================================ */
.suncity-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.suncity-photo--4-5 { aspect-ratio: 4 / 5; }
.suncity-figure { position: relative; }
.suncity-figure__badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #112A13;
  color: #F2F5EE;
  padding: 20px 24px;
  line-height: 1.4;
}
.suncity-figure__badge .suncity-figure__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.24em;
  color: #A9C7A6;
}
.suncity-figure__badge strong {
  display: block;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin-top: 4px;
}
.suncity-h2 {
  font-size: clamp(2.1rem, 2.6vw, 3rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #112A13;
}

/* ============================================================
   2カラム（写真＋テキスト）
   ============================================================ */
.suncity-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.suncity-split--tight { gap: clamp(28px, 4vw, 60px); }
.suncity-split__cap {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #3D6B47;
}
.suncity-split__h2 { margin: 8px 0 14px; font-size: clamp(2rem, 2.4vw, 2.7rem); font-weight: 600; color: #112A13; }
.suncity-split__text { color: #46554A; font-size: 1.5rem; line-height: 2; }
.suncity-room-row { margin-bottom: clamp(40px, 5vw, 78px); }
.suncity-room-row:last-child { margin-bottom: 0; }
/* スマホ時は画像→説明文の並びで統一（DOM順が逆の行も画像を先頭に） */
@media (max-width: 768px) {
  .suncity-room-row { grid-template-columns: 1fr; }
  .suncity-room-row .suncity-photo { order: -1; }
}

/* ============================================================
   全幅3分割の写真ストリップ
   ============================================================ */
.suncity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.suncity-strip__cell {
  position: relative;
  min-height: clamp(220px, 24vw, 320px);
  background-size: cover;
  background-position: center;
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  color: #fff;
}
.suncity-strip__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 20, 10, 0.2), rgba(8, 20, 10, 0.74));
}
.suncity-strip__icon, .suncity-strip__body { position: relative; z-index: 1; }
.suncity-strip__label { font-size: clamp(1.6rem, 1.8vw, 1.9rem); font-weight: 600; letter-spacing: 0.03em; }
.suncity-strip__sub { font-size: 1.35rem; color: rgba(238, 243, 233, 0.9); margin-top: 3px; }
@media (max-width: 768px) {
  .suncity-strip { grid-template-columns: 1fr; }
  .br-pc { display: none; }
}

/* ============================================================
   特徴カード（上線＋番号）
   ============================================================ */
.suncity-numgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 3vw, 52px);
}
.suncity-numcard { border-top: 2px solid #112A13; padding-top: 24px; }
.suncity-numcard__num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 4.6rem;
  line-height: 0.9;
  color: #3D6B47;
}
.suncity-numcard__title {
  margin: 16px 0 12px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  color: #112A13;
}
.suncity-numcard--sm .suncity-numcard__title { font-size: 1.7rem; margin-top: 0; }
.suncity-numcard__text { font-size: 1.45rem; color: #46554A; line-height: 1.95; }

/* ============================================================
   ギャラリー
   ============================================================ */
.suncity-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

/* ============================================================
   暗背景 予約CTA
   ============================================================ */
.suncity-cta {
  background: #0C1F0E;
  color: #F2F5EE;
  padding: clamp(56px, 7vw, 98px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.suncity-cta__inner { max-width: 980px; margin: 0 auto; position: relative; z-index: 1; }
.suncity-cta__lead {
  margin: 16px auto 8px;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  color: #fff;
  letter-spacing: 0.02em;
}
.suncity-cta__desc {
  margin: 0 auto clamp(32px, 4vw, 42px);
  max-width: 640px;
  font-size: 1.45rem;
  color: #B9C7B6;
  line-height: 2;
}
.suncity-cta__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.suncity-cta__btns .suncity-btn { min-width: 260px; }

/* ============================================================
   FAQ（native details）
   ============================================================ */
.suncity-faq { border-top: 1px solid #DDE3D8; }
.suncity-faq__item { border-bottom: 1px solid #DDE3D8; }
.suncity-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  color: #1E2A20;
  list-style: none;
}
.suncity-faq__q::-webkit-details-marker { display: none; }
.suncity-faq__qlabel { display: flex; gap: 14px; align-items: baseline; line-height: 1.6; }
.suncity-faq__qlabel::before {
  content: "Q";
  font-family: "Cormorant Garamond", serif;
  color: #3D6B47;
  font-size: 1.8rem;
}
.suncity-faq__mark { color: #3D6B47; font-size: 2.2rem; flex: none; line-height: 1; }
.suncity-faq__mark::before { content: "+"; }
.suncity-faq__item[open] .suncity-faq__mark::before { content: "\2212"; }
.suncity-faq__a {
  padding: 0 4px 24px 38px;
  color: #5A6B5C;
  font-size: 1.45rem;
  line-height: 1.95;
}

/* ============================================================
   地図 / 住所
   ============================================================ */
.suncity-addr { font-size: 1.45rem; color: #46554A; margin-bottom: 22px; letter-spacing: 0.03em; }
.suncity-map iframe {
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  border: 0;
  display: block;
  filter: saturate(0.9);
}
.suncity-map--tall iframe { height: clamp(340px, 46vw, 520px); }
.suncity-map__note { margin-top: 14px; font-size: 1.3rem; color: #5A6B5C; }

/* ============================================================
   下層ページヒーロー
   ============================================================ */
.suncity-pagehero {
  background: #112A13;
  color: #F2F5EE;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}
.suncity-pagehero__inner { max-width: 1200px; margin: 0 auto; }
.suncity-pagehero__script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  letter-spacing: 0.24em;
  color: #A9C7A6;
}
.suncity-pagehero__title {
  margin: 14px 0 16px;
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.suncity-pagehero__lead { max-width: 660px; font-size: 1.5rem; line-height: 2; color: #C6D4C3; }

/* 全幅写真バンド */
.suncity-banner {
  width: 100%;
  height: clamp(260px, 36vw, 460px);
  background-size: cover;
  background-position: center;
}

/* ============================================================
   動画プレースホルダー
   ============================================================ */
.suncity-movie {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0C1F0E;
  overflow: hidden;
}
.suncity-movie__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.suncity-movie__bg::after { content: ""; position: absolute; inset: 0; background: rgba(8, 20, 10, 0.55); }
.suncity-movie__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
}
.suncity-movie__play {
  display: grid;
  place-content: center;
  width: 74px;
  height: 74px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}
.suncity-movie__play svg { margin-left: 4px; }
.suncity-movie__note { font-size: 1.4rem; letter-spacing: 0.12em; color: rgba(238, 243, 233, 0.9); }

/* ============================================================
   設備アイコングリッド
   ============================================================ */
.suncity-amenity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #DDE3D8;
  border: 1px solid #DDE3D8;
}
.suncity-amenity__cell { background: #FBFBF8; padding: 30px 26px; }
.suncity-amenity__title { margin-top: 16px; font-size: 1.6rem; font-weight: 600; color: #112A13; }
.suncity-amenity__sub { font-size: 1.35rem; color: #5A6B5C; margin-top: 4px; }
.suncity-amenity__note { margin-top: 22px; font-size: 1.35rem; color: #5A6B5C; letter-spacing: 0.02em; }
@media (max-width: 768px) { .suncity-amenity { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .suncity-amenity { grid-template-columns: 1fr; } }

/* ============================================================
   行リスト（所要時間など）
   ============================================================ */
.suncity-facts { border-top: 1px solid #DDE3D8; }
.suncity-facts__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid #DDE3D8;
}
.suncity-facts__label { font-size: clamp(1.5rem, 1.8vw, 1.8rem); color: #112A13; }
.suncity-facts__value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: #3D6B47;
  white-space: nowrap;
}

/* 仕様グリッド（宿泊情報） */
.suncity-spec { border-top: 1px solid #DDE3D8; }
.suncity-spec__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid #DDE3D8;
}
.suncity-spec__label { font-size: 1.4rem; color: #3D6B47; letter-spacing: 0.08em; }
.suncity-spec__value { font-size: 1.55rem; color: #112A13; }
@media (max-width: 560px) {
  .suncity-spec__row { grid-template-columns: 100px 1fr; gap: 12px; }
}

/* ============================================================
   予約サイトカード
   ============================================================ */
.suncity-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}
.suncity-platform {
  border: 1px solid #DDE3D8;
  background: #fff;
  padding: clamp(30px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.suncity-platform__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: #3D6B47;
}
.suncity-platform__title { margin: 10px 0 12px; font-size: clamp(2.2rem, 2.6vw, 2.8rem); font-weight: 600; color: #112A13; }
.suncity-platform__text { font-size: 1.45rem; color: #46554A; line-height: 1.95; flex: 1; }
.suncity-platform .suncity-btn { margin-top: 24px; padding: 16px 28px; font-size: 1.6rem; }

/* ============================================================
   フッター
   ============================================================ */
.suncity-footer { background: #0A1A0C; color: #9FB29C; }
.suncity-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(52px, 6vw, 78px) clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(28px, 3vw, 40px);
}
.suncity-footer__logo {
  display: inline-block;
  background: #fff;
  padding: 12px 16px;
  border-radius: 2px;
}
.suncity-footer__logo img { width: auto; height: auto; max-width: 100%; max-height: 62px; }
.suncity-footer__brand { margin-top: 14px; font-size: 1.05rem; letter-spacing: 0.3em; color: #7E927B; }
.suncity-footer__address { font-style: normal; margin-top: 20px; font-size: 1.35rem; line-height: 2; letter-spacing: 0.02em; white-space: nowrap; }
.suncity-footer__company { margin-top: 14px; font-size: 1.2rem; color: #7E927B; }
.suncity-footer__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: #E8EEE2;
  margin-bottom: 16px;
}
.suncity-footer__nav { display: flex; flex-direction: column; gap: 12px; font-size: 1.4rem; }
.suncity-footer__nav a { color: #9FB29C; transition: color 0.3s ease; }
.suncity-footer__nav a:hover { color: #fff; }
.suncity-footer__map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  display: block;
  filter: saturate(0.85) brightness(0.92);
}
.suncity-footer__maplink { display: inline-block; margin-top: 12px; font-size: 1.3rem; color: #9FB29C; transition: color 0.3s ease; }
.suncity-footer__maplink:hover { color: #fff; }
.suncity-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.suncity-footer__copy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 72px);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #6B7E68;
}

/* ============================================================
   スクロールフェードイン
   ============================================================ */
.sc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sc-reveal.is-visible { opacity: 1; transform: none; }

/* SPナビ展開中の背景スクロール抑止 */
body.is-nav-open { overflow: hidden; }
