/************************************
  LP base
*************************************/
:root {
  /* フォント */
  --text-en: "Cormorant Garamond", serif;
  --text-ja: "Shippori Mincho", serif;
  --text-en-l: 300;
  --text-ja-r: 400;

  /* カラーやレイアウト変数 */
  --lp-hero-image: url("/wp-content/themes/solana-resort-theme/images/lp/mv.webp");
  --lp-maxw: 1240px;
  --lp-white: #fff;
  --lp-black: #322505;
  --lp-yellow: #d8a939;

  /* ヒーロー内の「下端揃え」用パディング（PC時のテキスト下余白） */
  --hero-pb: 80px;
}

html,
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* すべての a タグのデフォルトスタイルをリセット */
a {
  color: inherit;
  text-decoration: none;
}

/* hover した時の下線も無効化（必要に応じて） */
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

.mini-br {
  display: none;
}

@media screen and (max-width: 840px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

@media screen and (max-width:540px) {
  .mini-br {
  display: block;
}
}

/* bodyクラスに合わせて修正 */
.lp-special-member {
  font-family: var(--text-ja);
  color: var(--lp-black);
}

/* 英文／和文の切り替え */
.en,
.lp-hero__title {
  font-family: var(--text-en);
}
.jp,
.lp-hero__sub {
  font-family: var(--text-ja);
}

.page-id-5679 .gt_switcher_wrapper {
  display: none;
}

/************************************
  Header
*************************************/
.lp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  pointer-events: none;
}
.lp-header__inner {
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-white);
  text-decoration: none;
}
.lp-logo__img {
  display: block;
  width: clamp(120px, 14vw, 180px);
  height: auto;
}

/* ハンバーガー（見た目のみ） */
.lp-hamburger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.lp-hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--lp-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/************************************
  Hero
*************************************/
.lp-hero {
  position: relative;
  min-height: min(90vh, 900px);
  overflow: hidden;
  isolation: isolate;
}
.lp-hero__media {
  position: absolute;
  inset: 0;
  background-image: var(--lp-hero-image);
  background-size: cover;
  background-position: 62% center;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0) 70%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 35%);
  pointer-events: none;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem)
    clamp(3.5rem, 3.071rem + 2.14vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: min(90vh, 900px);
  max-width: var(--lp-maxw);
}

.lp-hero__title {
  color: var(--lp-white);
  font-family: var(--text-en);
  font-weight: var(--text-en-l);
  font-size: clamp(2.125rem, 1.589rem + 2.68vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 16px;
}
.lp-hero__sub {
  color: var(--lp-white);
  font-family: var(--text-ja);
  font-weight: var(--text-ja-r);
  font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
  letter-spacing: 0.1em;
  margin: 0;
}

/************************************
  Hero Badge（下端揃え／PC）
*************************************/
.lp-hero__badge {
  position: absolute;
  /* テキスト下端と揃う：innerの下パディングと同値 */
  bottom: var(--hero-pb);
  right: clamp(16px, 4vw, 40px);
  width: clamp(8.75rem, 8.393rem + 1.79vw, 10rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--lp-yellow);
  color: var(--lp-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.lp-hero__badge-date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.95;
  margin-bottom: 0.2em;
}
.lp-hero__badge-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-size: clamp(1.5rem, 1.429rem + 0.36vw, 1.75rem);
}

/************************************
  Hero Responsive
*************************************/
@media (max-width: 840px) {
  .lp-hero__media {
    background-position: 68% center;
  }
}

/* スマホ時に背景を差し替え */
@media (max-width: 540px) {
  .lp-hero__media {
    background-image: url("/wp-content/themes/solana-resort-theme/images/lp/mv-sp.webp");
    background-position: 68% center;
  }

  .lp-header__inner {
    padding: 14px clamp(12px, 4vw, 24px);
  }

  .lp-hero__badge {
    position: static;
    order: -1;
    align-self: flex-start;
    margin: 0 0 32px;
  }
}

/************************************
  Intro Section
*************************************/
.lp-intro {
  position: relative;
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem)
    clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem)
    clamp(9.063rem, 8.438rem + 3.13vw, 11.25rem);
  background-color: #fff;
  overflow: hidden;
}

/* 背景の大きな「SOLANA RESORT」 */
.lp-intro::after {
  content: "SOLANA RESORT";
  position: absolute;
  left: 50%;
  bottom: -0.25em;
  transform: translateX(-50%);
  font-family: var(--text-en);
  font-weight: var(--text-en-l);
  font-size: clamp(5rem, 3.214rem + 8.93vw, 11.25rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(250, 247, 238, 1); /* 薄いイエロー */
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.lp-intro__inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-maxw);
  margin: 0 auto;
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  justify-content: space-around;
}

/* 画像 */
.lp-intro__media {
  width: 330px;
  height: 495px;
  overflow: hidden;
}
.lp-intro__img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  object-position: 45% center;
}

/* テキスト側 */
.lp-intro__body {
  font-family: var(--text-ja);
}

.lp-intro__title {
  margin: 0 0 40px;
  font-family: var(--text-ja);
  font-weight: var(--text-ja-r);
  font-size: clamp(1.063rem, 0.795rem + 1.34vw, 2rem);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.lp-intro__text {
  margin: 0 0 40px;
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1rem);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* リンク（プランはこちら） */
.lp-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--text-ja);
  font-size: 16px;
  text-decoration: none;
  color: var(--lp-black);
  position: relative;
  padding-bottom: 4px;
}

.lp-intro__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 0.25s ease;
  color: var(--lp-yellow);
}

.lp-intro__link:hover::after {
  transform: scaleX(0.6);
}

.lp-intro__link-icon {
  font-size: 14px;
  transform: translateY(-1px);
  color: var(--lp-yellow);
}

/************************************
  Intro Responsive
*************************************/
@media (min-width: 1441px) {
	.lp-intro::after {
		font-size: 12.5vw;
	}
}
	
@media (max-width: 840px) {
  .lp-intro__inner {
    flex-direction: column; /* タブレット以下は縦並び */
    align-items: flex-start;
    gap: 24px;
  }

  .lp-intro__title {
    margin: 0 0 24px;
  }

  .lp-intro__media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .lp-intro__img {
    transform: scale(2);
    object-position: 22px 110%;
  }

  .lp-intro__text {
    margin: 0 0 24px;
  }
}

@media (max-width: 540px) {
  .lp-intro__inner {
    flex-direction: column;
  }

  .lp-intro__body {
    text-align: left;
  }

  .lp-intro__img {
    object-position: 10px 110%;
  }

  .lp-intro::after {
    bottom: -0.3em;
  }
}

/************************************
  Line Up Section
*************************************/
.lp-lineup {
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem)
    clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  background: #fbf4e5;
}

.lp-lineup__inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  text-align: center;
}

.lp-lineup__header {
  margin-bottom: clamp(2.5rem, 2.214rem + 1.43vw, 3.5rem);
}

.lp-lineup__eyebrow {
  margin: 0 0 16px;
  font-family: var(--text-en);
  font-size: clamp(2rem, 1.857rem + 0.71vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.lp-lineup__title {
  margin: 0;
  font-family: var(--text-ja);
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
  letter-spacing: 0.04em;
}

/************************************
  Table wrapper & scroll
*************************************/
.lp-lineup__table-wrapper {
  margin-top: clamp(32px, 5vh, 40px);
}

.lp-lineup__table-scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/************************************
  PC テーブル（項目 × 会員）
*************************************/
.lp-lineup__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 16px;
  color: var(--lp-black);
}

.lp-lineup__table thead tr {
  border-bottom: 1px solid rgba(180, 150, 90, 0.6);
}

.lp-lineup__table tbody tr {
  border-bottom: 1px dashed rgba(220, 190, 140, 0.85);
}

.lp-lineup__table tbody tr:last-child {
  border-bottom: 1px solid rgba(180, 150, 90, 0.6);
}

.lp-lineup__th,
.lp-lineup__row-label,
.lp-lineup__cell {
  padding: 24px 40px;
  vertical-align: middle;
}

.lp-lineup__th--blank {
  width: 18%;
}

.lp-lineup__th {
  font-family: var(--text-ja);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lp-lineup__row-label {
  font-family: var(--text-ja);
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-align: left;
}

.lp-lineup__cell {
  text-align: center;
  text-wrap: nowrap;
}

/* CTA 行（PC テーブル用） */
/* CTA 行（PC テーブル用） */
.lp-lineup__row--cta .lp-lineup__cell {
  padding-top: 32px;
  padding-bottom: 40px;
}

/* ★ セルは通常の table-cell のまま（flex を外す） */
.lp-lineup__cell--cta {
  text-align: center;
}

/* フキダシラベル */
.lp-lineup__limit {
  position: relative;
  z-index: 2;
  display: block; /* ★ ブロックにしてボタンの上に 1 行で載せる */
  width: max-content; /* 中身に合わせた幅 */
  padding: 2px 12px;
  margin: 0 auto -18px; /* ボタンに少し重ねる */
  background: #fff;
  color: var(--lp-yellow);
  border: 1px solid var(--lp-yellow);
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* フキダシのポチ（中央下） */
.lp-lineup__limit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid var(--lp-yellow);
  border-bottom: 1px solid var(--lp-yellow);
}

/* 黄色ボタン（下） */
.lp-lineup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 32px;
  margin-top: 12px; /* フキダシとの間隔を調整 */
  border-radius: 999px;
  background: var(--lp-yellow);
  color: #fff;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0em;
  text-decoration: none;
  transition: all 0.3s;
}

.lp-lineup__btn:hover {
  opacity: 0.8;
}

/************************************
  転置テーブル（会員 × 項目）
  JS で生成するテーブル
*************************************/
.lp-lineup__table-alt {
  display: none; /* ラッパー：デフォルト非表示 */
}

/* 生成されるテーブル本体 */
.lp-lineup__table--alt {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 0.9375rem;
  color: var(--lp-black);
}

.lp-lineup__table--alt thead tr {
  border-bottom: 1px solid rgba(180, 150, 90, 0.6);
}

.lp-lineup__table--alt tbody tr {
  border-bottom: 1px dashed rgba(220, 190, 140, 0.85);
}

.lp-lineup__table--alt tbody tr:last-child {
  border-bottom: 1px solid rgba(180, 150, 90, 0.6);
}

.lp-lineup__th--cta {
  width: 1%;
}

/* 転置後 CTA 列は右寄せ */
.lp-lineup__table--alt .lp-lineup__cell--cta {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/************************************
  Line Up Responsive
*************************************/

/* タブレット以下：会員 × 項目テーブルに切り替え */
@media (max-width: 840px) {
  /* PC テーブルを非表示、転置テーブルを表示 */
  .lp-lineup__table--pc {
    display: none;
  }

  .lp-lineup__table-alt {
    display: block;
  }

  .lp-lineup__table--alt {
    min-width: 720px; /* 必要に応じて横スクロールを残す */
    font-size: 0.875rem;
  }

  .lp-lineup__th,
  .lp-lineup__row-label,
  .lp-lineup__cell {
    padding: 24px 20px;
    text-wrap: nowrap;
  }

  .lp-lineup__th {
    font-size: 16px;
  }

  .lp-lineup__cell {
    font-size: 16px;
  }

  .lp-lineup__btn {
    min-width: 200px;
    padding-inline: 24px;
  }
}

/* スマホ */
@media (max-width: 540px) {
  .lp-lineup__title {
    letter-spacing: 0.22em;
  }

  .lp-lineup__table--alt {
    min-width: 560px;
  }

  .lp-lineup__th,
  .lp-lineup__row-label,
  .lp-lineup__cell {
    padding: 12px 12px;
  }

  .lp-lineup__btn {
    min-width: 180px;
  }

  /* スマホでは CTA は左寄せにしても見やすい */
  .lp-lineup__table--alt .lp-lineup__cell--cta {
    text-align: left;
  }
}

/************************************
  Member Section
*************************************/
.lp-member {
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem)
    clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  background: #fff;
}

.lp-member__inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
}

/* ----- Header ----- */
.lp-member__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.214rem + 1.43vw, 3.5rem);
}

.lp-member__eyebrow {
  margin: 0 0 12px;
  font-family: var(--text-en);
  font-size: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  letter-spacing: 0.08em;
  color: var(--lp-black);
}

.lp-member__lead {
  margin: 0;
  font-family: var(--text-ja);
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
  letter-spacing: 0.04em;
  color: var(--lp-black);
}

/* ----- List ----- */
.lp-member__list {
  list-style: none;
  margin: 0;
  padding: 0 100px;
}

.lp-member__item {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-block: clamp(28px, 4vh, 36px);
  border-top: 1px solid rgba(220, 200, 170, 0.7);
}

.lp-member__item:first-child {
  border-top: none;
  padding-top: 0;
}

.lp-member__item:last-child {
  padding-bottom: 0;
}

/* ----- Media ----- */
.lp-member__media {
  flex: 0 0 320px;
  max-width: 340px;
}

.lp-member__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ----- Body ----- */
.lp-member__body {
  flex: 1 1 auto;
  font-family: var(--text-ja);
  color: var(--lp-black);
}

.lp-member__no {
  margin: 0 0 8px;
  font-family: var(--text-en);
  font-size: clamp(1.75rem, 1.679rem + 0.36vw, 2rem);
  color: var(--lp-yellow);
}

.lp-member__title {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.lp-member__text {
  margin: 0;
  font-size: clamp(0.875rem, 0.821rem + 0.27vw, 0.9375rem);
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(50, 37, 5, 0.9);
}

/************************************
  Member Responsive
*************************************/

/* タブレット以下 */
@media (max-width: 840px) {
  .lp-member__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lp-member__media {
    flex-basis: auto;
    max-width: 100%;
  }

  .lp-member__body {
    width: 100%;
    /* ▼ no と title を横並びにする */
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.75rem;
  }

  .lp-member__no {
    margin: 0; /* 下マージンを消してタイトルと揃える */
  }

  .lp-member__title {
    margin: 0;
    flex: 1;
  }

  /* 本文は 2 行目以降で幅いっぱいに */
  .lp-member__text {
    flex-basis: 100%;
    margin-top: 0.75rem;
  }

  .lp-member__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}

/* スマホ */
@media (max-width: 540px) {
  .lp-member__lead {
    letter-spacing: 0.12em;
    font-size: 0.875rem;
  }

  .lp-member__text {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}

/* 小さい画面での改行制御用（任意） */
.u-sp {
  display: none;
}
@media (max-width: 540px) {
  .u-sp {
    display: inline;
  }
}

/************************************
  Commitment Section
*************************************/
.lp-commitment {
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem)
    clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  background: #fbf4e5;
}

.lp-commitment__inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
}

/* タイトル */
.lp-commitment__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.214rem + 1.43vw, 3.5rem);
}

.lp-commitment__eyebrow {
  margin: 0 0 8px;
  font-family: var(--text-en);
  font-size: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  letter-spacing: 0.04em;
}

.lp-commitment__title {
  margin: 0;
  font-family: var(--text-ja);
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/************************************
  ブロックレイアウト
  1: 左画像 / 右カード
  2: 左カード / 右画像（--reverse）
*************************************/
.lp-commitment__block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 72px); /* 間隔は gap で管理 */
  margin-bottom: clamp(2.5rem, 1.786rem + 3.57vw, 5rem);
}

.lp-commitment__block--reverse {
  flex-direction: row-reverse;
}

.lp-commitment__media {
  flex: 1.1;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.lp-commitment__img {
  display: block;
  width: 100%;
  height: auto;
}

/* 白カード */
.lp-commitment__card {
  flex: 0.9;
  background: #fff;
  padding: 80px 40px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;

  /* 画像側に少しオーバーラップさせる（左画像・右カード時） */
  transform: translateX(-144px);
}

/* 右画像・左カード時は反対側にずらす */
.lp-commitment__block--reverse .lp-commitment__card {
  transform: translateX(144px);
}

.lp-commitment__card-title {
  margin: 0 0 16px;
  font-family: var(--text-ja);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
}

.lp-commitment__card-text {
  margin: 0;
  font-family: var(--text-ja);
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
}

/************************************
  レスポンシブ
*************************************/

/* タブレット以下：縦並びにして画像→カードの順に統一 */
@media (max-width: 840px) {
  .lp-commitment__block,
  .lp-commitment__block--reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }

  /* 画像を先に、カードを後に見せる */
  .lp-commitment__media {
    order: 1;
  }
  .lp-commitment__card {
    order: 2;
    width: 100%;
    margin: 0 auto;
    background-color: none;
    /* スマホ・タブレットではオーバーラップ解除 */
    transform: none;
    padding: 16px;
    border-radius: 0 0 10px 10px;
  }

  .lp-commitment__block--reverse .lp-commitment__card {
    transform: translateX(0);
  }

  .lp-commitment__card-text {
    text-align: left;
  }
}

/* スマホ */
@media (max-width: 540px) {
  .lp-commitment__card {
    padding: 20px 18px;
  }

  .lp-commitment__card-title {
    letter-spacing: 0.16em;
  }
}

/************************************
  ユーティリティ（改行制御）
*************************************/
.u-show-sp {
  display: none;
}

@media (max-width: 540px) {
  .u-show-sp {
    display: inline;
  }
  .u-hide-sp {
    display: none;
  }
}

/************************************
  Gallery Section
*************************************/
.lp-gallery {
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem)
    clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  background: #ffffff;
}

.lp-gallery__inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 6vw, 40px);
}

/* ---------- 2カラムレイアウト（flex） ---------- */
.lp-gallery__columns {
  position: relative; /* 中央カードの基準 */
  display: flex;
  gap: 260px;
  align-items: stretch;
}

.lp-gallery__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
}

/* 画像ブロック */
.lp-gallery__item {
  border-radius: 4px;
  overflow: hidden;
}

.lp-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 中央カード：常に画像の上にオーバーレイ ---------- */
.lp-gallery__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  width: min(520px, 100%);
  padding: clamp(40px, 7vh, 56px) clamp(24px, 5vw, 40px);
  border-radius: 4px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);

  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* 見出し */
.lp-gallery__eyebrow {
  margin: 0 0 12px;
  font-family: var(--text-en);
  font-size: clamp(2rem, 1.857rem + 0.71vw, 2.5rem);
  letter-spacing: 0.12em;
}

.lp-gallery__title {
  margin: 0 0 clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-family: var(--text-ja);
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.lp-gallery__lead {
  margin: 0;
  font-family: var(--text-ja);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
}

/* ボタン */
.lp-gallery__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 40px;
  border-radius: 999px;
  background: var(--lp-yellow);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  text-decoration: none;
	transition: all 0.3s;
}

.lp-gallery__btn:hover {
  opacity: 0.8;
}

/************************************
  Responsive
*************************************/

/* タブレット：左右カラムは維持しつつ余白調整 */
@media (max-width: 840px) {
  .lp-gallery__inner {
    padding: 0 16px;
  }

  .lp-gallery__columns {
    gap: 16px;
  }

  .lp-gallery__col {
    gap: 16px;
  }

  .lp-gallery__center {
    width: min(640px, 100%);
    padding: 32px 20px;
    border-radius: 16px;
  }
}

/* スマホ：画像を縦並び＋中央カードを画面いっぱいに */
@media (max-width: 540px) {
  .lp-gallery__inner {
    padding: 0; /* カードを画面いっぱいにするため左右余白を削除 */
  }

  .lp-gallery__columns {
    gap: 12px;
  }

  .lp-gallery__col {
    gap: 12px;
  }

  .lp-gallery__center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; /* 画面幅いっぱい */
    max-width: 100vw;
    padding: 32px 20px;
    border-radius: 0; /* 端まで広がるので角丸をなくす */
  }

}

/* 改行ユーティリティ */
.u-show-sp {
  display: none;
}
@media (max-width: 540px) {
  .u-show-sp {
    display: inline;
  }
  .u-hide-sp {
    display: none;
  }
}

/************************************
  FAQ Section
*************************************/
.lp-faq {
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem)
    clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  background: #fbf4e5;
}

.lp-faq__inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
}

/* タイトル */
.lp-faq__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.214rem + 1.43vw, 3.5rem);
}

.lp-faq__eyebrow {
  margin: 0 0 8px;
  font-family: var(--text-en);
  font-size: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  letter-spacing: 0.12em;
}

.lp-faq__title {
  margin: 0;
  font-family: var(--text-ja);
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
  letter-spacing: 0.04em;
}

/************************************
  FAQ List
*************************************/
.lp-faq__list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(187, 162, 116, 0.4);
}

/* 各項目 */
.lp-faq-item {
  border-bottom: 1px solid rgba(187, 162, 116, 0.4);
}

/* 質問行 */
.lp-faq-item__question {
  width: 100%;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 1.5em;

  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;

  font-family: var(--text-ja);
  font-size: 16px;
  text-align: left;
  color: var(--lp-black);
}

.lp-faq-item__q {
  flex-shrink: 0;
  font-weight: 500;
}

.lp-faq-item__text {
  flex: 1;
  line-height: 1.9;
}

/* プラス／マイナスアイコン */
.lp-faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.lp-faq-item__icon::before,
.lp-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #a48a52;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* 縦線（＋のときのみ表示） */
.lp-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いているときはマイナス表示にする */
.lp-faq-item.is-open .lp-faq-item__icon::after {
  opacity: 0;
}

/************************************
  Answer
*************************************/
.lp-faq-item__answer {
  max-height: 0;
  overflow: hidden;

  box-sizing: content-box;
  transition: max-height 0.25s ease, padding-top 0.25s ease,
    padding-bottom 0.25s ease;
}

.lp-faq-item__answer p {
  margin: 0;
  font-family: var(--text-ja);
  font-size: 16px;
  line-height: 1.6;
}

/* 開いているとき */
.lp-faq-item.is-open .lp-faq-item__answer {
  padding-top: 4px;
  padding-bottom: 18px;
  max-height: 800px; /* 1〜2行程度の回答想定。長くなる場合は数値を大きく */
}

/************************************
  Responsive
*************************************/
@media (max-width: 840px) {
  .lp-faq__list {
    max-width: none;
  }

  .lp-faq-item__question {
    padding: 16px 0;
    font-size: 0.875rem;
    gap: 1em;
  }

  .lp-faq-item__answer p {
    font-size: 0.84375rem;
  }
}

@media (max-width: 540px) {
  .lp-faq-item__question {
    align-items: flex-start;
  }

  .lp-faq-item__icon {
    margin-top: 2px;
  }
}

/************************************
  Limited Section（限定募集）
*************************************/
.lp-limited {
  position: relative;
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem)
    clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  /* 背景画像（パスは実際のファイルに合わせて変更） */
  background: url("/wp-content/themes/solana-resort-theme/images/lp/limited-bg.webp")
    center center / cover no-repeat;
  color: #fff;
}

/* ガラス風パネル */
.lp-limited__panel {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vh, 64px) clamp(24px, 5vw, 56px) clamp(48px, 8vh, 72px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* 見出し */
.lp-limited__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.214rem + 1.43vw, 3.5rem);
}

.lp-limited__title {
  margin: 0 0 16px;
  font-family: var(--text-ja);
  font-size: clamp(1.5rem, 1.32rem + 0.9vw, 2rem);
  letter-spacing: 0.25em;
}

.lp-limited__lead {
  margin: 0;
  font-family: var(--text-ja);
  font-size: 16px;
  line-height: 1.6;
}

/* 中の Line Up テーブル用ラッパー */
.lp-limited__lineup {
  /* テーブルの左右いっぱいに伸ばしたいときは 0 に */
  margin-top: clamp(24px, 4vh, 32px);
}

/************************************
  限定募集内のテーブル色味調整（ガラス上で見やすく）
*************************************/
.lp-limited .lp-lineup__table {
  color: #fff;
}

.lp-limited .lp-lineup__table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.lp-limited .lp-lineup__table tbody tr {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
}

.lp-limited .lp-lineup__table tbody tr:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.lp-limited .lp-lineup__th,
.lp-limited .lp-lineup__row-label,
.lp-limited .lp-lineup__cell {
  /* Line Up の既存 padding はそのまま利用 */
  color: #fff;
}

/************************************
  Responsive
*************************************/
/* ▼ PC では ScrollHint の「見た目部分」だけ消す */
@media (min-width: 841px) {
  /* ScrollHint が追加する各パーツ */
  .scroll-hint-icon-wrap,
  .scroll-hint-icon,
  .scroll-hint-text {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  /* 横スクロール自体も消しておく */
  .js-scrollable {
    overflow-x: hidden !important;
  }
}

@media (max-width: 840px) {
  .lp-limited {
    padding: 0;
  }

  .lp-limited__panel {
    margin-inline: 0;
    border-radius: 0;
  }

  .lp-limited__lead {
    font-size: 0.875rem;
  }
}

@media (max-width: 540px) {
  .lp-limited__title {
    letter-spacing: 0.04em;
    font-size: 1.375rem;
  }

  .lp-limited__lead {
    font-size: 0.84375rem;
  }
}

/************************************
  Footer
*************************************/
.lp-footer {
  background: #2b1f06; /* 濃いブラウン。必要に応じて微調整 */
  color: #fff;
  padding: 40px clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
}

.lp-footer__inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

/* 左側：ロゴ＋テキスト */
.lp-footer__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-footer__logo-link {
  display: inline-flex;
  align-items: center;
}

.lp-footer__logo {
  display: block;
  max-width: 220px;
  height: auto;
}

.lp-footer__company {
  line-height: 1.9;
  font-size: 15px;
}

.lp-footer__company-name {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 16px;
}

.lp-footer__company-text {
  margin: 0;
}

/* 右側：SNS */
.lp-footer__right {
  display: flex;
  align-items: center;
}

.lp-footer__sns-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer__sns-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-footer__sns-icon {
  display: block;
  width: 22px;
  height: 22px;
}

/************************************
  Responsive
*************************************/
@media (max-width: 840px) {
  .lp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lp-footer__logo {
    max-width: 200px;
  }
}

@media (max-width: 540px) {
  .lp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .lp-footer__sns-list {
    gap: 16px;
  }

  .lp-footer__logo {
    max-width: 190px;
  }
}


/************************************
  Coming Soon Section
*************************************/
.lp-comingsoon {
  padding: clamp(4rem, 3rem + 4vw, 7rem)
           clamp(1.5rem, 1.2rem + 3vw, 3rem);
  background: #fbf4e5; /* LP FAQ と同系色 */
  text-align: center;
}

.lp-comingsoon__inner {
  max-width: 820px;
  margin: 0 auto;
}

.lp-comingsoon__eyebrow {
  margin: 0 0 20px;
  font-family: var(--text-en);
  font-size: clamp(2rem, 1.8rem + 1vw, 2.5rem);
  letter-spacing: 0.12em;
  color: #a48a52;
}

.lp-comingsoon__title {
  margin: 0 0 18px;
  font-family: var(--text-ja);
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #322505;
}

.lp-comingsoon__lead {
  margin: 0;
  font-family: var(--text-ja);
  font-size: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
  color: rgba(50, 37, 5, 0.8);
  letter-spacing: 0.08em;
}

/************************************
  Responsive
*************************************/
@media (max-width: 540px) {
  .lp-comingsoon__eyebrow {
    margin-bottom: 16px;
  }

  .lp-comingsoon__title {
    letter-spacing: 0.06em;
  }
}

/* SP 改行ユーティリティ */
.u-sp {
  display: none;
}
@media (max-width: 540px) {
  .u-sp {
    display: inline;
  }
}