/* ===== Base ===== */
:root{
  --bg:#c6b996;
  --ink:#0b1320;
  --brown:#3f1a1a;
  --green:#005d5b;
  --rule:#3b2b2b;
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; overflow-x:hidden; }
body{
  font-family:"Noto Sans JP",system-ui,-apple-system,sans-serif;
  color:var(--ink);
  /* 全体背景（リード〜FVも含めて1枚で適用） */
  background: var(--bg) url("images/fv_bk.png") no-repeat center top;
  background-size: 100% auto;   /* 横幅100%フィット */
}

/* ===== Ribbon ===== */
.top-ribbon{ display:flex; height:15px; width:100%; }
.top-ribbon__left{ flex:1; background:var(--brown); }
.top-ribbon__right{ flex:1; background:var(--green); }

/* ===== Top Message ===== */
.top-message{ margin-top:15px; padding:20px 16px; }
.tm-inner{ display:flex; justify-content:center; align-items:center; gap:8px; margin-inline:auto; }
.tm-slash{ display:block; height:90px; width:auto; object-fit:contain; }
.tm-text{ margin:0; font-size:17px; font-weight:700; color:#fff; line-height:1.6; text-align:center; }
@media (max-width:767px){
  .tm-slash{ height:42px; }
  .tm-inner{ gap:10px; }
  .tm-text{ font-size:12px; }
}

/* ===== FV ===== */
.fv{
  position: relative;
  overflow: hidden;        /* FV全体のはみ出しは隠す */
}

/* ドーム画像 */
.fv-dome{
  position: relative;
  width: 45%;
  margin: 0 auto;
  z-index: 2;
}
.fv-dome__img{
  width: 100%;
  height: auto;
  display: block;
}

.fv-green {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -80px;
  overflow: hidden;
}

.fv-green__img {
  width: 100%;     /* 横幅を基準に常に100% */
  height: auto;    /* 高さは自然に縮む */
  display: block;
}

/* ブレークポイントの微調整（既存と同等） */
@media (min-width:768px) and (max-width:1199px){
  .fv-dome{ width:70%; }
  .fv-green{ margin-top:-110px; }
}
@media (max-width:767px){
  .fv-dome{ width:90%; }
}
@media (min-width:1200px){
  .fv-green{ margin-top:-150px; }
}

/* ===== 開催情報オーバーレイ ===== */
.fv-meta-overlay{
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  z-index: 4;
  pointer-events: none;
  will-change: top;
}
.meta-band{ position:absolute; inset:0; background:var(--green); }
.meta-panel{
  position: relative;
  pointer-events: auto;
  width:45%;
  margin:0 auto;
  padding: 20px 0;         /* ← ここを詰めたいなら数値を調整 */
}
@media (min-width:768px) and (max-width:1199px){ .meta-panel{ width:70%; } }
@media (max-width:767px){ .meta-panel{ width:90%; } }

.meta-inner{ display:flex; flex-direction:column; gap:20px; padding:0 20px; }
.meta-item{ display:flex; align-items:center; gap:14px; color:#fff; }
.meta-label{
  flex:0 0 auto; width:44px; height:44px; border-radius:9999px;
  background:#fff; color:var(--green);
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:800; font-size:10px; letter-spacing:.02em;
}
.meta-text{ margin:0; font-weight:700; font-size:20px; line-height:1.5; }
.br-sp{ display:none; }
@media (max-width:767px){
  .meta-item{ align-items:flex-start; }
  .meta-label{ width:40px; height:40px; font-size:10px; }
  .meta-text{ font-size:16px; line-height:1.6; }
  .br-sp{ display:inline; }
}

/* ================= NATURE BASE DAIGO ================= */
.nbd{
  --bleed-h: clamp(240px, 36vw, 560px);
  --bleed-out: 8vw;
  background:#eeeadf;
  padding: clamp(32px,4vw,56px) 0;
  scroll-margin-top: 90px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
/* PC：左右三角は背景として描画（外側へはみ出し） */
.nbd::before,
.nbd::after{
  content:"";
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  width:100vw; height:var(--bleed-h);
  background-repeat:no-repeat;
  pointer-events:none; z-index:-1;
}
.nbd::before{
  background-image:url("images/triangle_nb1.png");
  background-position: calc(0% - var(--bleed-out)) center;
  background-size: calc(30vw + var(--bleed-out)) auto;
}
.nbd::after{
  background-image:url("images/triangle_nb2.png");
  background-position: calc(100% + var(--bleed-out)) center;
  background-size: calc(30vw + var(--bleed-out)) auto;
}
.nbd__inner{ position:relative; z-index:1; }
.nbd__side{ display:none; }
.nbd__center{
  text-align:center;
  padding: 50px 24px;   /* 上下50px・左右24px */
}
.nbd__logo{ display:block; width: clamp(84px, 14vw, 120px); height:auto; margin: 0 auto 12px; }
.nbd__title{ margin: 0 0 16px; font-weight: 900; letter-spacing: .08em; font-size: clamp(20px, 3.4vw, 28px); color:#0b1320; }
.nbd__lead{ margin: 0 auto; line-height: 1.9; color:#0b1320; font-weight: 500; font-size: clamp(13px, 1.8vw, 15px); width:min(48ch, 92%); }

@media (max-width:1024px){
  .nbd::before,.nbd::after{ display:none; }
  .nbd{ padding:32px 0; }
  .nbd__inner{ display:flex; flex-direction:column; gap:24px; align-items:stretch; }
  .nbd__side{ display:block; }
  .nbd__side img{
    display:block; width:70vw; max-width:none; height:auto;
    position:relative; left:50%; transform:translateX(-50%);
  }
  .nbd__center{ padding: 0 16px; }
}
/* SP & iPad：NBセクションの左右三角を「縦並び」で左右に100pxはみ出し */
@media (max-width:1024px){
  /* クリップされないように NB セクションのオーバーフロー解除 */
  .nbd{
    overflow: visible; /* ← デフォは hidden を上書き */
  }

  /* 既存の「中央寄せ（left:50% / translateX(-50%)）」を無効化して新ルールに */
  .nbd__side img{
    width: 50vw;        /* サイズは50% */
    height: auto;
    display: block;
    position: static;   /* relativeのずれを使わない */
    transform: none;    /* いったんリセット */
    max-width: none;    /* 画像実寸に縛られないように */
  }

  /* 左三角：左へ100pxはみ出し（縦並びの順序はそのまま） */
  .nbd__side--left img{
    margin-right: auto;           /* 左寄せ */
    transform: translateX(-100px);
  }

  /* 右三角：右へ100pxはみ出し（縦並びの順序はそのまま） */
  .nbd__side--right img{
    margin-left: auto;            /* 右寄せ */
    transform: translateX(100px);
  }
}

/* スマホ・iPadだけ適用 */
@media (max-width:1024px){
  /* NBセクションのはみ出し許可 */
  .nbd{
    overflow: visible; /* ← ここはNBだけ */
  }

  /* 左三角：縦並びのまま左に100pxはみ出し */
  .nbd__side--left img{
    width: 50vw;
    height: auto;
    display: block;
    margin: 0 auto 0 0;     /* 左寄せ */
    transform: translateX(-100px);
  }

  /* 右三角：縦並びのまま右に100pxはみ出し */
  .nbd__side--right img{
    width: 50vw;
    height: auto;
    display: block;
    margin: 0 0 0 auto;     /* 右寄せ */
    transform: translateX(100px);
  }
}

/* 初期状態：透明＆ずらした位置 */
.fade-in-left,
.fade-in-right,
.fade-in-up {
  opacity: 0;
  transform: translateY(30px); /* デフォルトは下から */
  transition: all 0.8s ease-out;
  transition-delay: 0.5s; /* ← 0.5秒遅れてから開始 */
}

.fade-in-left { transform: translateX(-50px); }
.fade-in-right{ transform: translateX(50px); }
.fade-in-up   { transform: translateY(50px); }

/* 表示されたら */
.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ========================= CONTENTS ========================= */
#contents.contents{
  background: url("images/contents_bg.png") repeat-y center top;
  background-size: 100% auto;
  padding: clamp(48px, 8vw, 96px) 0 clamp(48px, 8vw, 96px);
  padding-bottom: 140px;
}
.contents__inner{ width:min(1100px,92%); margin-inline:auto; text-align:center; }
.contents__catch{ font-size:clamp(12px,1.9vw,16px); letter-spacing:.08em; margin:0 0 16px; color:#3b2b2b; font-weight:700; }
.contents__ribbon{
  --cut: clamp(18px, 1.4vw, 16px);
  height: clamp(48px, 6vw, 60px);
  background:#401b1b; color:#fff; display:grid; place-items:center;
  width:360px; margin:0 auto;
  clip-path: polygon(var(--cut) 0,100% 0,100% calc(100% - var(--cut)),calc(100% - var(--cut)) 100%,0 100%,0 var(--cut));
}
.contents__title{ margin:0; font-weight:500; letter-spacing:.4em; font-size:clamp(16px,2.2vw,18px); }

/* 白い角丸テーブル */
.contents-board{
  width:min(1100px,92%); margin:20px auto 0;
  background:#fff; border-radius:45px;
  padding: clamp(20px, 3.6vw, 40px);
  position:relative; z-index:1;
}
@media (max-width:767px){
  .contents-board{ border-radius:18px; padding:18px; }
}

/* ブロック全体（縦方向の間隔） */
.c-contents{ display:flex; flex-direction:column; gap:40px; }

/* 各ブロックの2カラム（PC/iPad） */
.c-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;             /* 基本の row/column ギャップ */
}

/* 偶数ブロック：PC/iPadは左右反転（文字→写真） */
@media (min-width:768px){
  .c-block{ column-gap: 20px; }   /* ← 写真と文字の間だけ 5px に上書き */
  .c-text{ margin-top: 23px; }    /* ← テキストブロックを 3px 下げる */
  .c-block:nth-child(even) .c-visual{ order: 2; }
  .c-block:nth-child(even) .c-text  { order: 1; }
}

/* 画像（角丸・影なし） */
.c-visual img{
  display:block; width:100%; height:auto;
  border-radius:0; box-shadow:none; object-fit:cover;
}

/* テキスト側 */
.c-text{ font-size:12px; line-height:1.9; color:#222; }
.c-pre{ margin:0 0 10px; font-weight:700; color:#333; }
.c-sec-ttl{
  margin:10px 0; font-weight:900; letter-spacing:.08em;
  font-size: clamp(16px, 2.2vw, 20px); color:#1a1a1a;
}
.c-rule{
  height:2px; background:var(--rule); opacity:.7; width:100%;
  margin:8px 0;
}

/* リスト：◯マーカー */
.c-list{ margin:10px 0 0; padding:0; list-style:none; }
.c-list li{ margin:.1em 0; padding-left:1.4em; position:relative; }
.c-list li::before{
  content:"◯"; position:absolute; left:0; top:0; color:#0b1320;
  font-size:1em; line-height:1.9;
}
.reserve-grid{
  /* 既存の行はそのままに、これだけ足す */
  justify-items: center;   /* 各セル内アイテムを中央に */
}


/* スマホ：縦並び（DOM順＝写真→文字→写真→文字…）＋文字padding10px */
@media (max-width:767px){
  .c-block{ grid-template-columns: 1fr; }
  .c-block .c-visual, .c-block .c-text{ order:0; }
  .c-block:nth-child(even) .c-visual, .c-block:nth-child(even) .c-text{ order:0 !important; }
  .c-text{ padding:10px; }  /* ← リクエスト通り */
}
/* ===== RESERVATION ===== */
:root{
  --reserve-radius: 28px;
  --h-title: clamp(48px, 5vw, 64px);
  --h-desc: clamp(100px, 10vw, 140px);
  --h-cta: clamp(80px, 8vw, 100px);
}

.reservation{
  background:#f7f7f7;
  position:relative;
  width:100%;
  margin:0;
  padding:0 0 clamp(40px,6vw,72px);
  z-index:0;
}

.reservation__base{
  position: relative;
  width:100%;
  background:#fff;
  border-radius:28px;
  padding: clamp(6px, 1.4vw, 16px) clamp(32px,5vw,64px) clamp(32px,5vw,64px);
  overflow:visible;
  z-index:1;
}

.reservation__lead{
  margin:0 auto 40px;   
  text-align:center;
  font-weight:400;
  font-size:clamp(10px, 2vw, 12px);
  color:#0b1320;
  line-height:1.7;
  max-width:50ch;     
}

.reservation__dome{
  position:absolute;
  bottom:100%;
  left:50%;
  transform:translateX(-50%);
  width:60vw;  
  max-width:500px;  
  height:auto;
  display:block;
  z-index:2;
}
@media (max-width:767px){
  .reservation__dome{ width:80vw; }
}

.reservation__inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
}

/* ===== グリッド ===== */
.reserve-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 32px);
  align-items:start;
  justify-items:center;
}

/* ===== カード ===== */
.reserve-card{
  display:grid;
  grid-template-rows:
    auto                                  /* サムネイル */
    minmax(var(--h-title), auto)          /* タイトル（必要なら伸びる） */
    minmax(var(--h-desc),  auto)          /* 説明文（必要なら伸びる） */
    var(--h-cta);                         /* ボタン */
  width:min(520px, 100%);
  margin-inline:auto;
  text-align:center;
}

.reserve-thumb{ grid-row:1; margin:0; }
.reserve-thumb img{ width:85%; margin:0 auto; display:block; }

/* タイトル */
.title-wrap {
  grid-row: 2;
  display: flex;
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */
  height: 100%;               /* 行いっぱいに広げる */
  margin: 0;
}

.reserve-title-main {
  margin: 10px 0;
  font-weight: 800;
  font-size: clamp(14px, 2.2vw, 16px);
  color: #0b1320;
  line-height: 1.4;
  text-align: center;
}

@media (max-width:767px){
  .reserve-title-main {
    font-size: 18px;   /* ← お好みで20pxや22pxでもOK */
    line-height: 1.5;
  }
}

.reserve-title-main .reserve-sub {
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
}
.reserve-title-main .reserve-cap {
  font-weight: inherit;
  color: inherit;
  font-size: clamp(14px, 1.8vw, 16px);
  margin-left: 4px;
}

.reserve-desc{
  display:flex;
  align-items:center;        /* 縦中央 */
  justify-content:center;    /* ボックス自体は中央 */
  text-align:left;           /* ← ここを left に修正！ */
  padding:0 14px;
  margin:0;
  color:#263238;
  font-size:clamp(13px, 1.7vw, 14px);
  line-height:1.7;
  width:100%;
}

/* ボタン */
.reserve-cta{
  grid-row:4;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
}
.reserve-btn img{
  width:85%;       
  max-width:240px; 
  margin:0 auto;   
  display:block;
  transition:transform 0.3s ease;
}
.reserve-btn img:hover{ transform:scale(1.05); }

/* ===== 横並び（768px以上） ===== */
@media (min-width:768px){
  .reserve-grid{ align-items: stretch; }
  .reserve-card{
    grid-template-rows:
      auto
      1fr   /* タイトル行：最大高さに揃える */
      1fr   /* 説明文行：最大高さに揃える */
      var(--h-cta);
  }
  .title-wrap,
  .reserve-desc{ align-self:center; }
}

/* ===== スマホ（767px以下 / 1カラム） ===== */
@media (max-width:767px){
  .reserve-grid{
    grid-template-columns: 1fr;   /* ← 1カラムに変更 */
    gap:16px;
    align-items: stretch;
  }

  .reserve-card{
    width:100%;
    grid-template-rows:
      auto
      1fr   /* タイトル行：同じ高さに揃える */
      1fr   /* 説明文行：同じ高さに揃える */
      auto;
  }
  .title-wrap,
  .reserve-desc{ align-self:center; }

  /* 説明文の幅を80%に */
  .reserve-desc{ width:80%; margin:0 auto; }
}

/* サムネイルの箱に幅を持たせて mini の基準にする */
.reserve-thumb{
  width:85%;
  margin:0 auto;
  position:relative;
}
.reserve-thumb img{
  width:100%;   /* ← 画像は箱いっぱい */
  margin:0;
  display:block;
}

.reserve-thumb .mini {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40%;    /* ← サムネイル幅に対して20% */
  height: auto;
  display: block;
  z-index: 3;
}

@media (max-width:767px){
  .reserve-thumb .mini {
    top: -20px;
    right: -10px;
  }
}

@media (max-width:767px){
  .reserve-desc{
    width:80%;
    margin:0 auto 20px;   /* ← 下に20px余白 */
  }

  .reserve-cta{
    margin-bottom:20px;   /* ← ボタンの下に20px余白 */
  }
}

.reservation-note {
  text-align: center;
  margin-top: 40px;       
  padding: 20px 0;          /* 罫線と文章の間に余白 */
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  line-height: 1.6;
  color: #0b1320;
  border-top: 1px solid #ccc;    /* 上の罫線 */
  border-bottom: 1px solid #ccc; /* 下の罫線 */
}

.reservation-note a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

/* ============================ ACCESS ============================ */
.access{
  background:#f7f7f7;
  padding: clamp(48px, 7vw, 96px) 0;
}
.access__inner{ width:min(1100px,92%); margin-inline:auto; }

.access__title{
  margin:0 0 20px;
  text-align:center;
  font-weight:600;
  letter-spacing:.35em;
  font-size: clamp(22px, 3.2vw, 28px);
}

/* Map：16:9レスポンシブ */
.access__map{ margin: 12px auto 28px; }
.map-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background:#e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.map-frame iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  display:block;
}

/* 幅と背景はこのまま */
.access__table{
  width:47%;
  margin:80px auto 120px;
  background:#f7f7f7;
  padding:0;
}
@media (max-width:767px){
  .access__table{ width:90%; }
}

/* 本体 */
.ac-table{ width:100%; margin:0; padding:0; border:none; }

/* 行：左右2カラム＋中央の空き */
.ac-row{
  display:grid;
  grid-template-columns: 25% 75%;   /* 左1/4・右3/4 */
  column-gap:18px;                  /* ← この分だけ中央が切れる */
  align-items:start;                /* 上詰め */
  margin:0; padding:0;
  background:#f7f7f7;
}

/* セル共通：同じ余白で高さを揃える（ズレ防止） */
.ac-row dt,
.ac-row dd{
  position:relative;
  margin:0;
  padding:10px 0;                  /* ← dt/dd 同じ値にすることが重要 */
  line-height:1.6;
  font-size:14px;
  color:#111;
  background:#f7f7f7;
  box-sizing:border-box;
}

/* ★各行の“上線”を左右カラムごとに描画（中央は切れる） */
.ac-row dt::before,
.ac-row dd::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:1px; background:#111;
}

/* ★最後の行だけ“下線”も左右で描画（中央は切れる） */
.ac-row:last-child dt::after,
.ac-row:last-child dd::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px; background:#111;
}

/* 左カラム（住所・アクセス・TEL） */
.ac-row dt {
  font-weight: 700;
  text-align: center;   /* ← 中央揃えに変更 */
}

/* 右カラム（内容） */
.ac-row dd {
  text-align: left;     /* ← そのまま */
}

@media (max-width:767px){
  .ac-row {
    grid-template-columns:28% 72%;
    column-gap:12px;
  }
  .ac-row dt,
  .ac-row dd {
    font-size:13px;
    padding:8px 0;
  }
}

/* 下からふわっと */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  transition-delay: 0.5s;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* フェードインのみ */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
  transition-delay: 0.5s;
}
.fade-in.is-visible {
  opacity: 1;
}

/* ============================ MOVIE ============================ */
.movie{
  background:#fff;
  padding: clamp(48px, 7vw, 96px) 0;
}
.movie__inner{
  width:min(1000px,92%);
  margin:0 auto;
  text-align:center;
}
.movie__title{
  margin:0 0 24px;
}
.movie__title img{
  max-width:320px;
  width:100%;
  height:auto;
}

/* 枠：16:9比率で画像を表示し、クリックで動画に切り替え */
.movie__frame{
  position:relative;
  width:50%;                 /* PC・iPadは50%幅 */
  aspect-ratio:16 / 9;
  margin:0 auto;
  background:#000;
  border-radius:8px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
@media (max-width:767px){
  .movie__frame{ width:80%; }   /* スマホは100%幅 */
}
.movie__frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}
.movie__thumb{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* フォーカス時 */
.movie__frame:focus-visible{
  outline:3px solid #3b82f6;
  outline-offset:3px;
}

/* 再生中はポインタ不要 */
.movie__frame.is-playing{ cursor:default; }

/* MOVIEセクションのYouTube埋め込み余白 */
.movie iframe {
  display: block;
  margin: 15px auto 30px;  /* 上15px, 下30px, 横は中央寄せ */
  max-width: 100%;
}

.movie-top {
  display: block;
  max-width: 300px;   /* PCでの最大幅 */
  width: 35%;         /* デフォルトは90% */
  margin: 0 auto;     /* 中央寄せ */
  height: auto;
}

/* スマホ（767px以下）は70%に */
@media (max-width:767px){
  .movie-top {
    width: 60%;
  }
}

.movie__frame {
  position: relative;
  cursor: pointer;
  text-align: center;
  margin: 15px auto 30px;  /* 上15px 下30px */
  max-width: 100%;
}

.movie__thumb {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* YouTube埋め込みが置き換わったとき */
.movie__frame iframe {
  display: block;
  width: 100%;
  max-width: 800px;  /* 好きな最大幅に調整 */
  aspect-ratio: 16/9;
  margin: 15px auto 30px;
}

/* ============================ SPONSORS ============================ */
.sponsors{
  position: relative;
  background:#eeeadf;
  padding: 56px 0 64px;
}
.sponsors::before{
  content:"";
  position:absolute; left:0; top:-6px; width:100%; height:6px;
  background:
    url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='60' height='6' viewBox='0 0 60 6'>\
      <path d='M0 6 L15 0 L30 6 L45 0 L60 6 V6 H0 Z' fill='%23eeeadf'/>\
    </svg>") repeat-x top left;
}
.sponsors__inner{ width:min(1100px,92%); margin:0 auto; }

/* 見出し（主催・協力） */
.spon-badge{
  display:inline-block;
  background:#433f3f;
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:2px 12px;
  line-height:1.4;
  white-space:nowrap;
}
.spon-title{
  font-weight:600;
  color:#1a1a1a;
  font-size: clamp(13px, 2.2vw, 18px);
}

/* PC: 主催と協力を横並びで中央寄せ */
.spon-head{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin:0 0 22px;
}
.spon-pair{ display:inline-flex; align-items:center; gap:10px; }

/* スマホ: 主催は中央、協力は主催の左端に揃える */
@media (max-width:767px){
  .spon-head{
    flex-direction:column;   /* ← 縦並びにして改行 */
    align-items:center;      /* 主催行を中央に */
    gap:8px;
  }
  .spon-pair--main{
    justify-content:center;
    width:100%;
  }
  .spon-pair--support{
    justify-content:flex-start;   /* 左寄せ */
    width:100%;
    max-width:max-content;        /* 主催行の幅に収める */
  }
}  .spon-badge{ font-size:13px; }
  .spon-title{ font-size:12px; line-height:1.6; }

/* ロゴ並び */
.spon-logos{
  list-style:none; padding:0; margin:18px 0 18px;
  display:grid; align-items:center; justify-items:center;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap:2px 8px;
}
.spon-logos img{ display:block; width:100%; height:auto; object-fit:contain; }
.spon-logos .is-last img{ width:50%; margin:0 auto; }
.spon-logos .is-last{ margin-left:-30px; }

/* テキスト */
.spon-right{
  margin:8px 0 18px;
  text-align:right;
  font-size:8px; line-height:1.7; color:#1f1f1f;
}
.spon-disclaimer{
  text-align:center;
  font-size:10px; color:#1f1f1f;
  margin:8px 0 0;
}

/* 下部リボン */
.spon-ribbon{
  position:absolute; bottom:0; left:0; width:100%; height:14px;
  background:linear-gradient(90deg,#433f3f 0 50%, #0c7773 50% 100%);
}

/* SP時のロゴ配置 */
@media (max-width:767px){
  .spon-right{ text-align:center; }
  .spon-logos{ grid-template-columns: repeat(2, minmax(120px,1fr)); gap:14px 14px; }
  .spon-logos .is-last{ margin-left:0; grid-column:1/-1; justify-self:center; }
}

/* グリンヴィラHPボタン */
.reserve-hp-btn img {
  display:block;
  max-width:280px;   
  width:100%;
  height:auto;
  margin:20px auto 0; /* 上に20px余白＋中央寄せ */
  transition: transform 0.3s ease;
}
.reserve-hp-btn img:hover {
  transform: scale(1.05);
}

.contents-disclaimer {
  text-align:center;
  font-size: 12px;
  color:#555;
  margin-top: 12px;
  line-height:1.6;
}
@media (max-width:767px){
  .contents-disclaimer {
    font-size: 11px;
  }
}

/* CONTENTS内 免責文（白ボードの一番下・中央） */
.contents-disclaimer{
  text-align:center;
  font-size:12px;
  color:#555;
  margin:24px 0 0;   /* 上だけ空けて下はピッタリ */
  line-height:1.6;
}
@media (max-width:767px){
  .contents-disclaimer{ font-size:11px; }
}