@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #5A2521;
  --bg-warm: #F1EAE0;
  --bg-light: #F9F9F9;
  --text-dark: #333;
  --text-gray: #505050;
  --border-light: #DFDFDF;
}

body {
  font-family: "Noto Serif JP", serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 0 36px;
  border-bottom: 1px solid rgba(223, 223, 223, 0.4);
}
.site-header__logo {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.site-header__logo:hover {
  opacity: 0.75;
}
.site-header__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  transition: visibility 0s 0.35s;
}
.nav-drawer--open {
  visibility: visible;
  transition: visibility 0s 0s;
}
.nav-drawer__backdrop {
  flex: 1;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.nav-drawer--open .nav-drawer__backdrop {
  opacity: 1;
}
.nav-drawer__panel {
  width: 62%;
  max-width: 300px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.nav-drawer--open .nav-drawer__panel {
  transform: translateX(0);
}
.nav-drawer__close-btn {
  display: flex;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
  font-family: sans-serif;
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
}
.nav-drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
.nav-drawer__link {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer__link:hover {
  color: var(--primary);
}

.global-nav {
  display: flex;
  gap: clamp(24px, 2.2vw, 38px);
  align-items: center;
}
.global-nav__link {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(13px, 1.1vw, 16px);
  color: #333;
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}
.global-nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}
.global-nav__link:hover {
  color: var(--primary);
}
.global-nav__link:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  padding: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  display: none;
}
.hero__content {
  position: absolute;
  left: 8%;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero__logo {
  margin-bottom: clamp(8px, 1.5vh, 16px);
}
.hero__logo-img {
  height: clamp(90px, 14vw, 180px);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
.hero__tagline {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 2.2;
  letter-spacing: 0.1em;
}

.section {
  padding: 100px 60px;
}
.section--warm {
  background: var(--bg-warm);
}
.section--white {
  background: #fff;
}
.section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-title__en {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  letter-spacing: 0.2em;
  color: var(--primary);
  opacity: 0.2;
  text-transform: uppercase;
  margin-bottom: -40px;
  line-height: 1;
}
.section-title__ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 0.2em;
  color: #333;
  line-height: 1.3;
}
.section-title__divider {
  width: 50px;
  height: 1px;
  background: var(--primary);
}
.section-title__lead {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--primary);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.site-footer {
  background: linear-gradient(to right, #fff, var(--bg-warm));
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.site-footer__logo {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
.site-footer__logo:hover {
  opacity: 0.75;
}
.site-footer__logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.site-footer__social {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: opacity 0.3s, transform 0.3s;
}
.site-footer__social-link:hover {
  opacity: 0.5;
}
.site-footer__copy {
  font-size: 13px;
  color: #6a6c75;
  letter-spacing: 0.1em;
}

.highlight-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 50px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-size: 18px;
  letter-spacing: 0.1em;
  align-self: center;
}

/* SP専用改行: <br class="br-sp"> */
.br-sp {
  display: none;
}

@media (max-width: 900px) {
  .br-sp {
    display: block;
  }
}
/* PC専用改行: <br class="br-pc"> */
.br-pc {
  display: block;
}

@media (max-width: 900px) {
  .br-pc {
    display: none;
  }
}
.body-text {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}
.body-text--left {
  text-align: left;
}

.text-block {
  width: 100%;
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}
.text-block--loose {
  gap: 20px;
}

.bullet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
  list-style: none;
}
.bullet-list--left {
  justify-content: flex-start;
}
.bullet-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.bullet-list__item::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #333;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 520px;
  max-width: 100%;
  height: 60px;
  background: var(--primary);
  color: white;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}
.cta-btn:hover {
  background: #fff;
  color: #c0392b;
  border-color: #c0392b;
}
.cta-btn:hover .cta-btn__arrow {
  filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(2000%) hue-rotate(340deg);
}
.cta-btn__arrow {
  height: 10px;
  width: auto;
  transition: filter 0.3s;
}

.quote {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
}
.quote__corner {
  flex-shrink: 0;
  width: 30px;
}
.quote__corner--bottom-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.quote__corner-svg {
  display: block;
  width: 30px;
}
.quote__corner-svg--top {
  height: 70px;
}
.quote__corner-svg--bottom {
  height: 15px;
  transform: rotate(180deg);
}
.quote__text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(15px, 1.8vw, 22px);
  color: var(--primary);
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 16px 8px;
  text-align: center;
  flex: 1;
  white-space: nowrap;
}

.wavy {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 10px;
}
.wavy__text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}
.wavy__svg {
  display: block;
  margin: -4px auto 0;
  width: 100%;
  height: 28px;
  pointer-events: none;
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  justify-content: center;
  width: 100%;
}
.slider-nav__btn {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.slider-nav__btn:hover {
  opacity: 0.75;
}
.slider-nav__arrow {
  display: block;
  width: 28px;
  height: auto;
}
.slider-nav__arrow--prev {
  transform: scaleX(-1);
}
.slider-nav__dots {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 376px;
  height: auto;
}
.slider-nav__dot {
  cursor: pointer;
  transition: fill 0.3s;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in--visible {
  opacity: 1;
  transform: none;
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  opacity: 0.75;
}
@media (max-width: 900px) {
  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

.problem-gallery {
  display: flex;
  justify-content: center;
}
.problem-gallery__item {
  width: 100%;
  max-width: 480px;
}
.problem-gallery__item--ba {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.problem-gallery__ba-labels {
  display: flex;
  align-items: center;
  width: 100%;
}
.problem-gallery__ba-labels .ba-item__label {
  flex: 1;
  text-align: center;
}
.problem-gallery__ba-labels .ba-arrow {
  margin-top: 0;
  flex-shrink: 0;
}
.problem-gallery__img {
  display: block;
  width: 100%;
  height: auto;
}

.inline-list {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.inline-list__label {
  font-size: 15px;
  letter-spacing: 0.1em;
}
.inline-list__items {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.inline-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.inline-list__dot {
  width: 5px;
  height: 5px;
  background: #333;
  flex-shrink: 0;
  display: block;
}

.before-after {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.ba-item {
  display: flex;
  flex-direction: column;
}
.ba-item__label {
  font-family: "EB Garamond", serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-style: italic;
  color: #333;
  line-height: 1;
  margin-bottom: 14px;
}
.ba-item__frame {
  overflow: hidden;
  height: 320px;
}
.ba-item__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-item--before {
  flex: 0 0 auto;
  width: 38%;
}
.ba-item--before .ba-item__frame {
  border: 1px solid #d9d0c7;
}
.ba-item--after {
  flex: 0 0 auto;
  width: 44%;
}
.ba-item--after .ba-item__label {
  color: var(--primary);
}
.ba-item--after .ba-item__frame {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ba-arrow {
  flex-shrink: 0;
  align-self: center;
  margin-top: 66px;
}
.ba-arrow__img {
  display: block;
  width: 36px;
  height: auto;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(300deg) brightness(0.7);
}

.reason-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  margin: 60px auto 0;
  align-self: stretch;
}
.reason-slider__track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.reason-slider__card {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  box-shadow: 0 0 5px rgba(241, 234, 224, 0.5);
  transform: scale(0.82);
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
}
.reason-slider__card--active {
  transform: scale(1);
}
.reason-slider__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.reason-slider__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1100px;
}

.process-item {
  display: flex;
  align-items: stretch;
  background: #fff;
  overflow: hidden;
}
.process-item__img {
  width: 420px;
  flex-shrink: 0;
  object-fit: cover;
}
.process-item__content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-item__step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process-item__step-label {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: 0.1em;
}
.process-item__period {
  font-size: 18px;
  color: var(--text-gray);
  letter-spacing: 0.1em;
}
.process-item__phase {
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #333;
}
.process-item__body {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.after-steps-list {
  max-width: 960px;
  width: 100%;
}
.after-steps-list .bullet-list__item {
  white-space: nowrap;
}

.flow-divider {
  width: 1px;
  height: 100px;
  background: #333;
}

.strength-slider + .slider-nav {
  margin-top: 32px;
}

.strength-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  margin: 0 auto;
  align-self: stretch;
}
.strength-slider__track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.strength-card {
  flex-shrink: 0;
  width: 320px;
  height: 400px;
  background: #fff;
  border: 0.6px solid var(--bg-warm);
  box-shadow: 0 0 8px rgba(241, 234, 224, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.88);
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
}
.strength-card--active {
  transform: scale(1);
}
.strength-card__img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 600/400;
  overflow: hidden;
}
.strength-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strength-card__tag {
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 16px 24px 8px;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
}
.strength-card__title {
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 8px 24px 10px;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
}
.strength-card__body {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 0 24px 24px;
  color: #666;
}
.strength-card__body--compact {
  font-size: 12px;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1100px;
}

.voice-card {
  display: flex;
  gap: 60px;
  background: var(--bg-light);
  align-items: stretch;
  flex-wrap: wrap;
}
.voice-card__img {
  width: 380px;
  flex-shrink: 0;
  object-fit: cover;
}
.voice-card__content {
  flex: 1;
  min-width: 280px;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.voice-card__name {
  font-family: "EB Garamond", serif;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.voice-card__name-suffix {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-left: 8px;
}
.voice-card__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.plan-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.plan-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.plan-block__title-bar {
  text-align: center;
  padding-bottom: 8px;
}
.plan-block__title {
  display: inline-block;
  font-size: clamp(16px, 2vw, 24px);
  color: var(--primary);
  letter-spacing: 0.15em;
  padding: 16px 28px 10px;
  border-bottom: 1px solid var(--primary);
}
.plan-block__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
}
.plan-block__includes-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  letter-spacing: 0.1em;
  list-style: none;
}
.plan-block__includes-dot {
  width: 5px;
  height: 5px;
  background: #333;
  flex-shrink: 0;
  display: block;
}

.plan-price-table {
  display: flex;
  align-items: stretch;
}
.plan-price-table__label {
  background: var(--bg-warm);
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.plan-price-table__items {
  background: var(--bg-light);
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
}
.plan-price-table__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.plan-price-table__item::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #333;
  flex-shrink: 0;
}

.price-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.price-first__wavy .wavy__text {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.1em;
  color: #333;
  font-family: inherit;
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 700px;
}

.flow-item {
  display: flex;
  align-items: center;
  background: var(--bg-light);
}
.flow-item__step {
  background: var(--bg-warm);
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  font-family: "EB Garamond", serif;
}
.flow-item__step-label {
  font-size: 10px;
  letter-spacing: 0.1em;
}
.flow-item__step-num {
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.flow-item__content {
  flex: 1;
  padding: 20px 36px;
  font-size: 18px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.flow-item__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.75;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  padding: 6px 0;
}
.flow-arrow__svg {
  width: 24px;
  color: var(--primary);
}

.faq-list {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item__q {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 20px 40px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s ease;
}
.faq-item__q:hover {
  opacity: 0.75;
}
.faq-item__a {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 40px;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item--open .faq-item__a {
  max-height: 400px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.faq-item__marker {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  line-height: 1.75;
}
.faq-item__text {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  flex: 1;
}
.faq-item__toggle {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  margin-left: auto;
  transition: transform 0.35s ease;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--primary);
}
.faq-item__toggle::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-item__toggle::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-item--open .faq-item__toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.access-layout {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.access-layout__map {
  flex: 1;
  min-width: 280px;
  aspect-ratio: 3/2;
  object-fit: cover;
  border: none;
}

.access-info {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.access-info__title {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--primary);
  letter-spacing: 0.15em;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 4px;
}
.access-info__row {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--bg-warm);
}
.access-info__row:last-child {
  border-bottom: 1px solid var(--bg-warm);
}
.access-info__label {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.1em;
  width: 80px;
  flex-shrink: 0;
}
.access-info__value {
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.access-info__value a {
  color: inherit;
  text-decoration: none;
}

.message-body {
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.message-body__emphasis {
  border-bottom: 1px solid var(--primary);
  padding-bottom: 8px;
  text-align: center;
  max-width: 700px;
  width: 100%;
}
.message-body__emphasis-text {
  font-size: clamp(16px, 2vw, 26px);
  color: var(--primary);
  letter-spacing: 0.15em;
  line-height: 1.75;
}

@media (max-width: 900px) {
  body {
    font-size: 14px;
  }
  .body-text,
  .bullet-list__item,
  .inline-list__label,
  .inline-list__item,
  .faq-item__text,
  .plan-price-table__item,
  .voice-card__text,
  .process-item__body {
    font-size: 14px;
  }
  .site-header {
    padding: 0 24px;
    height: 64px;
  }
  .global-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section {
    padding: 60px 20px;
  }
  .section__inner {
    gap: 52px;
  }
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1512/1108;
    margin-top: 64px;
  }
  .hero__content {
    left: 2%;
  }
  .hero__logo-img {
    height: clamp(60px, 12vw, 90px);
  }
  .hero__tagline {
    font-size: clamp(13px, 3.5vw, 18px);
  }
  .before-after {
    gap: 8px;
  }
  .ba-arrow__img {
    width: 20px;
  }
  .ba-item--before {
    width: 42%;
  }
  .ba-item--after {
    width: 48%;
  }
  .ba-item__frame {
    height: 180px;
  }
  .problem-gallery__item {
    max-width: 100%;
  }
  .voice-list {
    gap: 32px;
  }
  .voice-card {
    flex-direction: column;
    gap: 0;
  }
  .voice-card__img {
    width: 100%;
  }
  .voice-card__content {
    padding: 20px;
  }
  .process-item {
    flex-direction: column;
  }
  .process-item__img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .process-item__content {
    padding: 28px 20px;
  }
  .process-item__phase {
    font-size: 16px;
  }
  .after-steps-list .bullet-list__item {
    white-space: normal;
  }
  .quote__text {
    white-space: normal;
    font-size: 16px;
    padding-left: 0;
    padding-right: 0;
  }
  .highlight-box {
    padding: 10px 24px;
    text-align: center;
    white-space: normal;
    font-size: 16px;
  }
  .flow-list {
    gap: 0;
  }
  .flow-item__step {
    padding: 14px 20px;
  }
  .flow-item__content {
    padding: 14px 20px;
    font-size: 14px;
  }
  .faq-list {
    gap: 24px;
  }
  .faq-item__q {
    padding: 16px 20px;
    gap: 16px;
  }
  .faq-item__a {
    padding: 0 20px;
    gap: 16px;
  }
  .faq-item--open .faq-item__a {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .plan-block__includes {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: fit-content;
    margin: 0 auto;
  }
  .plan-price-table {
    flex-direction: column;
  }
  .plan-price-table__label {
    justify-content: center;
    padding: 16px 20px;
  }
  .plan-price-table__items {
    padding: 20px 24px;
  }
  .access-layout {
    flex-direction: column;
    align-items: stretch;
  }
  .access-info__title {
    text-align: center;
  }
  .access-info__value {
    word-break: break-all;
  }
  .access-info__row {
    gap: 20px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
    position: relative;
  }
  .cta-btn__arrow {
    position: absolute;
    right: 20px;
  }
  .price-first__wavy .wavy__text {
    white-space: normal;
  }
  .wavy__text {
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 50px 16px;
  }
  .section__inner {
    gap: 40px;
  }
  .bullet-list {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
  }
  .inline-list {
    gap: 10px;
  }
  .inline-list__items {
    gap: 14px;
  }
  #why .inline-list,
  #reason .inline-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  #why .inline-list__items,
  #reason .inline-list__items {
    flex-direction: column;
    gap: 24px;
  }
  .section-title__en {
    font-size: 22px;
    margin-bottom: -32px;
    text-align: center;
  }
  .section-title__ja {
    text-align: center;
    font-size: 20px;
  }
  .slider-nav {
    gap: 16px;
    margin-top: 44px;
    margin-bottom: 32px;
  }
  .reason-slider {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .reason-slider__track {
    gap: 4px;
  }
  .reason-slider__card {
    width: 68vw;
    height: 68vw;
  }
  .reason-slider__card--active {
    transform: scale(1.08);
  }
  .strength-slider {
    width: 100vw;
    max-width: none;
    margin-left: -20px;
    margin-top: 20px;
    overflow: hidden;
  }
  .strength-slider + .slider-nav {
    margin-top: 0;
  }
  .strength-slider__track {
    gap: 12px;
    align-items: stretch;
  }
  .strength-card {
    width: 78vw;
    height: auto;
  }
  .strength-card__img-wrap {
    aspect-ratio: 4/3;
  }
  .strength-card__tag {
    font-size: 15px;
    padding: 14px 16px 6px;
  }
  .strength-card__body {
    font-size: 12px;
    padding: 0 16px 16px;
  }
  .process-item__content {
    padding: 20px 16px;
  }
  .faq-item__q {
    padding: 14px 16px;
    gap: 12px;
  }
  .faq-item__a {
    padding: 0 16px;
  }
  .access-info__label {
    width: 68px;
    font-size: 12px;
  }
  .access-info__value {
    font-size: 12px;
  }
  .highlight-box {
    font-size: 16px;
  }
  .message-body__emphasis {
    width: fit-content;
    margin: 0 auto;
  }
}

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