/* Hero — Figma 8106:52（1440px: 左590px / 右850px / 高700px） */
.hero {
  margin-top: var(--header-height);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero__inner {
  align-items: stretch;
  display: flex;
  flex-direction: row-reverse;
  min-height: clamp(25rem, 48.611vw, 43.75rem);
  position: relative;
  width: 100%;
}

.hero__content {
  background-color: var(--color-white);
  flex: 0 0 40.97%;
  max-width: 40.97%;
  padding:
    clamp(5rem, 13.681vw, 13.681vw) clamp(1rem, 4.861vw, 4.861vw) clamp(1.5rem, 4.167vw, 4.167vw) clamp(1.25rem, 5.625vw, 5.625vw);
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.5rem, 2.083vw, 2.083vw);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__tag {
  align-items: center;
  background: var(--gradient-brand);
  color: var(--color-white);
  display: inline-flex;
  flex-shrink: 0;
  font-size: clamp(1.125rem, 2.639vw, 2.639vw);
  font-weight: 700;
  height: clamp(2rem, 3.542vw, 3.542vw);
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-left: 0.1em;
  transform: translateY(-0.03em);
  width: clamp(3.5rem, 6.944vw, 6.944vw);
}

.hero__tag--wide {
  width: clamp(5rem, 9.722vw, 9.722vw);
}

.hero__title {
  margin-top: clamp(0.75rem, 2.222vw, 2.222vw);
}

.hero__title-sub {
  display: block;
  font-size: clamp(1.125rem, 2.431vw, 2.431vw);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.hero__title-main {
  display: block;
  font-size: clamp(1.25rem, 2.778vw, 2.778vw);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.hero__lead {
  font-family: var(--font-en);
  font-size: clamp(0.6875rem, 0.903vw, 0.903vw);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.83;
  margin-top: clamp(0.5rem, 0.833vw, 0.833vw);
}

.hero__cta {
  margin-top: clamp(1.5rem, 4.514vw, 4.514vw);
}

.hero__cta .btn--dark {
  --btn-dark-hover-color: var(--color-text);
  --btn-sweep-bg: var(--color-white);
  border: 1px solid transparent;
  box-sizing: border-box;
  font-size: clamp(0.625rem, 1.111vw, 1.111vw);
  height: clamp(2.5rem, 3.472vw, 3.472vw);
  gap: 10px;
  letter-spacing: 0.1em;
  max-width: 100%;
  white-space: nowrap;
  width: clamp(12rem, 20.833vw, 20.833vw);
}

.hero__cta .btn--dark:hover {
  border-color: var(--color-text);
  color: var(--btn-dark-hover-color);
}

.hero__visual {
  flex: 1 1 59.03%;
  min-height: clamp(25rem, 48.611vw, 43.75rem);
  min-width: 0;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.hero__visual-frame {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero__visual-image {
  display: block;
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  width: 100%;
}

/* Hero MRI slice reveal — PC: 14 slices / SP: 9 slices (top.js) */
.hero__visual-slices {
  --hero-slice-count: 14;
  --hero-slice-stagger: 60ms;
  --hero-slice-duration: 600ms;
  display: flex;
  height: 100%;
  width: 100%;
}

.hero__visual-slice {
  flex: 1 1 calc(100% / var(--hero-slice-count));
  height: 100%;
  min-width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-0.75rem);
}

.hero__visual-slice-image {
  display: block;
  height: 100%;
  margin-left: calc(-100% * var(--hero-slice-index));
  max-width: none;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  user-select: none;
  width: calc(100% * var(--hero-slice-count));
}

.hero__inner--mri.is-mri-active .hero__visual-slice {
  animation: hero-mri-slice-in var(--hero-slice-duration) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--hero-slice-index) * var(--hero-slice-stagger));
}

@keyframes hero-mri-slice-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Right column content — after MRI slices complete */
.hero__reveal-content {
  opacity: 0;
  transform: translateX(1rem);
}

.hero__inner--mri.is-mri-active .hero__reveal-content {
  animation: hero-mri-content-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--hero-content-base-delay, 1440ms) + var(--hero-content-offset, 0ms));
}

@keyframes hero-mri-content-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__tags .hero__tag:nth-child(1) {
  --hero-content-offset: 0ms;
}

.hero__tags .hero__tag:nth-child(2) {
  --hero-content-offset: 70ms;
}

.hero__tags .hero__tag:nth-child(3) {
  --hero-content-offset: 140ms;
}

.hero__title-sub {
  --hero-content-offset: 220ms;
}

.hero__title-main {
  --hero-content-offset: 300ms;
}

.hero__lead {
  --hero-content-offset: 380ms;
}

.hero__cta {
  --hero-content-offset: 460ms;
}

.hero__inner--mri.is-mri-ready .hero__reveal-content,
.hero__inner--mri.is-mri-ready .hero__visual-slice {
  animation: none;
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__reveal-content,
  .hero__visual-slice {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    width: 100%;
  }

  .hero__inner {
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
    position: relative;
    width: 100%;
  }

  .hero__visual {
    aspect-ratio: 450 / 600;
    flex: none;
    max-width: 100%;
    min-height: auto;
    order: -1;
    width: 100%;
  }

  .hero__reveal-content {
    transform: translateY(1rem);
  }

  .hero__inner--mri.is-mri-active .hero__reveal-content {
    animation-name: hero-mri-content-in-sp;
  }

  @keyframes hero-mri-content-in-sp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero__content {
    background: transparent;
    bottom: 0;
    flex: none;
    left: 0;
    max-width: 100%;
    padding: 0 4.98% 1.25rem;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 2;
  }

  .hero__tags {
    flex-wrap: wrap;
    gap: 5%;
  }

  .hero__tag {
    font-size: 1.75rem;
    height: 2.75rem;
    letter-spacing: 0.1em;
    min-height: 2.75rem;
    padding: 0;
    width: auto;
  }

  .hero__tag--wide {
    min-width: 6.875rem;
    padding: 0 0.35rem;
  }

  .hero__tag:not(.hero__tag--wide) {
    min-width: 5.625rem;
  }

  .hero__title {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.35rem;
    margin-top: 0.625rem;
  }

  .hero__title-sub {
    color: var(--color-white);
    display: inline-block;
    font-size: 1.5625rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .hero__title-main {
    color: var(--color-white);
    display: inline-block;
    font-size: 1.875rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .hero__lead {
    color: var(--color-white);
    font-size: 0.625rem;
    line-height: 1.83;
    margin-top: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }

  .hero__cta {
    margin-top: 1rem;
  }

  .hero__cta .btn--dark {
    font-size: 1rem;
    height: 3.125rem;
    letter-spacing: 0.1em;
    max-width: 16.875rem;
    width: 100%;
  }
}

/* About */
.about {
  padding-bottom: 150px;
}

.about .section-heading {
  margin-bottom: 3.75rem;
}

.about__body {
  align-items: stretch;
  display: flex;
  gap: 5%;

}

.about__text {
  flex: 1 1 61%;
  max-width: none;
  min-width: 0;
}

.about__catch {
  border-left: 0.25rem solid var(--color-accent);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.about__desc {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 186%;
}

.about__trainer {
  display: flex;
  flex: 0 0 34%;
  flex-direction: column;
  text-align: center;
  width: auto;
}

.about__trainer-photo {
  flex: 1 1 auto;
  height: auto;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.about__trainer-name {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 0.625rem;
}

.about__trainer-name-en {
  font-family: var(--font-en);
}

/* Training */
.training {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 5.5rem 0 6.25rem;
}

.training .section-heading__ja {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.training .section-heading {
  margin-bottom: 2.375rem;
}

.training__intro {
  align-items: start;
  container-type: inline-size;
  column-gap: 5%;
  display: grid;
  grid-template-columns: 36% 1fr;
  grid-template-rows: auto auto;
  margin-bottom: 4rem;
}

.training__intro-media {
  grid-column: 1;
  grid-row: 1 / -1;
  max-width: none;
  width: 100%;
}

.training__intro-photo {
  max-width: none;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.training__intro-text {
  display: contents;
}

.training__intro-title {
  align-items: stretch;
  display: flex;
  font-size: 1.25rem;
  font-weight: 700;
  gap: 10px;
  grid-column: 2;
  grid-row: 1;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 1rem;
  min-width: 0;
  position: relative;
}

.training__intro-title::before {
  align-self: stretch;
  background-color: var(--color-accent);
  content: "";
  display: block;
  flex-shrink: 0;
  width: 2px;
}

.training__intro-title-br--sp {
  display: none;
}

@media (max-width: 600px) {
  .training__intro-title-br--sp {
    display: inline;
  }
}

.training__intro-desc {
  font-family: var(--font-en);
  font-size: 1rem;
  grid-column: 2;
  grid-row: 2;
  letter-spacing: 0.05em;
  line-height: 1.9;
  min-width: 0;
}

@media (min-width: 770px) {
  .training__intro {
    align-items: stretch;
  }

  .training__intro-media {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .training__intro-photo {
    flex: 1 1 auto;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .training__intro-title {
    font-size: clamp(1rem, 2cqw, 1.25rem);
  }

  .training__intro-desc {
    font-size: clamp(0.875rem, 1.6cqw, 1rem);
  }
}

@media (max-width: 769px) {
  .training__intro {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    margin-bottom: 2rem;
    row-gap: 0;
  }

  .training__intro-title {
    align-items: stretch;
    align-self: center;
    display: flex;
    font-size: clamp(0.875rem, 5.556cqw, 1.18rem);
    gap: 10px;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 1.875rem;
    max-width: 100%;
    position: relative;
    text-align: center;
    width: fit-content;
  }

  .training__intro-title::before {
    align-self: stretch;
    background-color: var(--color-red);
    display: block;
    width: 4px;
  }

  .training__intro-media {
    align-self: stretch;
    display: block;
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    margin-bottom: 1.875rem;
    max-width: 100%;
    min-height: 0;
    width: 100%;
  }

  .training__intro-photo {
    aspect-ratio: 322 / 200;
    display: block;
    flex: none;
    height: auto;
    max-width: 100%;
    min-height: 0;
    width: 100%;
  }

  .training__intro-desc {
    font-family: var(--font-ja);
    font-size: clamp(0.625rem, 3.889cqw, 0.875rem);
    grid-column: 1;
    grid-row: 3;
    letter-spacing: 0.05em;
    line-height: 1.7;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 996px) {
  .review .inner {
    max-width: 100%;
    width: 89.55%;
  }

  .review__cards {
    flex-direction: column;
    gap: 1.5625rem;
    margin-bottom: 2.5rem;
    width: 100%;
  }

  .review__card {
    flex: none;
    padding: 0.9375rem 0;
    width: 100%;
  }

  .review__card:first-child {
    margin-bottom: 20px;
  }

  .review__card-body {
    gap: 1.0625rem;
  }

  .review__card-photo {
    height: 9.375rem;
    width: 50%;
  }

  .review__card-tag {
    font-size: 0.75rem;
  }

  .review__card-more {
    font-size: 0.625rem;
    padding-top: 0.875rem;
  }
}

.training__grid {
  display: grid;
  gap: 1.875rem 2.5%;
  grid-template-columns: repeat(4, 1fr);
}

.training__item-lists {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.training__item-head {
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  cursor: default;
  display: flex;
  font: inherit;
  gap: 0.8125rem;
  margin-bottom: 0.75rem;
  padding: 0;
  text-align: left;
  width: 100%;
}

.training__item-icon {
  display: none;
}

.training__item-bar {
  background-color: var(--color-accent);
  flex-shrink: 0;
  height: 1.25rem;
  width: 3px;
}

.training__item-title {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 0;
}

.training__item-list {
  flex: 0 0 auto;
  font-size: 0.875rem;
  line-height: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

.training__item-list li::before {
  content: "・";
}

/* Review */
.review {
  padding: 5.5rem 0 6.25rem;
}

.review .section-heading {
  margin-bottom: 2.5rem;
}

.review__cards {
  display: flex;
  gap: 3.4%;
  justify-content: center;
  margin-bottom: 5.875rem;
}

.review__card {
  border-bottom: 1px solid var(--color-text);
  border-top: 1px solid var(--color-text);
  flex: 1;
  min-width: 0;
  padding: 1.875rem 0;
}

.review__card-link {
  color: inherit;
  display: block;
  text-decoration: none;
  transition: opacity 0.2s;
}

.review__card-link:hover {
  opacity: 0.7;
}

.review__card-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.review__card-body {
  align-items: center;
  display: flex;
  gap: 8.28%;
}

.review__card-photo {
  flex-shrink: 0;
  height: 11.25rem;
  max-width: none;
  object-fit: cover;
  width: 47.62%;
}

.review__card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.review__card-tag {
  align-self: flex-start;
  background-color: var(--color-accent);
  color: var(--color-white);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  height: 1.3125rem;
  letter-spacing: 0.1em;
  line-height: 1.3125rem;
  min-width: 3.9375rem;
  padding: 0 0.3125rem;
  text-align: center;
}

.review__card-issue {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 0.625rem;
}

.review__card-more {
  align-items: center;
  align-self: flex-start;
  display: inline-flex;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 400;
  gap: 0.3rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-top: 1.5625rem;
  transition: opacity 0.2s;
}

.review__card-more-arrow {
  border: none;
  display: block;
  flex-shrink: 0;
  height: 0.5rem;
  position: relative;
  transform: none;
  width: 1.8em;
}

.review__card-more-arrow::before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9em;
}

.review__card-more-arrow::after {
  background-color: transparent;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  clip-path: none;
  content: "";
  display: block;
  height: 0.3125rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.3125rem;
}

.review__more-wrap {
  text-align: center;
}

.review__more-wrap .btn:hover,
.news__more-wrap .btn:hover {
  color: #ffffff;
}

.review__more-wrap .btn:hover .btn__label,
.review__more-wrap .btn:hover .btn__arrow,
.news__more-wrap .btn:hover .btn__label,
.news__more-wrap .btn:hover .btn__arrow {
  color: #ffffff;
  transition: color 0s;
}

.review__more-wrap .btn__arrow,
.news__more-wrap .btn__arrow,
.recruit__cta .btn__arrow {
  height: 0.5rem;
  position: relative;
  width: 1.6rem;
}

.review__more-wrap .btn__arrow::before,
.news__more-wrap .btn__arrow::before,
.recruit__cta .btn__arrow::before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9em;
}

.review__more-wrap .btn__arrow::after,
.news__more-wrap .btn__arrow::after,
.recruit__cta .btn__arrow::after {
  background-color: transparent;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  clip-path: none;
  content: "";
  display: block;
  height: 0.3125rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.3125rem;
}

/* Q&A */
.qa {
  padding: 5.5rem 0 6.25rem;
}

.qa .section-heading {
  margin-bottom: 3.75rem;
}

.qa__list {
  border-top: 1px solid #ddd;
}

.qa__item {
  border-bottom: 1px solid #ddd;
}

.qa__question {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.9375rem;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  width: 100%;
}

.qa__question-mark {
  align-items: center;
  background: var(--gradient-brand);
  color: var(--color-white);
  display: flex;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 500;
  height: 1.875rem;
  justify-content: center;
  width: 1.875rem;
}

.qa__question-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
}

.qa__question-icon {
  border-right: 2px solid var(--color-text);
  border-top: 2px solid var(--color-text);
  flex-shrink: 0;
  height: 0.625rem;
  transform: rotate(135deg);
  transition: transform 0.3s;
  width: 0.625rem;
}

.qa__item.is-open .qa__question-icon {
  transform: rotate(-45deg);
}

.qa__answer {
  display: none;
  padding: 1rem 0 2.5rem 1.8125rem;
}

.qa__item.is-open .qa__answer {
  display: flex;
  gap: 1rem;
}

.qa__answer-mark {
  color: var(--color-red);
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.qa__answer-text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.65;
}


/* Gallery */
.gallery {
  padding: 5.5rem 0 6.25rem;
}

.gallery .section-heading {
  margin-bottom: 2.375rem;
}

.gallery__grid {
  margin: 0 auto;
  max-width: 69.44%;
}

.gallery__row {
  display: flex;
  gap: 3.6%;
  justify-content: space-between;
}

.gallery__row+.gallery__row {
  margin-top: 1.875rem;
}

.gallery__item {
  aspect-ratio: 310 / 150;
  background-color: var(--color-gray-placeholder);
  flex-shrink: 0;
  overflow: hidden;
  width: 31%;
}

.gallery__item img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.gallery__item img.gallery__item-img--top {
  object-position: center 25%;
}

@keyframes gallery-slider-1 {

  0%,
  14% {
    opacity: 1;
  }

  16.67%,
  100% {
    opacity: 0;
  }
}

@keyframes gallery-slider-2 {

  0%,
  14% {
    opacity: 0;
  }

  16.67%,
  30% {
    opacity: 1;
  }

  33.33%,
  100% {
    opacity: 0;
  }
}

@keyframes gallery-slider-3 {

  0%,
  30% {
    opacity: 0;
  }

  33.33%,
  46% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes gallery-slider-4 {

  0%,
  46% {
    opacity: 0;
  }

  50%,
  62% {
    opacity: 1;
  }

  66.67%,
  100% {
    opacity: 0;
  }
}

@keyframes gallery-slider-5 {

  0%,
  62% {
    opacity: 0;
  }

  66.67%,
  79% {
    opacity: 1;
  }

  83.33%,
  100% {
    opacity: 0;
  }
}

@keyframes gallery-slider-6 {

  0%,
  79% {
    opacity: 0;
  }

  83.33%,
  97% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Access */
.access {
  padding: 5.5rem 0 6.25rem;
}

.access .section-heading {
  margin-bottom: 1rem;
  text-align: left;
}

.access .section-heading__en {
  text-align: left;
}

.access .section-heading__ja {
  text-align: left;
}

.access__layout {
  align-items: flex-start;
  display: flex;
  gap: 5%;
  justify-content: space-between;
}

.access__info {
  flex: 1;
}

.access__station {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 1rem 0 1.5rem 0.625rem;
}

.access__note {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.access__detail {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.3rem;
}

.access__detail-label {
  background: var(--gradient-dark);
  color: var(--color-white);
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.125rem 0.75rem;
  text-align: center;
  width: 5.5625rem;
}

.access__detail-value {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.access__detail-value a {
  padding-bottom: 0.125rem;
  position: relative;
  transition: opacity 0.2s;
}

.access__detail-value a::after {
  background-color: var(--color-text);
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.access__detail-value a:hover {
  opacity: 0.7;
}

.access__detail-value a:hover::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .access__detail-value a::after {
    transition: none;
  }
}

.access__map {
  flex-shrink: 0;
  height: 23.375rem;
  overflow: hidden;
  position: relative;
  width: 43%;
}

.access__map-iframe {
  border: none;
  display: block;
  height: 100%;
  width: 100%;
}

.access__sns {
  display: flex;
  gap: 5%;
  justify-content: center;
  margin-top: 3.75rem;
}

.access__sns-link {
  align-items: center;
  display: flex;
  height: 4.875rem;
  justify-content: center;
}

.access__sns-link--instagram {
  background: none;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.access__sns-link--instagram .access__sns-banner {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: contain;
  width: 100%;
}

.access__sns-link--tiktok {
  background: none;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.access__sns-link--tiktok .access__sns-banner {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: contain;
  width: 100%;
}

.access__sns-link:hover {
  opacity: 0.3;
}

/* News */
.news {
  background-color: var(--color-gray-light);
  padding: 6.5rem 0 6.25rem;
}

.news .section-heading {
  margin-bottom: 2.375rem;
}

.news__panel {
  background-color: var(--color-white);
  margin: 0 auto 2.5rem;
  max-width: 83.33%;
  padding: 3.7rem 5.5%;
}

.news__item {
  border-bottom: 1px solid #ddd;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 1rem 0;
  width: 49.375rem;
}

.news__item:first-child {
  padding-top: 0;
}

.news__link {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 0.625rem;
  text-decoration: none;
  transition: opacity 0.2s;
  width: 100%;
}

.news__link:hover {
  opacity: 0.7;
}

.news__date {
  background: var(--gradient-brand);
  color: var(--color-white);
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  text-align: center;
  width: 6.125rem;
}

.news__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.news__more-wrap {
  text-align: center;
}

/* Recruit */
.recruit {
  align-items: center;
  display: flex;
  max-height: 21.875rem;
}

.recruit__visual {
  overflow: hidden;
  width: 49.44%;
}

.recruit__visual img {
  height: 21.875rem;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.recruit__content {
  margin: auto;
  padding: 3rem 0% 3rem 5%;
}

.recruit .section-heading {
  text-align: left;
}

.recruit__desc {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 1.3rem;
  max-width: 33.89rem;
}

.recruit__cta {
  margin-top: 1.5rem;
}

.recruit__cta .btn {
  --btn-sweep-bg: #ffffff;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.recruit__cta .btn:hover .btn__label {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: color 0s;
}

.recruit__cta .btn:hover .btn__arrow {
  color: var(--color-red);
  transition: color 0s;
}

@media (max-width: 1000px) {
  .about__body {
    display: block;
  }

  .about__text {
    flex: none;
    width: 100%;
  }

  .about__trainer {
    flex: none;
    margin-top: 2.125rem;
    width: 100%;
  }

  .review__card-issue {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 1200px) {
  .training__grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .training__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .training__item-head {
    cursor: pointer;
    margin-bottom: 0;
    padding: 0.875rem 1.5rem 0.875rem 0;
    position: relative;
  }

  .training__item-bar {
    height: 1.25rem;
    width: 1px;
  }

  .training__item-title {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
  }

  .training__item-icon {
    border-right: 2px solid var(--color-white);
    border-top: 2px solid var(--color-white);
    display: block;
    flex-shrink: 0;
    height: 0.625rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.3s;
    width: 0.625rem;
  }

  .training__item.is-open .training__item-icon {
    transform: translateY(-50%) rotate(-45deg);
  }

  .training__item-lists {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0.875rem;
  }

  .training__item.is-open .training__item-lists {
    display: flex;
  }

  .training__item-list {
    font-size: 0.875rem;
    line-height: 2;
    padding-left: 0.5rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding-bottom: 4.375rem;
    padding-top: 2.5rem;
  }

  .about .section-heading {
    margin-bottom: 2.125rem;
    text-align: center;
  }

  .about .section-heading__en {
    font-size: 2rem;
  }

  .about .section-heading__ja {
    font-size: 0.75rem;
  }

  .about__catch {
    border-left-width: 0.25rem;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-left: 0.75rem;
  }

  .about__desc {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.86;
  }

  .about__trainer-photo {
    aspect-ratio: 340 / 360;
    flex: none;
    object-fit: cover;
    width: 100%;
  }

  .about__trainer-name {
    font-size: 0.875rem;
    margin-top: 0.875rem;
  }

  .training {
    padding: 3.375rem 0 4.375rem;
  }

  .training .section-heading {
    margin-bottom: 1.625rem;
  }

  .training .section-heading__en {
    font-size: 2rem;
  }

  .training .section-heading__ja {
    font-size: 0.75rem;
  }

  .training__intro-title {
    justify-self: center;
    text-align: center;
    width: fit-content;
  }

  .review {
    padding: 3.375rem 0 4rem;
  }

  .review .section-heading {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .review__cards {
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
  }

  .review__card {
    border-bottom: 1px solid var(--color-text);
    border-top: 1px solid var(--color-text);
    flex: none;
    padding: 0.9375rem 0;
    width: 100%;
  }

  .review__card + .review__card {
    border-top: none;
  }

  .review__card-body {
    gap: 1.0625rem;
  }

  .review__card-photo {
    height: 9.375rem;
    width: 50%;
  }

  .review__card-tag {
    font-size: 0.75rem;
  }

  .review__card-issue {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }

  .review__card-more {
    font-size: 0.625rem;
    padding-top: 0.875rem;
  }

  .review .section-heading__en,
  .qa .section-heading__en,
  .gallery .section-heading__en {
    font-size: 1.5rem;
  }

  .review .section-heading__ja,
  .qa .section-heading__ja,
  .gallery .section-heading__ja {
    font-size: 0.6875rem;
  }

  .review__more-wrap .btn,
  .news__more-wrap .btn {
    font-size: 0.875rem;
    height: 3.75rem;
    letter-spacing: 0.1em;
    max-width: 16.25rem;
    width: 100%;
  }

  .qa {
    padding: 3.375rem 0 4rem;
  }

  .qa .section-heading {
    margin-bottom: 2rem;
  }

  .qa__list {
    margin: 0 auto;
    max-width: var(--content-width);
  }

  .qa__question {
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.9375rem 2rem 0.9375rem 0;
  }

  .qa__question-mark {
    font-size: 1.125rem;
    height: 1.875rem;
    width: 1.875rem;
  }

  .qa__question-text {
    font-size: 1rem;
    line-height: 1.45;
  }

  .qa__answer {
    padding: 0.625rem 0 1.5rem 0;
  }

  .qa__item.is-open .qa__answer {
    gap: 0.625rem;
    padding-left: 0;
  }

  .qa__answer-mark {
    font-size: 1.125rem;
  }

  .qa__answer-text {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.65;
  }

  .gallery {
    padding: 3.375rem 0 4rem;
  }

  .gallery .section-heading {
    margin-bottom: 1.5rem;
  }

  .gallery__grid {
    aspect-ratio: 310 / 150;
    margin-left: auto;
    margin-right: auto;
    max-width: 77.11%;
    overflow: hidden;
    position: relative;
  }

  .gallery__row {
    display: contents;
  }

  .gallery__row+.gallery__row {
    margin-top: 0;
  }

  .gallery__item {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    aspect-ratio: 310 / 150;
    inset: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
  }

  .gallery__item img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
  }

  .gallery__item img.gallery__item-img--top {
    object-position: center 25%;
  }

  .gallery__row:first-child .gallery__item:nth-child(1) {
    animation-name: gallery-slider-1;
  }

  .gallery__row:first-child .gallery__item:nth-child(2) {
    animation-name: gallery-slider-2;
  }

  .gallery__row:first-child .gallery__item:nth-child(3) {
    animation-name: gallery-slider-3;
  }

  .gallery__row:last-child .gallery__item:nth-child(1) {
    animation-name: gallery-slider-4;
  }

  .gallery__row:last-child .gallery__item:nth-child(2) {
    animation-name: gallery-slider-5;
  }

  .gallery__row:last-child .gallery__item:nth-child(3) {
    animation-name: gallery-slider-6;
  }

  .access {
    padding: 1rem 0 4rem;
  }

  .access .section-heading {
    margin-bottom: 0.625rem;
    text-align: left;
  }

  .access .section-heading__en {
    font-size: 1.5rem;
  }

  .access .section-heading__en--large {
    font-size: 1.5rem;
  }

  .access .section-heading__ja {
    font-size: 0.6875rem;
    text-align: left;
  }

  .access .inner {
    width: var(--content-width);
  }

  .access__layout {
    flex-direction: column;
    gap: 1.25rem;
  }

  .access__station {
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin: 0 0 0.875rem;
  }

  .access__map {
    height: 18.75rem;
    order: 2;
    width: 100%;
  }

  .access__info {
    order: 1;
  }

  .access__detail {
    margin-bottom: 1rem;
  }

  .access__detail-label {
    font-size: 0.75rem;
    width: 5.5625rem;
  }

  .access__detail-value {
    font-size: 0.875rem;
  }

  .access__address-building {
    display: block;
  }

  .access__sns {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 2rem;
  }

  .access__sns-link {
    height: 4.875rem;
    max-width: 100%;
    width: 100%;
  }

  .news {
    padding: 3.75rem 0 4rem;
  }

  .news .section-heading {
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .news .section-heading__en {
    font-size: 1.5rem;
    text-align: center;
  }

  .news .section-heading__ja {
    font-size: 0.6875rem;
    text-align: center;
  }

  .news__panel {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 79.6%;
    padding: 1.875rem 5%;
  }

  .news__item {
    padding: 1.125rem 0;
    width: 100%;
  }

  .news__link {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .news__date {
    font-size: 0.875rem;
    height: 1.625rem;
    line-height: 1.625rem;
    padding: 0;
    width: 5.625rem;
  }

  .news__title {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.625rem;
  }

  .recruit {
    flex-direction: column;
    max-height: none;
  }

  .recruit__visual {
    width: 100%;
  }

  .recruit__visual img {
    aspect-ratio: 360 / 130;
    height: auto;
  }

  .recruit__content {
    padding: 2rem 5.22% 4rem;
    width: 100%;
  }

  .recruit .section-heading {
    text-align: center;
  }

  .recruit .section-heading__en {
    font-size: 1.5rem;
  }

  .recruit .section-heading__ja {
    font-size: 0.6875rem;
  }

  .recruit__desc {
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    line-height: 1.7;
    max-width: none;
  }

  .recruit__cta .btn {
    font-size: 0.875rem;
    height: 2.5rem;
    letter-spacing: 0.1em;
    max-width: 15rem;
    width: 100%;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .gallery__item {
    animation: none;
    opacity: 0;
  }

  .gallery__row:first-child .gallery__item:first-child {
    opacity: 1;
  }

  .training__item-icon {
    transition: none;
  }
}