:root {
  --bg: #faf2eb;
  --contact-bg: #f5e8dc;
  --footer-bg: #d5b5ac;
  --text: #222222;
  --nav: #444444;
  --gold: #bc953f;
  --salmon: #dfac9e;
  --salmon-dark: #d49a8a;
  --brown: #5c4c40;
  --white: #ffffff;
  --jp-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, sans-serif;
  --en-font: Outfit, Montserrat, Inter, sans-serif;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-photo: cubic-bezier(0.61, 1, 0.88, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--jp-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section {
  scroll-margin-top: 90px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 70px;
  transition: background-color 0.6s ease, box-shadow 0.6s ease, backdrop-filter 0.6s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(250, 242, 235, 0.92);
  box-shadow: 0 10px 34px rgba(92, 76, 64, 0.08);
  backdrop-filter: blur(14px);
}

body.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(calc(100% - 60px), 1380px);
  height: 100%;
  margin: 0 auto;
}

.header-logo {
  margin-right: auto;
  font-family: Montserrat, var(--en-font);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--nav);
  opacity: 0;
  pointer-events: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 31px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-family: Montserrat, var(--en-font);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--nav);
  transition: color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-soft);
}

.nav-link:hover::after,
.nav-link[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 126px;
  height: 26px;
  padding: 0 13px;
  color: var(--white);
  background: var(--nav);
  border-radius: 80px;
  font-family: Montserrat, var(--jp-font);
  font-size: 10px;
  letter-spacing: 0.06em;
  transition: background-color 0.35s ease, transform 0.35s var(--ease-soft);
}

.nav-cta:hover {
  background: #5c4c40;
  transform: translateY(-1px);
}

.nav-cta-mark {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-cta-arrow,
.line-arrow {
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease-soft);
}

.nav-cta:hover .nav-cta-arrow,
.line-button:hover .line-arrow {
  transform: translateX(4px) rotate(45deg);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: clamp(620px, 54.6vw, 785px);
  overflow: hidden;
  background: #efe1d5;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.65s ease-in-out, transform 6.5s var(--ease-photo);
}

.hero-title {
  position: absolute;
  z-index: 2;
  top: clamp(58px, 5vw, 72px);
  left: clamp(32px, 6.95vw, 100px);
  margin: 0;
  color: #000000;
  font-size: clamp(30px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.88;
  letter-spacing: 0.14em;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 1.25s ease, transform 1.45s var(--ease-soft);
}

body.is-loaded .hero-media img {
  opacity: 1;
  transform: scale(1);
}

body.is-loaded .hero-line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-loaded .hero-line:nth-child(1) {
  transition-delay: 0.65s;
}

body.is-loaded .hero-line:nth-child(2) {
  transition-delay: 0.82s;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.about-stage {
  position: relative;
  width: min(100%, 1424px);
  height: 2257px;
  margin: 0 auto;
}

.deco {
  position: absolute;
  z-index: 0;
  max-width: none;
  pointer-events: none;
  opacity: 0.92;
  will-change: transform;
}

.deco-pink {
  top: 206px;
  left: -62px;
  width: 924px;
}

.deco-gold {
  top: 1255px;
  left: -62px;
  width: 884px;
}

.deco-peach {
  top: 590px;
  right: -1px;
  width: 756px;
}

.about-feature {
  position: absolute;
  z-index: 1;
}

.about-feature-one {
  top: 292px;
  left: 353px;
  width: 806px;
  height: 540px;
}

.about-feature-two {
  top: 944px;
  left: 298px;
  width: 817px;
  height: 450px;
}

.about-feature-three {
  top: 1469px;
  left: 310px;
  width: 715px;
  height: 600px;
}

.about-photo {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f3e5db;
  transform-origin: center;
}

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

.about-photo-one {
  top: 0;
  left: 204px;
  width: 602px;
  aspect-ratio: 602 / 481;
}

.about-photo-two {
  top: 0;
  left: 0;
  width: 517px;
  aspect-ratio: 517 / 400;
}

.about-photo-two img {
  object-position: 38% center;
}

.about-photo-three {
  top: 0;
  left: 198px;
  width: 517px;
  aspect-ratio: 517 / 400;
}

.about-photo-three img {
  object-position: center center;
}

.vertical-copy {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.035em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.copy-one {
  top: 201px;
  left: 54px;
  height: 265px;
}

.copy-two {
  top: 37px;
  left: 612px;
  height: 290px;
}

.copy-three {
  top: 156px;
  left: 58px;
  height: 310px;
}

.about-marker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Outfit, var(--en-font);
  font-weight: 100;
  letter-spacing: 0.1em;
}

.about-marker img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.about-marker span {
  grid-area: 1 / 1;
  font-size: 22.8px;
  line-height: 1;
}

.marker-one {
  top: 484px;
  left: 0;
  width: 54px;
  height: 54px;
}

.marker-two {
  top: 19px;
  left: 775px;
  width: 42px;
  height: 42px;
}

.marker-two span,
.marker-three span {
  font-size: 22px;
}

.marker-three {
  top: 556px;
  left: 0;
  width: 42px;
  height: 42px;
}

.material-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 142px;
  background: var(--bg);
}

.material-inner {
  display: grid;
  grid-template-columns: 351px 582px;
  gap: 68px;
  align-items: center;
  width: min(calc(100% - 48px), 1074px);
  margin: 0 auto;
}

.material-title {
  margin: 0 0 74px;
  font-family: Outfit, var(--jp-font);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.56;
  letter-spacing: 0.063em;
}

.material-title span {
  display: block;
}

.material-text {
  font-family: Inter, var(--jp-font);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.67;
  letter-spacing: 0.03em;
}

.material-text p {
  margin: 0;
}

.material-text p + p {
  margin-top: 40px;
}

.material-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 582 / 388;
  background: #efe5dd;
}

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

.flow-section {
  overflow: hidden;
  padding: 137px 0 132px;
  background: var(--bg);
}

.flow-inner {
  width: min(calc(100% - 48px), 948px);
  margin: 0 auto;
}

.section-heading {
  margin: 0;
  font-family: Inter, var(--jp-font);
  font-size: 16.4px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.is-visible .split-char {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

.flow-step {
  position: relative;
  min-height: 212px;
  padding-right: 18px;
}

.flow-step:not(:last-child)::before {
  position: absolute;
  top: 33px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-soft);
  transition-delay: calc(var(--delay, 0ms) + 160ms);
}

.flow-step.is-visible:not(:last-child)::before {
  transform: scaleX(1);
}

.flow-number {
  display: grid;
  place-items: center;
  width: 67px;
  height: 67px;
  margin-left: -12px;
  color: var(--gold);
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Outfit, var(--en-font);
  font-size: 16.4px;
  font-weight: 100;
  letter-spacing: 0.1em;
}

.flow-body {
  margin-top: 49px;
}

.flow-body h3 {
  margin: 0 0 22px;
  font-size: 16.4px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.flow-body p {
  max-width: 265px;
  margin: 0;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.price-section {
  position: relative;
  overflow: hidden;
  min-height: 786px;
  padding: 42px 0 130px;
  background: var(--bg);
}

.price-deco-pink {
  top: 158px;
  left: -258px;
  width: 924px;
}

.price-deco-gold {
  top: -358px;
  right: -228px;
  width: 884px;
}

.price-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 695px 478px;
  gap: 19px;
  width: min(calc(100% - 48px), 1262px);
  margin: 0 auto;
}

.price-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 695 / 484;
}

.price-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.price-content {
  padding-top: 41px;
  text-align: center;
}

.price-menu {
  margin-top: 24px;
}

.price-item {
  padding: 0 0 25px;
}

.price-item + .price-item {
  padding-top: 24px;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin: 0 0 11px;
}

.price-num {
  font-family: Outfit, var(--en-font);
  font-size: 35.6px;
  font-weight: 100;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.price-yen,
.price-item h3 {
  font-family: Inter, var(--jp-font);
  font-size: 19.8px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.price-item h3 {
  margin: 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 122px 0 117px;
  background: var(--contact-bg);
}

.contact-inner {
  width: min(calc(100% - 48px), 1080px);
  margin: 0 auto;
}

.contact-title {
  margin: 0;
  color: var(--brown);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
}

.contact-title .split-char {
  transition-duration: 0.56s;
}

.contact-lead {
  margin: 84px 0 0;
  color: var(--brown);
  font-size: 20px;
  font-weight: 600;
  line-height: 2.65;
  letter-spacing: 0.3em;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 67px;
}

.store-list {
  display: grid;
  gap: 72px;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 22px;
}

.phone-badge {
  position: relative;
  display: grid;
  flex: 0 0 82px;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--white);
  font-family: Montserrat, var(--en-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.phone-badge img,
.phone-badge span {
  grid-area: 1 / 1;
}

.store-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.store-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.13em;
}

.contact-divider {
  width: 1px;
  height: 299px;
  background: rgba(92, 76, 64, 0.3);
}

.line-area {
  display: grid;
  justify-items: center;
  gap: 38px;
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(100%, 449px);
  height: 91px;
  color: var(--white);
  background: var(--salmon);
  border-radius: 111px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: background-color 0.35s ease, transform 0.35s var(--ease-soft), box-shadow 0.35s ease;
}

.line-button:hover {
  background: var(--salmon-dark);
  box-shadow: 0 16px 35px rgba(177, 116, 101, 0.18);
  transform: translateY(-2px);
}

.reception-time {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
}

.site-footer {
  overflow: hidden;
  color: var(--white);
  background: var(--footer-bg);
}

.footer-inner {
  width: min(calc(100% - 74px), 1355px);
  margin: 0 auto;
  padding: 58px 0 38px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  font-family: Montserrat, var(--en-font);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.19em;
}

.footer-nav {
  display: flex;
  gap: 40px;
  font-family: Montserrat, var(--en-font);
  font-size: 15.3px;
  letter-spacing: 0.04em;
}

.footer-nav a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer-line {
  height: 1px;
  margin: 55px 0 40px;
  background: rgba(255, 255, 255, 0.72);
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  font-family: Montserrat, var(--jp-font);
  font-size: 15.3px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.footer-info p {
  margin: 0;
}

.footer-info p:last-child {
  text-align: right;
}

.copyright {
  margin: 34px 0 0;
  font-family: Montserrat, var(--en-font);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.85s ease-in-out, transform 1.05s var(--ease-soft);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translate3d(-30px, 24px, 0);
}

.reveal.from-right {
  transform: translate3d(30px, 24px, 0);
}

.about-photo.reveal,
.material-photo.reveal,
.price-photo.reveal {
  transform: translate3d(0, 30px, 0) scale(1.025);
}

.about-photo.reveal.from-left,
.material-photo.reveal.from-left,
.price-photo.reveal.from-left {
  transform: translate3d(-26px, 24px, 0) scale(1.025);
}

.about-photo.reveal.from-right,
.material-photo.reveal.from-right,
.price-photo.reveal.from-right {
  transform: translate3d(26px, 24px, 0) scale(1.025);
}

.reveal.is-visible,
.about-photo.reveal.is-visible,
.material-photo.reveal.is-visible,
.price-photo.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1190px) {
  .about-stage {
    transform-origin: top center;
  }

  .price-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.8fr);
  }
}

@media (max-width: 1180px) {
  .header-inner {
    width: min(calc(100% - 36px), 920px);
  }

  .nav-list {
    gap: 22px;
  }

  .hero {
    height: 620px;
  }

  .hero-title {
    left: 48px;
    font-size: 32px;
  }

  .about-stage {
    display: grid;
    gap: 88px;
    width: min(calc(100% - 48px), 760px);
    height: auto;
    padding: 96px 0 110px;
  }

  .deco-pink {
    top: 40px;
    left: -470px;
  }

  .deco-gold {
    top: 980px;
    left: -520px;
  }

  .deco-peach {
    top: 540px;
    right: -440px;
  }

  .about-feature,
  .about-feature-one,
  .about-feature-two,
  .about-feature-three {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px 28px;
    width: auto;
    height: auto;
  }

  .about-photo,
  .about-photo-one,
  .about-photo-two,
  .about-photo-three {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 2;
    width: 100%;
  }

  .vertical-copy,
  .copy-one,
  .copy-two,
  .copy-three {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    height: auto;
    writing-mode: horizontal-tb;
    line-height: 2.1;
  }

  .about-marker,
  .marker-one,
  .marker-two,
  .marker-three {
    position: relative;
    top: auto;
    left: auto;
    align-self: start;
    grid-column: 1;
    grid-row: 1;
    width: 54px;
    height: 54px;
    margin-top: 4px;
  }

  .material-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    width: min(calc(100% - 48px), 760px);
  }

  .material-title {
    margin-bottom: 42px;
  }

  .flow-inner,
  .contact-inner {
    width: min(calc(100% - 48px), 760px);
  }

  .price-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
    width: min(calc(100% - 48px), 760px);
  }

  .price-content {
    padding-top: 0;
  }

  .contact-grid {
    gap: 32px;
  }

  .store-card h3 {
    font-size: 20px;
  }

  .store-card a {
    font-size: 26px;
  }

  .line-button {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  section {
    scroll-margin-top: 76px;
  }

  .site-header {
    height: 64px;
  }

  .header-logo {
    opacity: 1;
    pointer-events: auto;
    font-size: 15px;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--nav);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s var(--ease-soft), top 0.35s var(--ease-soft);
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:last-child {
    top: 27px;
  }

  body.menu-open .menu-toggle span:first-child {
    top: 22px;
    transform: rotate(35deg);
  }

  body.menu-open .menu-toggle span:last-child {
    top: 22px;
    transform: rotate(-35deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    place-items: center;
    padding: 96px 28px 40px;
    background: rgba(250, 242, 235, 0.98);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.55s var(--ease-soft);
  }

  body.menu-open .global-nav {
    transform: translate3d(0, 0, 0);
  }

  body.admin-bar .global-nav {
    top: 46px;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .nav-link {
    font-size: 22px;
    min-height: 52px;
  }

  .nav-cta {
    width: 230px;
    height: 48px;
    justify-content: center;
    font-size: 14px;
  }

  .hero {
    height: 560px;
  }

  .hero-media img {
    object-position: 50% center;
  }

  .hero-title {
    top: 88px;
    left: 23px;
    right: 20px;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.72;
    letter-spacing: 0.1em;
  }

  .about-stage {
    width: min(calc(100% - 44px), 520px);
    gap: 74px;
    padding: 78px 0 86px;
  }

  .deco {
    opacity: 0.75;
  }

  .deco-pink {
    top: 10px;
    left: -520px;
    width: 760px;
  }

  .deco-gold {
    top: 870px;
    left: -470px;
    width: 740px;
  }

  .deco-peach {
    top: 440px;
    right: -430px;
    width: 680px;
  }

  .about-feature,
  .about-feature-one,
  .about-feature-two,
  .about-feature-three {
    display: block;
  }

  .about-photo,
  .about-photo-one,
  .about-photo-two,
  .about-photo-three {
    width: 100%;
  }

  .about-marker,
  .marker-one,
  .marker-two,
  .marker-three {
    position: absolute;
    top: -24px;
    left: 16px;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .about-marker span {
    font-size: 20px;
  }

  .vertical-copy,
  .copy-one,
  .copy-two,
  .copy-three {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }

  .material-section {
    padding: 64px 0 94px;
  }

  .material-inner {
    width: min(calc(100% - 44px), 520px);
    gap: 36px;
  }

  .material-title {
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

  .material-text {
    font-size: 14px;
    line-height: 2.15;
  }

  .material-text p + p {
    margin-top: 24px;
  }

  .flow-section {
    padding: 86px 0 90px;
  }

  .flow-inner {
    width: min(calc(100% - 44px), 520px);
  }

  .flow-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 58px;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 67px minmax(0, 1fr);
    gap: 25px;
    min-height: auto;
    padding-right: 0;
  }

  .flow-step:not(:last-child)::before {
    top: 66px;
    bottom: -42px;
    left: 33px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .flow-step.is-visible:not(:last-child)::before {
    transform: scaleY(1);
  }

  .flow-number {
    margin-left: 0;
  }

  .flow-body {
    margin-top: 4px;
  }

  .flow-body h3 {
    margin-bottom: 12px;
  }

  .flow-body p {
    max-width: none;
    font-size: 12.5px;
  }

  .price-section {
    min-height: 0;
    padding: 72px 0 94px;
  }

  .price-deco-pink {
    top: 290px;
    left: -560px;
    width: 760px;
  }

  .price-deco-gold {
    top: -210px;
    right: -540px;
    width: 760px;
  }

  .price-inner {
    width: min(calc(100% - 44px), 520px);
    gap: 46px;
  }

  .price-line {
    gap: 10px;
  }

  .price-num {
    font-size: 32px;
  }

  .price-yen,
  .price-item h3 {
    font-size: 17px;
  }

  .contact-section {
    padding: 78px 0 82px;
  }

  .contact-inner {
    width: min(calc(100% - 44px), 520px);
  }

  .contact-title {
    font-size: 24px;
    line-height: 1.45;
  }

  .contact-lead {
    margin-top: 48px;
    font-size: 15px;
    line-height: 2.05;
    letter-spacing: 0.08em;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 52px;
  }

  .store-list {
    gap: 30px;
  }

  .store-card {
    gap: 16px;
  }

  .phone-badge {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    font-size: 11px;
  }

  .store-card h3 {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .store-card a {
    font-size: 22px;
    letter-spacing: 0.07em;
  }

  .contact-divider {
    width: 100%;
    height: 1px;
  }

  .line-button {
    height: 72px;
    gap: 16px;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .reception-time {
    font-size: 17px;
    letter-spacing: 0.08em;
  }

  .footer-inner {
    width: min(calc(100% - 44px), 520px);
    padding: 44px 0 34px;
  }

  .footer-top,
  .footer-info {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-logo {
    font-size: 25px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
    font-size: 13px;
  }

  .footer-line {
    margin: 34px 0 28px;
  }

  .footer-info {
    gap: 22px;
    font-size: 13px;
  }

  .footer-info p:last-child {
    text-align: left;
  }
}

@media screen and (min-width: 783px) {
  body.admin-bar .global-nav {
    top: 32px;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero-media img,
  .hero-line,
  .reveal,
  .split-char {
    opacity: 1 !important;
    transform: none !important;
  }
}
