:root {
  --background-50: 0.97 0.01 85;
  --background-100: 0.94 0.015 80;
  --background-200: 0.90 0.02 75;
  --background-300: 0.85 0.025 70;
  --background-400: 0.75 0.03 65;
  --background-500: 0.65 0.04 60;
  --background-600: 0.55 0.05 55;
  --background-700: 0.45 0.06 50;
  --background-800: 0.35 0.07 45;
  --background-900: 0.25 0.08 40;
  --background-950: 0.15 0.09 35;
  --primary-50: 0.95 0.03 70;
  --primary-100: 0.90 0.05 65;
  --primary-200: 0.85 0.08 60;
  --primary-300: 0.80 0.10 58;
  --primary-400: 0.72 0.12 56;
  --primary-500: 0.65 0.15 55;
  --primary-600: 0.58 0.14 52;
  --primary-700: 0.50 0.13 50;
  --primary-800: 0.42 0.12 48;
  --primary-900: 0.35 0.11 46;
  --primary-950: 0.28 0.10 44;
  --accent-50: 0.95 0.02 45;
  --accent-100: 0.90 0.04 42;
  --accent-200: 0.85 0.06 40;
  --accent-300: 0.78 0.08 38;
  --accent-400: 0.70 0.10 36;
  --accent-500: 0.62 0.12 35;
  --accent-600: 0.55 0.11 34;
  --accent-700: 0.48 0.10 33;
  --accent-800: 0.40 0.09 32;
  --accent-900: 0.33 0.08 31;
  --accent-950: 0.26 0.07 30;
  --secondary-50: 0.94 0.02 85;
  --secondary-100: 0.88 0.03 82;
  --secondary-200: 0.80 0.04 80;
  --secondary-300: 0.72 0.05 78;
  --secondary-400: 0.62 0.06 76;
  --secondary-500: 0.55 0.08 75;
  --secondary-600: 0.48 0.07 74;
  --secondary-700: 0.40 0.06 73;
  --secondary-800: 0.32 0.05 72;
  --secondary-900: 0.25 0.04 71;
  --secondary-950: 0.18 0.03 70;
  --foreground-50: 0.97 0.01 80;
  --foreground-100: 0.92 0.015 75;
  --foreground-200: 0.85 0.02 70;
  --foreground-300: 0.75 0.025 65;
  --foreground-400: 0.65 0.03 60;
  --foreground-500: 0.55 0.04 55;
  --foreground-600: 0.45 0.05 50;
  --foreground-700: 0.38 0.06 45;
  --foreground-800: 0.30 0.07 40;
  --foreground-900: 0.22 0.08 35;
  --foreground-950: 0.15 0.09 30;
  --font-heading: "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-script: "Dancing Script", cursive;
  --z-header: 100;
  --z-mobile-bar: 500;
  --z-modal: 1000;
}

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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: oklch(var(--background-50));
  color: oklch(var(--foreground-900));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
  color: inherit;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

[class^=ri-],
[class*=" ri-"] {
  line-height: 1;
}

.s-page-head {
  padding-block: 12rem 4rem;
  background-color: oklch(var(--background-100));
  text-align: center;
}
@media (max-width: 767px) {
  .s-page-head {
    padding-block: 9.6rem 4rem;
  }
}
.s-page-head__inner {
  width: min(76.8rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-page-head__inner {
    width: min(76.8rem, 100% - 3.2rem);
  }
}
.s-page-head__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
}
@media (max-width: 767px) {
  .s-page-head__title {
    font-size: 2.2rem;
  }
}
.s-page-head__date {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  color: oklch(var(--foreground-500));
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.c-header.is-scrolled {
  background-color: oklch(var(--background-50)/0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.06);
}
.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  width: min(128rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .c-header__inner {
    width: min(128rem, 100% - 3.2rem);
  }
}
@media (max-width: 767px) {
  .c-header__inner {
    height: 6.4rem;
  }
}
.c-header__brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.c-header__logo {
  height: 4rem;
  width: auto;
}
@media (max-width: 767px) {
  .c-header__logo {
    height: 3.6rem;
  }
}
.c-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.c-header__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: oklch(var(--background-50));
  transition: color 0.4s ease;
}
.is-scrolled .c-header__brand-name {
  color: oklch(var(--foreground-900));
}
@media (max-width: 767px) {
  .c-header__brand-name {
    font-size: 2rem;
  }
}
.c-header__brand-sub {
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  color: oklch(var(--background-50));
  transition: color 0.4s ease;
}
.is-scrolled .c-header__brand-sub {
  color: oklch(var(--foreground-500));
}
.c-header__nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .c-header__nav {
    display: none;
  }
}
.c-header__nav-link {
  padding: 0.8rem 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0.8rem;
  color: oklch(var(--background-200));
  transition: color 0.2s ease, background-color 0.2s ease;
}
.is-scrolled .c-header__nav-link {
  color: oklch(var(--foreground-700));
}
.is-scrolled .c-header__nav-link:hover {
  color: oklch(var(--primary-600));
  background-color: oklch(var(--primary-50));
}
.c-header__nav-link:hover {
  color: oklch(var(--background-50));
  background-color: oklch(var(--background-50)/0.1);
}
.c-header__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .c-header__actions {
    display: none;
  }
}
.c-header__action-btn {
  white-space: nowrap;
}
.c-header:not(.is-scrolled) .c-header__action-btn {
  background-color: oklch(var(--background-50)/0.2);
  color: oklch(var(--background-50));
  border: 0.1rem solid oklch(var(--background-200)/0.4);
  backdrop-filter: blur(4px);
}
.c-header:not(.is-scrolled) .c-header__action-btn:hover {
  background-color: oklch(var(--background-50)/0.3);
}
.c-header__hamburger {
  display: none;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  font-size: 2.2rem;
  color: oklch(var(--background-50));
  transition: color 0.2s ease, background-color 0.2s ease;
}
.is-scrolled .c-header__hamburger {
  color: oklch(var(--foreground-700));
}
@media (max-width: 767px) {
  .c-header__hamburger {
    display: flex;
  }
}

.c-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.c-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.c-mobile-nav__panel {
  position: absolute;
  top: 6.4rem;
  left: 0;
  right: 0;
  background-color: oklch(var(--background-50));
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.is-open .c-mobile-nav__panel {
  transform: translateY(0);
}
.c-mobile-nav__link {
  display: block;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0.8rem;
  color: oklch(var(--foreground-700));
}
.c-mobile-nav__link:hover {
  color: oklch(var(--primary-600));
  background-color: oklch(var(--primary-50));
}
.c-mobile-nav__button {
  width: 100%;
  margin-top: 0.4rem;
  justify-content: center;
}

.c-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-mobile-bar);
  background-color: oklch(var(--background-50)/0.95);
  backdrop-filter: blur(8px);
  border-top: 0.1rem solid oklch(var(--background-200));
  box-shadow: 0 -0.4rem 2rem rgba(0, 0, 0, 0.08);
  padding: 1rem 1.2rem;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .c-phone-bar {
    display: flex;
  }
}
.c-phone-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 999rem;
  transition: background-color 0.2s ease;
}
.c-phone-bar__btn--mail {
  background-color: oklch(var(--background-100));
  color: oklch(var(--foreground-800));
}
.c-phone-bar__btn--mail:hover {
  background-color: oklch(var(--background-200));
}
.c-phone-bar__btn--call {
  background-color: oklch(var(--primary-500));
  color: oklch(var(--background-50));
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.15);
}
.c-phone-bar__btn--call:hover {
  background-color: oklch(var(--primary-600));
}

.c-phone-popup {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) - 30);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
}
.c-phone-popup[hidden] {
  display: none;
}
.c-phone-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}
.c-phone-popup__panel {
  position: relative;
  width: 100%;
  max-width: 44rem;
  background-color: oklch(var(--background-50));
  border-radius: 2rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-phone-popup__head {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.c-phone-popup__icon {
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: oklch(var(--primary-100));
  color: oklch(var(--primary-600));
  font-size: 2rem;
}
.c-phone-popup__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
  margin-bottom: 0.4rem;
}
.c-phone-popup__text {
  font-size: 1.3rem;
  color: oklch(var(--foreground-600));
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.c-phone-popup__text--en {
  font-size: 1.2rem;
  color: oklch(var(--foreground-500));
  font-style: italic;
}
.c-phone-popup__close {
  align-self: stretch;
}

.c-footer {
  background-color: oklch(var(--secondary-800));
  color: oklch(var(--background-200));
}
.c-footer__inner {
  width: min(128rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .c-footer__inner {
    width: min(128rem, 100% - 3.2rem);
  }
}
.c-footer__main {
  padding-block: 3.2rem;
}
@media (max-width: 767px) {
  .c-footer__main {
    padding-block: 2.4rem;
  }
}
.c-footer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3.2rem;
  align-items: start;
}
@media (max-width: 767px) {
  .c-footer__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.c-footer__brand {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .c-footer__brand {
    grid-column: span 1;
  }
}
.c-footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.c-footer__logo {
  height: 3.6rem;
  width: auto;
}
.c-footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: oklch(var(--background-50));
}
.c-footer__emblem {
  margin-top: 0.4rem;
}
.c-footer__emblem-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fcd34d;
  font-weight: 500;
  margin-top: 0.2rem;
}
.c-footer__emblem-text:first-child {
  margin-top: 0;
}
.c-footer__emblem-img {
  width: 12rem;
  height: 12rem;
  object-fit: contain;
  margin: 0.8rem auto 0;
}
@media (max-width: 767px) {
  .c-footer__emblem-img {
    width: 15rem;
    height: 15rem;
  }
}
.c-footer__store {
  grid-column: 5/span 4;
  padding-top: 0.4rem;
}
@media (max-width: 767px) {
  .c-footer__store {
    grid-column: span 1;
  }
}
.c-footer__links {
  grid-column: 10/span 3;
  padding-top: 0.4rem;
}
@media (max-width: 767px) {
  .c-footer__links {
    grid-column: span 1;
  }
}
.c-footer__heading {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: oklch(var(--background-50));
  margin-bottom: 1.2rem;
}
.c-footer__store-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-footer__store-row {
  display: flex;
  gap: 0.8rem;
}
.c-footer__store-label {
  min-width: 6.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: oklch(var(--background-400));
  white-space: nowrap;
}
.c-footer__store-value {
  font-size: 1.3rem;
  color: oklch(var(--background-300));
  line-height: 1.7;
  white-space: pre-line;
}
.c-footer__group {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 0.1rem solid oklch(var(--secondary-700));
}
.c-footer__group-heading {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: oklch(var(--background-50));
  margin-bottom: 1rem;
}
.c-footer__group-text {
  font-size: 1.3rem;
  color: oklch(var(--background-300));
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.c-footer__group-text--en {
  font-size: 1.2rem;
  color: oklch(var(--background-400));
  font-style: italic;
}
.c-footer__phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: oklch(var(--primary-400));
  margin-top: 0.4rem;
}
.c-footer__phone:hover {
  color: oklch(var(--primary-300));
}
.c-footer__phone i {
  color: oklch(var(--primary-500));
}
.c-footer__link {
  display: block;
  font-size: 1.3rem;
  color: oklch(var(--background-300));
  padding-block: 0.4rem;
}
.c-footer__link:hover {
  color: oklch(var(--background-50));
}
.c-footer__bottom {
  border-top: 0.1rem solid oklch(var(--secondary-700));
}
.c-footer__bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-block: 1.2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .c-footer__bottom-row {
    flex-direction: column;
  }
}
.c-footer__copyright {
  font-size: 1.2rem;
  color: oklch(var(--background-500));
}
.c-footer__legal {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.c-footer__legal-link {
  font-size: 1.2rem;
  color: oklch(var(--background-500));
}
.c-footer__legal-link:hover {
  color: oklch(var(--background-300));
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 999rem;
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.c-button--primary {
  background-color: oklch(var(--primary-500));
  color: oklch(var(--background-50));
}
.c-button--primary:hover {
  background-color: oklch(var(--primary-600));
}
.c-button--secondary {
  background-color: oklch(var(--secondary-500));
  color: oklch(var(--background-50));
}
.c-button--secondary:hover {
  background-color: oklch(var(--secondary-600));
}
.c-button--outline {
  background-color: oklch(var(--background-100));
  color: oklch(var(--foreground-700));
}
.c-button--outline:hover {
  background-color: oklch(var(--background-200));
}
.c-button--large {
  padding: 1.2rem 2.8rem;
  font-size: 1.5rem;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.15);
}
.c-button--large:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.2);
}
.c-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
}
.c-modal[hidden] {
  display: none;
}
.c-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.c-modal__panel {
  position: relative;
  width: 100%;
  max-width: 60rem;
  max-height: 90vh;
  overflow-y: auto;
  background-color: oklch(var(--background-50));
  border-radius: 2rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
}
.c-modal__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 1;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: oklch(var(--background-100));
  color: oklch(var(--foreground-500));
  font-size: 1.8rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-modal__close:hover {
  background-color: oklch(var(--background-200));
  color: oklch(var(--foreground-800));
}
.c-modal__body {
  padding: 2.4rem;
}
@media (max-width: 767px) {
  .c-modal__body {
    padding: 4rem 2.4rem 2.4rem;
  }
}
.c-modal__head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.c-modal__eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(var(--primary-600));
  margin-bottom: 0.6rem;
}
.c-modal__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
  margin-bottom: 0.6rem;
}
.c-modal__lead {
  font-size: 1.4rem;
  color: oklch(var(--foreground-600));
  line-height: 1.7;
}

.c-form__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-form__field {
  display: flex;
  flex-direction: column;
}
.c-form__label {
  font-size: 1.4rem;
  font-weight: 500;
  color: oklch(var(--foreground-800));
  margin-bottom: 0.6rem;
}
.c-form__required {
  color: oklch(var(--primary-500));
}
.c-form__input, .c-form__textarea {
  width: 100%;
  padding: 0 1.6rem;
  border-radius: 1.2rem;
  background-color: oklch(var(--background-50));
  border: 0.1rem solid oklch(var(--background-300));
  font-size: 1.4rem;
  color: oklch(var(--foreground-900));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-form__input::placeholder, .c-form__textarea::placeholder {
  color: oklch(var(--foreground-400));
}
.c-form__input:focus, .c-form__textarea:focus {
  outline: none;
  border-color: oklch(var(--primary-400));
  box-shadow: 0 0 0 0.3rem oklch(var(--primary-500)/0.15);
}
.c-form__input {
  height: 4.4rem;
}
.c-form__textarea {
  padding-block: 1.2rem;
  resize: none;
}
.c-form__hint {
  font-size: 1.2rem;
  color: oklch(var(--foreground-500));
  margin-top: 0.4rem;
  text-align: right;
}
.c-form__submit {
  margin-top: 2.4rem;
}
.c-form__submit-btn {
  width: 100%;
  height: 4.4rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.c-form__note {
  font-size: 1.2rem;
  color: oklch(var(--foreground-500));
  text-align: center;
  margin-top: 1.2rem;
}

.c-back-to-top {
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: var(--z-header);
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: oklch(var(--primary-500));
  color: oklch(var(--background-50));
  font-size: 2rem;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(1.6rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}
.c-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-back-to-top:hover {
  background-color: oklch(var(--primary-600));
  transform: scale(1.1);
}

.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.s-hero__bg {
  position: absolute;
  inset: 0;
}
.s-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
  transform: scale(1.02);
}
.s-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.45));
}
.s-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 14rem 8rem;
  width: min(102.4rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-hero__inner {
    width: min(102.4rem, 100% - 3.2rem);
  }
}
@media (max-width: 767px) {
  .s-hero__inner {
    padding-block: 11rem 8rem;
  }
}
.s-hero__panel {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 4rem;
  max-width: 102.4rem;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(3.2rem);
  transition: opacity 1s ease, transform 1s ease;
}
.s-hero__panel.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 767px) {
  .s-hero__panel {
    padding: 2rem;
    backdrop-filter: blur(6px);
  }
}
.s-hero__eyebrow {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background-color: oklch(var(--accent-500));
  color: oklch(var(--background-50));
  padding: 0.8rem 2rem;
  margin-bottom: 1.6rem;
}
.s-hero__title {
  font-size: 6.4rem;
  font-weight: 700;
  color: oklch(var(--background-50));
  margin-bottom: 2.4rem;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .s-hero__title {
    font-size: 3.6rem;
  }
}
.s-hero__lead {
  font-size: 1.6rem;
  color: oklch(var(--background-200));
  max-width: 64rem;
  margin-inline: auto;
  margin-bottom: 4rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .s-hero__lead {
    font-size: 1.4rem;
  }
}
.s-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.s-chef {
  padding-block: 11.2rem 4rem;
  background-color: oklch(var(--background-50));
}
@media (max-width: 767px) {
  .s-chef {
    padding-block: 8rem 3.2rem;
  }
}
.s-chef__inner {
  width: min(96rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-chef__inner {
    width: min(96rem, 100% - 3.2rem);
  }
}
.s-chef__head {
  text-align: center;
  margin-bottom: 6.4rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s ease, transform 1s ease;
}
@media (max-width: 767px) {
  .s-chef__head {
    margin-bottom: 4.8rem;
  }
}
.s-chef__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(var(--foreground-400));
  margin-bottom: 1.2rem;
}
.s-chef__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
}
@media (max-width: 767px) {
  .s-chef__title {
    font-size: 2.8rem;
  }
}
.s-chef__divider {
  width: 6.4rem;
  height: 0.2rem;
  background-color: oklch(var(--accent-500));
  margin: 2.4rem auto 0;
}
.s-chef__content {
  display: flex;
  align-items: center;
  gap: 6.4rem;
  opacity: 0;
  transform: translateY(3.2rem);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
@media (max-width: 767px) {
  .s-chef__content {
    flex-direction: column;
    gap: 4rem;
  }
}
.s-chef.is-visible .s-chef__head, .s-chef.is-visible .s-chef__content {
  opacity: 1;
  transform: none;
}
.s-chef__image {
  flex-shrink: 0;
  width: 40%;
}
@media (max-width: 767px) {
  .s-chef__image {
    width: 100%;
    max-width: 32rem;
    margin-inline: auto;
  }
}
.s-chef__image img {
  border-radius: 1.6rem;
}
.s-chef__message {
  width: 60%;
}
@media (max-width: 767px) {
  .s-chef__message {
    width: 100%;
  }
}
.s-chef__paragraph {
  font-size: 1.5rem;
  color: oklch(var(--foreground-700));
  line-height: 1.9;
  margin-top: 1.4rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.s-chef__paragraph:first-child {
  margin-top: 0;
}
.s-chef__paragraph:nth-child(1) {
  transition-delay: 0.4s;
}
.s-chef__paragraph:nth-child(2) {
  transition-delay: 0.52s;
}
.s-chef__paragraph:nth-child(3) {
  transition-delay: 0.64s;
}
.s-chef__paragraph:nth-child(4) {
  transition-delay: 0.76s;
}
.s-chef__paragraph:nth-child(5) {
  transition-delay: 0.88s;
}
.s-chef__paragraph:nth-child(6) {
  transition-delay: 1s;
}
.s-chef__paragraph:nth-child(7) {
  transition-delay: 1.12s;
}
.s-chef__signature {
  margin-top: 1.4rem;
  padding-top: 1.6rem;
  border-top: 0.1rem solid oklch(var(--background-200)/0.6);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s ease 1.24s, transform 0.7s ease 1.24s;
}
.s-chef.is-visible .s-chef__paragraph, .s-chef.is-visible .s-chef__signature {
  opacity: 1;
  transform: none;
}
.s-chef__signature-text {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: oklch(var(--foreground-500));
  letter-spacing: 0.03em;
}

.s-menu {
  padding-block: 4rem 11.2rem;
  background-color: oklch(var(--background-50));
}
@media (max-width: 767px) {
  .s-menu {
    padding-block: 3.2rem 8rem;
  }
}
.s-menu__inner {
  width: min(128rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-menu__inner {
    width: min(128rem, 100% - 3.2rem);
  }
}
.s-menu__head {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s ease, transform 1s ease;
}
.s-menu.is-visible .s-menu__head {
  opacity: 1;
  transform: none;
}
.s-menu__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(var(--foreground-400));
  margin-bottom: 1.2rem;
}
.s-menu__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
}
@media (max-width: 767px) {
  .s-menu__title {
    font-size: 2.8rem;
  }
}
.s-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .s-menu__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.s-menu__card {
  background-color: oklch(var(--background-100));
  border-radius: 1.2rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(3.2rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.s-menu.is-visible .s-menu__card {
  opacity: 1;
  transform: none;
}
.s-menu__card:nth-child(1) {
  transition-delay: 0s;
}
.s-menu__card:nth-child(2) {
  transition-delay: 0.1s;
}
.s-menu__card:nth-child(3) {
  transition-delay: 0.2s;
}
.s-menu__card:nth-child(4) {
  transition-delay: 0.3s;
}
.s-menu__card:nth-child(5) {
  transition-delay: 0.4s;
}
.s-menu__card:nth-child(6) {
  transition-delay: 0.5s;
}
.s-menu__card-media {
  position: relative;
  overflow: hidden;
}
.s-menu__card-img {
  width: 100%;
  height: 20.8rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.s-menu__card:hover .s-menu__card-img {
  transform: scale(1.05);
}
.s-menu__card-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999rem;
  background-color: oklch(var(--accent-500));
  color: oklch(var(--background-50));
  font-size: 1.2rem;
  font-weight: 600;
}
.s-menu__card-body {
  padding: 2rem 2.4rem;
}
.s-menu__card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.s-menu__card-desc {
  font-size: 1.4rem;
  color: oklch(var(--foreground-500));
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.s-menu__card-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-bottom 0.4s ease;
}
.s-menu__card.is-open .s-menu__card-detail {
  max-height: 100rem;
  opacity: 1;
  margin-bottom: 1.6rem;
}
.s-menu__detail-inner {
  padding-top: 1.2rem;
  border-top: 0.1rem solid oklch(var(--background-200)/0.6);
}
.s-menu__detail-intro {
  font-size: 1.4rem;
  font-weight: 600;
  color: oklch(var(--foreground-800));
  margin-bottom: 1.2rem;
}
.s-menu__detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.s-menu__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: oklch(var(--foreground-600));
  line-height: 1.6;
}
.s-menu__detail-item::before {
  content: "";
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.6rem;
  border-radius: 50%;
  background-color: oklch(var(--accent-500));
}
.s-menu__detail-note {
  font-size: 1.4rem;
  font-weight: 600;
  color: oklch(var(--foreground-800));
  margin: 1.2rem 0 0.4rem;
}
.s-menu__detail-curry {
  background-color: oklch(var(--background-50));
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-top: 0.4rem;
}
.s-menu__detail-curry-item {
  font-size: 1.2rem;
  color: oklch(var(--foreground-600));
  line-height: 1.7;
}
.s-menu__detail-extra {
  font-size: 1.4rem;
  font-weight: 600;
  color: oklch(var(--foreground-800));
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 0.1rem solid oklch(var(--background-200)/0.6);
}
.s-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: oklch(var(--primary-600));
  transition: color 0.2s ease;
}
.s-menu__toggle:hover {
  color: oklch(var(--primary-700));
}
.s-menu__toggle i {
  transition: transform 0.3s ease;
}
.s-menu__card.is-open .s-menu__toggle i {
  transform: rotate(180deg);
}

.s-locations {
  padding-block: 11.2rem;
  background-color: oklch(var(--background-100));
}
@media (max-width: 767px) {
  .s-locations {
    padding-block: 8rem;
  }
}
.s-locations__inner {
  width: min(128rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-locations__inner {
    width: min(128rem, 100% - 3.2rem);
  }
}
.s-locations__head {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s ease, transform 1s ease;
}
.s-locations.is-visible .s-locations__head {
  opacity: 1;
  transform: none;
}
.s-locations__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
}
@media (max-width: 767px) {
  .s-locations__title {
    font-size: 2.8rem;
  }
}
.s-locations__subtitle {
  font-size: 1.5rem;
  color: oklch(var(--foreground-500));
  margin-top: 0.8rem;
}
.s-locations__map {
  position: relative;
  margin-bottom: 3.2rem;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s ease, transform 1s ease;
}
.s-locations.is-visible .s-locations__map {
  opacity: 1;
  transform: none;
}
.s-locations__map-img {
  width: 100%;
  height: auto;
}
.s-locations__pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.s-locations__pin:hover {
  transform: translate(-50%, -100%) scale(1.1);
}
.s-locations__pin-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: oklch(var(--accent-500));
  color: oklch(var(--background-50));
  font-size: 1.5rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .s-locations__pin-icon {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.3rem;
  }
}
.s-locations__pin-label {
  margin-top: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  background-color: oklch(var(--background-50));
  color: oklch(var(--foreground-700));
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.1);
}
.s-locations__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s ease 0.1s, transform 1s ease 0.1s;
}
.s-locations.is-visible .s-locations__pills {
  opacity: 1;
  transform: none;
}
.s-locations__pill {
  padding: 0.8rem 1.6rem;
  border-radius: 999rem;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  background-color: oklch(var(--background-200));
  color: oklch(var(--foreground-600));
  transition: background-color 0.3s ease, color 0.3s ease;
}
.s-locations__pill:hover {
  background-color: oklch(var(--background-300));
}
.s-locations__pill.is-active {
  background-color: oklch(var(--primary-500));
  color: oklch(var(--background-50));
}
.s-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .s-locations__grid {
    grid-template-columns: 1fr;
  }
}
.s-locations__card {
  background-color: oklch(var(--background-50));
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.06);
  cursor: pointer;
  opacity: 0;
  transform: translateY(3.2rem);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.s-locations__card:hover {
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.4rem);
}
.s-locations__card.is-active {
  box-shadow: 0 0 0 0.2rem oklch(var(--primary-400));
}
.s-locations.is-visible .s-locations__card {
  opacity: 1;
  transform: none;
}
.s-locations__card:nth-child(1) {
  transition-delay: 0s;
}
.s-locations__card:nth-child(2) {
  transition-delay: 0.1s;
}
.s-locations__card:nth-child(3) {
  transition-delay: 0.2s;
}
.s-locations__card:nth-child(4) {
  transition-delay: 0.3s;
}
.s-locations__card:nth-child(5) {
  transition-delay: 0.4s;
}
.s-locations__card:nth-child(6) {
  transition-delay: 0.5s;
}
.s-locations__card-media {
  position: relative;
  height: 19.2rem;
  overflow: hidden;
}
.s-locations__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.s-locations__card:hover .s-locations__card-img {
  transform: scale(1.05);
}
.s-locations__card-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999rem;
  background-color: oklch(var(--primary-500));
  color: oklch(var(--background-50));
  font-size: 1.2rem;
  font-weight: 600;
}
.s-locations__card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
}
.s-locations__card-footer {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
}
.s-locations__card-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: oklch(var(--background-50));
}
.s-locations__card-reserve {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999rem;
  background-color: #c93b4a;
  border: 0.2rem solid oklch(var(--background-50)/0.8);
  color: oklch(var(--background-50));
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.s-locations__card-reserve:hover {
  background-color: #a8303d;
}
.s-locations__card-body {
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s-locations__card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: oklch(var(--foreground-600));
  line-height: 1.6;
}
.s-locations__card-row i {
  margin-top: 0.2rem;
  color: oklch(var(--primary-500));
  font-size: 1.4rem;
}
.s-locations__card-row a {
  color: oklch(var(--primary-600));
  font-weight: 500;
}
.s-locations__card-row a:hover {
  color: oklch(var(--primary-700));
}

.s-testimonials {
  padding-block: 11.2rem;
  background-color: oklch(var(--background-50));
}
@media (max-width: 767px) {
  .s-testimonials {
    padding-block: 8rem;
  }
}
.s-testimonials__inner {
  width: min(128rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-testimonials__inner {
    width: min(128rem, 100% - 3.2rem);
  }
}
.s-testimonials__head {
  text-align: center;
  margin-bottom: 5.6rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s ease, transform 1s ease;
}
.s-testimonials.is-visible .s-testimonials__head {
  opacity: 1;
  transform: none;
}
.s-testimonials__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(var(--foreground-400));
  margin-bottom: 1.2rem;
}
.s-testimonials__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
}
@media (max-width: 767px) {
  .s-testimonials__title {
    font-size: 2.8rem;
  }
}
.s-testimonials__stage {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
}
@media (max-width: 767px) {
  .s-testimonials__stage {
    min-height: 0;
  }
}
.s-testimonials__card {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - 4.8rem) / 3);
  height: 38rem;
  display: flex;
  flex-direction: column;
  background-color: oklch(var(--background-100));
  border-radius: 1.2rem;
  padding: 2.4rem;
  transition: left 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .s-testimonials__card {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}
.s-testimonials__card[hidden] {
  display: none;
}
.s-testimonials__stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.6rem;
  color: oklch(var(--primary-400));
  font-size: 1.4rem;
}
.s-testimonials__text {
  font-size: 1.4rem;
  color: oklch(var(--foreground-600));
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-testimonials__translate {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  font-size: 1.2rem;
  font-weight: 500;
  color: oklch(var(--primary-500));
  margin-bottom: 2rem;
}
.s-testimonials__translate:hover {
  color: oklch(var(--primary-600));
}
.s-testimonials__person {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.6rem;
  margin-top: auto;
  border-top: 0.1rem solid oklch(var(--background-200)/0.6);
}
.s-testimonials__avatar {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  object-fit: cover;
}
.s-testimonials__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: oklch(var(--foreground-800));
}
.s-testimonials__role {
  font-size: 1.2rem;
  color: oklch(var(--foreground-400));
}
.s-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
.s-testimonials__arrow {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-testimonials__arrow--prev {
  border: 0.1rem solid oklch(var(--foreground-200));
  color: oklch(var(--foreground-500));
}
.s-testimonials__arrow--prev:hover {
  background-color: oklch(var(--background-100));
  color: oklch(var(--foreground-700));
}
.s-testimonials__arrow--next {
  background-color: oklch(var(--foreground-900));
  color: oklch(var(--background-50));
}
.s-testimonials__arrow--next:hover {
  background-color: oklch(var(--foreground-800));
}
.s-testimonials__dots {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.s-testimonials__dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999rem;
  background-color: oklch(var(--foreground-200));
  transition: width 0.3s ease, background-color 0.3s ease;
}
.s-testimonials__dot:hover {
  background-color: oklch(var(--foreground-300));
}
.s-testimonials__dot.is-active {
  width: 2.4rem;
  background-color: oklch(var(--primary-500));
}

.s-company {
  padding-block: 4.8rem 6.4rem;
}
@media (max-width: 767px) {
  .s-company {
    padding-block: 3.2rem 4.8rem;
  }
}
.s-company__inner {
  width: min(76.8rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-company__inner {
    width: min(76.8rem, 100% - 3.2rem);
  }
}
.s-company__table-wrap {
  background-color: oklch(var(--background-50));
  border: 0.1rem solid oklch(var(--background-200));
  border-radius: 0.8rem;
  overflow: hidden;
}
.s-company__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.s-company__row {
  border-bottom: 0.1rem solid oklch(var(--background-200));
}
.s-company__row:last-child {
  border-bottom: none;
}
.s-company__th {
  width: 16rem;
  padding: 1.6rem 3.2rem;
  text-align: left;
  font-weight: 500;
  color: oklch(var(--foreground-900));
  background-color: oklch(var(--background-100));
  white-space: nowrap;
  vertical-align: top;
}
@media (max-width: 767px) {
  .s-company__th {
    width: auto;
    padding: 1.2rem 1.6rem;
    display: block;
    white-space: normal;
  }
}
.s-company__td {
  padding: 1.6rem 3.2rem;
  color: oklch(var(--foreground-700));
  line-height: 1.7;
}
@media (max-width: 767px) {
  .s-company__td {
    padding: 1.2rem 1.6rem 1.6rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .s-company__row {
    display: flex;
    flex-direction: column;
  }
}

.s-privacy {
  padding-block: 4.8rem 6.4rem;
}
@media (max-width: 767px) {
  .s-privacy {
    padding-block: 3.2rem 4.8rem;
  }
}
.s-privacy__inner {
  width: min(76.8rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-privacy__inner {
    width: min(76.8rem, 100% - 3.2rem);
  }
}
.s-privacy__box {
  background-color: oklch(var(--background-50));
  border: 0.1rem solid oklch(var(--background-200));
  border-radius: 0.8rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  font-size: 1.4rem;
  line-height: 1.8;
  color: oklch(var(--foreground-800));
}
@media (max-width: 767px) {
  .s-privacy__box {
    padding: 2.4rem;
    gap: 3.2rem;
  }
}
.s-privacy__heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
  margin-bottom: 1.2rem;
}
.s-privacy__text + .s-privacy__text {
  margin-top: 0.8rem;
}
.s-privacy__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
  padding-left: 1.8rem;
}
.s-privacy__list-item {
  position: relative;
}
.s-privacy__list-item::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.8rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: oklch(var(--foreground-400));
}
.s-privacy__contact-box {
  background-color: oklch(var(--background-100));
  border-radius: 0.8rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: oklch(var(--foreground-700));
}
.s-privacy__contact-label {
  color: oklch(var(--foreground-900));
  font-weight: 700;
}

.s-thanks {
  padding-block: 4.8rem 8rem;
}
@media (max-width: 767px) {
  .s-thanks {
    padding-block: 3.2rem 6.4rem;
  }
}
.s-thanks__inner {
  text-align: center;
  width: min(64rem, 100% - 4rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .s-thanks__inner {
    width: min(64rem, 100% - 3.2rem);
  }
}
.s-thanks__icon {
  font-size: 5.6rem;
  color: oklch(var(--primary-500));
  margin-bottom: 2rem;
}
.s-thanks__lead {
  font-size: 1.8rem;
  font-weight: 700;
  color: oklch(var(--foreground-900));
  margin-bottom: 1.6rem;
}
.s-thanks__text {
  font-size: 1.4rem;
  color: oklch(var(--foreground-600));
  line-height: 1.8;
  margin-bottom: 3.2rem;
}
