@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700;800;900&display=swap");

:root {
  --ink: #102a3a;
  --muted: #5d7280;
  --paper: #f7fcff;
  --white: #ffffff;
  --line: #d6eaf2;
  --mist: #e9f8fc;
  --aqua: #169fc0;
  --deep: #086b8b;
  --sun: #f4c36d;
  --sea: #0d88b8;
  --shadow: 0 24px 70px rgba(9, 78, 110, 0.16);
  --heading-font: "M PLUS Rounded 1c", "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f7fcff, #eef9fd 38%, #f7fcff),
    var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

main {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-break {
  display: none;
}

.keep-line {
  white-space: nowrap;
}

.no-break {
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  transform: translateZ(0);
  will-change: transform;
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 31, 29, 0.76), rgba(9, 31, 29, 0.18));
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: #fff;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 14px 30px rgba(15, 95, 89, 0.24);
}

.phone-cta {
  color: var(--deep);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 30px rgba(15, 95, 89, 0.12);
}

.button.secondary,
.button.glass {
  color: var(--deep);
  background: #fff;
  border-color: var(--line);
}

.button.glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 96px clamp(18px, 5vw, 78px) 42px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 36, 58, 0.84), rgba(6, 83, 116, 0.38) 58%, rgba(6, 83, 116, 0.16)),
    linear-gradient(0deg, rgba(5, 36, 58, 0.28), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #fff;
  padding-bottom: 108px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3,
p,
li,
small {
  word-break: normal;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: pretty;
}

p {
  hanging-punctuation: allow-end;
}

@supports (word-break: auto-phrase) {
  h1,
  h2,
  h3,
  p,
  li,
  small {
    word-break: auto-phrase;
  }
}

h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(40px, 6.4vw, 74px);
  line-height: 1.12;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

h2,
h3,
.brand strong,
.reason-grid strong,
.menu-detail-grid h3 {
  font-family: var(--heading-font);
}

.text-accent {
  color: var(--sea);
  font-weight: 900;
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-info {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 78px);
  right: auto;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(760px, calc(100% - 36px));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(9, 30, 28, 0.2);
  backdrop-filter: blur(10px);
}

.hero-info div {
  padding: 12px 16px;
  border-right: 1px solid var(--line);
}

.hero-info div:last-child {
  border-right: 0;
}

.hero-info span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-info strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: clamp(18px, 4vw, 44px) clamp(18px, 5vw, 78px);
  background:
    linear-gradient(135deg, #dff5fb, #f7fcff 52%, #dff5fb);
}

.visual-strip figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(9, 78, 110, 0.1);
}

.visual-strip figure.is-reverse img {
  order: 2;
}

.visual-strip figure.is-reverse figcaption {
  order: 1;
}

.visual-strip img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.visual-strip .entrance-card img {
  object-position: center 68%;
}

.visual-strip figure:hover img {
  transform: scale(1.04);
}

.visual-strip figcaption {
  display: grid;
  align-content: center;
  gap: 10px;
  aspect-ratio: 1 / 1;
  padding: clamp(22px, 4vw, 46px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 248, 252, 0.96));
}

.visual-strip figcaption span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
}

.visual-strip figcaption strong {
  font-size: clamp(22px, 2.35vw, 31px);
  line-height: 1.48;
  word-break: keep-all;
  overflow-wrap: normal;
}

.visual-strip figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.story-section,
.reason-section,
.access-section,
.contact-section,
.sns-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 78px);
}

.story-section,
.menu-section,
.access-section {
  position: relative;
  overflow: hidden;
}

.story-section::before,
.menu-section::before,
.access-section::before {
  content: "";
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 220px;
  background:
    radial-gradient(ellipse at 22% 70%, rgba(22, 159, 192, 0.14), transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(244, 195, 109, 0.12), transparent 50%);
  pointer-events: none;
}

.story-photo,
.reason-photo,
.contact-section > img,
.access-photo,
.map-placeholder {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-photo img,
.reason-photo img,
.contact-section > img {
  height: min(46vw, 460px);
  min-height: 320px;
  object-fit: cover;
}

.story-copy h2,
.section-heading h2,
.reason-copy h2,
.access-copy h2,
.sns-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.22;
  letter-spacing: 0;
  word-break: keep-all;
}

.story-copy p,
.access-copy p,
.contact-section p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
  max-width: 42em;
}

.contact-heading {
  display: inline-grid;
  gap: 0.04em;
}

.contact-heading span {
  display: block;
}

.contact-heading span + span {
  margin-left: clamp(22px, 4vw, 54px);
}

.point-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.point-list li {
  padding: 12px 14px;
  background: var(--mist);
  border-left: 4px solid var(--aqua);
  border-radius: 8px;
  font-weight: 800;
}

.menu-section,
.voice-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 78px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.menu-board {
  position: relative;
  max-width: 720px;
  margin: 0 0 22px;
  overflow: hidden;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-board img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.menu-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-panel {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-panel img {
  height: 210px;
  object-fit: cover;
  object-position: center center;
}

.menu-panel.massage img {
  object-position: center 52%;
}

.menu-panel.headspa img {
  object-position: center 48%;
}

.menu-panel.relax img {
  object-position: center 50%;
}

.menu-panel::after {
  content: none;
}

.menu-panel div {
  padding: 22px;
  color: var(--ink);
  background: #fff;
}

.menu-panel span {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 900;
}

.menu-panel h3 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.menu-panel p {
  max-width: 38em;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.menu-panel p + p {
  margin-top: 8px;
}

.menu-panel strong {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 12px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.menu-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.menu-detail-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(24, 58, 54, 0.08);
}

.menu-detail-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.menu-detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.detail-price {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 12px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.reason-section {
  background:
    linear-gradient(135deg, rgba(233, 248, 252, 0.96), rgba(247, 252, 255, 0.95)),
    var(--mist);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.reason-grid article {
  min-height: 150px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reason-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.reason-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.voice-slider {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 54px;
}

.voice-track {
  overflow: hidden;
}

.voice-card {
  display: none;
  min-height: 260px;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 42, 58, 0.95), rgba(8, 107, 139, 0.86)),
    url("assets/originals/churaumi-room-01.jpg") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.voice-card.is-active {
  display: block;
  animation: fadeSlide 0.45s ease both;
}

.voice-card p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.7;
}

.voice-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button.prev {
  left: 0;
}

.slider-button.next {
  right: 0;
}

.access-section {
  background: #fff;
}

.access-media {
  display: grid;
  gap: 14px;
}

.access-photo {
  margin: 0;
  background: #fff;
}

.access-photo img {
  height: 320px;
  object-fit: cover;
  object-position: center 68%;
}

.access-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-placeholder {
  min-height: 320px;
  background: #d8e5e2;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.access-copy ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.map-link {
  margin-top: 22px;
}

.sns-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  background:
    linear-gradient(135deg, #083d61, #086b8b 48%, #0f9fc4);
  color: #fff;
}

.sns-section > * {
  min-width: 0;
}

.sns-section .eyebrow,
.sns-section p {
  color: rgba(255, 255, 255, 0.72);
}

.sns-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.sns-button {
  display: grid;
  min-height: 180px;
  align-content: end;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
  min-width: 0;
}

.sns-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.sns-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.sns-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.line-icon {
  background: #fff;
}

.instagram-icon {
  background: #fff;
}

.ekiten-icon {
  background: #fff;
}

.phone-icon {
  color: #fff;
  background: var(--aqua);
}

.sns-button strong {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.sns-button small {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.sns-button.instagram small {
  overflow-wrap: anywhere;
}

.contact-section {
  background: var(--paper);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 78px);
  color: #fff;
  background: var(--ink);
  font-size: 13px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.65);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 16px;
}

.footer-phone {
  display: grid;
  gap: 1px;
  line-height: 1.35;
  text-align: left;
}

.footer-phone span {
  font-size: 12px;
}

.footer-phone strong {
  color: #fff;
  font-size: 14px;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .hero-content {
    padding-bottom: 176px;
  }

  .hero-info {
    left: 18px;
    right: 18px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-info div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-info div:last-child {
    border-right: 0;
  }

  .visual-strip,
  .story-section,
  .reason-section,
  .access-section,
  .contact-section,
  .sns-section,
  .menu-detail-grid {
    grid-template-columns: 1fr;
  }

  .menu-visual-grid {
    grid-template-columns: 1fr;
  }

  .menu-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    align-items: stretch;
  }

  .menu-panel img {
    height: 100%;
    min-height: 270px;
  }

  .menu-panel.headspa img {
    object-position: center center;
  }

  .story-photo img,
  .reason-photo img,
  .contact-section > img {
    height: 340px;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: hidden;
    padding: 10px 14px 12px;
    background: linear-gradient(180deg, rgba(9, 31, 29, 0.88), rgba(9, 31, 29, 0.38));
  }

  .brand {
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: block;
    font-size: 11px;
  }

  .header-cta {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 11px;
    white-space: nowrap;
    min-width: 0;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: center;
    width: min(100%, 330px);
    gap: 8px;
  }

  .header-actions .header-cta {
    width: 100%;
    min-width: 0;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    min-height: 88vh;
    margin: 0;
    padding: 124px 16px 18px;
  }

  .hero-content {
    padding-bottom: 92px;
  }

  h1 {
    font-size: clamp(27px, 7.5vw, 31px);
    line-height: 1.18;
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.75;
    text-wrap: pretty;
  }

  .hero-actions {
    align-items: stretch;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button.glass {
    display: none;
  }

  .hero-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    bottom: 14px;
    border-radius: 8px;
  }

  .hero-info div {
    padding: 7px 6px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-info div:last-child {
    border-right: 0;
  }

  .hero-info span {
    font-size: 9px;
  }

  .hero-info strong {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.35;
  }

  .visual-strip {
    width: 100vw;
    max-width: 100vw;
    padding: 8px;
  }

  .visual-strip figure {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .visual-strip figure.is-reverse img,
  .visual-strip figure.is-reverse figcaption {
    order: initial;
  }

  .visual-strip img {
    height: 190px;
    aspect-ratio: auto;
  }

  .visual-strip .entrance-card img {
    object-position: center 72%;
  }

  .visual-strip figcaption {
    aspect-ratio: auto;
    padding: 22px;
  }

  .visual-strip figcaption strong {
    font-size: 21px;
    line-height: 1.45;
  }

  .visual-strip figcaption p {
    font-size: 14px;
    line-height: 1.95;
    text-wrap: pretty;
  }

  .story-section,
  .reason-section,
  .access-section,
  .contact-section,
  .sns-section {
    width: 100vw;
    max-width: 100vw;
    margin-inline: 0;
    padding: 44px 16px;
    gap: 18px;
    min-width: 0;
  }

  .story-section > *,
  .reason-section > *,
  .access-section > *,
  .contact-section > *,
  .sns-section > * {
    min-width: 0;
  }

  .story-photo,
  .reason-photo,
  .contact-section > img,
  .access-photo,
  .map-placeholder {
    inline-size: 100%;
    max-inline-size: 100%;
    margin-inline: auto;
    justify-self: stretch;
    min-width: 0;
  }

  .story-photo img,
  .reason-photo img,
  .contact-section > img {
    inline-size: 100%;
    max-inline-size: 100%;
    height: 240px;
    min-height: 0;
    object-fit: cover;
  }

  .reason-photo img {
    object-position: center center;
  }

  .contact-section > img {
    object-position: center center;
  }

  .menu-panel {
    display: block;
    padding-bottom: 2px;
  }

  .menu-panel img {
    height: 200px;
    min-height: 0;
  }

  .menu-panel h3,
  .menu-detail-grid h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .menu-panel p,
  .menu-detail-grid p,
  .story-copy p,
  .access-copy p,
  .contact-section p,
  .reason-grid p,
  .sns-section p {
    font-size: 15px;
    line-height: 1.95;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
    line-break: strict;
    text-wrap: pretty;
  }

  .menu-panel div {
    padding: 24px 20px;
  }

  .menu-detail-grid article,
  .reason-grid article {
    padding: 22px 20px;
  }

  .menu-panel strong {
    display: block;
    width: 100%;
  }

  .story-copy h2,
  .section-heading h2,
  .reason-copy h2,
  .access-copy h2,
  .sns-section h2,
  .contact-section h2 {
    font-size: 26px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: normal;
    line-break: strict;
    text-wrap: pretty;
  }

  .mobile-break {
    display: block;
  }

  .reason-grid,
  .sns-actions {
    grid-template-columns: 1fr;
  }

  .reason-grid article {
    min-height: 0;
  }

  .access-media {
    gap: 10px;
  }

  .access-photo img,
  .map-placeholder iframe {
    min-height: 240px;
    height: 240px;
  }

  .access-photo img {
    object-position: center 72%;
  }

  .voice-slider {
    padding: 0;
  }

  .slider-button {
    top: auto;
    bottom: -58px;
    transform: none;
  }

  .slider-button.prev {
    left: calc(50% - 50px);
  }

  .slider-button.next {
    right: calc(50% - 50px);
  }

  .voice-section {
    padding-bottom: 124px;
  }

  .sns-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .contact-heading span + span {
    margin-left: clamp(24px, 12vw, 46px);
  }

  .site-footer span {
    display: block;
    margin-top: 6px;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
    gap: 10px;
  }

  .footer-links {
    line-height: 1.6;
  }

  .footer-phone {
    margin-top: 0;
    gap: 2px;
  }

  .footer-phone span,
  .footer-phone strong {
    margin-top: 0;
  }
}
