/* assets/css/index.css */

/* =========================================================
   THEME TOKENS（クライアント指定）
========================================================= */
:root{
  --c-accent: #40B3D5;
  --c-navy: #001E5A;
  --c-sub: #3393D1;

  --alpha-35: .35;

  /* “白色”の基準（純白禁止：フッター文字色相当） */
  --c-white: rgba(255,255,255,.92);
  --c-white-strong: rgba(255,255,255,.95);

  --ink: var(--c-navy);
  --container: 1120px;
}

*{ box-sizing:border-box; }
body.page-index{
  color: var(--ink);
  background: #fff;
}

/* =========================================================
   HEADER（右寄せカプセル帯 + dropdown + more + SP drawer）
========================================================= */
body.page-index .header-fixed{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  pointer-events: none;
}

/* オーバーレイ（黒35%） */
body.page-index .nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,var(--alpha-35));
  pointer-events: auto;
  z-index: 1990;
}

/* 右寄せラッパ */
body.page-index .header-rightwrap{
  position: relative;
  width: 100%;
  pointer-events: none;
}

/* カプセル帯（右寄せ、左端丸、右端は画面に吸着） */
body.page-index .header-pill{
  pointer-events: auto;
  margin-left: auto;
  margin-right: 0;
  margin-top: 12px;

  width: fit-content;
  max-width: calc(100% - 12px);

  background: rgba(64,179,213,var(--alpha-35));
  border-radius: 999px 0 0 999px; /* 左終端だけ丸 */
  padding: 10px 14px 10px 16px;

  box-shadow: 0 16px 48px rgba(0,30,90,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-index .nav{
  display:flex;
  align-items:center;
  gap: 18px;
  white-space: nowrap;
}

body.page-index .nav-link,
body.page-index .nav-cta{
  color: var(--c-white-strong);
  font-weight: 900;
  font-size: 14px;
  text-decoration:none;
  padding: 10px 10px;
  border-radius: 14px;
}

body.page-index .nav-link:hover,
body.page-index .nav-link:focus-visible{
  background: rgba(255,255,255,.14);
  outline: none;
}

body.page-index .nav-cta{
  background: rgba(0,30,90,.30);
  padding: 11px 14px;
  border-radius: 16px;
}

/* dropdown */
body.page-index .nav-item{
  position: relative;
}
body.page-index .has-sub .nav-link--sub::after{
  content:"▾";
  margin-left: 6px;
  font-size: 12px;
  opacity: .9;
}
body.page-index .nav-sub{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(64,179,213,.92);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,30,90,.16);
  padding: 10px;
  display:none;
  z-index: 2100;
}
body.page-index .nav-sub a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--c-white-strong);
  font-weight: 1000;
  text-decoration:none;
}
body.page-index .nav-sub a:hover{ background: rgba(255,255,255,.12); }

/* hover/focusで開く */
@media (hover:hover){
  body.page-index .has-sub:hover .nav-sub{ display:block; }
}
body.page-index .has-sub:focus-within .nav-sub{ display:block; }

/* PC more button */
body.page-index .nav-more{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 0;
  background: rgba(0,30,90,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 5px;
  cursor:pointer;
}
body.page-index .nav-more span{
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--c-white-strong);
  display:block;
  opacity: .95;
}
body.page-index .nav-more:focus-visible{
  outline: 2px solid rgba(255,255,255,.35);
  outline-offset: 3px;
}

/* more menu panel */
body.page-index .more-menu{
  position: fixed;
  top: 70px;
  right: 12px;
  width: min(520px, calc(100% - 24px));
  background: rgba(64,179,213,.92);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,30,90,.18);
  padding: 12px;
  z-index: 2050;
  pointer-events: auto;
}
body.page-index .more-menu a{
  display:block;
  padding: 14px 14px;
  border-radius: 16px;
  color: var(--c-white-strong);
  font-weight: 1000;
  text-decoration:none;
}
body.page-index .more-menu a:hover{
  background: rgba(255,255,255,.12);
}

/* SP hamburger only */
body.page-index .sp-only{ display:none; }

body.page-index .burger{
  pointer-events: auto;
  position: fixed;
  top: 12px;
  right: 12px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 0;
  background: rgba(64,179,213,var(--alpha-35));
  box-shadow: 0 18px 55px rgba(0,30,90,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor:pointer;
  z-index: 2060;
}
body.page-index .burger span{
  display:block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--c-white-strong);
  border-radius: 999px;
}

/* SP drawer */
body.page-index .sp-drawer{
  position: fixed;
  top: 12px;
  right: 12px;
  left: 12px;
  margin-left: auto;
  max-width: 560px;
  background: rgba(64,179,213,.92);
  border-radius: 24px;
  box-shadow: 0 22px 80px rgba(0,30,90,.20);
  z-index: 2070;
  pointer-events: auto;
  overflow:hidden;
}
body.page-index .sp-drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
}
body.page-index .sp-drawer-title{
  font-weight: 1000;
  color: var(--c-white-strong);
  letter-spacing:.08em;
}
body.page-index .sp-drawer-close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 0;
  background: rgba(0,30,90,.22);
  color: var(--c-white-strong);
  font-size: 22px;
  cursor:pointer;
}
body.page-index .sp-drawer-body{
  padding: 10px 16px 16px;
  display:grid;
  gap: 10px;
}
body.page-index .sp-drawer-body a{
  display:block;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  color: var(--c-white-strong);
  font-weight: 1000;
  text-decoration:none;
}
body.page-index .sp-drawer-body a:hover{
  background: rgba(255,255,255,.14);
}
body.page-index .sp-drawer-body .sp-cta{
  background: rgba(0,30,90,.30);
}
body.page-index .sp-sep{
  border: none;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 8px 0 4px;
}

/* SP accordion（診療案内） */
body.page-index .sp-acc{ display:grid; gap:10px; }
body.page-index .sp-acc-btn{
  width:100%;
  text-align:left;
  padding: 14px 14px;
  border-radius: 16px;
  border: 0;
  background: rgba(255,255,255,.10);
  color: var(--c-white-strong);
  font-weight: 1000;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
body.page-index .sp-acc-icon{ opacity:.9; }
body.page-index .sp-acc-panel{
  padding-left: 10px;
  display:grid;
  gap: 8px;
}
body.page-index .sp-acc-panel a{
  background: rgba(0,30,90,.18);
}

/* PC/SP切替 */
@media (max-width: 980px){
  body.page-index .header-rightwrap{ display:none; }
  body.page-index .sp-only{ display:block; }
}

/* =========================================================
   SECTION common
========================================================= */
.section{
  position: relative;
  padding: 84px 0;
}
.container{
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
}
.section-title{
  text-align:center;
  margin: 0 0 28px;
  font-size: 34px;
  font-weight: 1000;
  color: var(--c-navy);
}
.section-title--jp{ font-size: 36px; }
.section-title--mid{ font-size: 30px; }
.section-subtitle{
  text-align:center;
  margin: -14px 0 34px;
  font-size: 34px;
  font-weight: 1000;
  color: var(--c-navy);
  letter-spacing: .01em;
}

/* 右下ボタン（共通：ネイビー＋枠なし＋ホバー演出なし） */
.section-action{
  display:flex;
  justify-content:flex-end;
  margin-top: 18px;
}
.btn-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 1000;
  text-decoration:none;
}
.btn-link--navy{
  background: var(--c-navy);
  color: var(--c-white);
  border: 0; /* 枠なし */
}
/* ホバー演出不要 → 何もしない */

/* =========================================================
   HERO
========================================================= */
.hero{
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.hero-vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), rgba(0,0,0,0) 55%),
    radial-gradient(circle at 80% 30%, rgba(64,179,213,.18), rgba(0,0,0,0) 52%),
    linear-gradient(to bottom, rgba(255,255,255,.10), rgba(0,0,0,0) 60%, rgba(255,255,255,.12));
  pointer-events:none;
}

.hero-logo{
  position:absolute;
  top: 74px;
  left: 22px;
  z-index: 20;
  width: min(420px, 45vw);
}
.hero-logo img{ width: 100%; height: auto; display:block; }

/* キャッチ：2段階サイズUP + 少し下げる */
.hero-catch{
  position:absolute;
  left: 26px;
  top: 54%;
  transform: translateY(-50%);
  z-index: 20;

  background: rgba(64,179,213,var(--alpha-35));
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: 0 18px 55px rgba(0,30,90,.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-catch p{
  margin: 0;
  font-weight: 1000;
  font-size: 34px; /* 2段階UP */
  line-height: 1.22;
  color: var(--c-white-strong);
  letter-spacing: .02em;
}

.hero-badge{
  position:absolute;
  left: 26px;
  bottom: 26px;
  z-index: 20;
  width: 210px;
}
.hero-badge img{ width:100%; height:auto; display:block; }

/* 右下固定：2段階サイズUP（デザインは触らない） */
.corner-actions{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  display:flex;
  gap: 14px;
  align-items:flex-end;
}
.corner-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 8px;

  padding: 16px 18px; /* UP */
  border-radius: 18px;
  background: rgba(64,179,213,var(--alpha-35));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 55px rgba(0,30,90,.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  min-width: 270px; /* UP */
  text-decoration:none;
}
.corner-kicker{
  font-weight: 1000;
  font-size: 13px;
  color: var(--c-navy);
  opacity: .95;
  background: rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 6px 12px;
  width: fit-content;
}
.corner-main{
  font-weight: 1000;
  font-size: 24px; /* UP */
  letter-spacing: .02em;
  color: var(--c-white-strong);
}

/* =========================================================
   FEATURE（真っ白対策：レイヤー/重なり修正）
========================================================= */
.feature{
  padding-top: 92px;
  background: #fff;
}
.feature-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%, rgba(64,179,213,.14), rgba(255,255,255,0) 52%),
    radial-gradient(circle at 82% 24%, rgba(51,147,209,.10), rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,1));
  pointer-events:none;
  z-index: 0;
}
.feature-inner{
  position: relative;
  z-index: 1; /* ここが肝 */
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card-glass{
  background: #fff;
  border: 1px solid rgba(51,147,209,.25);
  box-shadow: 0 16px 40px rgba(0,30,90,.08);
  border-radius: 22px;
  overflow:hidden;
  padding: 0 0 16px;
}
.card-img img{
  width:100%;
  height: 180px;
  object-fit: cover;
  display:block;
}
.card-glass h3{
  margin: 14px 16px 8px;
  font-size: 18px;
  font-weight: 1000;
  color: var(--c-navy);
}
.card-glass p{
  margin: 0 16px 0;
  color: rgba(0,30,90,.78);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.75;
}
/* 5枚を 3列×2段（最後左寄せ） */
.cards--five > :nth-child(4){ grid-column: 1; }
.cards--five > :nth-child(5){ grid-column: 2; }

/* =========================================================
   MESSAGE（縦書き + サイズUP）
========================================================= */
.message{
  background:
    radial-gradient(circle at 20% 20%, rgba(64,179,213,.10), rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,1));
}
.message-layout{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 26px;
  width: min(980px, 100%);
  margin: 0 auto;
}
.message-center{
  width: 320px;
  max-width: 38vw;
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(51,147,209,.25);
  box-shadow: 0 18px 55px rgba(0,30,90,.10);
  background: #fff;
}
.message-center img{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:block;
}
.message-col{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.message-text{
  margin: 0;
  font-weight: 900;
  color: rgba(0,30,90,.86);
  line-height: 1.9;
  font-size: 19px; /* 2段階UP */
  background: rgba(255,255,255,.86);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 40px rgba(0,30,90,.06);
}

/* 縦書き */
.message-text--vertical{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .02em;
  line-height: 1.75;
  max-height: 360px;
}

/* =========================================================
   VALUES（カード高さ揃え：下段が必ず#001E5Aで埋まる）
========================================================= */
.values{
  background: var(--c-accent);
}
.values .section-title{ color: var(--c-white-strong); }
.values-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card{
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 16px 44px rgba(0,30,90,.16);
  border: 1px solid rgba(255,255,255,.22);
  display:flex;
  flex-direction:column;
}
.value-card h3{
  margin:0;
  padding: 16px 16px 14px;
  background: #fff;
  color: var(--c-navy);
  font-weight: 1000;
  font-size: 16px;
  line-height: 1.4;
}
.value-card p{
  margin:0;
  padding: 14px 16px 16px;
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: 900;
  line-height: 1.8;
  font-size: 14px;
  flex: 1; /* これで短文でも下段が埋まる */
}

/* =========================================================
   PRICE（維持）
========================================================= */
.price{
  background:
    radial-gradient(circle at 16% 18%, rgba(64,179,213,.10), rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,1));
}
.price-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card{
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 16px 42px rgba(0,30,90,.10);
}
.price-card--accent{
  background: var(--c-accent);
  color: var(--c-white);
}
.price-card h3{
  margin: 0 0 8px;
  font-weight: 1000;
  color: var(--c-white-strong);
}
.price-meta{
  margin: 0 0 10px;
  font-weight: 1000;
  color: var(--c-white);
}
.price-desc{
  margin: 0;
  color: var(--c-white);
  font-weight: 900;
  line-height: 1.85;
  font-size: 13px;
}

/* =========================================================
   DEDUCTION（枠なし + 背景ネイビー + 文字フッター色）
========================================================= */
.deduction{
  background: #fff;
  padding-top: 74px;
  padding-bottom: 86px;
}
.deduction-box{
  width: min(920px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  padding: 18px 18px;
}
.deduction-box--navy{
  background: var(--c-navy);
  border: 0;
  box-shadow: 0 18px 55px rgba(0,30,90,.16);
}
.deduction-box--navy p{
  margin: 0;
  line-height: 1.9;
  font-weight: 900;
  color: var(--c-white);
}

/* =========================================================
   NEWS（見出し色：フッター文字色、背景パララックス復旧はJS）
========================================================= */
.news{
  position: relative;
  padding-top: 96px;
  padding-bottom: 120px;
  overflow:hidden;
}
.news-bg{
  position:absolute;
  inset:0;
  background-image: url("../img/feature-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.news-film{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 20%, rgba(51,147,209,.22), rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(0,30,90,.35), rgba(0,30,90,.20));
  mix-blend-mode: multiply;
  opacity: .85;
}
.news-inner{
  position: relative;
  z-index: 2;
}
.section-title--news{
  color: var(--c-white); /* フッター文字色 */
}
.news-window{
  width: min(920px, 100%);
  margin: 0 auto;
  background: rgba(51,147,209,.22);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(0,30,90,.18);
  padding: 18px 18px 14px;
  color: var(--c-white);
}
.news-list{ list-style:none; padding: 0; margin: 0; }
.news-list li{ display:flex; gap: 12px; padding: 12px 10px; border-radius: 16px; }
.news-list li + li{ border-top: 1px solid rgba(255,255,255,.20); }
.news-list time{ font-weight: 1000; opacity: .92; min-width: 120px; }
.news-list span{ font-weight: 1000; opacity: .95; }

.news-fadeout{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  z-index: 3;
}

/* =========================================================
   ACCESS（カード内容は触らない + 見出し/ボタン追加）
========================================================= */
.sec.access{
  background: #fff;
  padding: 92px 0 0;
}
.access-title{
  margin-bottom: 18px;
}
.access-wrap{
  position: relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  align-items: stretch;
  margin-top: 22px;
}
.access-photo{
  position: relative;
  border-radius: 28px;
  overflow:hidden;
  min-height: 360px;
  box-shadow: 0 18px 55px rgba(0,30,90,.10);
}
.access-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.access-card{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 46%);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(51,147,209,.22);
  box-shadow: 0 18px 55px rgba(0,30,90,.12);
  border-radius: 24px;
  padding: 18px 18px 16px;
}
/* card内部は “触らない”方針なので、既存ルールは維持 */
.access-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 1000;
  color: var(--c-navy);
}
.access-card dl{ margin:0; }
.access-card .row{
  display:grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,30,90,.08);
}
.access-card .row:first-child{ border-top:none; }
.access-card dt{ font-weight: 1000; color: rgba(0,30,90,.78); }
.access-card dd{ margin:0; font-weight: 1000; color: rgba(0,30,90,.70); }

.hours{ margin-top: 12px; }
.hours-title{
  font-weight: 1000;
  color: rgba(0,30,90,.82);
  margin: 10px 0 10px;
}
.hours-table{
  width:100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(51,147,209,.18);
}
.hours-table th, .hours-table td{
  padding: 8px 6px;
  text-align:center;
  border-bottom: 1px solid rgba(0,30,90,.06);
}
.hours-table thead th{
  background: rgba(64,179,213,.12);
  color: rgba(0,30,90,.82);
  font-weight: 1000;
}
.hours-table tbody th{
  text-align:left;
  padding-left: 10px;
  background: rgba(255,255,255,.85);
  color: rgba(0,30,90,.78);
  font-weight: 1000;
}
.dot{ color: var(--c-accent); font-weight: 1000; }
.dash{ color: rgba(0,0,0,.65); font-weight: 1000; }
.hours-note{
  margin: 10px 0 0;
  font-weight: 1000;
  color: rgba(0,30,90,.78);
  line-height: 1.6;
}

.access-action{
  margin-top: 18px;
}

/* MAP：フルブリード */
.map-bleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 26px;
}
.map-bleed iframe{
  width: 100%;
  height: 380px;
  border: 0;
  display:block;
}
.map-note-wrap{
  padding: 22px 0 60px;
}
.map-note{
  margin: 0;
  font-weight: 900;
  color: rgba(0,30,90,.82);
  line-height: 1.9;
  background: rgba(64,179,213,.10);
  border-radius: 20px;
  padding: 16px 16px;
  box-shadow: 0 14px 40px rgba(0,30,90,.06);
}

/* =========================================================
   FOOTER（背景：#001E5A）
========================================================= */
body.page-index .site-footer{
  background: var(--c-navy);
  padding: 54px 0 50px;
}
body.page-index .footer-band{
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color: var(--c-white);
}
body.page-index .footer-text .f-title{
  font-weight: 1000;
  letter-spacing:.02em;
  color: var(--c-white-strong);
}
body.page-index .footer-text .f-sub{
  margin-top: 8px;
  font-size: 12px;
  opacity:.78;
  color: var(--c-white);
}

/* =========================================================
   RESPONSIVE（SP必須）
========================================================= */
@media (max-width: 980px){
  .hero-logo{ top: 74px; left: 14px; width: min(340px, 68vw); }

  .hero-catch{
    left: 14px;
    right: 14px;
    top: 56%;
    transform: translateY(-50%);
    padding: 18px 18px;
  }
  .hero-catch p{ font-size: 28px; }

  .hero-badge{
    left: 14px;
    bottom: 14px;
    width: 180px;
  }

  .corner-actions{
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    gap: 10px;
  }
  .corner-card{ min-width: min(360px, calc(100vw - 24px)); }
  .corner-main{ font-size: 20px; }

  .cards{ grid-template-columns: 1fr; }
  .cards--five > :nth-child(4),
  .cards--five > :nth-child(5){ grid-column: auto; }

  .message-layout{ grid-template-columns: 1fr; gap: 18px; }
  .message-col{ justify-content:stretch; }
  .message-center{ width: 100%; max-width: 520px; margin-inline:auto; }
  .message-center img{ height: 260px; }

  /* SPでは縦書きは読みづらいので横書きへ */
  .message-text--vertical{
    writing-mode: horizontal-tb;
    max-height: none;
  }
  .message-text{ font-size: 17px; }

  .values-grid{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }

  .access-wrap{ grid-template-columns: 1fr; }
  .access-card{
    position: relative;
    top: auto; right: auto;
    transform:none;
    width: 100%;
    margin-top: 14px;
  }
  .map-bleed iframe{ height: 340px; }

  .section-action{ justify-content:center; }
}

@media (max-width: 600px){
  .corner-card{
    min-width: calc(100vw - 24px);
    padding: 14px 14px;
  }
  .corner-main{ font-size: 19px; }

  .section{ padding: 72px 0; }
}
