:root {
  --navy: #082f63;
  --navy-deep: #002c5d;
  --gold: #c8943c;
  --gold-light: #e6c887;
  --ink: #1e3147;
  --muted: #5f6e7f;
  --line: #dbe5ef;
  --pale: #f6fbff;
  --shadow: 0 10px 28px rgba(12, 54, 97, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

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

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 456px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 36%, rgba(255,255,255,0.28) 59%, rgba(255,255,255,0) 100%),
    url("assets/hero-woman.png") right top / auto 100% no-repeat,
    linear-gradient(90deg, #fff, #eef8fc);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 74px;
  background: linear-gradient(0deg, rgba(255,255,255,0.97), rgba(255,255,255,0));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 72px, 910px);
  margin: 0 auto;
  padding: 22px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
}

.brand__mark {
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 300;
}

.brand__name {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}

.brand__kana {
  margin: 4px 0 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 48px);
  line-height: 1.13;
  font-weight: 700;
}

.lead {
  margin: 0 0 16px;
  color: #243344;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.price-card {
  position: relative;
  width: 326px;
  margin-top: 14px;
  padding: 25px 20px 11px;
  text-align: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e4ebf3;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 24px;
  color: #fff;
  background: var(--navy);
  border-radius: 2px;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.price-card p,
.menu-card h3,
.reason-list h3,
.support h2,
.reserve h2 {
  color: var(--navy);
}

.price-card p {
  margin: 3px 0 2px;
  font-size: 21px;
  font-weight: 700;
}

.price-card strong {
  display: block;
  color: var(--gold);
  font-size: 44px;
  line-height: 1.05;
  font-weight: 500;
}

.price-card strong span {
  margin-left: 4px;
  color: var(--gold);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 530px;
  margin-top: 12px;
}

.hero-points div,
.steps article,
.voice-list article {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 5px 17px rgba(8, 47, 99, 0.07);
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 8px 12px;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.icon,
.round-icon,
.screen,
.phone {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
}

.icon {
  width: 30px;
  height: 30px;
  border: 1.5px solid currentColor;
}

.icon.person {
  border: 0;
}

.icon.person::before {
  content: "";
  position: absolute;
  top: 1px;
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon.person::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 3px 3px 0 0;
  background:
    linear-gradient(135deg, transparent 0 44%, currentColor 45% 52%, transparent 53%) left 7px top 0 / 12px 12px no-repeat,
    linear-gradient(225deg, transparent 0 44%, currentColor 45% 52%, transparent 53%) right 7px top 0 / 12px 12px no-repeat,
    linear-gradient(currentColor, currentColor) center 8px / 2px 9px no-repeat;
}

.icon.heart {
  border: 0;
}

.icon.heart::before,
.round-icon.heart::before {
  content: "♡";
  font-size: 37px;
  line-height: 1;
}

.icon.clock,
.round-icon.yen,
.round-icon.person,
.round-icon.heart {
  border-radius: 50%;
}

.icon.clock::before {
  content: "";
  width: 2px;
  height: 10px;
  background: currentColor;
  transform: translateY(-3px);
}

.icon.clock::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: translate(5px, 3px);
}

.section {
  width: min(100% - 92px, 865px);
  margin: 0 auto;
  padding: 14px 0 0;
}

.section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
}

.section h2::before,
.section h2::after {
  content: "";
  width: 27px;
  height: 1px;
  background: var(--gold-light);
}

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

.menu-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 6px 22px rgba(15, 56, 94, 0.08);
}

.menu-card img {
  width: 100%;
  height: 116px;
  object-fit: cover;
}

.menu-card div {
  padding: 10px 18px 16px;
  text-align: center;
}

.menu-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.price {
  margin: 2px 0 5px;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.price span {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.desc {
  min-height: 47px;
  margin: 0 0 10px;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.85;
}

.reasons {
  padding-top: 13px;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 12px;
  align-items: center;
}

.round-icon {
  grid-row: span 2;
  width: 68px;
  height: 68px;
  border: 1.5px solid #a9bdd5;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.round-icon.person::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
}

.round-icon.person::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 44px;
  height: 28px;
  border: 3px solid var(--navy);
  border-bottom-width: 6px;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(135deg, transparent 0 44%, var(--navy) 45% 53%, transparent 54%) left 9px top 0 / 17px 18px no-repeat,
    linear-gradient(225deg, transparent 0 44%, var(--navy) 45% 53%, transparent 54%) right 9px top 0 / 17px 18px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center 10px / 3px 13px no-repeat;
}

.round-icon.yen::before {
  content: "¥";
  font-size: 38px;
  font-weight: 700;
}

.reason-list h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.reason-list p {
  grid-column: 2;
  margin: 3px 0 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.75;
}

.support {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.62fr;
  align-items: stretch;
  width: min(100% - 30px, 925px);
  min-height: 175px;
  margin: 20px auto 0;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #f7fbff 54%, #fff 100%);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(19, 60, 91, 0.1);
}

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

.support__text {
  display: grid;
  align-content: center;
  padding: 18px 26px;
  text-align: center;
}

.support__text h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.55;
}

.support__text p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 23px;
}

.steps article {
  position: relative;
  min-height: 84px;
  padding: 8px 11px 8px 62px;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.steps article:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.steps span {
  position: absolute;
  top: 8px;
  left: 13px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.steps b {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.steps p {
  margin: 3px 0 0;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.7;
}

.note {
  margin: 8px 0 0;
  color: #4e5969;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 10px;
  text-align: center;
}

.voices {
  padding-top: 14px;
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.voice-list article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 11px;
  padding: 10px;
  min-height: 126px;
}

.voice-list img {
  width: 88px;
  height: 100px;
  object-fit: cover;
}

.voice-photo--center-40s {
  object-position: 18% center;
}

.voice-photo--center-20s {
  transform: scale(1.22);
  transform-origin: 30% center;
}

.voice-list .voice-photo--hero {
  object-position: 48% 16%;
}

.voice-list .voice-photo--white {
  object-position: 69% 42%;
}

.voice-list h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.55;
}

.voice-list p,
.voice-list span {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.65;
}

.voice-list span {
  display: block;
  margin-top: 4px;
  color: var(--navy);
}

.reserve {
  margin-top: 24px;
  background: linear-gradient(90deg, #f2f9ff 0%, #fff 58%, #f7fbff 100%);
}

.reserve__inner {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: stretch;
  width: min(100%, 955px);
  min-height: 150px;
  margin: 0 auto;
}

.reserve__inner > div {
  padding: 14px 36px 12px 50px;
  text-align: center;
}

.reserve h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.4;
}

.reserve p {
  margin: 2px 0 9px;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.reserve-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.reserve-button {
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 68px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.reserve-button b {
  font-size: 18px;
  line-height: 1.1;
}

.reserve-button small {
  font-size: 11px;
  font-weight: 700;
}

.screen,
.phone {
  grid-row: span 2;
  width: 34px;
  height: 28px;
}

.screen {
  border: 2px solid currentColor;
}

.screen::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 24px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

.phone::before {
  content: "☎";
  font-size: 34px;
  line-height: 1;
}

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

.access-photo {
  width: min(100% - 30px, 925px);
  margin: 24px auto 0;
}

.access-photo__inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(19, 60, 91, 0.09);
}

.access-photo__inner > div {
  padding: 26px 28px;
  text-align: center;
}

.access-photo h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.45;
}

.access-photo p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.access-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(1.08) saturate(0.94);
  transform: rotate(0.8deg) scale(1.025);
  transform-origin: center;
}

.map-section {
  width: min(100%, 955px);
  margin: 22px auto 0;
  background: #f7fbff;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.map-link {
  display: block;
  padding: 10px 16px 12px;
  color: var(--navy);
  background: #fff;
  border-top: 1px solid var(--line);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.footer {
  color: #fff;
  background: linear-gradient(90deg, #002b5c, #063c73);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.9fr 1.2fr;
  gap: 28px;
  align-items: center;
  width: min(100% - 70px, 850px);
  min-height: 78px;
  margin: 0 auto;
}

.footer p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand p {
  font-family: Georgia, serif;
  font-size: 18px;
}

.footer-brand small {
  display: block;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 9px;
}

.copy {
  text-align: right;
}

@media (max-width: 800px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 42%, rgba(255,255,255,0.62) 100%),
      url("assets/hero-woman.png") right top / auto 430px no-repeat;
  }

  .hero__content,
  .section,
  .footer__inner {
    width: min(100% - 32px, 560px);
  }

  .hero h1 {
    font-size: 42px;
  }

  .price-card,
  .hero-points {
    width: min(100%, 360px);
  }

  .hero-points,
  .cards,
  .reason-list,
  .steps,
  .voice-list,
  .reserve-buttons,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .support,
  .reserve__inner {
    grid-template-columns: 1fr;
  }

  .support__right {
    display: none;
  }

  .steps {
    gap: 10px;
  }

  .steps article::after {
    display: none;
  }

  .reserve__inner > div {
    padding: 22px 18px;
  }

  .reserve img {
    max-height: 170px;
  }

  .access-photo__inner {
    grid-template-columns: 1fr;
  }

  .access-photo__inner > div {
    padding: 20px 18px 14px;
  }

  .access-photo img {
    height: 210px;
  }

  .map-section iframe {
    height: 260px;
  }

  .copy {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand__name {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .section h2 {
    gap: 11px;
    font-size: 21px;
  }

  .reason-list article,
  .voice-list article {
    grid-template-columns: 72px 1fr;
  }

  .round-icon {
    width: 60px;
    height: 60px;
  }
}
