:root {
  color-scheme: light;
  --ink: #252538;
  --muted: #697075;
  --paper: #fbfbfd;
  --white: #ffffff;
  --lavender: #7770ad;
  --lavender-deep: #54518d;
  --lavender-soft: #efedf8;
  --blue-gray: #557f9c;
  --logo-blue: #1b64ac;
  --logo-purple: #4f2f88;
  --warm: #f6efe4;
  --line: rgba(37, 37, 56, 0.12);
  --shadow: 0 18px 54px rgba(37, 37, 56, 0.13);
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --font-heading: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --font-logo-kana: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 68px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  border-bottom: 1px solid rgba(84, 81, 141, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 202px;
  min-height: 46px;
  padding: 0;
  color: var(--logo-blue);
  background: transparent;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.46);
}

.brand-meta {
  display: grid;
  width: 88px;
  gap: 2px;
  line-height: 1;
}

.brand-en,
.brand-kana,
.section-kicker,
.eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-en {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.86);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 0.62rem;
  color: var(--logo-blue);
}

.brand-kana {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: var(--logo-purple);
  font-family: var(--font-logo-kana);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: none;
}

.brand-name {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  margin-left: -2px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Hiragino Sans", serif;
  font-size: clamp(2rem, 3.25vw, 2.7rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  transform: skewX(-6deg);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--lavender-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.76);
  white-space: nowrap;
}

#reasons,
#menu,
#first,
#access {
  scroll-margin-top: 78px;
}

.header-tel,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.header-tel {
  color: #ffffff;
  background: var(--lavender-deep);
  border: 1px solid var(--lavender-deep);
}

.tel-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button {
  color: #ffffff;
  background: var(--lavender-deep);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: min(760px, 84vh);
  display: grid;
  align-items: end;
  overflow: clip;
  color: #ffffff;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 20, 34, 0.42), rgba(18, 20, 34, 0.14) 54%, rgba(18, 20, 34, 0.03)),
    linear-gradient(180deg, rgba(18, 20, 34, 0.08), rgba(18, 20, 34, 0.25));
}

.hero-copy {
  width: min(1040px, calc(100% - 36px));
  margin: 0 0 clamp(48px, 9vh, 88px) clamp(18px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4.55vw, 3.15rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-title-line {
  display: inline;
}

.lead {
  max-width: 900px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.86rem, 1.45vw, 1rem);
  line-height: 1.85;
}

.lead span {
  display: block;
}

.lead-nowrap {
  white-space: nowrap;
}

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

.hero-actions .primary-button,
.hero-actions .ghost-button {
  color: #ffffff;
  background: var(--lavender-deep);
  border: 1px solid var(--lavender-deep);
}

.site-nav a,
.brand {
  transition: opacity 160ms ease;
}

.site-nav a:hover,
.brand:hover {
  opacity: 0.72;
}

.header-tel:hover,
.primary-button:hover,
.ghost-button:hover,
.mobile-cta a:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

a:focus-visible {
  outline: 3px solid rgba(27, 100, 172, 0.72);
  outline-offset: 3px;
}

.reasons-panel {
  min-height: clamp(640px, 48vw, 820px);
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 0.76), rgba(250, 248, 244, 0.9)),
    url("assets/reasons-bg-natural.jpg") center 18% / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.intro-band {
  display: block;
  padding: clamp(46px, 6vw, 74px) clamp(18px, 6vw, 78px) clamp(24px, 4vw, 38px);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--lavender);
}

h2,
h3,
p {
  margin-top: 0;
}

.intro-band h2,
.section-heading h2,
.access-copy h2 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.intro-band p,
.menu-grid p,
.flow-list p,
.access-copy dd,
.fine-print {
  color: var(--muted);
}

.reason-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 28px);
  padding: 0 clamp(18px, 6vw, 78px) clamp(48px, 7vw, 82px);
}

.reason-section article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(84, 81, 141, 0.08);
  border-radius: 8px;
  box-shadow: none;
}

.reason-image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--lavender-soft);
}

.reason-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-card-body {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 22px clamp(20px, 2.5vw, 30px) 24px;
}

.reason-section span {
  display: block;
  width: 46px;
  margin: 0;
  color: #514b92;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.reason-copy {
  min-width: 0;
}

.reason-section h3,
.menu-grid h3,
.flow-list h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.45;
}

.reason-section p,
.menu-grid p,
.flow-list p {
  margin-bottom: 0;
}

.menu-section,
.first-section,
.access-section {
  padding: clamp(50px, 8vw, 96px) clamp(18px, 6vw, 78px);
}

.menu-section {
  background:
    linear-gradient(rgba(224, 221, 235, 0.72), rgba(235, 231, 241, 0.84)),
    url("assets/menu-interior-bg.jpg") center 48% / cover no-repeat;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.menu-grid article {
  grid-column: span 2;
  min-height: 190px;
  padding: 28px;
  background: rgba(249, 248, 252, 0.94);
  border: 1px solid rgba(84, 81, 141, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(37, 37, 56, 0.06);
}

.menu-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.menu-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.menu-grid p {
  white-space: normal;
}

.fine-print {
  margin: 24px auto 0;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.25vw, 1.2rem);
  font-weight: 700;
  text-align: center;
}

.first-section {
  background: linear-gradient(135deg, #f5f3fa, #ece9f5);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 174px;
  padding: 28px;
  border: 1px solid rgba(84, 81, 141, 0.18);
  border-radius: 8px;
  background: rgba(251, 251, 253, 0.93);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--lavender-deep);
  font-weight: 900;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  background: linear-gradient(135deg, var(--lavender-soft), #f7f9fb 60%, var(--warm));
}

.access-copy dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.access-copy dl > div {
  display: grid;
  grid-template-columns: 8.5em 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(84, 81, 141, 0.14);
}

.access-copy dt {
  color: var(--lavender-deep);
  font-weight: 700;
}

.access-copy dd {
  margin: 0;
  font-weight: 500;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.access-actions .primary-button {
  border: 1px solid var(--lavender-deep);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px clamp(18px, 6vw, 78px);
  color: #ffffff;
  background: #252538;
}

.site-footer p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1060px) {
  .site-header {
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.82rem;
  }

  .intro-band,
  .access-section {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 1180px) {
  .reason-card-body {
    min-height: 142px;
    padding: 24px 20px;
  }
}

@media (max-width: 900px) {
  .hero-copy {
    width: auto;
    margin-right: clamp(18px, 6vw, 78px);
  }

  .hero h1 {
    font-size: clamp(2rem, 5.8vw, 2.75rem);
    white-space: normal;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .lead-nowrap {
    white-space: normal;
  }

  .reason-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-section article:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid article,
  .menu-grid article:nth-child(4) {
    grid-column: auto;
  }

  .menu-grid article:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand {
    gap: 3px;
    min-width: 166px;
    min-height: 42px;
    padding: 0;
  }

  .header-tel {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
    gap: 6px;
  }

  .brand-meta {
    width: 70px;
    min-width: 0;
  }

  .brand-en {
    font-size: 0.49rem;
  }

  .brand-kana {
    font-size: 0.43rem;
    letter-spacing: 0;
  }

  .brand-name {
    margin-left: -1px;
    font-size: 1.72rem;
  }

  .tel-icon {
    width: 0.92em;
    height: 0.92em;
  }

  .hero {
    min-height: max(660px, 80vh);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 20, 34, 0.08), rgba(18, 20, 34, 0.58)),
      linear-gradient(90deg, rgba(18, 20, 34, 0.36), rgba(18, 20, 34, 0.05));
  }

  .hero-copy {
    width: calc(100% - 36px);
    min-width: 0;
    margin: 0 18px 42px;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 6.7vw, 1.75rem);
    line-height: 1.45;
    white-space: normal;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .lead-nowrap {
    font-size: inherit;
    white-space: normal;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .intro-band,
  .menu-section,
  .first-section,
  .access-section {
    padding: 42px 18px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .flow-list li {
    min-height: auto;
    gap: 14px;
    padding: 22px 18px;
  }

  .reason-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 18px 42px;
  }

  .reason-section article {
    min-height: auto;
  }

  .reason-section article:nth-child(3) {
    grid-column: auto;
    width: auto;
  }

  .reason-card-body {
    min-height: 126px;
    padding: 20px 18px 22px;
  }

  .reason-image {
    aspect-ratio: 16 / 10;
  }

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

  .menu-grid article,
  .menu-grid article:nth-child(4),
  .menu-grid article:nth-child(5) {
    grid-column: auto;
    width: auto;
    min-height: auto;
    padding: 24px 22px;
  }

  .menu-grid p {
    white-space: normal;
  }

  .access-copy dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 82px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
  }

  .mobile-cta a:first-child {
    color: #ffffff;
    background: var(--lavender-deep);
  }

  .mobile-cta a:last-child {
    color: var(--lavender-deep);
    background: var(--lavender-soft);
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 6px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .brand {
    min-width: 145px;
  }

  .brand-meta {
    width: 60px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .header-tel {
    padding: 0 8px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a,
  .brand,
  .header-tel,
  .primary-button,
  .ghost-button,
  .mobile-cta a {
    transition: none;
  }
}
