@charset "UTF-8";

/* ===================================================================
   フォント設定
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=BadScript&family=Cormorant+SC:wght@500&family=Noto+Sans+JP:wght@400;500;700&family=Outfit&family=Poppins:wght@400;600&family=Satisfy&family=Shippori+Mincho:wght@400;700&family=Zen+Old+Mincho&display=swap');
@font-face {
  font-family: 'BadScript';
  src: url('fonts/BadScript-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* ===================================================================
   # CSS変数 (カスタムプロパティ)
   =================================================================== */
:root {
  /* カラー */
  --color-primary: #00695C;      /* メインカラー (深いティール) */
  --color-accent: #174bad;       /* アクセントカラー (コーラルピンク) */
  --color-text: #2c3e50;         /* 基本テキストカラー (ダークスレートグレー) */
  --color-text-sub: #7f8c8d;     /* サブテキストカラー (グレー) */
  --color-text-light: #909090;   /* 明るいテキストカラー */
  --color-white: #fff;           /* 白色 */
  --color-gold: #b89965;         /* ゴールド */
  --color-line: #00B900;         /* LINEグリーン */
  --color-star: #f39c12;         /* 星評価の黄色 */

  /* 背景色 */
  --bg-color-light: #F8F9FA;     /* 明るい背景色 (オフホワイト) */
  --bg-color-point: #73999b;     /* ポイント背景色 */

  /* ボーダー */
  --border-color-light: #e2e2e2; /* 明るいボーダーカラー */
  --border-color-base: #ddd;      /* 基本ボーダーカラー */

  /* フォントファミリー */
  --font-family-base: "YakuHanJPs_Narrow", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-serif: "Shippori Mincho", "Zen Old Mincho", serif;
  --font-family-brand: 'BadScript', cursive;
  --font-family-en-title: "Cormorant SC", serif;
  --font-family-en-point: "Poppins", sans-serif;
  --font-family-en-num: "Outfit", sans-serif;
}

/* ===================================================================
   # 基本設定 & リセット
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-size: 16px; /*基準フォントサイズ*/
  line-height: 1.8;
  letter-spacing: 0.05em;
  -ms-overflow-style: none;    /* IE, Edge */
  scrollbar-width: none;       /* Firefox */
}

body::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, Opera */
}

/* メニュー展開時のスクロール禁止 */
body.is-nav-open {
  overflow: hidden;
}

main {
  display: block;
  padding-top: 80px;
}

img, picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

button {
  font: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
}

/* ===================================================================
   # 共通レイアウト & ユーティリティ
   =================================================================== */
.container {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.inner-m {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-family-serif), var(--font-family-serif);
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  color: var(--color-text-sub);
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

/* --- ボタン共通 --- */
.btn {
  display: inline-flex; /* アイコンとテキストを横並びにするために flex に変更 */
  align-items: center; /* 中央揃え */
  justify-content: center; /* 中央揃え */
  gap: 0.5em; /* アイコンとテキストの間隔 */
  padding: 12px 24px; /* 少しパディングを調整 */
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s ease-in-out; /* トランジションを調整 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を追加 */
  border: none; /* 既存のborderをリセット */
}

.btn:hover {
  transform: translateY(-2px); /* ホバー時に少し上に移動 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 影を濃くする */
}

.btn:active {
  transform: translateY(1px); /* クリック時に少し下に移動 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 影を薄くする */
}

.btn-primary {
  background: linear-gradient(45deg, #E6A4B4, #D98880); /* グラデーション背景 */
  color: var(--color-white);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #e895a9, #d47a70);
  color: var(--color-white);
  opacity: 1; /* aタグのデフォルトhover opacityを上書き */
}

.btn-primary .icon-envelope {
  font-size: 1.2em; /* アイコンサイズを調整 */
}

.btn-secondary {
  background-color: var(--color-white);
  border: 2px solid var(--border-color-base);
  color: var(--color-text);
}

.btn-secondary:hover {
  background-color: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 18px 40px; /* パディング調整 */
}

.btn-intro-margin {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* --- c-button (もう一つのボタンスタイル) --- */
.c-button {
  margin-top: 60px;
}
.c-button--center {
  text-align: center;
}
.c-button-rect.gold a {
  width: 330px !important;
  display: block;
  margin: auto;
  line-height: 1.8;
  padding: 1.4em 1.2em;
  color: var(--color-white);
  background: var(--color-gold);
  border: none;
  position: relative;
  text-align: center;
}
.c-button-rect.gold a:hover {
  background: #000;
  opacity: 1;
}
.c-button-rect.gold a .sub {
  display: block;
  position: absolute;
  font-size: 0.75em;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-65%);
  background: var(--color-white);
  white-space: nowrap;
  border-radius: 30px;
  color: #333;
  border: solid 1px #929292;
}
.c-button-rect.gold a .sub .deco {
  position: relative;
  display: block;
  padding: 0.1em 2em;
}
.c-button-rect.gold a .sub .deco::before,
.c-button-rect.gold a .sub .deco:after {
  position: absolute;
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(93%);
  width: 15px;
  height: 5px;
  background: var(--color-white);
}
.c-button-rect.gold a .sub .deco::before { z-index: 1; }
.c-button-rect.gold a .sub .deco:after {
  z-index: 0;
  width: 18px;
  height: 6px;
  background: #929292;
  transform: translateX(-50%) translateY(100%);
}

/* ===================================================================
   # ヘッダー
   =================================================================== */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo img {
  height: 50px;
}

.header-nav ul {
  display: flex;
  align-items: center; /* li内の要素を垂直方向に中央揃えにするため追加 */
}

.header-nav li {
  margin-left: 30px;
  display: flex; /* li内の要素を垂直方向に中央揃えにするため追加 */
  align-items: center; /* li内の要素を垂直方向に中央揃えにするため追加 */
}

.header-nav a {
  color: var(--color-text);
  font-weight: bold;
  position: relative;
}




.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-controls .btn-line-header {
  display: none; /* デフォルトでは非表示 */
  background-color: var(--color-line);
  color: var(--color-white);
  white-space: nowrap;
}

.header-controls .btn-line-header img {
  height: 1.2em;
  width: auto;
}

.header-controls .btn-line-header:hover {
  background-color: #00a300;
  opacity: 1;
}


/* --- ハンバーガーメニュー --- */
.hamburger {
  display: none; /* スマホでのみ表示 */
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 5px;
  background-color: var(--color-text);
  transition: all 0.3s;
}
.hamburger-bar:nth-child(1) { top: 10px; }
.hamburger-bar:nth-child(2) { top: 18px; }
.hamburger-bar:nth-child(3) { top: 26px; }

.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ハンバーガーメニューを開いた時のx印を白にする */
.hamburger.is-open .hamburger-bar {
  background-color: var(--color-white);
}

/* ===================================================================
   # メインビジュアル
   =================================================================== */
.main-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10vh 0;
}

.parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  width: 85%;
  height: 80vh;
  max-height: 800px;
  margin: 0 auto;
}

.parent > div {
  border-radius: 8px;
  overflow: hidden;
}

.parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.div1 { grid-area: 1 / 1 / 4 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 4; }
.div3 { grid-area: 2 / 2 / 3 / 4; }
.div4 { grid-area: 3 / 2 / 4 / 4; }

.main-visual-text-overlay {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--color-white);
  left: 50%;
  padding: 20px 40px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
}

.main-visual-text-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}




.main-visual-title {
  font-family: var(--font-family-brand);
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: normal;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.main-visual-subtitle {
  font-family: var(--font-family-brand);
  font-size: 1.5rem;
  margin-top: 10px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* ===================================================================
   # VALUE (選ばれる理由)
   =================================================================== */
.point-tit {
  margin-bottom: 40px;
  text-align: center;
}
.point-tit .en-tit {
  font-family: var(--font-family-en-title);
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.2;
}
.point-tit .ja-tit {
  font-size: 1.5rem;
}

.point .point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
.point .point-list li picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.point .point-list li picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point .point-list__ttl {
  margin-top: 0.5em;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: bold;
}
.point .point-list__ttl .num {
  position: relative;
  padding-inline: 0.3em 0.4em;
  margin-right: 0.4em;
  font-size: clamp(18px, 2vw, 22px);
  font-family: var(--font-family-en-num);
  font-weight: 400;
}
.point .point-list__ttl .num::before {
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 50%;
}
.point .point-list__ttl .num::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 70%;
  background: #807b6f;
}
.point .point-list li .txt {
  margin-top: 0.5em;
}

/* ===================================================================
   # LOCATION PLAN (ロケーションプラン)
   =================================================================== */
.location-plan {
  margin-top: 200px;
}

/* --- [前撮りのススメ] タイトル --- */
.location-plan.point > div > h3 {
  font-family: var(--font-family-en-title);
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 50px;
}

.location-plan__cover {
  position: relative;
}
.location-plan__cover img {
  width: 75%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.location-plan__cover .card {
  width: 51.25%;
  height: 500px;
  position: absolute;
  right: -2%;
  bottom: 0;
  background: var(--color-white);
}
.location-plan__cover .card::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.location-plan__cover .card .box {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.location-plan__cover .card .label {
  margin: 0 auto 20px;
  text-align: center;
  font-family: var(--font-family-en-title);
  font-size: 3rem;
  font-weight: 500;
}
.location-plan__cover .card .lead {
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.6;
}
.location-plan__cover .card p {
  width: 80%;
  margin: 20px auto 0;
  font-size: 1.4rem;
  line-height: 2.4em;
}

/* --- 前撮りのススメ --- */
.mbot150 { margin-bottom: 150px; }
.mbot0 { margin-bottom: 0px; }
.mTop50 { margin-top: 50px; }
.mTop0 { margin-top: 0px; }

.c-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-list::before, .c-list::after {
  content: "";
  display: block;
  width: 23.21%;
}
.c-list::before { order: 1; }
.c-list__item {
  width: 23.21%;
  position: relative;
}
.c-list__item picture {
  aspect-ratio: 4/3;
}
.c-list__item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-list__item p {
  margin-top: 1em;
  font-weight: 600;
}
.c-list__item p .c-button__txt {
  display: block;
  margin-top: 1em;
  line-height: 1;
}
.c-list__item p .c-button__txt a {
  padding-bottom: 0.5em;
  font-size: 1.3rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.6);
}
.c-list__item p .c-button__txt a:hover {
  border-color: transparent;
}
.c-list__item .budge {
  width: 54px;
  height: 54px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background: var(--bg-color-point);
  border-radius: 50%;
  position: absolute;
  left: -10.8px;
  top: -10.8px;
}
.c-list__item .budge .sub {
  width: 100%;
  display: block;
  line-height: 1;
  font-family: var(--font-family-en-point);
  font-size: 1rem;
}
.c-list__item .budge .num {
  width: 100%;
  margin-top: 0.25em;
  display: block;
  line-height: 1;
  font-family: var(--font-family-en-point);
  font-weight: 600;
  font-size: 1.6rem;
}


/* ===================================================================
   # VALUE (選ばれる理由)
   =================================================================== */
.point-tit {
  margin-bottom: 40px;
  text-align: center;
}
.point-tit .en-tit {
  font-family: var(--font-family-en-title);
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.2;
}
.point-tit .ja-tit {
  font-size: 1.5rem;
}

.point .point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
.point .point-list li picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.point .point-list li picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point .point-list__ttl {
  margin-top: 0.5em;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: bold;
}
.point .point-list__ttl .num {
  position: relative;
  padding-inline: 0.3em 0.4em;
  margin-right: 0.4em;
  font-size: clamp(18px, 2vw, 22px);
  font-family: var(--font-family-en-num);
  font-weight: 400;
}
.point .point-list__ttl .num::before {
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 50%;
}
.point .point-list__ttl .num::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 70%;
  background: #807b6f;
}
.point .point-list li .txt {
  margin-top: 0.5em;
}

/* ===================================================================
   # LOCATION PLAN (ロケーションプラン)
   =================================================================== */
.location-plan {
  margin-top: 200px;
}

/* --- [前撮りのススメ] タイトル --- */
.location-plan.point > div > h3 {
  font-family: var(--font-family-en-title);
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 50px;
}

.location-plan__cover {
  position: relative;
}
.location-plan__cover img {
  width: 75%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.location-plan__cover .card {
  width: 51.25%;
  height: 500px;
  position: absolute;
  right: -2%;
  bottom: 0;
  background: var(--color-white);
}
.location-plan__cover .card::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.location-plan__cover .card .box {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.location-plan__cover .card .label {
  margin: 0 auto 20px;
  text-align: center;
  font-family: var(--font-family-en-title);
  font-size: 3rem;
  font-weight: 500;
}
.location-plan__cover .card .lead {
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.6;
}
.location-plan__cover .card p {
  width: 80%;
  margin: 20px auto 0;
  font-size: 1.4rem;
  line-height: 2.4em;
}

/* --- 前撮りのススメ --- */
.mbot150 { margin-bottom: 150px; }
.mbot0 { margin-bottom: 0px; }
.mTop50 { margin-top: 50px; }
.mTop0 { margin-top: 0px; }


.c-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-list::before, .c-list::after {
  content: "";
  display: block;
  width: 23.21%;
}
.c-list::before { order: 1; }
.c-list__item {
  width: 23.21%;
  position: relative;
}
.c-list__item picture {
  aspect-ratio: 4/3;
}
.c-list__item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-list__item p {
  margin-top: 1em;
  font-weight: 600;
}
.c-list__item p .c-button__txt {
  display: block;
  margin-top: 1em;
  line-height: 1;
}
.c-list__item p .c-button__txt a {
  padding-bottom: 0.5em;
  font-size: 1.3rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.6);
}
.c-list__item p .c-button__txt a:hover {
  border-color: transparent;
}
.c-list__item .budge {
  width: 54px;
  height: 54px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background: var(--bg-color-point);
  border-radius: 50%;
  position: absolute;
  left: -10.8px;
  top: -10.8px;
}
.c-list__item .budge .sub {
  width: 100%;
  display: block;
  line-height: 1;
  font-family: var(--font-family-en-point);
  font-size: 1rem;
}
.c-list__item .budge .num {
  width: 100%;
  margin-top: 0.25em;
  display: block;
  line-height: 1;
  font-family: var(--font-family-en-point);
  font-weight: 600;
  font-size: 1.6rem;
}

/* ===================================================================
   # PLAN (プラン紹介)
   =================================================================== */
.section-plan {
  background-color: var(--bg-color-light);
}

.plan-card-wrapper {
  scroll-snap-align: center;
}

.plan-card {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.plan-card-image {
  height: 40vh;
  overflow: hidden;
}

.plan-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px 10px;
}

.plan-card-title {
  font-family: var(--font-family-serif);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.plan-card-price {
  font-family: serif;
  font-weight: bold;
  /* ★★★ 修正箇所 ★★★ */
  width: 90%; /* 親要素の90%の幅に設定 */
  margin: 0 auto 15px; /* 上下左右のマージンを設定し、中央揃え */
  font-size: clamp(1.5rem, 5vw, 2.5rem); /* 画面幅に応じてフォントサイズを自動調整 */
  word-wrap: break-word; /* テキストがはみ出ないように改行 */
}

.plan-card-price span {
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-text-sub);
}

.obi {
  width: fit-content;
  margin: 0 auto 1.2em;
  padding: 0 2em;
  border-radius: 20px;
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--color-white);
  background: var(--color-gold);
}

.plan-card-description {
  flex-grow: 1;
  font-family: var(--font-family-serif);
  font-size: 0.9rem;
  margin: 20px;
  text-align: left;
}

.plan-card-features {
  color: var(--color-text-sub);
  font-family: var(--font-family-serif);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.plan-card-features li {
  margin-bottom: 1px;
  text-align: left;
}

/* --- プランアコーディオン --- */
.plan-container {
  margin: 10px auto 30px;
  width: 65%;
}
.plan-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  cursor: pointer;
  position: relative;
}
.plan-trigger::before,
.plan-trigger::after {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  border-style: solid;
  border-color: #222;
  border-width: 2px 0;
}
.plan-trigger::before { left: 0; border-left-width: 2px; }
.plan-trigger::after { right: 0; border-right-width: 2px; }
.plan-title {
  font-family: var(--font-family-serif);
  font-size: 1rem;
  font-weight: normal;
}
.plan-icon {
  width: 18px;
  height: 18px;
  position: relative;
}
.plan-icon::before,
.plan-icon::after {
  content: '';
  background-color: #222;
  position: absolute;
  transition: transform 0.3s ease;
}
.plan-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin-top: -1px;
}
.plan-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  margin-left: -1px;
}
.plan-container.is-open .plan-icon::after {
  transform: rotate(90deg);
}

/* --- スライダーナビゲーション --- */
.plan-slider-nav-container {
  display: none; /* PCで表示 */
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  z-index: 10;
}
.plan-slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 20vh;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}
.slider-arrow {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  width: 44px;
  height: 44px;
  pointer-events: auto;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.slider-arrow::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--color-text);
  border-right: 3px solid var(--color-text);
}
.slider-arrow.prev::after {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.slider-arrow.next::after {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* --- スライダードット --- */
.plan-slider-dots {
  text-align: center;
  margin: 10px 0 20px;
}
.plan-slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.plan-slider-dots .dot.active {
  background-color: var(--color-primary);
}

/* ===================================================================
   # PHOTO STYLE
   =================================================================== */
.point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}
.point-item-icon img {
  width: 100%;
  margin-bottom: 20px;
  object-fit: cover;
}
.point-item-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ===================================================================
   # ギャラリー
   =================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===================================================================
   # FLOW (撮影の流れ)
   =================================================================== */
.section-flow {
  background-color: var(--bg-color-light);
}

.flow-steps {
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding-left: 40px;
}

.flow-step {
  position: relative;
  padding: 20px 0 20px 40px;
  border-left: 2px solid var(--color-primary);
}

.flow-step:not(:last-child) {
  padding-bottom: 60px;
}

.flow-step-number {
  position: absolute;
  top: 15px;
  left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--bg-color-light);
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-family-brand);
  font-size: 1.2rem;
  font-weight: bold;
}

.flow-step-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  word-break: keep-all;
}
.flow-step-text {
  text-align: left;
  margin-bottom: 20px;
}

/* ===================================================================
   # POINT (当店の強み - 比較表)
   =================================================================== */
#point table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
#point thead th {
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid var(--border-color-light);
}
#point thead th:nth-child(2) {
  background-color: var(--color-white);
  color: var(--color-text-sub);
}
#point thead th:nth-child(3) {
  background-color: #E6F4F1; /* 薄いティール */
  color: var(--color-primary);
  border-bottom-color: #B2DFDB; /* ティール系 */
}
#point tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-top: 1px solid var(--border-color-light);
}
#point tbody td:first-child {
  font-weight: 600;
  background-color: #f9fafb;
  border-right: 1px solid var(--border-color-light);
  text-align: center;
}
#point tbody td:nth-child(2) {
  border-right: 1px solid var(--border-color-light);
}
#point tbody td:nth-child(3) {
  background-color: rgba(230, 244, 241, 0.5);
}

/* ===================================================================
   # VOICE (お客様の声)
   =================================================================== */
.section-voice {
  background-color: var(--bg-color-light);
}

.google-review-link {
  margin-top: -40px;
  margin-bottom: 50px;
  text-align: center;
}
.google-review-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: var(--color-white);
  border: 1px solid #dadce0;
  border-radius: 50px;
  color: var(--color-text);
  font-weight: bold;
  transition: box-shadow 0.3s;
}
.google-review-link a:hover {
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.google-review-link img {
  height: 24px;
}

.voice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.voice-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.voice-card-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.voice-card-info p {
  margin: 0;
  line-height: 1.5;
}
.voice-card-rating {
  font-weight: bold;
  margin-bottom: 5px;
}
.voice-card-rating span {
  color: var(--color-star);
  letter-spacing: 2px;
}
.voice-card-customer {
  font-weight: bold;
}
.voice-card-plan {
  font-size: 0.8rem;
  color: var(--color-text-sub);
}
.voice-card-comment-title {
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.voice-card-text {
  flex-grow: 1;
  margin: 0 0 20px;
}

/* ===================================================================
   # Q&A
   =================================================================== */
.qa-list {
  max-width: 800px;
  margin: 0 auto;
}

.qa-item {
  text-align: left;
  border-bottom: 1px solid var(--border-color-base);
}

.qa-item-question {
  display: block;
  position: relative;
  padding: 20px 0;
  cursor: pointer;
  list-style: none; /* for Safari */
}
.qa-item-question::-webkit-details-marker {
  display: none; /* for Chrome */
}

.qa-item-question p {
  margin: 0;
  padding-right: 30px;
}

.qa-item-question::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s;
}

.qa-item[open] > .qa-item-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.qa-item-answer {
  padding: 20px;
  background-color: var(--bg-color-light);
}

.qa-item-answer p {
  margin: 0;
}

/* ===================================================================
   # CTA (Call To Action)
   =================================================================== */
.section-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.cta-title {
  font-family: var(--font-family-serif);
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-text {
  margin-bottom: 40px;
}

.section-cta .btn-primary {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.section-cta .btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ===================================================================
   # フッター
   =================================================================== */
.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 0 0;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer-info {
  margin-bottom: 30px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}
.footer-address {
  margin-bottom: 20px;
}
.footer-sns {
  display: flex;
}
.footer-sns li {
  margin-right: 15px;
}
.footer-sns a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-family: var(--font-family-brand);
}
.sns-icon {
  width: 24px;
  height: 24px;
}

.footer-nav ul {
  text-align: left;
}
.footer-nav a {
  color: var(--color-text-sub);
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid #444;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

/* ===================================================================
   # ページトップへ戻るボタン
   =================================================================== */
.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 30px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid #ccc;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===================================================================
   # モーダル (ギャラリー)
   =================================================================== */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.modal-content img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 5px;
}
.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  color: var(--color-text);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  line-height: 1;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 5px;
  font-size: 2rem;
  user-select: none;
  transition: background-color 0.3s;
}
.modal-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-nav.prev { left: 15px; }
.modal-nav.next { right: 15px; }

/* ===================================================================
   # モーダル (プラン詳細 - remodal)
   =================================================================== */
.plan-modal.remodal {
  width: 100vw;
  max-width: initial;
  min-height: 100vh;
  padding: 5.333vw;
  background: hsla(0, 0%, 100%, 0.9);
}
.plan-modal__wrapper {
  width: 92vw;
  max-width: 1056px;
  margin: auto;
  padding: 60px;
  border-radius: 20px;
  background: var(--color-white);
}
.plan-modal__price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan-modal__price-wrap .image { width: 59.26%; }
.plan-modal__price-wrap .txt {
  width: 310px;
  margin: 0 auto;
  text-align: center;
}
.plan-modal__price-wrap .txt .tit {
  margin-bottom: 0.75em;
  font-size: 2.2rem;
  font-weight: 600;
}
.plan-modal__price-wrap .txt .price {
  width: 80%;
  margin: auto;
}
.plan-modal__main {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.plan-modal__main .include { padding: 0 0 50px; }
.plan-modal .note {
  margin-top: 40px;
  font-size: 1.3rem;
}
.plan-modal .gallery {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.plan-modal .gallery li {
  width: calc(50% - 2.5px);
}
.plan-modal .gallery li:nth-child(n + 3) {
  margin-top: 5px;
}
.plan-modal .remodal-close {
  width: 80px;
  height: 80px;
  background: var(--color-text);
  border-radius: 100%;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100000000;
}
.plan-modal .remodal-close::before,
.plan-modal .remodal-close::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: calc(50% - 15px);
}
.plan-modal .remodal-close::before { transform: rotate(-45deg); }
.plan-modal .remodal-close::after { transform: rotate(45deg); }

.include { padding: 3.8% 4.8% 4.8%; }
.body__tit {
  margin-bottom: 1.5em;
  font-size: 1.6rem;
  font-weight: 600;
}
.include__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.include__list::before, .include__list::after {
  content: "";
  display: block;
  width: 24.38%;
}
.include__list::before { order: 1; }
.list-item {
  width: 24.38%;
  padding: 12px 14px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-color-light);
}
.list-item:nth-child(n + 5) {
  margin-top: 0.82666%;
}
.list-item .txt {
  width: calc(100% - 66px);
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 600;
}
.list-item .txt .sub {
  margin-top: 0.25em;
  display: block;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: normal;
}

/* ===================================================================
   # レスポンシブ (1200px以下)
   =================================================================== */
@media (max-width: 1200px) {
  .point-tit .en-tit,
  .location-plan.point > div > h3 {
    font-size: 4.8rem;
  }

  .location-plan__cover .card {
    height: 400px;
    right: 0;
  }
  .location-plan__cover .card::before {
    content: none;
  }
  .location-plan__cover .card .label {
    margin-bottom: 15px;
    font-size: 2rem;
  }
  .location-plan__cover .card .lead {
    font-size: 2.2rem;
  }
  .location-plan__cover .card p {
    margin: 15px auto 0;
    font-size: 1.2rem;
  }
}

/* ===================================================================
   # レスポンシブ (768px以下)
   =================================================================== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .container, .inner-m {
    width: auto;
    padding: 0 20px;
  }

  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }

  /* --- ヘッダー (スマホ) --- */
  .header-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Fallback for older browsers */
    height: 100dvh;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0); /* Reset transform */
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .header-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* 隙間を少し詰める */
    width: 85%; /* 外周の余白を確保 */
    margin: 0 auto; /* 中央揃え */
    padding: 0;
    list-style: none;
    text-align: center;
  }
  .header-nav li {
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  /* ボタンを1列にする */
  .header-nav li.nav-button-item {
    grid-column: 1 / -1; /* 2カラムを結合して1列にする */
  }
  
  /* 最初のボタンの上に余白を追加 */
  .header-nav li.nav-button-item:nth-of-type(7) {
    margin-top: 50px;
  }
  
  /* ボタン間の余白を詰める */
  .header-nav li.nav-button-item:nth-of-type(8) {
    margin-top: -5px;
  }

  .header-nav.is-open li {
    opacity: 1;
    transform: translateY(0);
  }
  .header-nav.is-open li:nth-child(1) { transition-delay: 0.1s; }
  .header-nav.is-open li:nth-child(2) { transition-delay: 0.15s; }
  .header-nav.is-open li:nth-child(3) { transition-delay: 0.2s; }
  .header-nav.is-open li:nth-child(4) { transition-delay: 0.25s; }
  .header-nav.is-open li:nth-child(5) { transition-delay: 0.3s; }
  .header-nav.is-open li:nth-child(6) { transition-delay: 0.35s; }
  .header-nav.is-open li:nth-child(7) { transition-delay: 0.4s; }
  .header-nav.is-open li:nth-child(8) { transition-delay: 0.45s; }

  /* メニュー項目のスタイル */
  .header-nav a {
    font-family: var(--font-family-serif);
    font-size: 1.2rem;
    color: var(--color-white);
    padding: 10px 0;
    display: block;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    border: none; /* グリッド枠を非表示 */
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  

  /* ボタンの共通スタイル */
  .header-nav .nav-button-item .btn-line-nav,
  .header-nav .nav-button-item .btn-mail-nav,
  .header-nav .nav-button-item .c-button-rect a {
    display: block;
    width: 100%;
    padding: 12px 0 !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    color: var(--color-white) !important;
    text-align: center;
    border-radius: 8px !important;
    border: none !important;
    transition: opacity 0.3s;
  }

  /* LINEボタンの色 */
  .header-nav .nav-button-item .btn-line-nav {
    background-color: var(--color-line);
  }

  /* Mailボタンの色 */
  .header-nav .nav-button-item .btn-mail-nav {
    background-color: var(--color-gold);
  }

  
  /* 予約ボタンの色 */
  .header-nav .nav-button-item .c-button-rect a {
    background-color: var(--color-gold);
  }

  /* 予約ボタンの不要な装飾を非表示 */
  .header-nav .nav-button-item .c-button-rect a .sub,
  .header-nav .nav-button-item .c-button-rect a .icon {
    display: none;
  }
  
  .header-nav a.active::after {
    display: block;
    background-color: var(--color-white);
  }
  .header-cta { display: none; }
  .header-controls .btn-line-header {
    display: inline-flex; /* flexで表示 */
    padding: 6px 12px;   /* サイズを小さく */
    font-size: 0.8rem;   /* フォントを小さく */
  }

  .hamburger { display: block; }

  /* --- メインビジュアル (スマホ) --- */


  /* --- VALUE (スマホ) --- */
  .point-tit .en-tit,
  .location-plan.point > div > h3 {
    font-size: 4rem;
  }
  .point .point-list {
    width: 95%;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 2.2em;
  }

  /* --- LOCATION PLAN (スマホ) --- */
  .location-plan__cover img { width: 100%; }
  .location-plan__cover .card {
    width: 100%;
    height: auto;
    padding: 0;
    position: relative;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  .location-plan__cover .card::before {
    content: "";
    display: block;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 200px;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
  }
  .location-plan__cover .card .box {
    padding: 0 5.333%;
    position: relative;
    top: initial;
    transform: initial;
  }
  .location-plan__cover .card .label { margin-bottom: 12px; font-size: 1.8rem; }
  .location-plan__cover .card .lead { margin: 10px 0 15px; font-size: 2rem; }
  .location-plan__cover .card p { width: 100%; margin: 15px auto 0; font-size: 1.2rem; }

  .c-list { display: block; }
  .c-list::before, .c-list::after { content: none; }
  .c-list__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-list__item:not(:first-child) { margin-top: 20px; }
  .c-list__item picture { width: 50%; }
  .c-list__item p { width: 45%; margin-top: 0; }
  .c-list__item .budge { width: 38px; height: 38px; left: -7.4px; top: -7.4px; }
  .c-list__item .budge .sub { transform: scale(0.6875); }
  .c-list__item .budge .num { font-size: 1.1rem; }

  /* --- スクロールスナップ (スマホ) --- */
  .scroll-snap-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-snap-slider::-webkit-scrollbar { display: none; }

  .section-plan .plan-card-wrapper { flex: 0 0 85%; }
  .section-voice .voice-card-wrapper { flex: 0 0 80%; }

  .plan-slider-nav-container { display: block; }

  /* --- ギャラリー (スマホ) --- */
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    height: 400px;
    overflow-x: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item-wrapper {
    flex: 0 0 30%;
    scroll-snap-align: center;
  }


  /* --- フッター (スマホ) --- */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-sns { justify-content: center; }

  /* --- プランモーダル (スマホ) --- */
  .plan-modal__wrapper {
    width: 100%;
    padding: 5.333vw;
    border-radius: 10px;
  }
  .plan-modal__price-wrap { display: block; }
  .plan-modal__price-wrap .image { width: 100%; }
  .plan-modal__price-wrap .txt { width: 248px; margin-top: 20px; }
  .plan-modal__main { margin-top: 15px; padding-top: 30px; }
  .plan-modal .gallery { display: block; }
  .plan-modal .gallery li { width: 100%; }
  .plan-modal .gallery li:nth-child(n + 2) { margin-top: 5px; }
  .plan-modal .remodal-close {
    width: 44px;
    height: 44px;
    top: 5vw;
    right: 5vw;
  }
  .plan-modal .remodal-close::before,
  .plan-modal .remodal-close::after {
    width: 18px;
    left: calc(50% - 9px);
  }

  .include { padding: 6vw 4vw; }
  .body__tit { text-align: center; font-size: 1.2rem; }
  .include__list::before, .include__list::after { width: calc(50% - 1px); }
  .list-item { width: calc(50% - 1px); padding: 8px 6px; }
  .list-item:nth-child(n + 3) { margin-top: 2px; }
  .list-item .icon { width: 34px; }
  .list-item .txt { width: calc(95%); font-size: 1rem; }
  .list-item .txt .sub {
    width: 125%;
    margin-top: -0.2em;
    transform: scale(0.8);
    transform-origin: bottom left;
  }
}

/* ===================================================================
   # レスポンシブ (769px以上)
   =================================================================== */
@media (min-width: 769px) {
  .point-grid,
  .gallery-grid,
  .section-voice .scroll-snap-slider {
    width: 85%;
    margin: auto;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .section-plan .scroll-snap-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 85%;
    margin: auto;
    padding-bottom: 20px; /* スクロールバーのスペース */
  }
  .section-plan .scroll-snap-slider::-webkit-scrollbar {
    height: 8px;
    background-color: #f1f1f1;
  }
  .section-plan .scroll-snap-slider::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
  }
  
  /* --- [769px ~ 1199px] 2枚表示 --- */
  .section-plan .plan-card-wrapper {
    flex: 0 0 calc((100% - 15px) / 2);
    scroll-snap-align: start;
  }

  .plan-slider-nav-container {
    display: block;
  }
}

/* ===================================================================
   # レスポンシブ (1200px以上)
   =================================================================== */
@media (min-width: 1200px) {
  /* --- [1200px以上] 3枚表示に上書き --- */
  .section-plan .plan-card-wrapper {
    flex: 0 0 calc((100% - 30px) / 3);
  }
}


/* お客様の声カードの「もっと見る」機能のスタイル */
.voice-card-text {
  position: relative; /* 疑似要素の基準点 */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  max-height: 5.4em; /* line-height: 1.8 * 3行 */
}

/* テキストが3行を超える場合にグラデーションで末尾をぼかす */
.voice-card-text:not(.is-expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em; /* グラデーションの高さ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-white) 80%);
  pointer-events: none;
}

.voice-card-text.is-expanded {
  max-height: 1000px; /* 十分な高さに（アニメーションのため） */
}

.voice-card-text.is-expanded::after {
  display: none; /* 展開時はグラデーションを非表示 */
}

.voice-card-more {
  background: none;
  border: none;
  color: var(--color-primary);
  font-weight: bold;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 5px;
  align-self: flex-start; /* カード内で左寄せにする */
}

.voice-card-more:hover {
  text-decoration: underline;
}

/* ===================================================================
   # ローディング画面
   =================================================================== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  opacity: 1;
  visibility: visible;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.loading-logo {
  max-width: 300px;
  animation: blink 1.5s infinite ease-in-out;
}

/* ===================================================================
   # メインビジュアル (Swiper)
   =================================================================== */
.main-visual {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  padding: 0;
}

.main-visual-swiper {
  width: 100%;
  height: 100%;
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 1s ease-in-out;
}

.main-visual-swiper .swiper-slide {
    width: 80%;
}

.main-visual-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比を維持しつつ、コンテナを完全に覆う */
  border-radius: 12px;
}

.main-visual-text-overlay {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white; /* 白文字に変更 */
  left: 50%;
  padding: 20px 40px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
  opacity: 0; /* 初期状態は非表示 */
  visibility: hidden; /* 初期状態は非表示 */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* 影を再適用 */
}

.main-visual-title {
  font-family: var(--font-family-brand);
  font-size: clamp(3.2rem, 10vw, 4.5rem);
  font-weight: normal;
  margin: 0;
}

.main-visual-subtitle {
  font-family: var(--font-family-brand);
  font-size: 1.5rem;
  margin-top: 10px;
}

/* ===================================================================
   # PC表示用の追加スタイル
   =================================================================== */
@media (min-width: 901px) {
  .hidden-on-pc {
    display: none !important;
  }
}

/* ===================================================================
   # LINE ポップアップ
   =================================================================== */
.line-popup {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-line);
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  font-weight: bold;
  
  /* 初期状態は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.line-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.line-popup img {
  height: 24px;
}

.line-popup span {
  font-size: 0.9rem;
  line-height: 1.2;
}


/* styleLP2.css の #mainvisualdesign 以降を、この下のコードに全て差し替えてください */

/* --- 基本設定 --- */
#mainvisualdesign {
    font-family: 'Montserrat', sans-serif;
}

#mainvisualdesign .image-fade {
    transition: opacity 0.5s ease-in-out;
}

/* --- レイアウトコンテナ (モバイルファースト) --- */
#mainvisualdesign .layout-container {
    display: flex; /* 横並びのflexレイアウトに変更 */
    flex-direction: row; /* 明示的に横並びを指定 */
    width: 100%;
    background-color: white;
    overflow: hidden;
    height: 80svh; /* iPhoneでの表示を安定させるためsvhを維持 */
}

/* --- 左パネル (茶色) --- */
#mainvisualdesign .info-panel {
    width: 45%; /* 左パネルの幅を45%に設定 */
    flex-shrink: 0; /* 幅が縮まないように設定 */
    background-color: #d5c1b4;
    color: white;
    position: relative; /* 子要素の絶対配置の基準 */
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 中央寄せに変更 */
    padding: 1rem;
}

#mainvisualdesign .title-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg); /* パネル内で中央に配置し回転 */
    transform-origin: center;
    white-space: nowrap;
}

#mainvisualdesign .title-main,
#mainvisualdesign .title-sub {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.1em;
}

#mainvisualdesign .title-main {
    font-size: clamp(1.4rem, 7vw, 2.5rem);
}

#mainvisualdesign .title-sub {
    font-size: clamp(1.1rem, 5vw, 2rem);
    margin-top: 0.5rem;
}

#mainvisualdesign .details-panel {
    position: absolute; /* 絶対配置で左下に固定 */
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

#mainvisualdesign .details-text-mobile {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 1rem;
}

#mainvisualdesign .details-text-desktop { display: none; }

#mainvisualdesign .details-panel .divider {
    width: 50px;
    height: 1px;
    background-color: white;
    margin-bottom: 1rem;
}

#mainvisualdesign .details-panel .shop-button {
    font-size: clamp(0.75rem, 3vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* --- 右パネル (画像) --- */
#mainvisualdesign .image-panel {
    width: 55%; /* 右パネルの幅を55%に設定 */
    display: flex;
    flex-direction: column; /* 画像を縦に並べる */
    justify-content: center; /* 画像群をパネルの上下中央に配置 */
    align-items: flex-start; /* 画像を左寄せに */
    gap: 1rem;
    background-size: cover;
    background-position: center;
    padding: 1rem 0; /* 上下の余白 */
}

#mainvisualdesign .desktop-image-card { display: none; }

#mainvisualdesign .mobile-image-card {
    background-color: white;
    padding: 0.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* ★ aspect-ratio を削除し、width と height を直接指定 */
    width: 90%;
    height: 49.5vw; /* (画面幅の55% * 90% = 49.5vw) 幅と高さを同じ値に */
    
    position: relative;
    z-index: 20;
    transform: translateX(-20%);
    flex-shrink: 0; /* 縮まないように設定 */
}

#mainvisualdesign .mobile-image-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.125rem;
}

/* --- PC/タブレット用スタイル (768px以上で適用) --- */
@media (min-width: 768px) {
    #mainvisualdesign .layout-container {
        flex-direction: column;
        height: 80vh;
    }
    
    #mainvisualdesign .info-panel {
        order: 2;
        width: 100%; /* PCでは幅100%に戻す */
        height: 33.333333%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
    }
    
    #mainvisualdesign .title-container {
        position: static;
        transform: none;
        align-items: flex-start;
        text-align: left;
    }
    #mainvisualdesign .title-main { font-size: 2.25rem; }
    #mainvisualdesign .title-sub { font-size: 1.875rem; }

    #mainvisualdesign .details-panel {
        position: static; /* PCでは絶対配置を解除 */
        width: auto;
        align-items: flex-end;
        text-align: right;
    }
    #mainvisualdesign .details-text-mobile { display: none; }
    #mainvisualdesign .details-text-desktop { display: block; font-size: 0.875rem; font-weight: 300; max-width: 20rem; margin-bottom: 1rem; }
    #mainvisualdesign .details-panel .divider { display: none; }
    #mainvisualdesign .details-panel .shop-button { font-size: 1.125rem; align-self: flex-end;}

    #mainvisualdesign .image-panel {
        order: 1;
        width: 100%; /* PCでは幅100%に戻す */
        height: 66.666667%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background-image: none !important;
        padding: 0;
        transform: none; /* transformをリセット */
    }

    #mainvisualdesign .mobile-image-card { display: none; }
    #mainvisualdesign .desktop-image-card {
        display: block;
        height: 80%;
        width: auto;
        aspect-ratio: 1 / 1;
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }
    #mainvisualdesign .desktop-image-card > img { width: 100%; height: 100%; object-fit: cover; }
}

/* ===================================================================
   # Q&A 検索ボックスのスタイルを追加
   =================================================================== */
.qa-search-input {
  -webkit-appearance: none; /* iOSでのデフォルトスタイルをリセット */
  appearance: none;
  width: 80%; /* 幅を親要素の80%に */
  max-width: 500px; /* PCでも広がりすぎないように最大幅を指定 */
  padding: 12px 16px; /* 内側の余白 */
  font-size: 1rem; /* 文字サイズ */
  border: 1px solid #ccc; /* 枠線 */
  border-radius: 50px; /* 角を丸くする */
  transition: border-color 0.3s, box-shadow 0.3s; /* アニメーション効果 */
}

/* 入力中に枠線を青くする */
.qa-search-input:focus {
  outline: none; /* デフォルトの青いアウトラインを消す */
  border-color: #007bff; /* 枠線の色を変更 */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* 影を追加 */
}

/* ===================================================================
   # スケルトンローディング (新規追加)
   =================================================================== */
/* ローディング画面全体のコンテナ */
#loading-skeleton {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* svhが効かない環境用フォールバック */
  height: 100svh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* スケルトンのアニメーション効果（キラッと光る） */
.skeleton-animate {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: skeletonShimmer 1.5s infinite linear forwards;
}

@keyframes skeletonShimmer {
  0% { background-position: -468px 0; }
  100% { background-position: 468px 0; }
}

/* PC向けレイアウト（横並び） */
@media (min-width: 768px) {
  #loading-skeleton {
    flex-direction: row; /* 左右分割 */
  }
  .skeleton-left {
    width: 100%; /* メインビジュアルのPCレイアウトに合わせて調整 */
    flex: 1;
    background-color: #d5c1b4; /* メインビジュアル左側と同じ茶色 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .skeleton-right {
    width: 100%;
    flex: 2;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  /* PC用の右側画像スケルトン */
  .skeleton-img-pc {
    width: 45%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }
}

/* スマホ向けレイアウト（縦並び） */
@media (max-width: 767px) {
  #loading-skeleton {
    flex-direction: row; /* スマホもメインビジュアルに合わせて横並び維持 */
  }
  .skeleton-left {
    width: 45%;
    background-color: #d5c1b4;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .skeleton-right {
    width: 55%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
  /* スマホ用の右側画像スケルトン */
  .skeleton-img-sp {
    width: 90%;
    height: 30%;
    border-radius: 6px;
    transform: translateX(-20%); /* メインビジュアルのデザインに合わせる */
  }
}

/* 中央のロゴ */
.skeleton-logo {
  width: 120px;
  height: 120px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skeleton-logo img {
  width: 60%;
  opacity: 0.5;
}

/* 読み込み完了後の非表示用クラス */
#loading-skeleton.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =================================================
   Order Form Modal CSS (移植・調整版)
================================================== */
/* モーダル本体の調整 */
.order-modal {
    padding: 0 !important; /* ReModalのデフォルトパディングをリセット */
    background: #f9f9f9;
}
.order-modal-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    text-align: left;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}

/* ステップバー */
#request-steps {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.step-item {
    padding: 8px 20px;
    border-radius: 20px;
    background: #eee;
    color: #999;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}
.step-item.active {
    background-color: var(--color-primary, #00695C); /* サイトのメインカラーを使用 */
    color: #fff;
}

/* フォーム要素共通 */
.order-form-group {
  margin-bottom: 25px;
}
.order-form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
.order-form-group.required label::after {
    content: " (必須)";
    color: #e74c3c;
    font-size: 0.8em;
}
.order-form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  appearance: none;
}
.order-form-control:focus {
    border-color: var(--color-gold, #b89965);
    outline: none;
}

/* ボタン（選択肢用） */
.form-select-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 15px;
  margin: 5px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #555;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  min-width: 120px; /* 最低幅を確保 */
}
.form-select-btn:hover {
    background-color: #f5f5f5;
}
.form-select-btn.active {
  background-color: #555;
  color: white;
  border-color: #555;
}
/* ボタングループのコンテナ */
.button-group-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.button-group-flex .form-select-btn {
    flex: 1 1 auto; /* 幅を自動調整 */
    margin: 0; /* gapで間隔を調整するためリセット */
}

/* 画像選択エリア */
.form-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
    .form-image-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
    .form-image-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-image-container {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 1; /* 元の比率を維持 */
}
.form-image-container img.selectable-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  display: block;
}
.form-image-container img.selectable-image.selected {
  border-color: var(--color-accent, #174bad); /* 選択時の色 */
  transform: scale(0.95);
}
.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    white-space: nowrap;
}

/* 確認画面 */
#confirmation-section {
  display: none;
  background-color: #f8f9fa;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}
.conf-row {
    display: flex;
    border-bottom: 1px dashed #ddd;
    padding: 10px 0;
}
.conf-label {
    font-weight: bold;
    width: 30%;
    min-width: 140px;
    color: #555;
}
.conf-value {
    width: 70%;
    word-break: break-all;
}

/* 送信ボタン等 */
.form-action-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: var(--color-gold, #b89965); /* サイトのテーマカラーに合わせる */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.form-action-btn:hover {
    opacity: 0.8;
}
.form-action-btn.secondary {
    background-color: #999;
}
/* モーダルを閉じるボタンの調整（視認性向上・黒ボタン版） */
.order-modal .remodal-close {
    position: fixed;      /* 画面右上に固定 */
    top: 15px;
    right: 15px;
    left: auto;
    z-index: 10000;       /* 最前面を確実に確保 */
    
    /* デザイン調整：黒背景で見やすく */
    width: 50px;          /* サイズを少し大きく */
    height: 50px;
    background-color: #333; /* ★背景を黒(ダークグレー)に変更 */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* 影を強く */
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.order-modal .remodal-close:hover {
    background-color: #000; /* ホバー時に真っ黒に */
}

/* ×印を白く太くする */
.order-modal .remodal-close::before,
.order-modal .remodal-close::after {
    background-color: #fff; /* ★線を白に変更 */
    height: 3px;            /* 線を少し太く */
    width: 24px;            /* 線を長く */
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    margin-left: -12px;     /* widthの半分 */
    margin-top: -1.5px;     /* heightの半分 */
}

.order-modal .remodal-close::before { transform: rotate(-45deg); }
.order-modal .remodal-close::after { transform: rotate(45deg); }