/* ==========================================================================
   Reset & Base Styles (Mobile First)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #FAF8F5;
  color: #112240;
  line-height: 1.7;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

li {
  list-style: none;
}

/* ==========================================================================
   Layout & Container Utility
   ========================================================================== */
.l-container {
  width: 100%;
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.l-section--bg-sand {
  background-color: #F4F1EC;
}

.l-section--bg-navy {
  background-color: #112240;
  color: #ffffff;
}

/* ==========================================================================
   Common Typography & Components
   ========================================================================== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    margin-bottom: 4.5rem;
  }
}

.section-title__en {
  display: block;
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #C29B78;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 2.25rem;
  }
}

.section-title__ja {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #5C6F84;
}
.l-section--bg-navy .section-title__ja {
  color: rgba(255, 255, 255, 0.7);
}

.section-title__ja--light {
  color: rgba(255, 255, 255, 0.7);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C29B78 0%, #A37C5A 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.125rem 2.5rem;
  border-radius: 3.125rem;
  box-shadow: 0 0.25rem 1.25rem rgba(163, 124, 90, 0.3);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #D4B291 0%, #C29B78 100%);
  opacity: 0;
  z-index: -1;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-cta:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.875rem rgba(163, 124, 90, 0.45);
}
.btn-cta:hover::before {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .btn-cta {
    padding: 1rem 2rem;
    font-size: 0.8125rem;
  }
}

.btn-cta--outline {
  background: transparent;
  border: 1px solid #C29B78;
  color: #C29B78;
  box-shadow: none;
}
.btn-cta--outline:hover {
  background-color: #C29B78;
  color: #ffffff;
  box-shadow: 0 0.375rem 1.25rem rgba(163, 124, 90, 0.2);
  transform: translateY(-0.125rem);
}

.btn-cta__icon {
  margin-left: 0.5rem;
  font-size: 1.2em;
}

.deco-wave {
  display: block;
  width: 7.5rem;
  height: 0.75rem;
  margin: 1.5rem auto 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M0 6C15 6 15 1 30 1C45 1 45 11 60 11C75 11 75 1 90 1C105 1 105 6 120 6' stroke='%23C29B78' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-bottom: 1px solid rgba(229, 224, 216, 0.5);
}
.header.header--scrolled {
  height: 4.375rem;
  box-shadow: 0 0.125rem 1.25rem rgba(17, 34, 64, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 87.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.header__logo {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #112240;
  display: flex;
  flex-direction: column;
}
.header__logo small {
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #C29B78;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav-item {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: #112240;
  padding: 0.5rem 0;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: #C29B78;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header__nav-item:hover {
  color: #C29B78;
}
.header__nav-item:hover::after {
  width: 100%;
}
.header__nav-item.header__nav-item--active {
  color: #C29B78;
}
.header__nav-item.header__nav-item--active::after {
  width: 100%;
}

.header__btn-reserve {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .header__btn-reserve {
    display: none;
  }
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1rem;
  z-index: 102;
}
@media screen and (max-width: 1023px) {
  .header__hamburger {
    display: flex;
  }
}

.header__hamburger-bar {
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: #112240;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header--open .header__hamburger-bar {
  background-color: #112240;
}
.header--open .header__hamburger-bar:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}
.header--open .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header--open .header__hamburger-bar:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.header__drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 20rem;
  height: 100vh;
  background-color: #FAF8F5;
  box-shadow: -0.3125rem 0 1.875rem rgba(17, 34, 64, 0.15);
  z-index: 101;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 6.25rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header--open .header__drawer {
  right: 0;
}

.header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header__drawer-item {
  font-size: 1rem;
  font-weight: 700;
  color: #112240;
  border-bottom: 1px solid rgba(229, 224, 216, 0.5);
  padding-bottom: 0.75rem;
}
.header__drawer-item:hover {
  color: #C29B78;
}

.header__drawer-btn {
  width: 100%;
  margin-top: 2.5rem;
}

.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 34, 64, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header--open .header__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.footer {
  background-color: #112240;
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 6.25rem;
    padding-bottom: 3.75rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__brand {
  max-width: 25rem;
}

.footer__logo {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}
.footer__logo small {
  display: block;
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.625rem;
  color: #C29B78;
  text-transform: uppercase;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    gap: 4rem;
  }
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #C29B78;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.footer__nav-item {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__nav-item:hover {
  color: #C29B78;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 4rem;
  }
}

.footer__copyright {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.footer__sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(17, 34, 64, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(229, 224, 216, 0.2);
  z-index: 98;
  box-shadow: 0 -0.3125rem 1.25rem rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1023px) {
  .footer__sticky-cta {
    display: block;
  }
}

.footer__sticky-btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.875rem;
  border-radius: 1.875rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Top Page Styles
   ========================================================================== */
.top-hero {
  min-height: 85vh;
  background-color: #0A192F;
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

.top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.8) contrast(1.1);
  z-index: 1;
}

.top-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.4) 0%, rgba(10, 25, 47, 0.85) 100%);
  z-index: 2;
}

.top-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.top-hero__content {
  max-width: 46.875rem;
}

.top-hero__sub {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #C29B78;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .top-hero__sub {
    font-size: 1rem;
  }
}

.top-hero__title {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-hero__title {
    font-size: 2.75rem;
  }
}
.top-hero__title span {
  color: #C29B78;
}

.top-hero__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .top-hero__desc {
    font-size: 1rem;
  }
}

.top-intro__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-intro__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}

.top-intro__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.top-intro__img {
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.5rem rgba(17, 34, 64, 0.1);
  width: 100%;
  max-width: 33.75rem;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.top-intro__img-deco {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 10rem;
  height: 10rem;
  border: 2px solid #C29B78;
  border-radius: 1.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-intro__img-deco {
    display: none;
  }
}

.top-intro__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.top-intro__heading {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-intro__heading {
    font-size: 1.75rem;
  }
}

.top-intro__text {
  font-size: 0.875rem;
  color: #5C6F84;
  line-height: 1.8;
}

.top-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .top-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 0.625rem 1.875rem rgba(17, 34, 64, 0.03);
  border: 1px solid rgba(229, 224, 216, 0.5);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.25rem 3.125rem rgba(17, 34, 64, 0.08);
  border-color: rgba(194, 155, 120, 0.3);
}

.feature-card__icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(194, 155, 120, 0.1);
  color: #C29B78;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #112240;
}

.feature-card__desc {
  font-size: 0.8125rem;
  color: #5C6F84;
  line-height: 1.7;
}

.top-therapist__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-therapist__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }
}

.top-therapist__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .top-therapist__img-wrap {
    order: 2;
  }
}

.top-therapist__img {
  border-radius: 12.5rem 12.5rem 1.25rem 1.25rem;
  box-shadow: 0 1.25rem 2.5rem rgba(17, 34, 64, 0.1);
  width: 100%;
  max-width: 25rem;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.top-therapist__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-therapist__content {
    order: 1;
  }
}

.top-therapist__heading {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-therapist__heading {
    font-size: 1.75rem;
  }
}

.top-therapist__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #C29B78;
  margin-top: -0.5rem;
}

.top-therapist__text {
  font-size: 0.875rem;
  color: #5C6F84;
  line-height: 1.8;
}

.top-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .top-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4rem;
  }
}

.menu-summary-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.menu-summary-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(194, 155, 120, 0.4);
  transform: translateY(-0.25rem);
}

.menu-summary-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.menu-summary-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.menu-summary-card__meta {
  text-align: right;
}

.menu-summary-card__time {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.menu-summary-card__price {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C29B78;
}

.menu-summary-card__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.top-menu__btn-wrap {
  text-align: center;
}

/* ==========================================================================
   Concept Page Styles
   ========================================================================== */
.concept-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #112240;
  color: #ffffff;
  text-align: center;
}

.concept-hero__title {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .concept-hero__title {
    font-size: 3rem;
  }
}

.concept-intro__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .concept-intro__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.concept-intro__img-wrap {
  position: relative;
}

.concept-intro__img {
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.5rem rgba(17, 34, 64, 0.05);
  width: 100%;
}

.concept-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .concept-detail__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.concept-item {
  text-align: center;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 0.625rem 2.1875rem rgba(17, 34, 64, 0.02);
  border: 1px solid rgba(229, 224, 216, 0.4);
}

.concept-item__num {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 2.25rem;
  color: rgba(194, 155, 120, 0.3);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.concept-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #112240;
  margin-bottom: 1rem;
}

.concept-item__desc {
  font-size: 0.8125rem;
  color: #5C6F84;
  line-height: 1.7;
}

.therapist-profile {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 1.25rem 3.125rem rgba(17, 34, 64, 0.03);
  border: 1px solid rgba(229, 224, 216, 0.5);
  overflow: hidden;
}

.therapist-profile__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .therapist-profile__inner {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.therapist-profile__img-wrap {
  width: 100%;
  height: 100%;
  min-height: 20rem;
}
.therapist-profile__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapist-profile__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .therapist-profile__info {
    padding: 3.5rem;
  }
}

.therapist-profile__head {
  border-bottom: 1px solid #E5E0D8;
  padding-bottom: 1rem;
}

.therapist-profile__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #C29B78;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.therapist-profile__name {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #112240;
}
.therapist-profile__name span {
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8125rem;
  color: #5C6F84;
  margin-left: 0.75rem;
}

.therapist-profile__msg {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #112240;
  border-left: 0.1875rem solid #C29B78;
  padding-left: 1rem;
}

.therapist-profile__desc {
  font-size: 0.8125rem;
  color: #5C6F84;
  line-height: 1.8;
}

.therapist-profile__spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #F4F1EC;
  padding: 1.25rem;
  border-radius: 0.75rem;
}

.therapist-profile__spec-item {
  font-size: 0.8125rem;
  display: flex;
}
.therapist-profile__spec-item strong {
  color: #112240;
  width: 7.5rem;
  flex-shrink: 0;
}
.therapist-profile__spec-item span {
  color: #5C6F84;
}

/* ==========================================================================
   Menu Page Styles
   ========================================================================== */
.menu-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #112240;
  color: #ffffff;
  text-align: center;
}

.menu-hero__title {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .menu-hero__title {
    font-size: 3rem;
  }
}

.menu-detail-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .menu-detail-list {
    gap: 4rem;
  }
}

.menu-detail-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(229, 224, 216, 0.5);
  box-shadow: 0 0.9375rem 2.5rem rgba(17, 34, 64, 0.02);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .menu-detail-card {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.menu-detail-card__img-wrap {
  width: 100%;
  height: 100%;
  min-height: 17.5rem;
}
.menu-detail-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-detail-card__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .menu-detail-card__info {
    padding: 3rem;
  }
}

.menu-detail-card__head {
  border-bottom: 1px solid rgba(229, 224, 216, 0.8);
  padding-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.menu-detail-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #112240;
}
@media screen and (min-width: 768px) {
  .menu-detail-card__title {
    font-size: 1.375rem;
  }
}

.menu-detail-card__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.menu-detail-card__time {
  font-size: 0.8125rem;
  color: #5C6F84;
}

.menu-detail-card__price {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #C29B78;
}

.menu-detail-card__desc {
  font-size: 0.8125rem;
  color: #5C6F84;
  line-height: 1.8;
}

.menu-detail-card__steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #F4F1EC;
  padding: 1.25rem;
  border-radius: 0.75rem;
}

.menu-detail-card__steps-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #112240;
}

.menu-detail-card__steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-detail-card__steps-item {
  font-size: 0.6875rem;
  background-color: #ffffff;
  color: #112240;
  border: 1px solid rgba(229, 224, 216, 0.7);
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
}

/* ==========================================================================
   Access Page Styles
   ========================================================================== */
.access-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #112240;
  color: #ffffff;
  text-align: center;
}

.access-hero__title {
  font-family: "Noto Serif JP", "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .access-hero__title {
    font-size: 3rem;
  }
}

.access-detail__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .access-detail__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
  }
}

.access-detail__info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table__tr {
  border-bottom: 1px solid #E5E0D8;
}

.access-table__th {
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #112240;
  padding: 1.25rem 0.5rem;
  width: 8.75rem;
  vertical-align: top;
}

.access-table__td {
  font-size: 0.8125rem;
  color: #5C6F84;
  padding: 1.25rem 0.5rem;
  line-height: 1.8;
}

.access-detail__map-wrap {
  position: relative;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0.9375rem 2.5rem rgba(17, 34, 64, 0.05);
  border: 1px solid rgba(229, 224, 216, 0.5);
  aspect-ratio: 4/3;
}
.access-detail__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.access-detail__guide {
  background-color: #F4F1EC;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.access-detail__guide-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #112240;
  border-bottom: 2px solid #C29B78;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.access-detail__guide-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.access-detail__guide-item {
  font-size: 0.8125rem;
  color: #5C6F84;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.access-detail__guide-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #C29B78;
  border-radius: 50%;
}

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