@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #3e4048;
  background-color: #eeeae5;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
}

.section {
  position: relative;
  z-index: 2;
  background-color: #eeeae5;
  padding: 20rem 0;
  padding-left: 12rem;
}
@media (max-width: 1024px) {
  .section {
    padding-left: 8rem;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 10rem 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 8rem 0;
  }
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.btn, .faq__btn, .faq-contact__btn, .reservation-methods__btn, .fit-check__btn, .about__btn, .news__btn, .testimonial__btn, .symptoms__btn, .treatment__btn, .drawer-cta .drawer-btn {
  display: inline-block;
  padding: 1.5rem 3rem 1.5rem 1rem;
  color: #3e4048;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.btn::before, .faq__btn::before, .faq-contact__btn::before, .reservation-methods__btn::before, .fit-check__btn::before, .about__btn::before, .news__btn::before, .testimonial__btn::before, .symptoms__btn::before, .treatment__btn::before, .drawer-cta .drawer-btn::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #3e4048;
  border-right: 1px solid #3e4048;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn::after, .faq__btn::after, .faq-contact__btn::after, .reservation-methods__btn::after, .fit-check__btn::after, .about__btn::after, .news__btn::after, .testimonial__btn::after, .symptoms__btn::after, .treatment__btn::after, .drawer-cta .drawer-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3e4048;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover, .faq__btn:hover, .faq-contact__btn:hover, .reservation-methods__btn:hover, .fit-check__btn:hover, .about__btn:hover, .news__btn:hover, .testimonial__btn:hover, .symptoms__btn:hover, .treatment__btn:hover, .drawer-cta .drawer-btn:hover {
  opacity: 0.7;
}
.btn:hover::before, .faq__btn:hover::before, .faq-contact__btn:hover::before, .reservation-methods__btn:hover::before, .fit-check__btn:hover::before, .about__btn:hover::before, .news__btn:hover::before, .testimonial__btn:hover::before, .symptoms__btn:hover::before, .treatment__btn:hover::before, .drawer-cta .drawer-btn:hover::before {
  transform: translateY(-50%) rotate(45deg) translate(4px, -4px);
}
.btn:hover::after, .faq__btn:hover::after, .faq-contact__btn:hover::after, .reservation-methods__btn:hover::after, .fit-check__btn:hover::after, .about__btn:hover::after, .news__btn:hover::after, .testimonial__btn:hover::after, .symptoms__btn:hover::after, .treatment__btn:hover::after, .drawer-cta .drawer-btn:hover::after {
  transform-origin: left center;
  animation: btnLineSlide 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media (max-width: 480px) {
  .btn, .faq__btn, .faq-contact__btn, .reservation-methods__btn, .fit-check__btn, .about__btn, .news__btn, .testimonial__btn, .symptoms__btn, .treatment__btn, .drawer-cta .drawer-btn {
    padding: 1rem 2.5rem 1rem 0.5rem;
  }
}

@keyframes btnLineSlide {
  0% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  49% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left center;
    transform: scaleX(1);
  }
}
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  border: 1px solid rgba(62, 64, 72, 0.3);
  color: #3e4048;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn-more {
    width: 9rem;
    height: 9rem;
    font-size: 1.1rem;
  }
}
.btn-more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3e4048;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-more:hover {
  color: #ffffff;
  border-color: #3e4048;
}
.btn-more:hover::before {
  transform: translateY(0);
}
.btn-more--white {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-more--white::before {
  background-color: #ffffff;
}
.btn-more--white:hover {
  color: #0b2329;
  border-color: #ffffff;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
  }
}

h1 {
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  font-size: 2.8rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 1.6rem;
  }
}

p {
  margin: 0;
}

.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
.flex-between {
  justify-content: space-between;
}
.flex-around {
  justify-content: space-around;
}
.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

@media (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}
@media (max-width: 480px) {
  .hidden-xs {
    display: none;
  }
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 10px;
}

.p-2 {
  padding: 20px;
}

.p-3 {
  padding: 30px;
}

.p-4 {
  padding: 40px;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: all 0.3s ease, opacity 1s ease, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header--initial-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-15px);
}
.header--fv-hidden {
  opacity: 0;
  pointer-events: none;
}
.header--footer-hidden {
  opacity: 0;
  pointer-events: none;
}
.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
}
@media (max-width: 1024px) {
  .header-inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding-left: 2rem;
    padding-right: 2rem;
    height: 6rem;
  }
}
.header-logo {
  flex-shrink: 0;
}
.header-title {
  margin: 0;
}
.header-title a {
  display: block;
  text-decoration: none;
}
.header-title a img {
  height: 4rem;
  width: auto;
}
@media (max-width: 768px) {
  .header-title a img {
    height: 3.5rem;
  }
}

.drawer-wrap {
  position: relative;
  display: none;
}
@media (max-width: 768px) {
  .drawer-wrap {
    display: block;
  }
}

.drawer-input {
  display: none;
}

.drawer-open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.drawer-open span {
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  background-color: #3e4048;
  transition: all 0.3s ease;
}
.drawer-open span.top {
  margin-bottom: 0.5rem;
}
.drawer-input:checked ~ .drawer-open span {
  background-color: #ffffff;
}
.drawer-input:checked ~ .drawer-open span.top {
  transform: translateY(0) rotate(45deg);
  margin-bottom: 0;
}
.drawer-input:checked ~ .drawer-open span.bottom {
  transform: translateY(-2px) rotate(-45deg);
}

.drawer-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 30rem;
  height: 100vh;
  background-color: #eeeae5;
  border-left: 1px solid #464646;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}
.drawer-input:checked ~ .drawer-content {
  right: 0;
}
@media (max-width: 768px) {
  .drawer-content {
    max-width: 100%;
  }
}

.drawer-logo {
  text-align: left;
}
.drawer-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.drawer-logo a:hover {
  transform: scale(1.05);
}
.drawer-logo img {
  height: 4rem;
  width: auto;
}

.drawer-contact {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(62, 64, 72, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.drawer-contact .drawer-phone,
.drawer-contact .drawer-hours {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.drawer-contact .drawer-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.drawer-contact a {
  color: #3e4048;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}
.drawer-contact a:hover {
  color: rgb(14.8059701493, 15.2835820896, 17.1940298507);
}
.drawer-contact span {
  font-size: 1.2rem;
}

.drawer-cta {
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(62, 64, 72, 0.2);
}
.drawer-cta .drawer-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.2rem 1.5rem;
  font-size: 1.3rem;
  color: #3e4048;
}
.drawer-cta .drawer-btn::after {
  background-color: #3e4048;
}

.drawer-social .drawer-social-link {
  display: block;
  color: #3e4048;
  text-decoration: none;
  padding: 0.8rem 0;
  text-align: center;
  border: 1px solid rgba(62, 64, 72, 0.2);
  border-radius: 4px;
  font-size: 1.2rem;
}

.drawer-access {
  padding: 1.5rem 2rem;
}
.drawer-access p {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: #3e4048;
  line-height: 1.3;
}
.drawer-access p:last-child {
  margin-bottom: 0;
}

.header-nav-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.header-nav-item {
  border-bottom: 1px solid rgba(62, 64, 72, 0.2);
  border-right: 1px solid rgba(62, 64, 72, 0.2);
}
.header-nav-item:nth-child(even) {
  border-right: none;
}
.header-nav-item:last-child, .header-nav-item:nth-last-child(2) {
  border-bottom: none;
}
.header-nav-link {
  display: block;
  color: #3e4048;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}
.header-nav-link:hover {
  background-color: rgba(62, 64, 72, 0.05);
}
.header-nav.mobile-nav {
  padding: 2rem 0;
}
.header-nav.mobile-nav .header-nav-link {
  padding: 2rem 1rem;
  font-size: 1.3rem;
}
.header-nav.desktop-nav {
  display: block;
  height: 100%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .header-nav.desktop-nav {
    display: none;
  }
}
.header-nav.desktop-nav .header-nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3.5rem;
}
.header-nav.desktop-nav .header-nav-item {
  border: none;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-nav.desktop-nav .header-nav-link {
  padding: 1rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #3e4048;
  position: relative;
  background-color: transparent;
}
.header-nav.desktop-nav .header-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #3e4048;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.header-nav.desktop-nav .header-nav-link:hover {
  background-color: transparent;
}
.header-nav.desktop-nav .header-nav-link:hover::after {
  width: 100%;
}

.drawer-input:checked ~ .drawer-content::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header.fv-section {
  background-color: transparent;
}
.header.fv-section .header-logo img,
.header.fv-section .header-title img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.header.fv-section .header-nav-link {
  color: #ffffff;
}
.header.fv-section .header-nav-link::after {
  background-color: #ffffff;
}
.header.fv-section .drawer-open span {
  background-color: #ffffff;
}

.header.scrolled {
  background-color: transparent;
}
.header.scrolled .header-logo img,
.header.scrolled .header-title img {
  filter: none;
  transition: filter 0.3s ease;
}
.header.scrolled .header-nav-link {
  color: #3e4048;
}
.header.scrolled .header-nav-link::after {
  background-color: #3e4048;
}
.header.scrolled .drawer-open span {
  background-color: #3e4048;
}

.header.about-section .drawer-open span {
  background-color: #ffffff;
}

.header-cta {
  display: block;
  margin-left: 4rem;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
}

.header-cta-btn {
  display: inline-block;
  background-color: #0b2329;
  color: #ffffff !important;
  padding: 1.1rem 2.4rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  line-height: 1;
}
.header-cta-btn:hover {
  background-color: transparent;
  color: #0b2329 !important;
  border-color: #0b2329;
}
.header.fv-section .header-cta-btn {
  background-color: #ffffff;
  color: #3e4048 !important;
}
.header.fv-section .header-cta-btn:hover {
  background-color: transparent;
  color: #ffffff !important;
  border-color: #ffffff;
}
.header.scrolled .header-cta-btn {
  background-color: #0b2329;
  color: #ffffff !important;
}
.header.scrolled .header-cta-btn:hover {
  background-color: transparent;
  color: #0b2329 !important;
  border-color: #0b2329;
}

.fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  --fv-overlay-opacity: 0.35;
}
.fv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, var(--fv-overlay-opacity));
  z-index: 2;
  transition: background-color 0.3s ease;
}
.fv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__copy {
  position: absolute;
  left: 10rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  transition: opacity 0.4s ease;
}
@media (max-width: 1024px) {
  .fv__copy {
    left: 4rem;
  }
}
@media (max-width: 768px) {
  .fv__copy {
    left: 3rem;
  }
}
@media (max-width: 480px) {
  .fv__copy {
    left: 2rem;
  }
}
.fv__title {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .fv__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .fv__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .fv__title {
    font-size: 1.6rem;
  }
}
.fv__title span {
  display: inline-block;
}
.fv__title span:nth-child(1) {
  opacity: 0.2;
}
.fv__title span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.1s;
}
.fv__subtitle {
  font-size: 2.4rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .fv__subtitle {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .fv__subtitle {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .fv__subtitle {
    font-size: 1.6rem;
  }
}
.fv__subtitle span {
  display: inline-block;
}
.fv__subtitle span:nth-child(1) {
  opacity: 0.2;
}
.fv__subtitle span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.4s;
}
.fv__en {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
  letter-spacing: 0.08em;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .fv__en {
    font-size: 1rem;
  }
}
.fv__en span {
  display: inline-block;
}
.fv__en span:nth-child(1) {
  opacity: 0.2;
}
.fv__en span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.7s;
}
.fv.is-loaded .fv__title span:nth-child(2),
.fv.is-loaded .fv__subtitle span:nth-child(2),
.fv.is-loaded .fv__en span:nth-child(2) {
  clip-path: inset(0);
}
.fv__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fv.is-fv-finished .fv__scroll {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .fv__scroll {
    left: 3rem;
    align-items: flex-start;
    transform: translateY(15px);
  }
  .fv.is-fv-finished .fv__scroll {
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .fv__scroll {
    left: 2rem;
    bottom: 3rem;
  }
}
.fv__scroll-text {
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 0.15em;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}
.fv__scroll-line {
  display: block;
  width: 0.5px;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.fv__scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: scrollLine 2s ease-in-out infinite;
}
.fv__info {
  position: absolute;
  right: 10rem;
  bottom: 4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fv.is-fv-finished .fv__info {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .fv__info {
    right: 4rem;
    bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .fv__info {
    right: 3rem;
    bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .fv__info {
    right: 2rem;
    bottom: 3rem;
  }
}
.fv__info-date {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.15em;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-weight: 300;
}
.fv__info-day {
  margin-left: 0.5rem;
  font-weight: 400;
}
.fv__info-line {
  display: block;
  width: 3rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.fv__info-location {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-weight: 300;
}

@keyframes fvFadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes fvCopyFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
@keyframes fvTextFadeIn {
  from {
    opacity: 0;
    transform: translateX(-1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fvScrollFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 2rem);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes fvScrollFadeInSp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: #f8f9f9;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

#loading_logo_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
}
@media (max-width: 768px) {
  #loading_logo_wrap {
    width: 240px;
    height: 240px;
  }
}

#loading_logo {
  position: relative;
  z-index: 2;
  width: 200px;
  max-width: 100%;
  height: auto;
  opacity: 0;
  animation: loadingLogoFadeIn 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards, loadingLogoPulse 3s ease-in-out 1.2s infinite alternate;
}
@media (max-width: 768px) {
  #loading_logo {
    width: 150px;
  }
}
#loading_logo img {
  width: 100%;
  height: auto;
}

.loading-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-ripple__ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1.5px solid rgba(11, 35, 41, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  animation: rippleEffect 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
@media (max-width: 768px) {
  .loading-ripple__ring {
    width: 110px;
    height: 110px;
  }
}
.loading-ripple__ring:nth-child(1) {
  animation-delay: 0s;
}
.loading-ripple__ring:nth-child(2) {
  animation-delay: 0.9s;
}
.loading-ripple__ring:nth-child(3) {
  animation-delay: 1.8s;
}

@keyframes rippleEffect {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes loadingLogoPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loadingLogoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.welcome {
  position: relative;
  margin-top: 100vh;
  padding-top: 15rem;
  padding-bottom: 30rem;
  z-index: 5;
  color: #ffffff;
  background-color: transparent;
}
.welcome .container {
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .welcome .container {
    padding: 0 2rem;
  }
}
.welcome__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8rem;
}
@media (max-width: 768px) {
  .welcome__content {
    flex-direction: column;
    gap: 6rem;
  }
}
.welcome__title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.welcome__title-area .section-subtitle {
  color: #ffffff;
}
.welcome__title-area .section-subtitle::before {
  background-color: #ffffff;
}
.welcome__title-area .section-title {
  color: #ffffff;
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .welcome__title-area .section-title {
    font-size: 2rem;
  }
}
.welcome__text-area {
  flex: 1;
  max-width: 65rem;
  padding-top: 0;
}
@media (max-width: 768px) {
  .welcome__text-area {
    padding-top: 0;
  }
}
.welcome__description {
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.welcome__description p {
  margin-bottom: 2.5rem;
}
.welcome__description p:last-child {
  margin-bottom: 0;
}
.welcome__cta {
  margin-top: 6rem;
}
.welcome__cta .btn {
  color: #ffffff;
}
.welcome__cta .btn::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}
.welcome__cta .btn::after {
  background-color: #ffffff;
}

.treatment {
  background-color: #eeeae5;
  position: relative;
}
@media (max-width: 768px) {
  .treatment {
    padding-inline: 2rem;
  }
}
@media (max-width: 480px) {
  .treatment {
    padding-inline: 2rem;
  }
}
.treatment__content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
}
@media (max-width: 1024px) {
  .treatment__content {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .treatment__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.treatment__text {
  padding-right: 10rem;
}
@media (max-width: 480px) {
  .treatment__text {
    padding-right: 0;
  }
}
.treatment__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .treatment__description {
    margin-bottom: 3rem;
  }
}
.treatment__cta {
  text-align: left;
}
.treatment .section-title {
  text-align: left;
}
@media (max-width: 768px) {
  .treatment__image {
    order: 1;
  }
}
.treatment__img {
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .treatment__img {
    width: 76%;
  }
}
.treatment__video {
  width: 80%;
  height: auto;
  object-fit: cover;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .treatment__video {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .treatment__video {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .treatment__video {
    width: 113%;
  }
}
.treatment__decoration {
  position: absolute;
  bottom: 11%;
  left: 34%;
}
@media (max-width: 480px) {
  .treatment__decoration {
    bottom: 0;
    left: 61%;
  }
}
.treatment__decoration-img {
  width: 22vw;
  height: 15vw;
  object-fit: cover;
}
@media (max-width: 480px) {
  .treatment__decoration-img {
    width: 25vw;
    height: 35vw;
  }
}

.symptoms {
  background-color: #eeeae5;
}
@media (max-width: 768px) {
  .symptoms {
    padding-inline: 2rem;
  }
}
@media (max-width: 480px) {
  .symptoms {
    padding-inline: 2rem;
  }
}
.symptoms__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-right: 22rem;
}
@media (max-width: 1024px) {
  .symptoms__content {
    padding-right: 12rem;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .symptoms__content {
    padding-right: 0;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .symptoms__content {
    grid-template-columns: 1fr;
  }
}
.symptoms__text {
  padding-left: 10rem;
}
@media (max-width: 768px) {
  .symptoms__text {
    order: 2;
    padding-left: 4rem;
  }
}
@media (max-width: 480px) {
  .symptoms__text {
    order: 1;
    padding-left: 0;
  }
}
.symptoms__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .symptoms__description {
    margin-bottom: 3rem;
  }
}
.symptoms__cta {
  text-align: left;
}
.symptoms .section-title {
  text-align: left;
}
@media (max-width: 768px) {
  .symptoms__image {
    order: 1;
  }
}
@media (max-width: 480px) {
  .symptoms__image {
    order: 2;
  }
}
.symptoms__video {
  width: 90%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media (max-width: 768px) {
  .symptoms__video {
    width: 72%;
    aspect-ratio: 2/3;
  }
}

.testimonial {
  padding-inline: 12rem;
}
@media (max-width: 1024px) {
  .testimonial {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .testimonial {
    padding-inline: 2rem;
  }
}
@media (max-width: 480px) {
  .testimonial {
    padding-inline: 2rem;
  }
}
.testimonial__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .testimonial__content {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .testimonial__content {
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .testimonial__content {
    grid-template-columns: 1fr;
  }
}
.testimonial__text {
  position: sticky;
  top: 16rem;
  align-self: start;
  padding-right: 12rem;
}
@media (max-width: 768px) {
  .testimonial__text {
    position: static;
    top: auto;
    padding: 0;
    order: 1;
  }
}
@media (max-width: 480px) {
  .testimonial__text {
    padding: 0;
  }
}
.testimonial__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .testimonial__description {
    margin-bottom: 3rem;
  }
}
.testimonial__cta {
  text-align: left;
}
.testimonial .section-title {
  text-align: left;
  color: #3e4048;
}
.testimonial__btn {
  color: #3e4048;
}
.testimonial__image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .testimonial__image {
    order: 2;
    position: relative;
    width: 100%;
    height: 300px;
  }
}
.testimonial__image-item {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .testimonial__image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
  }
  .testimonial__image-item.is-active {
    opacity: 1;
    z-index: 1;
  }
}
.testimonial__img {
  width: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .testimonial__img {
    height: 100%;
    object-fit: cover;
  }
}
.testimonial__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: #ffffff;
}
.testimonial__image-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial__image-number {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .testimonial__image-number {
    font-size: 1.6rem;
  }
}
.testimonial__image-line {
  width: 1px;
  height: 1.5rem;
  background-color: #ffffff;
}
.testimonial__image-en {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .testimonial__image-en {
    font-size: 1rem;
  }
}
.testimonial__image-title {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .testimonial__image-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .news {
    padding-inline: 2rem;
  }
}
@media (max-width: 480px) {
  .news {
    padding-inline: 2rem;
  }
}
.news__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: flex-start;
  padding-right: 22rem;
}
@media (max-width: 1024px) {
  .news__content {
    padding-right: 12rem;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .news__content {
    padding-right: 0;
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .news__content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .news__text {
    order: 1;
  }
}
.news .section-title {
  text-align: left;
}
@media (max-width: 768px) {
  .news__list {
    order: 2;
  }
}
.news__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(62, 64, 72, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.news__item:first-child {
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .news__item:first-child {
    padding-top: 0;
  }
}
.news__item:last-child {
  border-bottom: none;
}
.news__item:hover {
  background-color: rgba(0, 124, 186, 0.05);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  transition: all 0.3s ease;
  color: #3e4048;
}
@media (max-width: 768px) {
  .news__item {
    padding: 1.5rem 0;
  }
  .news__item:hover {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.news__date {
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .news__date {
    font-size: 1.2rem;
    margin-right: 1rem;
  }
}
.news__category {
  font-size: 1.2rem;
  padding: 0.3rem 1rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news__category {
    font-size: 1rem;
  }
}
.news__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.news__title-text {
  font-size: 1.4rem;
  font-weight: 500;
  flex: 1;
  line-height: 1.5;
}
.news__link {
  text-decoration: none;
  transition: color 0.3s ease;
}
.news__cta {
  text-align: left;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .news__cta {
    text-align: right;
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .news__btn {
    display: none;
  }
}
.news__btn-sp {
  display: none;
}
@media (max-width: 480px) {
  .news__btn-sp {
    display: block;
    text-align: right;
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}
.news__arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.news__btn:hover .news__arrow, .news__btn-sp:hover .news__arrow {
  transform: translateX(0.3rem);
}

.about {
  padding-top: 40rem;
  padding-bottom: 60rem;
}
@media (max-width: 768px) {
  .about {
    padding-inline: 2rem;
  }
}
@media (max-width: 480px) {
  .about {
    padding-inline: 2rem;
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
}
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18rem;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .about__content {
    gap: 4rem;
  }
}
@media (max-width: 480px) {
  .about__content {
    grid-template-columns: 1fr;
  }
}
.about__text {
  padding-right: 12rem;
}
@media (max-width: 768px) {
  .about__text {
    padding-right: 6rem;
    order: 2;
  }
}
@media (max-width: 480px) {
  .about__text {
    padding-right: 0;
    order: 1;
  }
}
.about__description {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .about__description {
    margin-bottom: 3rem;
  }
}
.about__cta {
  text-align: left;
}
.about__image {
  position: relative;
}
@media (max-width: 768px) {
  .about__image {
    order: 1;
  }
}
@media (max-width: 480px) {
  .about__image {
    order: 2;
  }
}
.about__img {
  width: 100%;
  height: auto;
}
.about__img--main {
  position: relative;
  z-index: 1;
}
.about__img--overlay {
  position: absolute;
  bottom: -67%;
  right: 81%;
  width: 41%;
  z-index: 2;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about__img--overlay {
    display: none;
    position: relative;
    top: -2rem;
    right: 6rem;
    width: 53%;
  }
}

.concept-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #eeeae5;
  padding: 12rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .concept-slider {
    padding: 8rem 0;
  }
}
.concept-slider__container {
  width: 100%;
  margin: 0 auto;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .concept-slider__container {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .concept-slider__container {
    padding-inline: 2rem;
  }
}
.concept-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 4rem;
}
@media (max-width: 768px) {
  .concept-slider__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    gap: 2.5rem;
  }
}
.concept-slider__title-area {
  flex: 1;
  max-width: 80rem;
}
.concept-slider__subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #3e4048;
  display: block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.6rem;
}
.concept-slider__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}
.concept-slider__main-title {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  color: #0b2329;
  margin: 0;
}
@media (max-width: 1024px) {
  .concept-slider__main-title {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .concept-slider__main-title {
    font-size: 2.2rem;
  }
}
.concept-slider__all-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #0b2329;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .concept-slider__all-link {
    align-self: flex-start;
  }
}
.concept-slider__all-link-circle {
  width: 5.4rem;
  height: 5.4rem;
  border: 1px solid rgba(11, 35, 41, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  background-color: transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.concept-slider__all-link-arrow {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #0b2329;
  border-right: 1.5px solid #0b2329;
  transform: rotate(45deg);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.concept-slider__all-link-text {
  display: flex;
  flex-direction: column;
}
.concept-slider__all-link-jp {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
}
.concept-slider__all-link-en {
  font-size: 1.1rem;
  color: rgba(11, 35, 41, 0.6);
  font-family: "Noto Serif", serif;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.concept-slider__all-link:hover .concept-slider__all-link-circle {
  background-color: #0b2329;
  border-color: #0b2329;
}
.concept-slider__all-link:hover .concept-slider__all-link-arrow {
  border-color: #ffffff;
  transform: rotate(45deg) translate(2px, -2px);
}
.concept-slider__swiper {
  width: 100%;
  overflow: visible;
}
.concept-slider__card {
  position: relative;
  height: auto;
  overflow: hidden;
  cursor: grab;
}
.concept-slider__card:active {
  cursor: grabbing;
}
.concept-slider__card-img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  background-color: rgba(11, 35, 41, 0.05);
}
.concept-slider__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.concept-slider__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 18, 21, 0.5) 0%, rgba(5, 18, 21, 0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .concept-slider__card-overlay {
    padding: 2rem;
  }
}
.concept-slider__card-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .concept-slider__card-title {
    font-size: 1.6rem;
  }
}
.concept-slider__card:hover .concept-slider__card-img-wrap img {
  transform: scale(1.06);
}
.concept-slider__footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .concept-slider__footer {
    margin-top: 3.5rem;
  }
}
.concept-slider__controls {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media (max-width: 768px) {
  .concept-slider__controls {
    gap: 2.5rem;
  }
}
.concept-slider__arrows {
  display: flex;
  gap: 1.2rem;
}
.concept-slider__arrow {
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid rgba(11, 35, 41, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  color: #0b2329;
  transition: all 0.3s ease;
  padding: 0;
}
.concept-slider__arrow-icon {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  display: block;
}
.concept-slider__arrow--prev .concept-slider__arrow-icon {
  transform: rotate(-135deg);
  margin-left: 2px;
}
.concept-slider__arrow--next .concept-slider__arrow-icon {
  transform: rotate(45deg);
  margin-right: 2px;
}
.concept-slider__arrow:hover {
  background-color: #0b2329;
  border-color: #0b2329;
  color: #ffffff;
}
.concept-slider__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.concept-slider__pagination {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Serif", serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.concept-slider__pagination-current {
  font-weight: 600;
  color: #0b2329;
}
.concept-slider__pagination-line {
  width: 4.5rem;
  height: 1px;
  background-color: rgba(11, 35, 41, 0.25);
  margin: 0 1.5rem;
  display: inline-block;
}
.concept-slider__pagination-total {
  color: rgba(11, 35, 41, 0.45);
}

.access {
  position: relative;
}
@media (max-width: 768px) {
  .access {
    padding-inline: 2rem;
  }
}
@media (max-width: 480px) {
  .access {
    padding-inline: 2rem;
  }
}
.access__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: flex-start;
  padding-right: 16rem;
}
@media (max-width: 1024px) {
  .access__content {
    padding-right: 12rem;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .access__content {
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .access__text {
    order: 1;
  }
}
.access .section-title {
  text-align: left;
}
@media (max-width: 768px) {
  .access__info {
    order: 2;
  }
}
.access__map {
  margin-bottom: 4rem;
  overflow: hidden;
}
.access__map iframe {
  width: 100%;
  height: 400px;
  border: none;
}
.access__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .access__details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.access__item {
  padding: 2rem;
}
@media (max-width: 480px) {
  .access__item {
    padding: 2rem 0;
  }
}
.access__item-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #3e4048;
}
@media (max-width: 768px) {
  .access__item-title {
    font-size: 1.4rem;
  }
}
.access__item-text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .access__item-text {
    font-size: 1.2rem;
  }
}
.access__decoration {
  position: absolute;
  bottom: 42%;
  left: 0;
}
@media (max-width: 768px) {
  .access__decoration {
    display: none;
  }
}
.access__decoration-img {
  width: 22vw;
  height: 15vw;
  object-fit: cover;
}
@media (max-width: 480px) {
  .access__decoration-img {
    width: 39vw;
    height: 27vw;
  }
}

.cta {
  position: relative;
  background-color: #eeeae5;
  background-image: none;
  padding: 10rem 14rem;
  z-index: 2;
}
@media (max-width: 1024px) {
  .cta {
    padding: 8rem 8rem;
  }
}
@media (max-width: 768px) {
  .cta {
    padding: 6rem 4rem;
  }
}
@media (max-width: 480px) {
  .cta {
    padding: 6rem 2rem;
  }
}
.cta::before {
  display: none;
}
.cta__container {
  display: flex;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .cta__container {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .cta__container {
    flex-direction: column;
    gap: 3rem;
  }
}
.cta__box {
  flex: 1;
  display: block;
  text-decoration: none;
  color: #0b2329;
  transition: background-color 0.3s ease;
}
.cta__box:hover {
  background-color: rgba(11, 35, 41, 0.02);
}
.cta__box:hover .cta__dot--tl {
  transform: translate(-6px, -6px);
}
.cta__box:hover .cta__dot--tr {
  transform: translate(6px, -6px);
}
.cta__box:hover .cta__dot--bl {
  transform: translate(-6px, 6px);
}
.cta__box:hover .cta__dot--br {
  transform: translate(6px, 6px);
}
.cta__box-inner {
  position: relative;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}
@media (max-width: 768px) {
  .cta__box-inner {
    height: 180px;
    padding: 3rem;
  }
}
.cta__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.cta__dot--tl {
  top: 2rem;
  left: 2rem;
  border-top: 1px solid #0b2329;
  border-left: 1px solid #0b2329;
}
.cta__dot--tr {
  top: 2rem;
  right: 2rem;
  border-top: 1px solid #0b2329;
  border-right: 1px solid #0b2329;
}
.cta__dot--bl {
  bottom: 2rem;
  left: 2rem;
  border-bottom: 1px solid #0b2329;
  border-left: 1px solid #0b2329;
}
.cta__dot--br {
  bottom: 2rem;
  right: 2rem;
  border-bottom: 1px solid #0b2329;
  border-right: 1px solid #0b2329;
}
@media (max-width: 768px) {
  .cta__dot--tl {
    top: 1.5rem;
    left: 1.5rem;
  }
  .cta__dot--tr {
    top: 1.5rem;
    right: 1.5rem;
  }
  .cta__dot--bl {
    bottom: 1.5rem;
    left: 1.5rem;
  }
  .cta__dot--br {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.cta__box-en {
  font-size: 3.2rem;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 768px) {
  .cta__box-en {
    font-size: 2.8rem;
  }
}
.cta__box-ja {
  font-size: 1.2rem;
  color: rgba(11, 35, 41, 0.7);
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.decoration {
  background-color: #0b2329;
  padding: 12rem 0;
}
.decoration__images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .decoration__images {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .decoration__images {
    gap: 1.5rem;
    flex-direction: column;
  }
}
.decoration__img {
  width: 400px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .decoration__img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .decoration__img {
    width: 120px;
    height: 120px;
  }
}

.footer {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  overflow: hidden;
  color: #ffffff;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  background-color: #0b2329;
}
.footer__container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column-reverse;
  }
}
.footer__left-col {
  flex: 0 0 50%;
  width: 50%;
  background-color: #0b2329;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__left-col {
    flex: 0 0 100%;
    width: 100%;
  }
}
.footer__left-inner {
  padding: 6rem 8rem 4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .footer__left-inner {
    padding: 5rem 4rem 3rem;
  }
}
@media (max-width: 768px) {
  .footer__left-inner {
    padding: 4rem 2rem 3rem;
    gap: 3rem;
  }
}
.footer__logo-sns-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo a {
  text-decoration: none;
  color: #ffffff;
}
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__logo-mark {
  font-size: 3.6rem;
  font-weight: 300;
  border: 1px solid #ffffff;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .footer__logo-mark {
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
  }
}
.footer__logo-text-group {
  display: flex;
  flex-direction: column;
}
.footer__logo-sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-family: "Noto Serif", serif;
  opacity: 0.8;
}
.footer__logo-main {
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer__logo-main {
    font-size: 1.8rem;
  }
}
.footer__sns-links {
  display: flex;
  gap: 1.5rem;
}
.footer__sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.footer__sns-btn svg {
  display: block;
}
.footer__sns-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .footer__menu {
    gap: 2rem;
  }
}
.footer__menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__menu-link {
  display: inline-flex;
  align-items: baseline;
  gap: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer__menu-link:hover {
  opacity: 0.7;
}
.footer__menu-en {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Noto Serif", serif;
}
.footer__menu-ja {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__menu-sublinks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-left: 1rem;
}
.footer__menu-sublinks a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__menu-sublinks a:hover {
  color: #ffffff;
}
.footer__reserve-area {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .footer__reserve-area {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer__reserve-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 2.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__reserve-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.footer__reserve-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Noto Serif", serif;
  margin-bottom: 0.5rem;
}
.footer__reserve-card-arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.footer__reserve-card:hover .footer__reserve-card-arrow {
  transform: translateX(4px);
}
.footer__reserve-card-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .footer__contact-box {
    padding: 2rem;
  }
}
.footer__contact-box-title {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Serif", serif;
  margin-bottom: 0.5rem;
}
.footer__contact-box-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.footer__contact-box-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__contact-box-field {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.footer__contact-box-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  width: 6rem;
}
.footer__contact-box-value {
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}
.footer__bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .footer__bottom-info {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.footer__copyright {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Noto Serif", serif;
}
.footer__bottom-links {
  display: flex;
  gap: 2rem;
}
.footer__bottom-link {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__bottom-link:hover {
  color: #ffffff;
}
.footer__right-col {
  flex: 0 0 50%;
  width: 50%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer__right-col {
    flex: 0 0 100%;
    width: 100%;
    height: 300px;
  }
}
.footer__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.footer__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__video-mask {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.footer__overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem 8rem;
}
@media (max-width: 1024px) {
  .footer__overlay-content {
    padding: 5rem 4rem;
  }
}
@media (max-width: 768px) {
  .footer__overlay-content {
    padding: 4rem 2rem;
  }
}
.footer__overlay-message {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
.footer__overlay-message-en {
  font-size: 2.2rem;
  font-family: "Noto Serif", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .footer__overlay-message-en {
    font-size: 1.8rem;
  }
}
.footer__overlay-message-ja {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .footer__overlay-message-ja {
    font-size: 1.4rem;
  }
}
.footer__overlay-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer__overlay-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0.8;
}
.footer__overlay-logo-mark {
  font-size: 2.4rem;
  font-weight: 300;
  border: 1px solid #ffffff;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 4px;
}
.footer__overlay-logo-text-group {
  display: flex;
  flex-direction: column;
}
.footer__overlay-logo-sub {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-family: "Noto Serif", serif;
}
.footer__overlay-logo-main {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.floating-reserve-btn {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background-color: #3e4048;
  color: #ffffff;
  padding: 1.5rem 3.5rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  font-family: "Noto Serif", "Shippori Mincho", serif;
}
.floating-reserve-btn:hover {
  background-color: #0b2329;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}
.home .floating-reserve-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.home .floating-reserve-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-reserve-btn__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.floating-reserve-btn__en {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  opacity: 0.6;
  font-family: "Noto Serif", serif;
  line-height: 1;
  text-transform: uppercase;
}
.floating-reserve-btn__ja {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
}
.floating-reserve-btn__arrow {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
}
.floating-reserve-btn:hover .floating-reserve-btn__arrow {
  transform: translate(3px, -3px);
}
@media (max-width: 768px) {
  .floating-reserve-btn {
    padding: 1.2rem 2.8rem;
  }
  .floating-reserve-btn__ja {
    font-size: 1.3rem;
  }
  .floating-reserve-btn__en {
    font-size: 0.8rem;
  }
  .floating-reserve-btn__arrow {
    width: 1.3rem;
    height: 1.3rem;
  }
}

.page-header {
  position: relative;
  overflow: hidden;
  height: 75vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-block: 6rem;
  padding-left: 12rem;
  padding-right: 14rem;
  text-align: left;
  background-color: #0b2329;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.page-header {
  background-image: url("../img/DSC_0491.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .page-header {
    padding-left: 8rem;
    padding-right: 8rem;
    height: 65vh;
    min-height: 320px;
    padding-block: 4rem;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding-left: 4rem;
    padding-right: 4rem;
    height: 55vh;
    min-height: 280px;
  }
}
@media (max-width: 480px) {
  .page-header {
    padding-left: 0;
    padding-right: 0;
    min-height: 250px;
    padding-block: 3rem;
  }
}
.page-header .container {
  width: 100%;
}
.page-header__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  animation: fvFadeIn 1s ease-out both;
}
@media (max-width: 480px) {
  .page-header__content {
    flex-direction: column-reverse;
    gap: 1.5rem;
    align-items: flex-start;
    padding-inline: 2rem;
  }
}
.page-header__subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}
.page-header__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}
@media (max-width: 768px) {
  .page-header__subtitle {
    font-size: 1rem;
    padding-left: 1.8rem;
  }
}
.page-header__date {
  display: block;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .page-header__date {
    font-size: 1.2rem;
  }
}
.page-header__text {
  padding-left: 0;
}
@media (max-width: 480px) {
  .page-header__text {
    padding-right: 0;
  }
}
.page-header__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-header__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .page-header__title {
    font-size: 1.8rem;
  }
}
.page-header__description {
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .page-header__description {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .page-header__description {
    font-size: 1.2rem;
  }
}
.page-header__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  z-index: 1;
}
.page-header__img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 480px) {
  .page-header__img {
    height: 100%;
  }
}
.page-header:not(:has(.page-header__title)):not(:has(.page-header__image)) {
  height: auto !important;
  min-height: 0 !important;
  padding-block: 3rem !important;
  background-color: #eeeae5 !important;
  background-image: none !important;
}
.page-header:not(:has(.page-header__title)):not(:has(.page-header__image))::after {
  display: none !important;
}
.page-header:not(:has(.page-header__title)):not(:has(.page-header__image)) .page-header__content {
  align-items: center !important;
  animation: none !important;
}
@media (max-width: 480px) {
  .page-header:not(:has(.page-header__title)):not(:has(.page-header__image)) .page-header__content {
    padding-inline: 2rem;
  }
}

.breadcrumb {
  display: none;
  background-color: transparent;
  font-size: 1.2rem;
  padding-block: 2rem 0;
  padding-inline: 12rem;
  z-index: 3;
  position: relative;
}
@media (max-width: 1024px) {
  .breadcrumb {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-inline: 4rem;
  }
}
@media (max-width: 480px) {
  .breadcrumb {
    padding-inline: 2rem;
  }
}
.breadcrumb__inner {
  color: rgba(62, 64, 72, 0.65);
}
.breadcrumb__inner a {
  color: rgba(62, 64, 72, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb__inner a:hover {
  color: #0b2329;
  text-decoration: underline;
}
.breadcrumb__inner .current-item {
  color: #3e4048;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #3e4048;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.6rem;
}
.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}

.flow {
  background-color: #eeeae5;
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media (max-width: 1200px) {
  .flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .flow__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.flow__step {
  text-align: center;
  position: relative;
}
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3rem;
  right: -1.5rem;
  width: 3rem;
  height: 2px;
  background-color: #0b2329;
}
@media (max-width: 1200px) {
  .flow__step:not(:last-child)::after {
    display: none;
  }
}
.flow__step-number {
  width: 6rem;
  height: 6rem;
  background-color: #0b2329;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 auto 2rem;
}
@media (max-width: 768px) {
  .flow__step-number {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
}
.flow__step-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .flow__step-title {
    font-size: 1.6rem;
  }
}
.flow__step-description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .flow__step-description {
    font-size: 1.2rem;
  }
}

.privacy {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .privacy {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .privacy {
    padding-inline: 2rem;
  }
}
.privacy__content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 6rem 8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .privacy__content {
    padding: 5rem 6rem;
  }
}
@media (max-width: 768px) {
  .privacy__content {
    padding: 4rem 3rem;
  }
}
@media (max-width: 480px) {
  .privacy__content {
    padding: 3rem 2rem;
  }
}
.privacy__lead {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3e4048;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .privacy__lead {
    margin-bottom: 3rem;
  }
}
.privacy__item {
  margin-bottom: 4rem;
}
.privacy__item:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .privacy__item {
    margin-bottom: 3rem;
  }
}
.privacy__title {
  font-size: 2rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
  border-left: 3px solid #0b2329;
  padding-left: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .privacy__title {
    font-size: 1.8rem;
    padding-left: 1rem;
  }
}
.privacy__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3e4048;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .privacy__text {
    font-size: 1.2rem;
  }
}
.privacy__list {
  margin: 0 0 1.5rem 0;
  padding-left: 2rem;
}
.privacy__list li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3e4048;
  margin-bottom: 1rem;
}
.privacy__list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .privacy__list li {
    font-size: 1.2rem;
  }
}
.privacy__list ol {
  margin-top: 1rem;
  padding-left: 2rem;
  list-style-type: decimal;
}
.privacy__contact {
  background-color: rgba(62, 64, 72, 0.03);
  padding: 2.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
}
.privacy__contact p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #3e4048;
  margin: 0;
}
@media (max-width: 768px) {
  .privacy__contact p {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .privacy__contact {
    padding: 2rem;
  }
}
.privacy__signature {
  font-size: 1.6rem;
  font-weight: bold;
  color: #3e4048;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .privacy__signature {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}

.message {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .message {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .message {
    padding-inline: 2rem;
  }
}
.message__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .message__content {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .message__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .message__text {
    order: 1;
  }
}
.message__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .message__image--pc {
    display: none;
  }
}
.message__image--sp {
  display: none;
}
@media (max-width: 768px) {
  .message__image--sp {
    display: block;
    margin-block: 3rem;
  }
}
@media (max-width: 768px) {
  .message__image {
    order: 2;
  }
}
.message__img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.features {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .features {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .features {
    padding-inline: 2rem;
  }
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 768px) {
  .features__list {
    gap: 4rem;
  }
}
.features__item {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: end;
}
@media (max-width: 768px) {
  .features__item {
    grid-template-columns: 1fr;
  }
}
.features__item:nth-child(even) {
  grid-template-columns: 2fr 3fr;
}
.features__item:nth-child(even) .features__item-image {
  order: 2;
}
@media (max-width: 768px) {
  .features__item:nth-child(even) .features__item-image {
    order: 0;
  }
}
.features__item:nth-child(even) .features__item-body {
  order: 1;
  margin-left: 0;
  margin-right: -6rem;
}
@media (max-width: 1024px) {
  .features__item:nth-child(even) .features__item-body {
    margin-right: -4rem;
  }
}
@media (max-width: 768px) {
  .features__item:nth-child(even) .features__item-body {
    order: 0;
    margin-right: 0;
    margin-top: -4rem;
  }
}
@media (max-width: 768px) {
  .features__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.features__item-image {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.features__img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (max-width: 1024px) {
  .features__img {
    height: 32rem;
  }
}
@media (max-width: 768px) {
  .features__img {
    height: 26rem;
  }
}
@media (max-width: 480px) {
  .features__img {
    height: 22rem;
  }
}
.features__item:hover .features__img {
  transform: scale(1.03);
}
.features__item-body {
  position: relative;
  z-index: 2;
  background-color: #eeeae5;
  padding: 4rem;
  margin-left: -6rem;
}
@media (max-width: 1024px) {
  .features__item-body {
    padding: 3rem;
    margin-left: -4rem;
  }
}
@media (max-width: 768px) {
  .features__item-body {
    margin-left: 2rem;
    margin-top: -4rem;
    padding: 3rem;
  }
}
@media (max-width: 480px) {
  .features__item-body {
    margin-left: 1.5rem;
    margin-top: -3rem;
    padding: 2.5rem 2rem;
  }
}
.features__item-number {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(62, 64, 72, 0.06);
  font-family: "Inter", "Helvetica Neue", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .features__item-number {
    font-size: 4.5rem;
    margin-bottom: 1rem;
  }
}
.features__item-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .features__item-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .features__item-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.features__item-desc {
  font-size: 1.5rem;
  color: #3e4048;
  line-height: 2;
  margin: 0;
}
@media (max-width: 768px) {
  .features__item-desc {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .features__item-desc {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.treatment-flow {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .treatment-flow {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .treatment-flow {
    padding-inline: 2rem;
  }
}
.treatment-flow .section-title {
  margin-bottom: 2rem;
}
.treatment-flow__lead {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .treatment-flow__lead {
    margin-bottom: 5rem;
  }
}
.treatment-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.treatment-flow__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  padding-bottom: 20rem;
}
@media (max-width: 1024px) {
  .treatment-flow__step {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .treatment-flow__step {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 12rem;
  }
}
.treatment-flow__step:nth-child(even) .treatment-flow__step-visual {
  order: 2;
}
@media (max-width: 768px) {
  .treatment-flow__step:nth-child(even) .treatment-flow__step-visual {
    order: 0;
  }
}
.treatment-flow__step:nth-child(even) .treatment-flow__step-body {
  order: 1;
}
@media (max-width: 768px) {
  .treatment-flow__step:nth-child(even) .treatment-flow__step-body {
    order: 0;
  }
}
.treatment-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 20rem;
  border-left: 1px dashed rgba(62, 64, 72, 0.3);
}
@media (max-width: 768px) {
  .treatment-flow__step:not(:last-child)::after {
    height: 12rem;
  }
}
.treatment-flow__step:last-child {
  padding-bottom: 0;
}
.treatment-flow__step-visual {
  position: relative;
}
.treatment-flow__step-number {
  position: absolute;
  top: -2rem;
  left: -2rem;
  z-index: 2;
}
@media (max-width: 768px) {
  .treatment-flow__step-number {
    top: -1.5rem;
    left: -1rem;
  }
}
.treatment-flow__step-number span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background-color: #0b2329;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .treatment-flow__step-number span {
    width: 5rem;
    height: 5rem;
    font-size: 1.8rem;
  }
}
.treatment-flow__step-image {
  overflow: hidden;
  position: relative;
}
.treatment-flow__img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (max-width: 1024px) {
  .treatment-flow__img {
    height: 28rem;
  }
}
@media (max-width: 768px) {
  .treatment-flow__img {
    height: 24rem;
  }
}
@media (max-width: 480px) {
  .treatment-flow__img {
    height: 20rem;
  }
}
.treatment-flow__step:hover .treatment-flow__img {
  transform: scale(1.03);
}
.treatment-flow__step-body {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .treatment-flow__step-body {
    padding: 0;
  }
}
.treatment-flow__step-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3e4048;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  position: relative;
  padding-left: 3rem;
}
.treatment-flow__step-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
  background-color: #3e4048;
}
@media (max-width: 480px) {
  .treatment-flow__step-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.treatment-flow__step-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .treatment-flow__step-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .treatment-flow__step-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .treatment-flow__step-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.treatment-flow__step-description {
  font-size: 1.5rem;
  color: #3e4048;
  line-height: 2;
  margin: 0;
}
@media (max-width: 768px) {
  .treatment-flow__step-description {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .treatment-flow__step-description {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.decoration-images {
  background-color: #eeeae5;
  max-width: 1400px;
  margin: 0 auto;
}
.decoration-images__content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 1024px) {
  .decoration-images__content {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .decoration-images__content {
    gap: 2rem;
  }
}
.decoration-images__item:first-child {
  flex: 2;
  max-width: 800px;
  transform: translate(-1rem, -2rem);
}
.decoration-images__item:nth-child(2) {
  flex: 1;
  max-width: 250px;
  transform: translate(2rem, 31rem);
}
@media (max-width: 768px) {
  .decoration-images__item:nth-child(2) {
    transform: translate(-5rem, 14rem);
  }
}
.decoration-images__item:last-child {
  flex: 1;
  max-width: 300px;
  transform: translate(8rem, 38rem);
}
@media (max-width: 768px) {
  .decoration-images__item:last-child {
    transform: translate(3rem, 11rem);
  }
}
@media (max-width: 480px) {
  .decoration-images__item:last-child {
    transform: translate(0, 9rem);
  }
}
@media (max-width: 768px) {
  .decoration-images__item {
    flex: 1;
    max-width: 100%;
  }
}
.decoration-images__img {
  width: 100%;
  object-fit: cover;
}
.decoration-images__img2 {
  width: 100%;
  object-fit: cover;
}
.decoration-images__img2:first-child {
  aspect-ratio: 3/4;
}
.decoration-images__img3 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.difference {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .difference {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .difference {
    padding-inline: 2rem;
  }
}
.difference .section-title {
  text-align: left;
  margin-bottom: 2rem;
}
.difference__lead {
  font-size: 1.4rem;
  color: #3e4048;
  margin-bottom: 6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .difference__lead {
    margin-bottom: 4rem;
  }
}
.difference__table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 3rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(62, 64, 72, 0.1);
}
.difference__table-scroll-note {
  display: none;
  text-align: center;
  font-size: 1.1rem;
  color: rgba(62, 64, 72, 0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .difference__table-scroll-note {
    display: block;
  }
}
.difference__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  background-color: #ffffff;
  table-layout: fixed;
  font-family: "Inter", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", sans-serif;
}
.difference__table th, .difference__table td {
  padding: 2.2rem 2.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(62, 64, 72, 0.1);
  vertical-align: middle;
  text-align: left;
}
@media (max-width: 480px) {
  .difference__table th, .difference__table td {
    padding: 1.8rem 2rem;
    font-size: 1.3rem;
  }
}
.difference__table thead th:first-child,
.difference__table tbody th {
  width: 160px;
  font-weight: bold;
  color: #3e4048;
  background-color: #fafafa;
  border-right: 1px solid rgba(62, 64, 72, 0.1);
  text-align: center;
}
.difference__table thead th:nth-child(2),
.difference__table tbody td:nth-child(2) {
  color: rgba(62, 64, 72, 0.8);
  background-color: #ffffff;
  border-right: 1px solid rgba(62, 64, 72, 0.1);
}
.difference__table thead th:nth-child(2) span,
.difference__table tbody td:nth-child(2) span {
  display: block;
  font-size: 1.2rem;
  color: rgba(62, 64, 72, 0.5);
  margin-top: 0.5rem;
}
.difference__table-featured-head {
  background-color: #f7f9fa;
  color: #3e4048;
  font-weight: bold;
  text-align: left;
}
.difference__table-featured-head span {
  font-size: 1.1rem;
  font-weight: normal;
  opacity: 0.7;
  display: block;
  margin-top: 0.3rem;
}
.difference__table-featured-cell {
  background-color: #f7f9fa;
  color: #3e4048;
  font-weight: 500;
}
.difference__table-featured-cell span {
  display: block;
  font-size: 1.2rem;
  color: rgba(62, 64, 72, 0.6);
  margin-top: 0.5rem;
  font-weight: normal;
}
.difference__table tr:last-child th, .difference__table tr:last-child td {
  border-bottom: none;
}

.fit-check {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .fit-check {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .fit-check {
    padding-inline: 2rem;
  }
}
.fit-check__lead {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .fit-check__lead {
    margin-bottom: 4rem;
  }
}
.fit-check__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .fit-check__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fit-check__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.fit-check__card {
  background-color: #fafafa;
  padding: 4rem 3rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  .fit-check__card {
    padding: 3rem 2.5rem;
  }
}
@media (max-width: 480px) {
  .fit-check__card {
    padding: 3rem 2rem;
  }
}
.fit-check__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.fit-check__card-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(62, 64, 72, 0.08);
  font-family: "Inter", "Helvetica Neue", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .fit-check__card-number {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }
}
.fit-check__card-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .fit-check__card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.fit-check__card-desc {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin: 0;
  opacity: 0.75;
}
@media (max-width: 480px) {
  .fit-check__card-desc {
    font-size: 1.3rem;
  }
}
.fit-check__cta {
  text-align: center;
}
.fit-check__cta-text {
  font-size: 1.5rem;
  color: #3e4048;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .fit-check__cta-text {
    font-size: 1.3rem;
  }
}
.pricing {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .pricing {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .pricing {
    padding-inline: 2rem;
  }
}
.pricing .section-title {
  text-align: center;
}
.pricing .section-subtitle {
  text-align: center;
  padding-left: 0;
}
.pricing .section-subtitle::before {
  display: none;
}
.pricing__lead {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .pricing__lead {
    margin-bottom: 4rem;
  }
}
.pricing__table {
  max-width: 900px;
  margin: 0 auto 4rem;
}
.pricing__plan {
  position: relative;
  font-family: "Inter", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", sans-serif;
}
.pricing__plan--main {
  background-color: #fafafa;
  color: #3e4048;
  padding: 5rem 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .pricing__plan--main {
    padding: 4rem 3rem;
  }
}
@media (max-width: 480px) {
  .pricing__plan--main {
    padding: 3rem 2rem;
  }
}
.pricing__plan--main .pricing__plan-name {
  color: #3e4048;
}
.pricing__plan--main .pricing__plan-sub {
  color: rgba(62, 64, 72, 0.6);
}
.pricing__plan--main .pricing__plan-amount {
  color: #3e4048;
}
.pricing__plan--main .pricing__plan-tax {
  color: rgba(62, 64, 72, 0.5);
}
.pricing__plan--main .pricing__plan-time {
  color: rgba(62, 64, 72, 0.5);
}
.pricing__plan-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0b2329;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.6rem 2rem;
  letter-spacing: 0.1em;
}
@media (max-width: 480px) {
  .pricing__plan-badge {
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
  }
}
.pricing__plan-header {
  margin-bottom: 3rem;
}
@media (max-width: 480px) {
  .pricing__plan-header {
    margin-bottom: 2rem;
  }
}
.pricing__plan-name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .pricing__plan-name {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .pricing__plan-name {
    font-size: 1.8rem;
  }
}
.pricing__plan-sub {
  font-size: 1.4rem;
  color: rgba(62, 64, 72, 0.6);
  margin: 0;
}
@media (max-width: 480px) {
  .pricing__plan-sub {
    font-size: 1.2rem;
  }
}
.pricing__plan-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .pricing__plan-price {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
}
.pricing__plan-original {
  font-size: 2rem;
  color: rgba(62, 64, 72, 0.45);
  text-decoration: line-through;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}
@media (max-width: 480px) {
  .pricing__plan-original {
    font-size: 1.6rem;
  }
}
.pricing__plan-arrow {
  font-size: 1.4rem;
  color: rgba(62, 64, 72, 0.45);
}
.pricing__plan-amount {
  font-size: 4.8rem;
  font-weight: 700;
  color: #3e4048;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (max-width: 1024px) {
  .pricing__plan-amount {
    font-size: 4rem;
  }
}
@media (max-width: 480px) {
  .pricing__plan-amount {
    font-size: 3.2rem;
  }
}
.pricing__plan-amount--free {
  font-size: 3.6rem;
}
@media (max-width: 1024px) {
  .pricing__plan-amount--free {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .pricing__plan-amount--free {
    font-size: 2.6rem;
  }
}
.pricing__plan-tax {
  font-size: 1.3rem;
  color: rgba(62, 64, 72, 0.5);
}
@media (max-width: 480px) {
  .pricing__plan-tax {
    font-size: 1.2rem;
  }
}
.pricing__plan-detail {
  padding-top: 2rem;
  border-top: 1px solid rgba(62, 64, 72, 0.1);
}
@media (max-width: 480px) {
  .pricing__plan-detail {
    padding-top: 1.5rem;
  }
}
.pricing__plan-time {
  font-size: 1.3rem;
  color: rgba(62, 64, 72, 0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .pricing__plan-time {
    font-size: 1.2rem;
  }
}
.pricing__sub-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 480px) {
  .pricing__sub-plans {
    grid-template-columns: 1fr;
  }
}
.pricing__plan--sub {
  background-color: #fafafa;
  padding: 4rem 3rem;
}
@media (max-width: 1024px) {
  .pricing__plan--sub {
    padding: 3rem 2.5rem;
  }
}
@media (max-width: 480px) {
  .pricing__plan--sub {
    padding: 2.5rem 2rem;
  }
}
.pricing__notes {
  max-width: 900px;
  margin: 0 auto;
}
.pricing__note {
  font-size: 1.3rem;
  color: rgba(62, 64, 72, 0.6);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.pricing__note:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .pricing__note {
    font-size: 1.2rem;
  }
}

.symptoms-list {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .symptoms-list {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .symptoms-list {
    padding-inline: 2rem;
  }
}
.symptoms-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14rem;
}
@media (max-width: 1200px) {
  .symptoms-list__grid {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .symptoms-list__grid {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .symptoms-list__grid {
    gap: 6rem;
  }
}
.symptoms-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid #464646;
}
@media (max-width: 768px) {
  .symptoms-list__item {
    margin-top: 2rem;
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .symptoms-list__item {
    padding: 2rem 0;
  }
}
.symptoms-list__icon {
  margin-bottom: 2rem;
}
.symptoms-list__img {
  object-fit: cover;
}
.symptoms-list__title {
  font-size: 2rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  .symptoms-list__title {
    font-size: 1.8rem;
  }
}
.symptoms-list__subtitle {
  font-size: 1.4rem;
  font-weight: normal;
  color: #3e4048;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .symptoms-list__subtitle {
    font-size: 1.2rem;
  }
}
.symptoms-list__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .symptoms-list__description {
    font-size: 1.2rem;
  }
}

.case-studies {
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .case-studies {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .case-studies {
    padding-inline: 2rem;
  }
}
.case-studies__list {
  display: flex;
  flex-direction: column;
  gap: 14rem;
}
@media (max-width: 768px) {
  .case-studies__list {
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .case-studies__list {
    gap: 6rem;
  }
}
.case-studies__item {
  background-color: #eeeae5;
}
@media (max-width: 768px) {
  .case-studies__item {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .case-studies__item {
    padding: 0;
  }
}
.case-studies__header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #3e4048;
}
.case-studies__symptom {
  background-color: #3e4048;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .case-studies__symptom {
    font-size: 1.2rem;
    padding: 0.4rem 1.2rem;
  }
}
.case-studies__info {
  font-size: 1.2rem;
  color: #3e4048;
  font-weight: bold;
}
@media (max-width: 768px) {
  .case-studies__info {
    font-size: 1rem;
  }
}
.case-studies__title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .case-studies__title {
    font-size: 1.8rem;
  }
}
.case-studies__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.case-studies__before-after {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .case-studies__before-after {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .case-studies__before-after {
    flex-direction: column;
    gap: 3rem;
  }
}
.case-studies__image-block {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.case-studies__img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.88;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .case-studies__img-wrapper {
    aspect-ratio: 1/0.82;
  }
}
.case-studies__img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.case-studies__labels {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .case-studies__labels {
    padding: 0 1rem;
  }
}
.case-studies__label-text {
  font-family: "Noto Serif", "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #3e4048;
  letter-spacing: 0.15em;
  margin: 0;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.4rem;
}
.case-studies__label-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background-color: rgba(62, 64, 72, 0.5);
}
@media (max-width: 768px) {
  .case-studies__label-text {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
}

.treatment-features {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .treatment-features {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .treatment-features {
    padding-inline: 2rem;
  }
}
.treatment-features__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 768px) {
  .treatment-features__list {
    gap: 6rem;
  }
}
.treatment-features__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .treatment-features__item {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .treatment-features__item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .treatment-features__content {
    order: 2;
  }
}
.treatment-features__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .treatment-features__title {
    font-size: 2rem;
  }
}
.treatment-features__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .treatment-features__image {
    order: 1;
  }
}
.treatment-features__img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .treatment-features__img {
    height: 200px;
  }
}

.treatment-content {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .treatment-content {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .treatment-content {
    padding-inline: 2rem;
  }
}
.treatment-content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 1200px) {
  .treatment-content__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .treatment-content__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .treatment-content__list {
    gap: 6rem;
  }
}
.treatment-content__item {
  text-align: center;
  background-color: #eeeae5;
  padding: 3rem 2rem;
}
@media (max-width: 480px) {
  .treatment-content__item {
    padding: 0;
  }
}
.treatment-content__icon {
  margin-bottom: 2rem;
}
.treatment-content__img {
  width: 100%;
  object-fit: cover;
}
.treatment-content__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .treatment-content__title {
    font-size: 1.6rem;
  }
}
.treatment-content__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .treatment-content__description {
    font-size: 1.2rem;
  }
}

.treatment-pricing {
  background-color: #eeeae5;
}
.treatment-pricing__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .treatment-pricing__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.treatment-pricing__item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.treatment-pricing__item:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .treatment-pricing__item {
    padding: 2rem;
  }
}
.treatment-pricing__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #0b2329;
}
.treatment-pricing__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin: 0;
}
@media (max-width: 768px) {
  .treatment-pricing__title {
    font-size: 1.6rem;
  }
}
.treatment-pricing__price {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0b2329;
}
@media (max-width: 768px) {
  .treatment-pricing__price {
    font-size: 2rem;
  }
}
.treatment-pricing__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .treatment-pricing__description {
    font-size: 1.2rem;
  }
}

.about-points {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .about-points {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .about-points {
    padding-inline: 2rem;
  }
}
.about-points__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 768px) {
  .about-points__list {
    gap: 4rem;
  }
}
@media (max-width: 480px) {
  .about-points__list {
    gap: 6rem;
  }
}
.about-points__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-points__item {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .about-points__item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about-points__image {
  position: relative;
}
@media (max-width: 768px) {
  .about-points__image {
    order: 1;
  }
}
.about-points__img {
  width: 100%;
  object-fit: cover;
}
.about-points__image-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .about-points__image-label {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 768px) {
  .about-points__content {
    order: 2;
  }
}
.about-points__accent {
  font-size: 1.2rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .about-points__accent {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about-points__accent {
    margin-bottom: 0;
  }
}
.about-points__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .about-points__title {
    font-size: 2rem;
  }
}
.about-points__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin: 0;
}

.about-introduction {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .about-introduction {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .about-introduction {
    padding-inline: 2rem;
  }
}
.about-introduction .section-subtitle {
  color: #3e4048;
}
.about-introduction .section-subtitle::before {
  background-color: #3e4048;
}
.about-introduction .section-title {
  color: #3e4048;
  margin-bottom: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .about-introduction .section-title {
    margin-bottom: 3rem;
  }
}
.about-introduction__lead-text {
  font-size: 1.5rem;
  line-height: 2;
  color: rgba(62, 64, 72, 0.85);
  margin: 0 0 6rem 0;
  max-width: 800px;
  text-align: left;
}
@media (max-width: 768px) {
  .about-introduction__lead-text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    text-align: left;
  }
}
.about-introduction__slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 2rem;
}
.about-introduction__swiper {
  width: 100%;
  overflow: visible;
}
.about-introduction__slide {
  height: auto;
}
.about-introduction__photo {
  position: relative;
  overflow: hidden;
  background-color: #f3f3f3;
  border: 1px solid rgba(62, 64, 72, 0.08);
  aspect-ratio: 3/2;
  cursor: grab;
}
.about-introduction__photo:active {
  cursor: grabbing;
}
.about-introduction__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(102%);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
}
.about-introduction__photo:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(100%);
}
.about-introduction__controls {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .about-introduction__controls {
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
  }
}
.about-introduction__arrows {
  display: flex;
  gap: 1.2rem;
}
.about-introduction__arrow {
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid rgba(11, 35, 41, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  color: #0b2329;
  transition: all 0.3s ease;
  padding: 0;
}
.about-introduction__arrow-icon {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  display: block;
}
.about-introduction__arrow--prev .about-introduction__arrow-icon {
  transform: rotate(-135deg);
  margin-left: 2px;
}
.about-introduction__arrow--next .about-introduction__arrow-icon {
  transform: rotate(45deg);
  margin-right: 2px;
}
.about-introduction__arrow:hover {
  background-color: #0b2329;
  border-color: #0b2329;
  color: #ffffff;
}
.about-introduction__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.about-introduction__pagination {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Serif", serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.about-introduction__pagination-current {
  font-weight: 600;
  color: #0b2329;
}
.about-introduction__pagination-line {
  width: 4.5rem;
  height: 1px;
  background-color: rgba(11, 35, 41, 0.25);
  margin: 0 1.5rem;
  display: inline-block;
}
.about-introduction__pagination-total {
  color: rgba(11, 35, 41, 0.45);
}

.about-director {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .about-director {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .about-director {
    padding-inline: 2rem;
  }
}
.about-director__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-director__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .about-director__content {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .about-director__video {
    order: 1;
  }
}
.about-director__video-wrapper {
  position: relative;
  width: 100%;
}
.about-director__video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.about-director__video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-director__video-img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-director__video-img {
    height: 200px;
  }
}
.about-director__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.about-director__play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
  .about-director__profile {
    order: 2;
  }
}
.about-director__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(62, 64, 72, 0.7);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .about-director__title {
    font-size: 1.2rem;
  }
}
.about-director__name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .about-director__name {
    font-size: 2rem;
  }
}
.about-director__name-en {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: normal;
  color: #3e4048;
  margin-left: 1.5rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .about-director__name-en {
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}
.about-director__experience-section {
  display: flex;
  gap: 4rem;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .about-director__experience-section {
    flex-direction: column;
    gap: 3rem;
  }
}
.about-director__experience {
  flex: 1;
  margin-bottom: 0;
}
.about-director__experience-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .about-director__experience-title {
    font-size: 1.6rem;
  }
}
.about-director__experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-director__experience-list li {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
.about-director__experience-list li::before {
  content: "•";
  color: #0b2329;
  font-weight: bold;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .about-director__experience-list li {
    font-size: 1.2rem;
  }
}
.about-director__message {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .about-director__message {
    padding: 2rem;
  }
}
.about-director__message-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .about-director__message-title {
    font-size: 1.6rem;
  }
}
.about-director__message-text {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .about-director__message-text {
    font-size: 1.2rem;
  }
}

.about-access {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .about-access {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .about-access {
    padding-inline: 2rem;
  }
}
.about-access__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .about-access__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .about-access__content {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .about-access__map {
    order: 1;
  }
}
@media (max-width: 768px) {
  .about-access__info {
    order: 2;
  }
}
.about-access__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.about-access__item {
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .about-access__item {
    padding: 1.5rem;
  }
}
.about-access__item-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-access__item-title {
    font-size: 1.2rem;
  }
}
.about-access__item-text {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .about-access__item-text {
    font-size: 1.2rem;
  }
}

.testimonial-videos {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .testimonial-videos {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .testimonial-videos {
    padding-inline: 2rem;
  }
}
.testimonial-videos__list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media (max-width: 768px) {
  .testimonial-videos__list {
    gap: 4rem;
  }
}
@media (max-width: 480px) {
  .testimonial-videos__list {
    gap: 6rem;
  }
}
.testimonial-videos__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .testimonial-videos__item {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .testimonial-videos__item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .testimonial-videos__video {
    order: 1;
  }
}
.testimonial-videos__video-wrapper {
  position: relative;
  width: 100%;
}
.testimonial-videos__video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.testimonial-videos__video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.testimonial-videos__video-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .testimonial-videos__video-img {
    height: 200px;
  }
}
.testimonial-videos__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.testimonial-videos__play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
  .testimonial-videos__content {
    order: 2;
  }
}
.testimonial-videos__customer-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .testimonial-videos__customer-info {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .testimonial-videos__customer-info {
    margin-bottom: 0;
  }
}
.testimonial-videos__symptom {
  color: #3e4048;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  padding-left: 2rem;
}
.testimonial-videos__symptom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1px;
  background-color: #3e4048;
}
@media (max-width: 768px) {
  .testimonial-videos__symptom {
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
  }
}
@media (max-width: 480px) {
  .testimonial-videos__symptom {
    padding: 0.4rem 2rem;
  }
}
.testimonial-videos__title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .testimonial-videos__title {
    font-size: 1.8rem;
  }
}
.testimonial-videos__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.testimonial-videos__qa {
  grid-column: 1/-1;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .testimonial-videos__qa {
    margin-top: 2rem;
    order: 3;
  }
}
.testimonial-videos__qa-item {
  margin-bottom: 3rem;
  border-bottom: 1px dashed rgba(11, 35, 41, 0.15);
  padding-bottom: 3rem;
}
.testimonial-videos__qa-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.testimonial-videos__question {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0b2329;
  margin: 0 0 1.2rem 0;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .testimonial-videos__question {
    font-size: 1.3rem;
  }
}
.testimonial-videos__answer {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3e4048;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  padding-left: 2.2rem;
  position: relative;
}
@media (max-width: 768px) {
  .testimonial-videos__answer {
    font-size: 1.2rem;
    padding-left: 1.8rem;
  }
}
.testimonial-videos__answer::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: rgba(62, 64, 72, 0.6);
}

.news-list {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .news-list {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .news-list {
    padding-inline: 2rem;
  }
}
.news-list {
  padding-top: 0;
}
.news-list__content {
  max-width: 1000px;
  margin: 0 auto;
}
.news-list__items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.news-list__item {
  padding: 3rem;
  padding-bottom: 0;
  border-top: 1px solid #464646;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .news-list__item {
    padding: 2rem;
  }
}
.news-list__link-block {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.news-list__link-block:hover {
  opacity: 0.9;
}
.news-list__header {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}
.news-list__date {
  font-size: 1.4rem;
  color: #3e4048;
  font-weight: 500;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .news-list__date {
    font-size: 1.2rem;
    margin-right: 1rem;
  }
}
.news-list__category {
  display: inline-block;
  font-size: 1.2rem;
  color: #3e4048;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news-list__category {
    font-size: 1rem;
  }
}
.news-list__content-text {
  flex: 1;
}
.news-list__title {
  font-size: 2rem;
  color: #3e4048;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .news-list__title {
    font-size: 1.6rem;
  }
}
.news-list__link {
  color: #3e4048;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-list__link:hover {
  color: #0b2329;
}
.news-list__pagination {
  margin-top: 6rem;
  text-align: center;
}
.news-list__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list__pagination .page-numbers li {
  margin: 0;
}
.news-list__pagination .page-numbers a, .news-list__pagination .page-numbers span {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  color: #3e4048;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-list__pagination .page-numbers a:hover, .news-list__pagination .page-numbers span:hover {
  background-color: #0b2329;
  color: #ffffff;
  border-color: #0b2329;
}
.news-list__pagination .page-numbers .current {
  background-color: #0b2329;
  color: #ffffff;
  border-color: #0b2329;
}
.news-list__no-posts {
  text-align: center;
  padding: 6rem 0;
}
.news-list__no-posts p {
  font-size: 1.4rem;
  color: #3e4048;
}

.news-single {
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .news-single {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .news-single {
    padding-inline: 2rem;
  }
}
.news-single {
  padding-top: 0;
}
.news-single__article {
  max-width: 840px;
  margin: 0 auto;
}
.news-single__header {
  margin-bottom: 6rem;
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.news-single__date {
  font-size: 1.4rem;
  color: #3e4048;
}
.news-single__title {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0.8rem 0 1.2rem;
  color: #3e4048;
  position: relative;
}
.news-single__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #464646;
  margin-top: 1.2rem;
}
.news-single__category {
  display: inline-block;
  font-size: 1.2rem;
  color: #3e4048;
  padding: 0.4rem 1rem;
}
.news-single__content {
  font-size: 1.4rem;
  line-height: 1.9;
}
.news-single__back {
  margin-top: 8rem;
  text-align: center;
}
.news-single__btn {
  padding: 2rem 0 2rem 6rem;
}
.news-single__btn::before {
  left: 10px;
  right: auto;
  content: "←";
}
.news-single__btn:hover::before {
  transform: translateX(-0.3rem);
}

.reservation-methods {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .reservation-methods {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .reservation-methods {
    padding-inline: 2rem;
  }
}
.reservation-methods__content {
  max-width: 1000px;
  margin: 0 auto;
}
.reservation-methods__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .reservation-methods__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.reservation-methods__item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reservation-methods__item:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .reservation-methods__item {
    padding: 2rem;
  }
}
.reservation-methods__icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}
.reservation-methods__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .reservation-methods__title {
    font-size: 2rem;
  }
}
.reservation-methods__description {
  font-size: 1.6rem;
  color: #3e4048;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .reservation-methods__description {
    font-size: 1.4rem;
  }
}
.reservation-methods__button {
  margin-top: 2rem;
}
.reservation-flow {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .reservation-flow {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .reservation-flow {
    padding-inline: 2rem;
  }
}
.reservation-flow__content {
  max-width: 1000px;
  margin: 0 auto;
}
.reservation-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .reservation-flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .reservation-flow__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.reservation-flow__step {
  text-align: center;
  position: relative;
}
.reservation-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  width: 3rem;
  height: 1px;
  background-color: #464646;
}
@media (max-width: 1024px) {
  .reservation-flow__step:not(:last-child)::after {
    display: none;
  }
}
.reservation-flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #0b2329;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .reservation-flow__number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.8rem;
  }
}
.reservation-flow__title {
  font-size: 2rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .reservation-flow__title {
    font-size: 1.8rem;
  }
}
.reservation-flow__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .reservation-flow__description {
    font-size: 1.2rem;
  }
}

.reservation-notes {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .reservation-notes {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .reservation-notes {
    padding-inline: 2rem;
  }
}
.reservation-notes__content {
  max-width: 1000px;
  margin: 0 auto;
}
.reservation-notes__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .reservation-notes__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .reservation-notes__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.reservation-notes__item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .reservation-notes__item {
    padding: 2rem;
  }
}
.reservation-notes__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .reservation-notes__title {
    font-size: 1.6rem;
  }
}
.reservation-notes__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .reservation-notes__description {
    font-size: 1.2rem;
  }
}

.reservation-faq {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .reservation-faq {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .reservation-faq {
    padding-inline: 2rem;
  }
}
.reservation-faq__content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  background-color: #eeeae5;
}
.faq-list__content {
  max-width: 1000px;
  margin: 0 auto;
}

.faq {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .faq {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-inline: 2rem;
  }
}
.faq__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .faq__content {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .faq__content {
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .faq__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.faq .section-title {
  text-align: left;
}
.faq__cta {
  text-align: left;
  margin-top: 4rem;
}
@media (max-width: 480px) {
  .faq__cta {
    display: none;
  }
}
.faq__cta-sp {
  display: none;
}
@media (max-width: 480px) {
  .faq__cta-sp {
    display: block;
    text-align: right;
  }
}
.faq__btn-sp {
  padding-right: 4rem;
}
.faq__btn-sp::after {
  display: none;
}
@media (max-width: 768px) {
  .faq__list {
    order: 2;
  }
}
.faq__list {
  margin-bottom: 4rem;
}
.faq__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  border-bottom: 1px solid #464646;
  transition: background-color 0.3s ease;
}
.faq__item:first-child {
  border-top: 1px solid #464646;
}
.faq__item:hover {
  background-color: rgb(244.0488372093, 241.4720930233, 238.2511627907);
}
@media (max-width: 768px) {
  .faq__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 2rem;
  }
}
@media (max-width: 480px) {
  .faq__item {
    padding: 3rem 2rem;
  }
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.faq__question h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin: 0;
}
@media (max-width: 768px) {
  .faq__question h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .faq__question h3 {
    font-size: 1.4rem;
  }
}
.faq__icon {
  font-size: 2.4rem;
  color: #3e4048;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 2rem;
}
.faq__icon.is-open {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq__icon {
    font-size: 2rem;
    margin-left: 0;
  }
}
.faq__answer {
  display: none;
  margin-top: 4rem;
}
.faq__answer p {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
}
.faq__answer a {
  text-decoration: underline;
  color: #0b2329;
  transition: opacity 0.3s ease;
}
.faq__answer a:hover {
  opacity: 0.7;
}
.faq__item.active .faq__icon {
  transform: rotate(45deg);
}
.faq.reservation-faq {
  margin-top: 4rem;
}
.faq.reservation-faq__item {
  border-bottom: 1px solid #464646;
}
.faq.reservation-faq__item:last-child {
  border-bottom: none;
}
.faq.reservation-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq.reservation-faq__question:hover {
  color: #0b2329;
}
.faq.reservation-faq__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin: 0;
}
@media (max-width: 768px) {
  .faq.reservation-faq__title {
    font-size: 1.6rem;
  }
}
.faq.reservation-faq__icon {
  font-size: 2rem;
  color: #0b2329;
  transition: transform 0.3s ease;
}
.faq.reservation-faq__answer {
  display: none;
  padding-bottom: 2rem;
}
.faq.reservation-faq__text {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .faq.reservation-faq__text {
    font-size: 1.2rem;
  }
}
.faq.reservation-faq.active .faq__icon {
  transform: rotate(45deg);
}

.faq-contact {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .faq-contact {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .faq-contact {
    padding-inline: 2rem;
  }
}
.faq-contact__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq-contact__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.faq-contact__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .faq-contact__buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.faq-contact__btn {
  min-width: 200px;
}
@media (max-width: 768px) {
  .faq-contact__btn {
    min-width: auto;
    width: 100%;
  }
}

.faq-question__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e4048;
  margin: 0;
  flex: 1;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .faq-question__title {
    font-size: 1.6rem;
    padding-right: 1rem;
  }
}

.faq-category {
  margin: 14rem 0 2rem 0;
  padding: 2rem 0;
  position: relative;
}
.faq-category:first-child {
  margin-top: 0;
}
.faq-category__title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #3e4048;
  margin: 0;
  position: relative;
  padding-left: 4rem;
}
.faq-category__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background-color: #3e4048;
}
@media (max-width: 768px) {
  .faq-category__title {
    font-size: 1.8rem;
    padding-left: 2rem;
  }
  .faq-category__title::before {
    width: 10px;
    height: 1px;
  }
}

.pricing-basic {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .pricing-basic {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .pricing-basic {
    padding-inline: 2rem;
  }
}
.pricing-basic__content {
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-basic__note {
  margin-top: 3rem;
  background-color: #eeeae5;
}
.pricing-basic__text {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin: 0;
  text-align: right;
}
@media (max-width: 768px) {
  .pricing-basic__text {
    font-size: 1.2rem;
  }
}

.pricing-table {
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 4rem;
}
.pricing-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background-color: #0b2329;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .pricing-table__header {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.pricing-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid #464646;
}
.pricing-table__row:last-child {
  border-bottom: none;
}
@media (max-width: 480px) {
  .pricing-table__row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: 2rem;
    padding-block: 1rem;
  }
}
.pricing-table__item {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .pricing-table__item {
    padding: 1.5rem;
  }
  .pricing-table__item:last-child {
    border-bottom: none;
  }
}
.pricing-table__label {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .pricing-table__label {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .pricing-table__label {
    margin-bottom: 1rem;
  }
}
.pricing-table__description {
  font-size: 1.4rem;
  color: #3e4048;
  opacity: 0.8;
}
.pricing-table__price {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
}
@media (max-width: 768px) {
  .pricing-table__price {
    font-size: 2rem;
  }
}
.pricing-table__price-box {
  display: flex;
}
@media (max-width: 480px) {
  .pricing-table__price-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.pricing-table__time {
  font-size: 1.4rem;
  color: #3e4048;
  font-weight: 500;
}

.pricing-payment {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .pricing-payment {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .pricing-payment {
    padding-inline: 2rem;
  }
}
.pricing-payment__content {
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-payment__methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .pricing-payment__methods {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing-payment__methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.pricing-payment__method {
  text-align: center;
  padding: 4rem;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.pricing-payment__method:hover {
  transform: translateY(-0.2rem);
}
@media (max-width: 768px) {
  .pricing-payment__method {
    padding: 2rem;
  }
}
.pricing-payment__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.pricing-payment__title {
  font-size: 2rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .pricing-payment__title {
    font-size: 1.6rem;
  }
}
.pricing-payment__description {
  font-size: 1.4rem;
  color: #3e4048;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .pricing-payment__description {
    font-size: 1.2rem;
  }
}

.pricing-notes {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .pricing-notes {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .pricing-notes {
    padding-inline: 2rem;
  }
}
.pricing-notes__content {
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-notes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .pricing-notes__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .pricing-notes__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.pricing-notes__item {
  background-color: #ffffff;
  padding: 4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .pricing-notes__item {
    padding: 2rem;
  }
}
.pricing-notes__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e4048;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .pricing-notes__title {
    font-size: 1.6rem;
  }
}
.pricing-notes__ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-notes__ul li {
  font-size: 1.4rem;
  color: #3e4048;
  padding: 1rem 0;
  position: relative;
  padding-left: 2rem;
}
.pricing-notes__ul li:last-child {
  border-bottom: none;
}
.pricing-notes__ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #3e4048;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}
@media (max-width: 768px) {
  .pricing-notes__ul li {
    font-size: 1.2rem;
  }
}

.treatment-video {
  background-color: #eeeae5;
  padding-inline: 14rem;
}
@media (max-width: 1024px) {
  .treatment-video {
    padding-inline: 8rem;
  }
}
@media (max-width: 768px) {
  .treatment-video {
    padding-inline: 2rem;
  }
}
.treatment-video__lead {
  font-size: 1.6rem;
  color: #3e4048;
  line-height: 1.8;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .treatment-video__lead {
    margin-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .treatment-video__lead {
    font-size: 1.4rem;
  }
}
.treatment-video__player {
  max-width: 900px;
  margin: 0 auto;
}
.treatment-video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.treatment-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: #eeeae5;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  color: #0b2329;
}
.drawer-input:checked ~ .drawer-content {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 4rem 2rem 4rem;
}
@media (max-width: 768px) {
  .drawer-header {
    padding: 3rem 2rem 1.5rem 2rem;
  }
}

.drawer-menu-badge {
  font-size: 1.2rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  color: #0b2329;
  border: 1px solid rgba(11, 35, 41, 0.6);
  border-radius: 20px;
  padding: 0.4rem 1.8rem;
  letter-spacing: 0.05em;
  display: inline-block;
  line-height: 1.2;
}

.drawer-input:checked ~ .drawer-open {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background-color: #0b2329;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .drawer-input:checked ~ .drawer-open {
    width: 60px;
    height: 60px;
  }
}
.drawer-input:checked ~ .drawer-open span {
  background-color: #ffffff;
  width: 26px;
  height: 1px;
  transition: all 0.3s ease;
}
.drawer-input:checked ~ .drawer-open span.top {
  transform: translateY(1px) rotate(45deg);
  margin-bottom: 0;
}
.drawer-input:checked ~ .drawer-open span.bottom {
  transform: translateY(0) rotate(-45deg);
}

.drawer-nav {
  flex: 1;
  padding: 2rem 4rem 6rem 4rem;
}
@media (max-width: 768px) {
  .drawer-nav {
    padding: 1rem 2rem 4rem 2rem;
  }
}

.drawer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-nav-item {
  position: relative;
  border-bottom: 1px solid rgba(11, 35, 41, 0.15);
  padding: 2.5rem 0;
}
.drawer-nav-item:first-child {
  border-top: 1px solid rgba(11, 35, 41, 0.15);
}
@media (max-width: 768px) {
  .drawer-nav-item {
    padding: 2rem 0;
  }
}

.drawer-nav-item--reserve {
  border-bottom: none;
  padding: 0;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .drawer-nav-item--reserve {
    margin-top: 2.5rem;
  }
}

.drawer-nav-link {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  color: #0b2329;
  position: relative;
}
.drawer-nav-link::before {
  content: "°";
  font-size: 1.6rem;
  color: #0b2329;
  position: absolute;
  top: 1.8rem;
  left: -0.2rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .drawer-nav-link::before {
    top: 1.4rem;
  }
}

.drawer-nav-link--reserve {
  background-color: #0b2329;
  color: #ffffff;
  padding: 2.2rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.drawer-nav-link--reserve::before {
  display: none;
}
.drawer-nav-link--reserve .drawer-nav-main {
  padding-left: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.drawer-nav-link--reserve .drawer-nav-en {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 600;
}
.drawer-nav-link--reserve .drawer-nav-ja {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
}
.drawer-nav-link--reserve:hover {
  background-color: rgb(17.4730769231, 55.5961538462, 65.1269230769);
  transform: translateY(-2px);
  opacity: 1;
}

.drawer-nav-main {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding-left: 1.5rem;
}

.drawer-nav-en {
  font-size: 2.6rem;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1;
}
@media (max-width: 768px) {
  .drawer-nav-en {
    font-size: 2.2rem;
  }
}

.drawer-nav-ja {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(11, 35, 41, 0.7);
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
}

.drawer-nav-sub-list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-nav-sub-item {
  margin: 0;
}

.drawer-nav-sub-link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  text-decoration: none;
  color: #0b2329;
  transition: opacity 0.3s ease;
}
.drawer-nav-sub-link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .drawer-nav-sub-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

.drawer-nav-sub-en {
  font-size: 1.6rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .drawer-nav-sub-en {
    font-size: 1.4rem;
  }
}

.drawer-nav-sub-ja {
  font-size: 1.1rem;
  color: rgba(11, 35, 41, 0.7);
  font-family: "Shippori Mincho", serif;
}

.drawer-footer {
  padding: 4rem;
  border-top: 1px solid rgba(11, 35, 41, 0.1);
}
@media (max-width: 768px) {
  .drawer-footer {
    padding: 3rem 2rem;
  }
}

.drawer-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .drawer-footer-links {
    margin-bottom: 3rem;
  }
}
.drawer-footer-links a {
  color: #0b2329;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  transition: opacity 0.3s ease;
}
.drawer-footer-links a:hover {
  opacity: 0.7;
}

.drawer-footer-divider {
  font-size: 1.1rem;
  color: rgba(11, 35, 41, 0.3);
  user-select: none;
}

.drawer-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .drawer-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.drawer-social {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}
.drawer-social .drawer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2329;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.drawer-social .drawer-social-link svg {
  width: 2.2rem;
  height: 2.2rem;
  transition: none;
}
.drawer-social .drawer-social-link:hover {
  opacity: 0.7;
  color: #0b2329;
}
.drawer-social .drawer-social-link:hover svg {
  transform: none;
}

.drawer-copyright small {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(11, 35, 41, 0.5);
  font-family: "Noto Serif", serif;
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.reservation-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.reservation-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.reservation-modal__content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 900px;
  max-height: 90vh;
  background-color: #eeeae5;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  padding: 6rem;
  transform: translateY(30px);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.reservation-modal__content::-webkit-scrollbar {
  width: 6px;
}
.reservation-modal__content::-webkit-scrollbar-track {
  background: transparent;
}
.reservation-modal__content::-webkit-scrollbar-thumb {
  background: rgba(11, 35, 41, 0.2);
  border-radius: 3px;
}
.reservation-modal.is-active .reservation-modal__content {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .reservation-modal__content {
    padding: 5rem 4rem;
  }
}
@media (max-width: 768px) {
  .reservation-modal__content {
    padding: 4rem 2.5rem;
    max-height: 85vh;
  }
}
.reservation-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid rgba(11, 35, 41, 0.15);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  padding: 0;
}
.reservation-modal__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 1.5px;
  background-color: #0b2329;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.reservation-modal__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.reservation-modal__close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.reservation-modal__close:hover {
  background-color: #0b2329;
  border-color: #0b2329;
}
.reservation-modal__close:hover .reservation-modal__close-line {
  background-color: #ffffff;
}
.reservation-modal__header {
  text-align: center;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(11, 35, 41, 0.08);
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .reservation-modal__header {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }
}
.reservation-modal__subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  color: #0b2329;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.reservation-modal__title {
  font-size: 2.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  color: #0b2329;
  margin: 0 0 1.5rem 0;
}
@media (max-width: 768px) {
  .reservation-modal__title {
    font-size: 2.2rem;
  }
}
.reservation-modal__desc {
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(62, 64, 72, 0.85);
  max-width: 62rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .reservation-modal__desc {
    font-size: 1.3rem;
  }
}
.reservation-modal__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .reservation-modal__grid {
    gap: 3.5rem;
  }
}
@media (max-width: 768px) {
  .reservation-modal__grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
}
.reservation-modal__section {
  position: relative;
}
.reservation-modal__section--line {
  border-right: 1px solid rgba(11, 35, 41, 0.1);
  padding-right: 5rem;
}
@media (max-width: 1024px) {
  .reservation-modal__section--line {
    padding-right: 3.5rem;
  }
}
@media (max-width: 768px) {
  .reservation-modal__section--line {
    border-right: none;
    border-bottom: 1px solid rgba(11, 35, 41, 0.1);
    padding-right: 0;
    padding-bottom: 4.5rem;
  }
}
.reservation-modal__section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #0b2329;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: block;
  position: relative;
  padding-left: 1.6rem;
  font-family: "Noto Serif", "Inter", sans-serif;
}
.reservation-modal__section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}
.reservation-modal__section-title {
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  color: #0b2329;
  margin: 0 0 1.5rem 0;
}
@media (max-width: 768px) {
  .reservation-modal__section-title {
    font-size: 1.6rem;
  }
}
.reservation-modal__section-desc {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #3e4048;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .reservation-modal__section-desc {
    margin-bottom: 2rem;
  }
}
.reservation-modal__line-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
  width: 100%;
}
.reservation-modal__line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background-color: #06c755;
  color: #ffffff;
  width: 100%;
  padding: 1.6rem 2.4rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.25);
}
.reservation-modal__line-btn svg {
  width: 2.4rem;
  height: 2.4rem;
}
.reservation-modal__line-btn svg path {
  stroke: none !important;
  stroke-width: 0 !important;
}
.reservation-modal__line-btn:hover {
  background-color: #05b04b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
}
.reservation-modal__qr-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.8rem;
  border-radius: 4px;
  width: 100%;
}
@media (max-width: 768px) {
  .reservation-modal__qr-wrap {
    display: none;
  }
}
.reservation-modal__qr-img {
  width: 9rem;
  height: 9rem;
  background-color: #ffffff;
  border: 1px solid rgba(11, 35, 41, 0.08);
  padding: 6px;
  border-radius: 2px;
  flex-shrink: 0;
}
.reservation-modal__qr-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(62, 64, 72, 0.9);
  margin: 0;
  text-align: left;
}
.reservation-modal__steps {
  margin-top: 3.5rem;
}
.reservation-modal__steps-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0b2329;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reservation-modal__steps-list {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 480px) {
  .reservation-modal__steps-list {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.reservation-modal__step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1rem;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .reservation-modal__step-item {
    flex-direction: row;
    text-align: left;
    padding: 1.2rem 1.5rem;
    gap: 1.5rem;
  }
}
.reservation-modal__step-num {
  width: 2.2rem;
  height: 2.2rem;
  background-color: #0b2329;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-family: "Noto Serif", serif;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .reservation-modal__step-num {
    margin-bottom: 0;
  }
}
.reservation-modal__step-text {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: #3e4048;
  margin: 0;
}
.reservation-modal__tel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border: 1.5px solid #0b2329;
  color: #0b2329;
  width: 100%;
  padding: 1.5rem 2.4rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(11, 35, 41, 0.05);
}
.reservation-modal__tel-btn-icon {
  font-size: 1.6rem;
}
.reservation-modal__tel-btn-number {
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
}
.reservation-modal__tel-btn:hover {
  background-color: #0b2329;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(11, 35, 41, 0.2);
}
.reservation-modal__tel-info {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-inline: 0.5rem;
}
.reservation-modal__tel-info p {
  font-size: 1.25rem;
  color: rgba(62, 64, 72, 0.8);
  margin: 0;
}
.reservation-modal__notice {
  margin-top: 4rem;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-left: 2px solid #0b2329;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 768px) {
  .reservation-modal__notice {
    margin-top: 3rem;
    padding: 1.5rem;
  }
}
.reservation-modal__notice-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0b2329;
  margin: 0 0 0.8rem 0;
}
.reservation-modal__notice-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(62, 64, 72, 0.9);
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
