@charset "UTF-8";
@font-face {
  font-family: "GenRyu Serif";
  src: url("../fonts/genryu/GenRyuMin2JP-R.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenRyu Serif";
  src: url("../fonts/genryu/GenRyuMin2JP-B.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --container: 1250px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: #313131;
  background: #F2EFED;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}

.page-shell {
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}

main {
  width: 100%;
  padding-top: var(--header-height);
  flex: 1 0 auto;
}

.container {
  --container: 1250px;
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}
.container--wide {
  --container: 1440px;
}
.container--narrow {
  --container: 1000px;
}

.section {
  padding: 80px 0;
}

.section-title {
  margin: 0 0 68px;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: #ab0000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.brand {
  position: absolute;
  top: 0;
  left: clamp(18px, 2.8vw, 54px);
}
.brand__panel {
  display: flex;
  width: 148px;
  height: 88px;
  padding: 0;
  color: #fff;
  background: #ab0000;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.brand__panel img {
  display: block;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  height: 100%;
  margin-left: 240px;
  padding-right: 37px;
  align-items: center;
  justify-content: flex-end;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  gap: clamp(24px, 2.5vw, 52px);
}
.primary-nav > a, .primary-nav__trigger {
  position: relative;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}
.primary-nav > a::after, .primary-nav__trigger::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #ab0000;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after, .primary-nav__trigger:hover::after, .primary-nav__trigger:focus-visible::after {
  transform: scaleX(1);
}
.primary-nav__item {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}
.primary-nav__submenu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 220px;
  padding: 10px 0;
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s;
}
.primary-nav__submenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}
.primary-nav__submenu a {
  display: block;
  padding: 17px 30px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s ease, padding-left 0.25s ease;
}
.primary-nav__submenu a:hover, .primary-nav__submenu a:focus-visible {
  padding-left: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.language {
  display: flex;
  height: var(--header-height);
  margin-right: -37px;
  align-items: center;
}
.language a {
  padding: 0 12px;
  color: #575757;
  font-size: 1rem;
  font-weight: 700;
}
.language .is-active {
  display: grid;
  place-items: center;
  height: 100%;
  color: #fff;
  background: #ab0000;
  margin-bottom: 20px;
  padding-top: 20px;
}

.menu-toggle {
  display: none;
}

.hero {
  width: 100%;
  overflow: hidden;
}
.hero picture {
  display: block;
  width: 100%;
}
.hero__image {
  display: block;
  width: 100%;
  height: auto;
}
.hero__link {
  display: block;
  cursor: pointer;
}

.hero-popup {
  width: min(900px, 100vw - 40px);
  padding: 0;
  background: #fff;
}
.hero-popup__media img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-popup__body {
  padding: 36px 42px 42px;
}
.hero-popup__title {
  margin: 0 0 20px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #313131;
}
.hero-popup__content {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.8;
  color: #313131;
}
.hero-popup__content > :first-child {
  margin-top: 0;
}
.hero-popup__content > :last-child {
  margin-bottom: 0;
}
.hero-popup__content img {
  max-width: 100%;
  height: auto;
}

.site-footer {
  flex: 0 0 auto;
  margin-top: auto;
  min-height: 291px;
  padding: 29px 40px 20px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.7);
  background: #3b0d0d;
}
.site-footer a {
  color: inherit;
  transition: opacity 0.2s ease;
}
.site-footer a:hover, .site-footer a:focus-visible {
  opacity: 1;
}
.site-footer img {
  opacity: 0.4;
}
.site-footer img:hover {
  opacity: 0.7;
}
.site-footer__inner {
  display: grid;
  width: 100%;
  min-height: 242px;
  margin: 0 auto;
  grid-template-columns: 110px 380px minmax(400px, 1fr) 210px;
  grid-template-rows: 1fr auto;
  column-gap: 30px;
}
.site-footer__brand {
  display: flex;
  min-width: 0;
  grid-column: 1;
  grid-row: 1/3;
  align-items: flex-start;
  flex-direction: column;
}
.site-footer__jexer {
  display: block;
  width: 100%;
}
.site-footer__jexer img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__social {
  display: flex;
  margin-top: 27px;
  align-items: center;
  gap: 13px;
}
.site-footer__social a {
  display: block;
  width: 35px;
  height: 35px;
}
.site-footer__social img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer__jr-group {
  display: block;
  width: 70px;
  height: auto;
  margin-top: auto;
}
.site-footer__menus {
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 160px 170px;
  align-items: start;
  gap: 31px;
}
.site-footer__menu-group {
  min-width: 0;
}
.site-footer__menu-group h2 {
  margin: 7px 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  opacity: 0.7;
}
.site-footer__menu-group ul {
  padding: 0 0 0 10px;
  margin: 0;
  border-left: 1px solid currentColor;
  list-style: none;
}
.site-footer__menu-group li {
  margin: 0;
}
.site-footer__menu-group a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.95;
  opacity: 0.7;
}
.site-footer__menu-group a::before {
  margin-right: 5px;
  content: "▶";
  font-size: 0.6em;
  vertical-align: 0.1em;
}
.site-footer__menu-group a:hover {
  opacity: 1;
}
.site-footer__partners {
  display: flex;
  min-width: 0;
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  align-items: center;
  gap: clamp(18px, 1.5vw, 32px);
}
.site-footer__partners img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  margin: 0;
  flex: 0 0 auto;
  object-fit: contain;
}
.site-footer__partner-logo--technogym {
  width: 97px !important;
}
.site-footer__partner-logo--balanced-body {
  width: 107px !important;
}
.site-footer__partner-logo--gaura {
  width: 111px !important;
}
.site-footer__partner-logo--mizuno {
  width: 45px !important;
}
.site-footer__partner-logo--tanita {
  width: 95px !important;
}
.site-footer__partner-logo--iris-ohyama {
  width: 114px !important;
}
.site-footer__policy {
  display: flex;
  grid-column: 4;
  grid-row: 1/3;
  align-items: flex-end;
  flex-direction: column;
  gap: 14px;
}
.site-footer__policy a {
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
  opacity: 0.7;
}
.site-footer__policy a:hover {
  opacity: 1;
}
.site-footer__company {
  display: flex;
  width: fit-content;
  min-width: 0;
  grid-column: 1/-1;
  grid-row: 2;
  align-self: end;
  align-items: center;
  justify-self: center;
  flex-direction: column;
}
.site-footer__company img {
  display: block;
  width: min(345px, 100%);
  height: auto;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  display: none;
}

.news {
  position: relative;
  background: #f0eae5;
}
.news .container {
  width: min(100% - 64px, 1440px);
}

.news-slider {
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  min-width: 0;
  min-height: 215px;
  padding: 24px 7%;
  border-right: 1px solid rgba(49, 49, 49, 0.2);
}
@media (min-width: 1314px) {
  .news-card {
    padding: 24px 50px;
  }
}
.news-card:last-child {
  border-right: 0;
}
.news-card__inner {
  width: 100%;
}
.news-card time {
  display: inline-block;
  padding: 1px 9px;
  color: #fff;
  background: #ab0000;
  font-size: 0.9rem;
  line-height: 1.45;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.news-card h3 {
  margin: 6px 0 12px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 1.25rem;
}
.news-card h3 a {
  transition: color 0.2s ease;
}
.news-card h3 a:hover, .news-card h3 a:focus-visible {
  color: #ab0000;
}
.news-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}

.news-card--mobile-extra {
  display: none;
}

.news-slider__arrow,
.news-slider__pagination {
  display: none;
}

.news[data-news-carousel] .news-slider {
  --news-arrow-space: 90px;
  position: relative;
  width: 100%;
  min-width: 0;
  padding-inline: var(--news-arrow-space);
  box-sizing: border-box;
  overflow: hidden;
}
.news[data-news-carousel] .news-grid {
  display: flex;
  grid-template-columns: none;
  align-items: stretch;
}
.news[data-news-carousel] .news-card {
  position: relative;
  display: flex;
  width: auto;
  height: auto;
  min-width: 0;
  border: 0;
  align-items: flex-start;
  flex-shrink: 0;
}
.news[data-news-carousel] .news-slider__arrow {
  position: absolute;
  z-index: 5;
  top: calc(50% - 16px);
  display: flex;
  width: 48px;
  height: 154px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}
.news[data-news-carousel] .news-slider__arrow img {
  display: block;
  width: 48px;
  height: 154px;
  pointer-events: none;
}
.news[data-news-carousel] .news-slider__arrow--prev {
  left: 12px;
}
.news[data-news-carousel] .news-slider__arrow--next {
  right: 12px;
}
.news[data-news-carousel] .news-slider__arrow:hover, .news[data-news-carousel] .news-slider__arrow:focus-visible {
  opacity: 0.72;
}
.news[data-news-carousel] .news-slider__arrow:focus-visible {
  outline: 2px solid rgba(171, 0, 0, 0.45);
  outline-offset: 2px;
}
.news[data-news-carousel] .news-slider__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.news[data-news-carousel] .news-slider__pagination.swiper-pagination {
  position: relative;
  inset: auto;
  display: flex;
  width: 100%;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.news[data-news-carousel] .news-slider__pagination.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(49, 49, 49, 0.28);
  opacity: 1;
  transition: width 0.2s ease, border-radius 0.2s ease, background-color 0.2s ease;
}
.news[data-news-carousel] .news-slider__pagination.swiper-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #ab0000;
}

.down-link {
  display: grid;
  place-items: center;
  width: 60px;
  height: 46px;
  margin: 42px auto 0;
}
.down-link img {
  display: block;
  width: 100%;
  height: auto;
}

.concept__source {
  position: relative;
  display: grid;
  height: 147px;
  overflow: hidden;
  place-items: center;
}
.concept__source::before, .concept__source::after {
  position: absolute;
  top: 0;
  width: 190px;
  height: 147px;
  background-repeat: no-repeat;
  background-size: 190px 147px;
  content: "";
  pointer-events: auto;
}
.concept__source::before {
  left: 0;
  background-image: url("../images/bg_s0_L.jpg");
  background-position: left top;
}
.concept__source::after {
  right: 0;
  background-image: url("../images/bg_s0_R.jpg");
  background-position: right top;
}
.concept__source .container {
  position: relative;
  z-index: 1;
}
.concept__source-inner {
  display: grid;
  width: min(100%, 834px);
  margin-inline: auto;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 374px minmax(0, 1fr);
  gap: 24px;
}
.concept__source-line {
  width: 100%;
  height: 1px;
  background: rgba(49, 49, 49, 0.25);
}
.concept__source-logo {
  display: block;
  width: 374px;
  height: auto;
}
.concept__visual {
  display: grid;
  width: 100%;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr;
}
.concept__picture, .concept__overlay {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}
.concept__picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.concept__image {
  display: block;
  width: 100%;
  height: auto;
}
.concept__overlay {
  z-index: 1;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: clamp(120px, 15vw, 290px) 20px clamp(90px, 8vw, 160px);
  color: #fff;
  text-align: center;
  pointer-events: auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.concept__message {
  width: min(100%, 680px);
  margin: 0;
}
.concept__message h2 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 2.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.concept__message p {
  margin: 0;
  font-size: clamp(0.9rem, 1.1vw, 1.3rem);
  line-height: 1.65;
  letter-spacing: 0.03em;
}
.concept__tagline {
  width: calc(100% - 40px);
  margin: 0;
  font-size: clamp(1.65rem, 2.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.feature-panels {
  padding-top: 60px;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.feature-panel + .feature-panel {
  border-top: 2px solid #fff;
}
.feature-panel__image {
  display: block;
  width: 100%;
  height: auto;
}
.feature-panel__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - 40px, 600px);
  transform: translate(-50%, -50%);
  text-align: center;
}
.feature-panel__content h2 {
  margin: 0 0 4px;
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.feature-panel__content p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.life-stage {
  position: relative;
  padding: 52px 0 24px;
  overflow: hidden;
}
.life-stage__layout {
  display: grid;
  width: min(100%, 1396px);
  margin-inline: auto;
  grid-template-columns: minmax(360px, 520px) minmax(0, 826px);
  align-items: center;
  gap: 50px;
}
.life-stage__copy {
  padding-left: 22px;
}
.life-stage__copy h2 {
  margin: 20px 0 0;
  color: #313131;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.life-stage__copy h2 strong {
  color: #ab0000;
  font-weight: inherit;
}
.life-stage__eyebrow {
  display: flex;
  margin: 0;
  color: #313131;
  font-size: clamp(0.8rem, 1.25vw, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
  align-items: center;
  gap: 10px;
}
.life-stage__eyebrow::before {
  width: 19px;
  height: 2px;
  background: #ab0000;
  content: "";
  flex: 0 0 19px;
}
.life-stage__swiper {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.life-stage .swiper-wrapper {
  align-items: flex-start;
}
.life-stage__media {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.life-stage__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 826/498;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.life-stage__media figcaption {
  position: absolute;
  bottom: 23px;
  left: 44px;
  color: #313131;
}
.life-stage__media figcaption h3 {
  margin: 0 0 4px;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
}
.life-stage__media figcaption p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.3;
}
.life-stage__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 72px;
  height: 120px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  place-items: center;
}
.life-stage__arrow img {
  display: block;
  width: 34px;
  height: auto;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.life-stage__arrow--prev {
  left: 10px;
}
.life-stage__arrow--next {
  right: 10px;
}
.life-stage__arrow:hover img {
  opacity: 1;
}
.life-stage__arrow--prev:hover img {
  transform: translateX(-3px);
}
.life-stage__arrow--next:hover img {
  transform: translateX(3px);
}
.life-stage__arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.club-experience {
  position: relative;
  padding-bottom: 100px;
  background: #f4f4f4;
}
.club-experience__gallery {
  display: grid;
  height: clamp(260px, 18vw, 340px);
  grid-template-columns: 31.25% 34.895833% 33.854167%;
}
.club-experience__media {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.club-experience__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.club-experience__copy {
  position: absolute;
  z-index: 2;
  bottom: 51px;
  left: 49%;
  display: flex;
  width: min(100% - 80px, 843px);
  min-height: 79px;
  padding: 10px 30px;
  color: #fff;
  background: #ab0000;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 1.8vw, 34px);
  text-align: center;
  white-space: nowrap;
}
.club-experience__copy p,
.club-experience__copy h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}
.club-experience__copy p {
  font-size: clamp(1.1rem, 1.25vw, 1.625rem);
}
.club-experience__copy h2 {
  font-size: clamp(1.65rem, 1.82vw, 2rem);
  letter-spacing: 0.03em;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #ab0000;
  font-size: 0.9rem;
  font-weight: 700;
  align-items: center;
  gap: 14px;
}
.text-link::after {
  width: 50px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.2s ease;
}
.text-link:hover::after {
  width: 78px;
}

.facilities {
  overflow: hidden;
  padding: clamp(72px, 8vw, 100px) 0;
  background: #f7f7f7;
}
.facilities__layout {
  display: grid;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 82fr) minmax(0, 6fr) minmax(0, 37fr);
  align-items: stretch;
}
.facilities__visual {
  position: relative;
  min-width: 0;
  grid-column: 1;
  padding-left: clamp(102px, 10vw, 155px);
}
.facilities__vertical-title {
  position: absolute;
  top: -65px;
  left: 0;
  z-index: 0;
  display: block;
  width: clamp(102px, 12vw, 188px);
  height: auto;
  pointer-events: none;
  user-select: none;
}
.facilities__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 688/469;
  background: #dedede;
}
.facilities__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.32s ease, transform 0.7s ease;
}
.facilities.is-changing .facilities__image {
  opacity: 0;
  transform: scale(1.015);
}
.facilities.is-changing .facilities__copy-detail {
  opacity: 0;
  transform: translateY(8px);
}
.facilities__copy {
  display: flex;
  min-width: 0;
  padding: clamp(60px, 5vw, 82px) 5% clamp(64px, 5vw, 86px);
  flex-direction: column;
  justify-content: space-evenly;
  grid-column: 3;
}
.facilities__copy-intro {
  max-width: 430px;
}
.facilities__headline {
  margin: 0;
  color: #ab0000;
  font-size: clamp(40px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.facilities__lead {
  position: relative;
  margin: 2px 0 0;
  padding-left: 28px;
  color: #191919;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.facilities__lead::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 18px;
  height: 2px;
  background: #ab0000;
  content: "";
}
.facilities__copy-detail {
  max-width: 430px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.facilities__copy-detail h2 {
  margin: 0 0 12px;
  color: #090909;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.facilities__copy-detail p {
  margin: 0;
  color: #292929;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.facilities__pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 3;
  display: flex;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.facilities__pagination-button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.facilities__pagination-button:hover, .facilities__pagination-button:focus-visible {
  background: #fff;
}
.facilities__pagination-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.facilities__pagination-button.is-active {
  width: 28px;
  border-color: #ab0000;
  background: #ab0000;
}

.cycle-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  z-index: 1;
  margin-top: 10px;
}
.cycle-tabs__button {
  display: flex;
  min-width: 0;
  height: clamp(112px, 9.5vw, 132px);
  padding: 10px 13px 9px;
  border: 0;
  border-right: 4px solid #f7f7f7;
  color: #8C8C8C;
  background: #d8d8d8;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.cycle-tabs__button:last-child {
  border-right: 0;
}
.cycle-tabs__button:hover, .cycle-tabs__button:focus-visible {
  color: #666;
  background: #cecece;
}
.cycle-tabs__button:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid #ab0000;
  outline-offset: -4px;
}
.cycle-tabs__button.is-active {
  color: #fff;
  background: #ab0000;
}
.cycle-tabs__button.is-active:hover, .cycle-tabs__button.is-active:focus-visible {
  color: #fff;
  background: #ab0000;
}
.cycle-tabs__button.is-active .cycle-tabs__kanji {
  opacity: 0.7;
}
.cycle-tabs__button.is-active .cycle-tabs__label {
  color: #fff;
}
.cycle-tabs__kanji {
  display: inline-flex;
  font-size: clamp(39px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  align-items: flex-end;
}
.cycle-tabs__punctuation {
  margin: 0px 0 -6px -3px;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1;
}
.cycle-tabs__label {
  display: block;
  margin-top: auto;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  color: #6D6D6D;
}

@media (prefers-reduced-motion: reduce) {
  .facilities__image, .facilities__copy-detail {
    transition: none;
  }
}
.vertical-words {
  color: #e8ddd7;
  font-size: 4.8rem;
  line-height: 1.05;
}
.vertical-words b {
  display: block;
  font-weight: 400;
}

.accent-title {
  margin: 0;
  color: #ab0000;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
}

.section-heading {
  position: relative;
  text-align: center;
}
.section-heading__ghost {
  position: absolute;
  z-index: -1;
  top: -76px;
  left: 60%;
  color: rgba(234, 224, 220, 0.72);
  font-size: 15rem;
  line-height: 1;
}
.section-heading__ghost.s2 {
  left: 20%;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 40px);
  letter-spacing: 0.05em;
}
.section-heading h2 span {
  color: #ab0000;
}
.section-heading p {
  margin: 0;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}
.section-heading--compact {
  margin-bottom: 46px;
}

.equipment {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 120px 0 100px !important;
}
.equipment__manufacturers {
  display: flex;
  margin: 34px auto 26px;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 5vw, 72px);
}
.equipment__manufacturers--cardio {
  margin-top: 0;
}
.equipment__manufacturer {
  display: inline-flex;
  min-height: 30px;
  color: #111;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.equipment__manufacturer--technogym {
  padding: 3px 8px 2px;
  border: 2px solid #111;
  border-radius: 2px;
  background: #ffe257;
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: -0.05em;
  transform: skew(-8deg);
}
.equipment__manufacturer--hoist, .equipment__manufacturer--precor {
  font-size: 1.12rem;
  font-style: italic;
  letter-spacing: -0.07em;
}
.equipment__manufacturer--precor {
  position: relative;
  padding-left: 13px;
}
.equipment__manufacturer--precor::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 19px;
  background: #111;
  box-shadow: 5px 0 0 #111, 10px 0 0 #111;
  content: "";
  transform: translateY(-50%) skew(-13deg);
}
.equipment__manufacturer--concept2 {
  font-size: 1rem;
  font-style: italic;
  letter-spacing: -0.04em;
}
.equipment__brand-logos {
  display: flex;
  width: min(100%, 710px);
  margin: 32px auto 44px;
  align-items: center;
  justify-content: center;
  gap: clamp(70px, 5.75vw, 110px);
}
.equipment__brand-logos--cardio {
  margin-bottom: 44px;
}
.equipment__brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
.equipment__brand-logo--technogym {
  width: clamp(120px, 8.1vw, 155px);
}
.equipment__brand-logo--hoist {
  width: clamp(128px, 8.6vw, 165px);
}
.equipment__brand-logo--precor {
  width: clamp(132px, 8.75vw, 168px);
}
.equipment__brand-logo--aconcept {
  width: clamp(128px, 8.6vw, 165px);
}
.equipment hr {
  max-width: 1150px;
  height: 1px;
  margin: 68px auto 54px;
  border: 0;
  background: repeating-linear-gradient(to right, #b8b0aa 0, #b8b0aa 10px, transparent 10px, transparent 20px);
}
.equipment .section-heading--compact {
  margin-bottom: 22px;
}

.equipment-tabs {
  display: flex;
  width: min(100%, 1090px);
  margin: 0 auto 34px;
  gap: 26px;
  padding-inline: clamp(72px, 6.25vw, 120px);
  box-sizing: border-box;
  align-items: stretch;
  justify-content: flex-start;
}

.equipment-tab {
  width: auto;
  min-width: max-content;
  flex: 0 0 auto;
  min-height: 55px;
  padding: 4px 18px;
  color: #c4c4c4;
  border: 0;
  border-left: 4px solid #c9c9c9;
  background: transparent;
  cursor: pointer;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  text-align: left;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.equipment-tab:hover, .equipment-tab:focus-visible {
  color: #999;
  border-left-color: #aaa;
}
.equipment-tab:focus-visible {
  outline: 2px solid rgba(171, 0, 0, 0.4);
  outline-offset: 3px;
}
.equipment-tab.is-active {
  color: #252525;
  border-left-color: #ab0000;
}
.equipment-tab.is-active .equipment-tab__primary {
  font-size: clamp(2rem, 0.9vw, 2.5rem);
  line-height: 0.9;
}
.equipment-tab.is-active .equipment-tab__secondary {
  margin-top: 3px;
  font-size: clamp(1.2rem, 0.85vw, 1.2rem);
  line-height: 0.9;
}
.equipment-tab__primary {
  display: block;
  max-width: none;
  overflow: visible;
  font-size: clamp(0.92rem, 0.9vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-overflow: clip;
  white-space: nowrap;
}
.equipment-tab__secondary {
  display: block;
  margin-top: 3px;
  font-size: clamp(0.8rem, 0.85vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.equipment-panels {
  position: relative;
}

.equipment-gallery {
  display: none;
  width: min(100%, 1090px);
  margin: 0 auto;
}
.equipment-gallery.is-active {
  display: block;
}
.equipment-gallery--cardio {
  display: block;
}
.equipment-gallery__empty {
  margin: 30px 0;
  color: #777;
  font-size: 0.9rem;
  text-align: center;
}

.equipment-slider-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(72px, 6.25vw, 120px);
  box-sizing: border-box;
}

.equipment-slider {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.equipment-slider .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
}
.equipment-slider__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: flex;
  width: 48px;
  height: 154px;
  padding: 0;
  color: #333;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}
.equipment-slider__arrow img {
  display: block;
  width: 48px;
  height: 154px;
  pointer-events: none;
  user-select: none;
}
.equipment-slider__arrow--prev {
  left: 0;
}
.equipment-slider__arrow--next {
  right: 0;
}
.equipment-slider__arrow:hover, .equipment-slider__arrow:focus-visible {
  opacity: 0.65;
}
.equipment-slider__arrow:focus-visible {
  outline: 2px solid rgba(171, 0, 0, 0.4);
  outline-offset: 2px;
}
.equipment-slider__arrow.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
}
.equipment-slider__arrow.swiper-button-lock {
  display: none;
}

.equipment-card {
  display: flex;
  height: auto;
  min-width: 0;
  margin: 0;
  padding: clamp(10px, 0.8vw, 14px);
  aspect-ratio: 1/1;
  border: 6px solid #ded2c8;
  background: #fff;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.equipment-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fine-print {
  width: min(100%, 850px);
  margin: 32px auto 0;
  font-size: 0.9rem;
  line-height: 1.8;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  padding-left: 20px;
}

.classes {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0 0 clamp(42px, 3.2vw, 62px);
  background: #ebebeb;
}
.classes__inner {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}
.classes__heading {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: clamp(145px, 9.9vw, 190px);
  margin: 0;
  padding: clamp(42px, 3.1vw, 60px) 16px clamp(18px, 1.4vw, 27px);
  overflow: visible;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.classes__heading h2 {
  margin: 0;
  color: #313131;
  font-size: clamp(2.15rem, 2.35vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.035em;
}
.classes__heading h2 span {
  color: #ab0000;
}
.classes__heading p {
  margin: 1px 0 0;
  color: #313131;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.classes__heading-word {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(50% - 500px);
  display: block;
  width: clamp(200px, 13vw, 250px);
  height: auto;
  pointer-events: none;
  user-select: none;
}
.classes__gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.classes__gallery-track {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.classes__media {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 233/336;
}
.classes__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.classes__panel {
  margin-top: 8px;
  padding: 40px 0;
  background: #fff;
}
.classes__details {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(236px, 14.8vw, 284px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  text-align: center;
}
.classes__details::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: calc(100% - 30px);
  background: repeating-linear-gradient(to bottom, rgba(49, 49, 49, 0.3) 0 5px, transparent 5px 10px);
  content: "";
  transform: translate(-50%, -50%);
}
.classes__detail {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.classes__label {
  display: inline-flex;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(49, 49, 49, 0.58);
  color: #313131;
  font-size: clamp(1.05rem, 1.2vw, 1.5rem);
  line-height: 1.25;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.classes__divider {
  display: none;
}
.classes__items {
  display: grid;
  width: min(90%, 400px);
  margin-top: clamp(14px, 1.2vw, 22px);
  margin-inline: auto;
  grid-template-rows: repeat(2, minmax(clamp(62px, 4.8vw, 82px), auto));
  align-items: stretch;
}
.classes__item {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 56px 1px minmax(0, 1fr);
  column-gap: clamp(18px, 1.5vw, 28px);
  align-items: center;
}
.classes__item-key {
  display: flex;
  color: #313131;
  font-size: clamp(1.6rem, 2.35vw, 2.2rem);
  font-weight: bold;
  line-height: 1;
  align-items: center;
  justify-content: center;
}
.classes__item-line {
  display: block;
  width: 1px;
  height: clamp(46px, 3.8vw, 62px);
  background: rgba(49, 49, 49, 0.72);
}
.classes__item p {
  margin: 0;
  color: #313131;
  font-size: clamp(0.95rem, 1.05vw, 1.22rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.015em;
  text-align: left;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.classes__tagline {
  display: flex;
  min-height: clamp(58px, 4vw, 76px);
  margin: 18px 0 0;
  color: #313131;
  font-size: clamp(1.25rem, 1.48vw, 1.78rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.035em;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.facility-upgrade {
  position: relative;
  overflow: hidden;
  padding: 128px 0 58px;
}
.facility-upgrade__heading {
  margin-bottom: 26px;
  text-align: center;
}
.facility-upgrade__heading h2 {
  margin: 0;
  color: #313131;
  font-size: clamp(2rem, 2.45vw, 2.85rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.045em;
}
.facility-upgrade__heading h2 span {
  color: #ab0000;
}
.facility-upgrade__heading p {
  margin: 0;
  color: #313131;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.facility-upgrade__slider-wrap {
  position: relative;
  width: min(100% - 160px, 1230px);
  margin-inline: auto;
  transition-timing-function: linear !important;
}
.facility-upgrade__slider {
  width: 100%;
  overflow: hidden;
}
.facility-upgrade__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.facility-upgrade__card {
  display: flex;
  height: auto;
  min-width: 0;
  margin: 0;
  background: #e7e7e7;
  flex-direction: column;
}
.facility-upgrade__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 380/216;
  background: #d9d5d1;
}
.facility-upgrade__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-upgrade__number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  color: #ab0000;
  background: rgba(255, 255, 255, 0.82);
  font-size: 1.7rem;
  line-height: 1;
  place-items: center;
}
.facility-upgrade__body {
  min-height: 139px;
  padding: 16px 24px 23px;
  box-sizing: border-box;
}
.facility-upgrade__body h3 {
  margin: 0 0 4px;
  color: #313131;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.facility-upgrade__body p {
  margin: 0;
  color: #313131;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 0.84rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.facility-upgrade__arrow {
  position: absolute;
  z-index: 8;
  top: 108px;
  display: flex;
  width: 48px;
  height: 110px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}
.facility-upgrade__arrow img {
  display: block;
  width: 34px;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.facility-upgrade__arrow--prev {
  left: -170px;
}
.facility-upgrade__arrow--next {
  right: -170px;
}
.facility-upgrade__arrow:hover, .facility-upgrade__arrow:focus-visible {
  opacity: 0.6;
}
.facility-upgrade__arrow:focus-visible {
  outline: 2px solid rgba(171, 0, 0, 0.4);
  outline-offset: 4px;
}

.safety-management {
  padding: clamp(80px, 7vw, 116px) 0 clamp(100px, 8vw, 150px);
  overflow: hidden;
  background: rgba(232, 232, 232, 0.5);
}
.safety-management__heading {
  width: min(100% - 48px, 760px);
  margin: 0 auto clamp(24px, 2vw, 34px);
  text-align: center;
}
.safety-management__title {
  margin: 0;
  color: #222;
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.safety-management__title span {
  color: #ab0000;
}
.safety-management__subtitle {
  margin: 4px 0 0;
  color: #222;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.safety-gallery {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}
.safety-gallery__stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #dedbd8;
  touch-action: pan-y;
}
.safety-gallery__main-image {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s ease;
}
.safety-gallery__main-image.is-changing {
  opacity: 0.35;
}
.safety-gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(360px, 34%);
  min-height: 130px;
  padding: 26px 40px;
  color: #fff;
  background: rgba(52, 50, 49, 0.72);
  justify-content: center;
  flex-direction: column;
}
.safety-gallery__caption-title {
  margin: 0 0 6px;
  font-size: clamp(21px, 1.6vw, 26px);
  font-weight: 700;
  line-height: 1.3;
}
.safety-gallery__caption-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.safety-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: none;
  width: 60px;
  height: 120px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}
.safety-gallery__arrow span {
  display: block;
  width: 54px;
  height: 54px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.safety-gallery__arrow--prev {
  left: 10px;
}
.safety-gallery__arrow--prev span {
  transform: rotate(-45deg);
}
.safety-gallery__arrow--next {
  right: 10px;
}
.safety-gallery__arrow--next span {
  transform: rotate(135deg);
}
.safety-gallery__thumbnails {
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.safety-gallery__thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  aspect-ratio: 16/8.4;
  background: #d7d4d1;
  cursor: pointer;
}
.safety-gallery__thumbnail::after {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.safety-gallery__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.safety-gallery__thumbnail:hover img, .safety-gallery__thumbnail:focus-visible img {
  transform: scale(1.04);
}
.safety-gallery__thumbnail:focus-visible {
  outline: 2px solid #ab0000;
  outline-offset: 3px;
}
.safety-gallery__thumbnail.is-active::after {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
}

.coach-team {
  padding: 88px 0 220px;
  color: #2d2b2a;
}
.coach-team__inner {
  width: min(100% - 48px, 1250px);
  margin: 0 auto;
}
.coach-team__header {
  margin-bottom: 28px;
  text-align: center;
}
.coach-team__title {
  margin: 0;
  font-size: clamp(40px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.coach-team__subtitle {
  margin: 4px 0 0;
  font-size: clamp(21px, 1.3vw, 25px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.coach-team__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.coach-team__item {
  min-width: 0;
}
.coach-team__image {
  display: block;
  width: 100%;
  aspect-ratio: 410/222;
  object-fit: cover;
}
.coach-team__body {
  padding: 17px 18px 0;
}
.coach-team__item-title {
  margin: 0 0 9px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.coach-team__description {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.coach-team__description strong {
  font-weight: 700;
}

.member-referral {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(400px, 28.42vw, 582px);
  color: #45413f;
  background: #edf5f8;
}
.member-referral__visual {
  position: absolute;
  z-index: 0;
  background-image: url("../images/index_s10_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  inset: 0;
}
.member-referral__content {
  position: absolute;
  top: 29.5%;
  left: 54.4%;
  z-index: 1;
  width: min(520px, 38%);
}
.member-referral__title {
  margin: 0;
  font-size: clamp(25px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.member-referral__rate {
  display: inline-block;
  margin: 0 0.08em;
  color: #b60000;
  font-size: 1.65em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  vertical-align: -0.05em;
}
.member-referral__description {
  margin: 42px 0 0;
  font-size: clamp(16px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.035em;
}

.facility-tour {
  overflow: hidden;
  padding: 110px 0 130px;
  color: #282828;
}
.facility-tour p {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.facility-tour__layout {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) clamp(760px, 46vw, 900px);
  align-items: center;
}
.facility-tour__content {
  width: min(100%, 480px);
  margin-left: max(40px, (100vw - 1250px) / 2 + 24px);
  padding-right: 40px;
}
.facility-tour__title {
  display: flex;
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  gap: 20px;
}
.facility-tour__title span {
  color: #ab0000;
}
.facility-tour__label {
  display: inline-flex;
  min-height: 50px;
  margin: 35px 0 0;
  padding: 8px 22px;
  color: #fff;
  background: #ab0000;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  align-items: center;
  justify-content: center;
}
.facility-tour__description {
  margin: 19px 0 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.015em;
}
.facility-tour__flow {
  margin-top: 31px;
}
.facility-tour__flow-title {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.facility-tour__step {
  margin-top: 25px;
}
.facility-tour__step-title, .facility-tour__step-text {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.015em;
}
.facility-tour__step-title {
  font-weight: 700;
}
.facility-tour__step-text {
  font-weight: 400;
}
.facility-tour__visual {
  width: 100%;
  height: clamp(560px, 32.3vw, 620px);
  margin: 0;
}
.facility-tour__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.club-location {
  position: relative;
  overflow: hidden;
  padding: 122px 0 150px;
  color: #282828;
}
.club-location__heading {
  position: relative;
  z-index: 2;
  text-align: center;
}
.club-location__title {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.club-location__subtitle {
  margin: 2px 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.club-location__cards-wrap {
  position: relative;
  margin-top: 10px;
}
.club-location__cards-wrap::before {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 100vw;
  height: 69%;
  background: #e7e5e4;
  content: "";
  transform: translateX(-50%);
}
.club-location__cards {
  position: relative;
  z-index: 1;
  display: grid;
  width: calc(100% - 40px);
  max-width: 1055px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.club-location__card {
  position: relative;
  display: flex;
  min-width: 0;
  aspect-ratio: 7/9;
  box-sizing: border-box;
  color: #fff;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
}
.club-location__card--jexer {
  padding-bottom: 19%;
  background: #c60000;
}
.club-location__card--aura {
  padding-bottom: 21%;
  background: #b58b3e;
}
.club-location__card--coming {
  padding-bottom: 0;
  background: #d6d6d6;
  justify-content: center;
}
.club-location__logo {
  position: absolute;
  top: 27%;
  left: 50%;
  display: block;
  height: auto;
  transform: translateX(-50%);
}
.club-location__logo--jexer {
  width: 70%;
}
.club-location__logo--aura {
  top: 26%;
  width: 61%;
}
.club-location__name {
  position: relative;
  bottom: auto;
  left: auto;
  width: 100%;
  margin: 0;
  padding: 0 15px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-align: center;
}
.club-location__name--jexer {
  font-size: 23px;
  line-height: 1.25;
}
.club-location__coming {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
}
.club-location__coming span {
  display: inline;
}
.club-location__coming span + span::before {
  content: " ";
}

.image-slot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8e8883, #423f3d);
}
.image-slot::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 32px, rgba(255, 255, 255, 0.06) 32px 33px);
  content: "";
}
.image-slot > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trainer-grid article {
  padding-bottom: 24px;
  background: #f7f7f7;
}
.trainer-grid .image-slot {
  min-height: 225px;
}
.trainer-grid h3,
.trainer-grid p {
  margin-right: 20px;
  margin-left: 20px;
}
.trainer-grid h3 {
  margin-top: 18px;
  margin-bottom: 6px;
}
.trainer-grid p {
  margin-top: 0;
  font-size: 0.85rem;
  line-height: 1.75;
}

.referral {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1.2fr 0.8fr;
}
.referral__media {
  background: linear-gradient(135deg, #453f3b, #b8aaa0);
}
.referral__copy {
  display: flex;
  padding: 60px 11%;
  color: #fff;
  background: #2d2a29;
  justify-content: center;
  flex-direction: column;
}
.referral__copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1.4;
}
.referral__copy p {
  margin: 28px 0 0;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4f0ec;
}
.visit__copy {
  padding: 100px max(50px, 10vw);
}
.visit__copy h2 {
  margin: 0 0 38px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.35;
}
.visit__copy h3 {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 18px;
  color: #fff;
  background: #ab0000;
}
.visit__copy > p:not(.section-kicker) {
  max-width: 620px;
  font-size: 0.9rem;
}
.visit__copy ol {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.visit__copy li {
  margin: 12px 0;
}
.visit__copy li b,
.visit__copy li span {
  display: block;
}
.visit__copy li span {
  padding-left: 86px;
  font-size: 0.86rem;
}
.visit__media {
  min-height: 650px;
  background: linear-gradient(135deg, #a09a96, #363231);
}

.button {
  display: inline-flex;
  min-width: 210px;
  min-height: 52px;
  padding: 10px 24px;
  color: #fff;
  background: #ab0000;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.2s ease;
}
.button:hover {
  background: #8f0000;
}

.stores {
  background: linear-gradient(#fff 0 33%, #efefef 33% 100%);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.store-card {
  display: flex;
  min-height: 450px;
  padding: 55px 30px;
  border: 1px solid #ddd;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-card img {
  width: 250px;
  height: 115px;
  object-fit: contain;
}
.store-card span {
  margin-top: auto;
  font-size: 1.4rem;
}
.store-card strong {
  color: #ab0000;
  font-size: 3.2rem;
}
.store-card--red {
  color: #fff;
  background: #ab0000;
  border-color: #ab0000;
}
.store-card--muted {
  color: #777;
  background: #f6f6f6;
}
.store-card--muted strong {
  color: #777;
  font-size: 2rem;
}

a.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.faq-section {
  padding: 126px 0 205px;
  color: #252525;
  background: #f4f1ef;
}
.faq-section__inner {
  width: calc(100% - 80px);
  max-width: 990px;
  margin: 0 auto;
}
.faq-section__title {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(37, 37, 37, 0.38);
  font-size: 42px;
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.22em;
}
.faq-section__list {
  margin-top: 34px;
}
.faq-section__item + .faq-section__item {
  margin-top: 14px;
}
.faq-section__item.is-open {
  margin-bottom: 44px;
}
.faq-section__item.is-open .faq-section__icon {
  transform: rotate(-90deg);
}
.faq-section__question {
  display: inline-flex;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  align-items: center;
}
.faq-section__question:hover .faq-section__question-text, .faq-section__question:focus-visible .faq-section__question-text {
  color: #ab0000;
}
.faq-section__question-mark {
  display: flex;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #ab0000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
}
.faq-section__question-text {
  margin-left: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.025em;
  transition: color 0.25s ease;
}
.faq-section__icon {
  display: flex;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  flex: 0 0 28px;
  transition: transform 0.3s ease;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #666;
}
.faq-section__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.faq-section__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding-left: 50px;
  opacity: 0;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.faq-section__answer-inner {
  overflow: hidden;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.faq-section__item.is-open .faq-section__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-section__item.is-open .faq-section__icon .mdi {
  transform: rotate(0deg);
}
.faq-section__icon .mdi {
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.fc_white {
  color: #ffffff !important;
}

.news-card[role=button] {
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.news-card[role=button] h3 {
  transition: color 0.2s ease;
}
.news-card[role=button]:hover, .news-card[role=button]:focus-visible {
  background: rgba(255, 255, 255, 0.56);
}
.news-card[role=button]:hover h3, .news-card[role=button]:focus-visible h3 {
  color: #ab0000;
}
.news-card[role=button]:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid rgba(171, 0, 0, 0.42);
  outline-offset: -2px;
}

.news-expanded {
  display: none;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(49, 49, 49, 0.2);
}
.news-expanded .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 56px;
}
.news-expanded .news-card:nth-child(3n) {
  border-right: 0;
}
.news-expanded .news-card:nth-child(n+4) {
  position: relative;
}
.news-expanded .news-card:nth-child(n+4)::before {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(49, 49, 49, 0.2);
  content: "";
}

.news-slider--expanded {
  position: relative;
}

.down-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.down-link img {
  transition: transform 0.35s ease;
}
.down-link.is-open img {
  transform: rotate(180deg);
}
.down-link:focus-visible {
  outline: 2px solid rgba(171, 0, 0, 0.45);
  outline-offset: 5px;
}

body.news-modal-open {
  overflow: hidden;
}

.news-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  padding: 32px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.news-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.news-modal.is-open .news-modal__dialog {
  transform: translateY(0) scale(1);
}
.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(3px);
}
.news-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  background: #f0eae5;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  outline: none;
  transform: translateY(18px) scale(0.985);
  transition: transform 0.28s ease;
}
.news-modal__content {
  min-height: 100%;
}
.news-modal__close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}
.news-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  background: #313131;
}
.news-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.news-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.news-modal__close:hover, .news-modal__close:focus-visible {
  background: #fff;
}
.news-modal__close:focus-visible {
  outline: 2px solid rgba(171, 0, 0, 0.5);
  outline-offset: 3px;
}

.news-detail {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}
.news-detail__media {
  min-width: 0;
  margin: 0;
  background: #ddd;
}
.news-detail__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  padding: 24px;
  background: #fff;
  object-fit: contain;
}
.news-detail__body {
  padding: 66px 52px 54px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.news-detail__body time {
  display: inline-block;
  margin-bottom: 14px;
  padding: 2px 10px;
  color: #fff;
  background: #ab0000;
  font-size: 0.86rem;
  line-height: 1.5;
}
.news-detail__body h2 {
  margin: 0 0 30px;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
}
.news-detail__content p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 2;
}
.news-detail__content p + p {
  margin-top: 18px;
}

.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1000;
  display: flex;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.85);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(12px);
  align-items: center;
  justify-content: center;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
}
.back-to-top__arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg) translate(2px, 2px);
}

.privacy-popup {
  /*width: min(1000px, calc(100vw - 48px));
  max-width: 1000px;
  max-height: calc(100vh - 80px);
  padding: 0;
  background: #fff;
  color: #282828;
  overflow: hidden;*/
}
.privacy-popup .privacy_t {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 10vh 5%;
}
.privacy-popup h1 {
  margin: 0 0 50px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.privacy-popup h2 {
  margin: 48px 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
.privacy-popup h2:first-of-type {
  margin-top: 0;
}
.privacy-popup h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}
.privacy-popup p {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}

.store-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #f7f7f7;
}
.store-banner__slider-wrap {
  position: relative;
}
.store-banner__slider {
  overflow: visible;
  width: min(100%, 875px);
  margin: 0 auto;
}
.store-banner__slide {
  flex-shrink: 0;
  opacity: 0.2;
  transition: opacity 0.45s ease;
}
.store-banner__slide.swiper-slide-active {
  opacity: 1;
}
.store-banner__link {
  display: block;
  width: 100%;
  cursor: zoom-in;
}
.store-banner__link img {
  display: block;
  width: 100%;
  height: auto;
}
.store-banner__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: flex;
  width: 50px;
  height: 80px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}
.store-banner__arrow img {
  display: block;
  width: 32px;
  height: auto;
}
.store-banner__arrow--prev {
  left: clamp(24px, 7.5vw, 145px);
}
.store-banner__arrow--next {
  right: clamp(24px, 7.5vw, 145px);
}
.store-banner__arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.store-banner__pagination {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.store-banner__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 !important;
  background: #d4d4d4;
  opacity: 1;
}
.store-banner__pagination .swiper-pagination-bullet-active {
  background: #bd0008;
}

.store-overview {
  overflow: hidden;
  padding-top: 30px;
  background: #f7f7f7;
}
.store-overview__title {
  margin: 0 0 20px;
  color: #282828;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: center;
}
.store-overview__stage {
  position: relative;
  overflow: hidden;
}
.store-overview__slider {
  width: 100%;
  overflow: hidden;
}
.store-overview__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.store-overview__slide {
  height: auto;
  opacity: 1 !important;
}
.store-overview__link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2/1;
  color: #fff;
  cursor: zoom-in;
}
.store-overview__link::before, .store-overview__link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}
.store-overview__link::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.62) 100%);
}
.store-overview__link::after {
  display: none;
}
.store-overview__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.store-overview__link:hover img {
  transform: scale(1.015);
}
.store-overview .swiper-slide-active .store-overview__link::after {
  opacity: 1;
}
.store-overview .swiper-slide-active .store-overview__caption {
  opacity: 1;
  transform: translateY(0);
}
.store-overview__caption {
  position: absolute;
  right: 40px;
  bottom: clamp(42px, 4vw, 76px);
  left: 40px;
  z-index: 3;
  color: #fff;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.store-overview__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: flex;
  width: 64px;
  height: 180px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}
.store-overview__arrow img {
  display: block;
  width: 48px;
  height: auto;
}
.store-overview__arrow--prev {
  left: 6.6%;
}
.store-overview__arrow--next {
  right: 6.6%;
}
.store-overview__pagination {
  position: static !important;
  display: flex;
  padding: 25px 0 80px;
  justify-content: center;
  align-items: center;
}
.store-overview__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 5px !important;
  background: #d4d4d4;
  opacity: 1;
}
.store-overview__pagination .swiper-pagination-bullet-active {
  background: #c40012;
}

.store-overview-fancybox .fancybox__caption {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

.store-equipment {
  padding: 34px 0 34px;
  color: #505050;
  background: #f7f7f7;
}
.store-equipment__inner {
  width: min(100% - 80px, 1100px);
  margin: 0 auto;
}
.store-equipment__title {
  margin: 0;
  color: #484848;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: center;
}
.store-equipment__tabs {
  display: flex;
  margin-top: 82px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(75, 75, 75, 0.65);
  align-items: center;
  gap: 42px;
}
.store-equipment__tab {
  display: inline-flex;
  padding: 0;
  border: 0;
  color: #a4a4a4;
  background: transparent;
  font: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  cursor: pointer;
  align-items: center;
  gap: 11px;
  transition: color 0.2s ease;
}
.store-equipment__tab::before {
  display: block;
  width: 8px;
  height: 35px;
  background: #aaa;
  content: "";
  transition: background 0.2s ease;
}
.store-equipment__tab:hover, .store-equipment__tab:focus-visible, .store-equipment__tab.is-active {
  color: #505050;
}
.store-equipment__tab.is-active::before {
  background: #ab0000;
}
.store-equipment__tab:focus-visible {
  outline: 2px solid #ab0000;
  outline-offset: 5px;
}
.store-equipment__panel {
  min-height: 133px;
}
.store-equipment__grid {
  display: grid;
  margin-top: 31px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 26px;
  align-items: center;
}
.store-equipment__item {
  display: flex;
  min-width: 0;
  justify-content: center;
}
.store-equipment__item-button {
  display: inline-flex;
  min-height: 38px;
  padding: 7px 8px;
  border: 0;
  color: #565656;
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
  width: 100%;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.store-equipment__item-button:hover, .store-equipment__item-button:focus-visible, .store-equipment__item-button.is-active {
  color: #fff;
  background: #ab0000;
  width: 100%;
}
.store-equipment__item-button.is-active {
  padding-right: 17px;
  padding-left: 17px;
}
.store-equipment__item-button:focus-visible {
  outline: 2px solid #ab0000;
  outline-offset: 4px;
}
.store-equipment__more-wrap {
  position: relative;
  height: 34px;
  margin-top: 46px;
}
.store-equipment__more-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: #c8c8c8;
  content: "";
}
.store-equipment__more {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 50%;
  width: 56px;
  height: 31px;
  padding: 0;
  border: 0;
  color: #222;
  background: #f7f7f7;
  font: inherit;
  cursor: pointer;
  transform: translateX(-50%);
}
.store-equipment__more::before, .store-equipment__more::after {
  position: absolute;
  top: 1px;
  width: 38px;
  height: 1px;
  background: #aaa;
  content: "";
}
.store-equipment__more::before {
  left: 0;
  transform: rotate(43deg);
  transform-origin: left center;
}
.store-equipment__more::after {
  right: 0;
  transform: rotate(-43deg);
  transform-origin: right center;
}
.store-equipment__more:focus-visible {
  outline: 2px solid #ab0000;
  outline-offset: 5px;
}
.store-equipment__more[aria-disabled=true] {
  cursor: default;
}
.store-equipment__more-symbol {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 50%;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transform: translateX(-50%);
}
.store-equipment__sr-only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.store-equipment__extra {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  will-change: grid-template-rows, opacity;
  transition: grid-template-rows 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0.65s;
}
.store-equipment__extra .store-equipment__item {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.store-equipment__extra-inner {
  min-height: 0;
  overflow: hidden;
}
.store-equipment__grid--extra {
  margin-top: 0;
  padding-top: 26px;
}
.store-equipment__panel.is-expanded .store-equipment__extra {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0s;
}
.store-equipment__panel.is-expanded .store-equipment__extra .store-equipment__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
@media (prefers-reduced-motion: reduce) {
  .store-equipment__extra, .store-equipment__extra .store-equipment__item {
    transition: none;
  }
}

.store-equipment-popup {
  width: min(920px, 100vw - 48px);
  max-width: none;
  padding: 0;
  color: #333;
  background: #fff;
}
.store-equipment-popup__media {
  margin: 0;
  background: #f3f3f3;
}
.store-equipment-popup__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
}
.store-equipment-popup__body {
  display: flex;
  padding: 46px 42px;
  justify-content: center;
  flex-direction: column;
}
.store-equipment-popup__category {
  margin: 0 0 10px;
  color: #ab0000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.store-equipment-popup__title {
  margin: 0;
  color: #333;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.35;
}
.store-equipment-popup__meta {
  margin: 30px 0 0;
}
.store-equipment-popup__meta div {
  display: grid;
  padding: 12px 0;
  border-top: 1px solid #ddd;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
}
.store-equipment-popup__meta div:last-child {
  border-bottom: 1px solid #ddd;
}
.store-equipment-popup__meta dt,
.store-equipment-popup__meta dd {
  margin: 0;
}
.store-equipment-popup__meta dt {
  color: #777;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.store-equipment-popup__meta dd {
  font-size: 16px;
  line-height: 1.5;
}

.fancybox__content.store-equipment-popup,
.fancybox__content > .store-equipment-popup {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.store-amenities {
  padding: 76px 0 100px;
  color: #353535;
  background: #f7f7f7;
}
.store-amenities__inner {
  display: grid;
  width: min(100% - 80px, 1100px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.store-amenities__group {
  min-width: 0;
  min-height: 567px;
  padding: 0 34px 24px;
}
.store-amenities__group + .store-amenities__group {
  border-left: 1px solid rgba(75, 75, 75, 0.55);
}
.store-amenities__group-title {
  margin: 0;
  color: #353535;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-align: center;
}
.store-amenities__list {
  display: grid;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 13px;
  align-items: start;
}
.store-amenities__item {
  min-width: 0;
  margin: 0;
}
.store-amenities__figure {
  display: flex;
  margin: 0;
  text-align: center;
  align-items: center;
  flex-direction: column;
}
.store-amenities__icon {
  display: block;
  width: 84px;
  height: 84px;
  max-width: 100%;
  object-fit: contain;
  flex: 0 0 auto;
}
.store-amenities__caption {
  display: flex;
  min-height: 38px;
  margin-top: 9px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  align-items: center;
  flex-direction: column;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.store-amenities__label, .store-amenities__detail {
  display: block;
}
.store-amenities__note {
  display: none;
}
.store-amenities__sr-only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.membership-plan {
  padding: 0 0 110px;
  background: #f7f7f7;
  color: #3d3d3d;
}
.membership-plan__inner {
  width: calc(100% - 80px);
  max-width: 1440px;
  margin: 0 auto;
}
.membership-plan__title {
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: center;
}
.membership-plan__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.membership-plan__card {
  min-height: 273px;
  padding: 27px 31px 28px;
  background: #f0efef;
  box-sizing: border-box;
}
.membership-plan__card-title {
  margin: 0 0 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.membership-plan__card-title sup {
  position: relative;
  top: -0.25em;
  margin: 0 3px;
  font-size: 20px;
  font-weight: 400;
  vertical-align: baseline;
}
.membership-plan__content {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.membership-plan__facility {
  border-left: 8px solid #c90000;
  padding-left: 9px;
}
.membership-plan__facility-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}
.membership-plan__detail {
  padding-top: 0;
}
.membership-plan__price {
  margin: -3px 0 4px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.membership-plan__description {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.membership-plan__notes {
  margin-top: 41px;
  font-size: 16px;
  line-height: 1.55;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.membership-plan__notes p {
  margin: 0;
}

.store-classroom {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #111;
}
.store-classroom__heading {
  display: flex;
  width: min(1250px, 100% - 80px);
  min-height: 114px;
  margin: 0 auto;
  align-items: center;
  gap: 30px;
}
.store-classroom__title {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.store-classroom__subtitle {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.store-classroom__slider {
  position: relative;
  width: 100%;
  overflow: visible;
}
.store-classroom__slide {
  position: relative;
  display: grid;
  width: 86vw;
  height: clamp(500px, 30.8vw, 592px);
  grid-template-columns: 53.7% 46.3%;
  overflow: hidden;
}
.store-classroom__slide::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  content: "";
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.store-classroom__slide.swiper-slide-active::after {
  opacity: 0;
}
.store-classroom__media {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.store-classroom__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-classroom__content {
  display: flex;
  height: 100%;
  padding: 60px clamp(55px, 5.8vw, 112px);
  box-sizing: border-box;
  background: #c90000;
  color: #fff;
  align-items: center;
}
.store-classroom__content-inner {
  width: 100%;
  max-width: 520px;
}
.store-classroom__content-inner h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.store-classroom__content-inner p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.store-classroom__arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  display: flex;
  width: 62px;
  height: 170px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}
.store-classroom__arrow img {
  display: block;
  width: 52px;
  height: auto;
}
.store-classroom__arrow--prev {
  left: 42px;
}
.store-classroom__arrow--next {
  right: 72px;
}
.store-classroom__pagination {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.store-classroom__pagination .swiper-pagination-bullet {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 !important;
  background: #d7d7d7;
  opacity: 1;
  transition: background 0.25s ease;
}
.store-classroom__pagination .swiper-pagination-bullet-active {
  background: #c90000;
}

.store-trainers {
  position: relative;
  overflow: hidden;
  padding: 34px 0 0px;
  color: #333;
  background: linear-gradient(to bottom, #fff 0 56%, #e4e4e4 56% 100%);
}
.store-trainers__header {
  position: relative;
  z-index: 3;
  text-align: center;
}
.store-trainers__header h2 {
  margin: 0;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.store-trainers__stage {
  position: relative;
  z-index: 2;
  margin-top: 13px;
}
.store-trainers__slider {
  width: min(100% - 120px, 1320px);
  margin-inline: auto;
  overflow: hidden;
}
.store-trainers .swiper-wrapper {
  align-items: stretch;
}
.store-trainers__card {
  display: flex;
  min-width: 0;
  min-height: 650px;
  padding: 40px 0 42px;
  border-radius: 20px;
  background: #f0f0f0;
  box-sizing: border-box;
  flex-direction: column;
}
.store-trainers__top {
  display: grid;
  padding: 0 12%;
  grid-template-columns: 55% minmax(0, 1fr);
  column-gap: 7%;
  align-items: start;
}
.store-trainers__photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 4px solid #fff;
  box-sizing: border-box;
  aspect-ratio: 186/225;
  background: #fff;
}
.store-trainers__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
.store-trainers__intro {
  min-width: 0;
  padding-top: 15px;
}
.store-trainers__intro h3 {
  margin: 0 0 18px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.store-trainers__intro p {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}
.store-trainers__intro p + p {
  margin-top: 8px;
}
.store-trainers__details {
  padding: 0 12%;
}
.store-trainers__detail-block {
  margin-top: 24px;
}
.store-trainers__detail-block h4 {
  display: flex;
  margin: 0 0 10px;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  align-items: center;
  gap: 11px;
}
.store-trainers__detail-block h4::before {
  width: 8px;
  height: 34px;
  background: #ab0000;
  content: "";
  flex: 0 0 8px;
}
.store-trainers__detail-block p, .store-trainers__detail-block ul {
  margin: 0;
  padding: 0 0 0 20px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.store-trainers__detail-block ul {
  list-style: none;
}
.store-trainers__detail-block li {
  margin: 0;
}
.store-trainers__detail-block--experience {
  margin-top: 18px;
}
.store-trainers__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}
.store-trainers__arrow img {
  display: block;
  width: 100%;
  height: auto;
}
.store-trainers__arrow--prev {
  left: 6%;
}
.store-trainers__arrow--next {
  right: 6%;
}

.course-categories {
  --course-panel-height: clamp(460px, 58svh, 580px);
  padding: 24px 0 138px;
  color: #313131;
  background: #f7f7f7;
}
.course-categories__inner {
  width: min(100% - 48px, 1010px);
  margin-inline: auto;
}
.course-categories__title {
  margin: 0 0 28px;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(2.65rem, 3.1vw, 3.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-align: center;
}
.course-categories__accordion {
  width: 100%;
}
.course-categories__group {
  width: 100%;
}
.course-categories__group + .course-categories__group {
  margin-top: 30px;
}
.course-categories__group.is-open .course-categories__trigger {
  color: #fff;
  background: #b90000;
}
.course-categories__group.is-open .course-categories__trigger > .mdi {
  transform: rotate(0deg);
}
.course-categories__group.is-open .course-categories__panel {
  height: var(--course-panel-height);
  visibility: visible;
  pointer-events: auto;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}
.course-categories__heading {
  margin: 0;
}
.course-categories__trigger {
  display: grid;
  width: 100%;
  min-height: 90px;
  padding: 12px 30px 12px 54px;
  border: 0;
  color: #313131;
  background: #d7d7d7;
  font: inherit;
  cursor: pointer;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.course-categories__trigger > .mdi {
  display: block;
  margin-left: auto;
  font-size: 32px;
  line-height: 1;
  grid-column: 3;
  justify-self: end;
  transform: rotate(-90deg);
  transition: transform 0.25s ease;
}
.course-categories__trigger:focus-visible {
  outline: 3px solid rgba(171, 0, 0, 0.35);
  outline-offset: 3px;
}
.course-categories__trigger-label {
  display: flex;
  min-width: 0;
  grid-column: 2;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(1.42rem, 1.5vw, 1.72rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.015em;
  align-items: center;
  justify-content: center;
}
.course-categories__trigger-en, .course-categories__trigger-zh {
  display: inline-block;
}
.course-categories__trigger-separator {
  margin-inline: 8px;
  font-weight: 400;
}
.course-categories {
  /*
   * 收合時一定是 height: 0，
   * 所以下一個分類會直接往上靠，
   * 不會留下整個 panel 高度的空白。
   */
}
.course-categories__panel {
  width: 100%;
  height: 0;
  min-height: 0;
  overflow: hidden;
  overflow: clip;
  visibility: hidden;
  contain: layout paint;
  pointer-events: none;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
}
.course-categories {
  /*
   * 真正負責內部捲動的區域。
   * 外面的 panel 控制展開 / 收合，
   * 裡面固定吃滿 panel 高度。
   */
}
.course-categories__panel-scroll {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 38px 28px 32px 33px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  background: #f7f7f7;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #202020 #e3dfdf;
  scrollbar-width: auto;
}
.course-categories__panel-scroll::-webkit-scrollbar {
  width: 19px;
}
.course-categories__panel-scroll::-webkit-scrollbar-track {
  background: #e3dfdf;
}
.course-categories__panel-scroll::-webkit-scrollbar-thumb {
  border: 0;
  background: #202020;
}
.course-categories__panel-scroll:focus-visible {
  outline: 2px solid rgba(171, 0, 0, 0.35);
  outline-offset: -2px;
}
.course-categories__entry {
  width: 100%;
}
.course-categories__entry + .course-categories__entry {
  margin-top: 24px;
}
.course-categories__course {
  display: grid;
  width: 100%;
  min-height: 132px;
  color: inherit;
  text-decoration: none;
  grid-template-columns: 235px minmax(0, 1fr);
  column-gap: 34px;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.course-categories__course:hover {
  transform: translateY(-2px);
}
.course-categories__course:focus-visible {
  outline: 3px solid rgba(171, 0, 0, 0.35);
  outline-offset: 5px;
}
.course-categories__logo {
  display: flex;
  width: 235px;
  height: 132px;
  overflow: hidden;
  background: #fff;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.course-categories__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none !important;
  max-height: none !important;
  flex: 0 0 auto;
}
.course-categories__logo-placeholder {
  padding: 16px;
  color: #888;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.course-categories__copy {
  display: flex;
  min-width: 0;
  min-height: 132px;
  padding-left: 51px;
  border-left: 1px solid rgba(49, 49, 49, 0.55);
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.course-categories__copy h4 {
  margin: 0 0 9px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.course-categories__meta {
  display: flex;
  margin-bottom: 9px;
  color: #747474;
  font-size: 1rem;
  line-height: 1.5;
  gap: 7px 18px;
  flex-wrap: wrap;
}
.course-categories__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.course-categories__meta-item .mdi {
  color: #b90000;
  font-size: 18px;
  line-height: 1;
}
.course-categories__description {
  display: -webkit-box;
  width: 100%;
  margin: 0;
  overflow: hidden;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.005em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.course-categories__more {
  display: inline-flex;
  margin-top: 10px;
  color: #b90000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  align-items: center;
  gap: 3px;
}
.course-categories__more .mdi {
  font-size: 17px;
}

.course-detail-popup {
  width: min(560px, 100vw - 40px);
  max-width: none;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  color: #292929;
  background: #fff;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.course-detail-popup__header {
  padding: 38px 40px 28px;
  border-bottom: 1px solid #ededed;
  text-align: center;
}
.course-detail-popup__logo {
  display: block;
  width: min(230px, 70%);
  max-height: 110px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.course-detail-popup__title {
  margin: 0;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.4;
}
.course-detail-popup__body {
  padding: 10px 40px 80px;
}
.course-detail-popup__meta {
  margin: 0;
}
.course-detail-popup__meta > div {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid #e5e5e5;
  grid-template-columns: 120px minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
}
.course-detail-popup__meta dt,
.course-detail-popup__meta dd {
  margin: 0;
}
.course-detail-popup__meta dt {
  display: flex;
  color: #777;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  gap: 7px;
}
.course-detail-popup__meta dt .mdi {
  color: #b90000;
  font-size: 20px;
}
.course-detail-popup__meta dd {
  font-size: 1rem;
  line-height: 1.6;
}
.course-detail-popup__description {
  margin-top: 28px;
}
.course-detail-popup__description h4 {
  margin: 0 0 13px;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: 20px;
  line-height: 1.4;
}
.course-detail-popup__description p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.fancybox__content.course-detail-popup,
.fancybox__content > .course-detail-popup {
  display: block !important;
}

.store-contact {
  padding: 122px 0 164px;
  color: #282828;
  background: #f7f7f7;
}
.store-contact__inner {
  display: grid;
  width: calc(100% - 80px);
  max-width: 975px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 482px;
  gap: 70px;
  align-items: start;
}
.store-contact__title {
  margin: -8px 0 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.035em;
  white-space: nowrap;
}
.store-contact__store-name {
  margin: 46px 0 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.store-contact__details {
  margin: 39px 0 0;
}
.store-contact__detail + .store-contact__detail {
  margin-top: 24px;
}
.store-contact__detail dt {
  margin: 0 0 1px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.035em;
}
.store-contact__detail dd {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.015em;
}
.store-contact__detail a {
  transition: color 0.2s ease;
}
.store-contact__detail a:hover, .store-contact__detail a:focus-visible {
  color: #ab0000;
}
.store-contact__map {
  position: relative;
  width: 100%;
  aspect-ratio: 482/476;
  overflow: hidden;
  background: #e7e5e4;
}
.store-contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.store-contact__map-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.store-contact__map-link:focus-visible {
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: auto;
  height: auto;
  padding: 8px 12px;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: #fff;
  background: rgba(40, 40, 40, 0.88);
  font-size: 14px;
  white-space: normal;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.aura-feedback {
  overflow: hidden;
  padding: 88px 0 72px;
  background: #fbfbfb;
  color: #604638;
}
.aura-feedback__inner {
  width: calc(100% - 40px);
  max-width: 1370px;
  margin: 0 auto;
}
.aura-feedback__title {
  margin: 0 0 36px;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}
.aura-feedback__slider {
  display: grid;
  grid-template-columns: 48px minmax(0, 1250px) 48px;
  column-gap: 12px;
  align-items: center;
  width: 100%;
}
.aura-feedback__swiper {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.aura-feedback__swiper:active {
  cursor: grabbing;
}
.aura-feedback__list {
  align-items: flex-start;
}
.aura-feedback__item {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 0 40px 0 60px;
  aspect-ratio: 1/1.3;
  overflow: hidden;
}
.aura-feedback__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  border-left: 1px dashed rgba(96, 70, 56, 0.45);
}
.aura-feedback__item.swiper-slide-active::before {
  display: none;
}
.aura-feedback__content {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: 0.02em;
  height: 100%;
  overflow: scroll;
  padding-right: 20px;
}
.aura-feedback__content > p {
  margin: 0;
}
.aura-feedback__author {
  margin-top: 30px !important;
  text-align: right;
  white-space: nowrap;
}
.aura-feedback__arrow {
  grid-row: 1;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 154px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.aura-feedback__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aura-feedback__arrow--prev {
  grid-column: 1;
}
.aura-feedback__arrow--next {
  grid-column: 3;
}

.aura-balance {
  width: 100%;
  padding: 100px 0 110px;
  overflow: hidden;
  background: #fff;
  color: #684a3b;
}
.aura-balance__heading {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1000px);
  margin: 0 auto;
  text-align: center;
}
.aura-balance__title {
  margin: 0;
  color: #684a3b;
  font-size: clamp(34px, 2.15vw, 42px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.aura-balance__description {
  margin: 10px 0 0;
  color: #806859;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.aura-balance__visual {
  width: min(959px, 100% - 80px);
  margin: 40px auto 0;
}
.aura-balance__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.aura-features {
  width: 100%;
  padding: 0 30px 136px;
  box-sizing: border-box;
  overflow: hidden;
  background: #f5f5f5;
  color: #664737;
}
.aura-features__heading {
  margin-bottom: 52px;
  text-align: center;
}
.aura-features__title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
.aura-features__brand {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-top: 0;
  color: #b58a3b;
  font-family: "Times New Roman", serif;
  line-height: 1;
}
.aura-features__brand span {
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.aura-features__brand em {
  font-size: 68px;
  font-weight: 400;
}
.aura-features__slider {
  position: relative;
  width: 100%;
  max-width: 1228px;
  margin: 0 auto;
  overflow: visible;
  /* 預設桌機版直接使用 3 × 2 Grid */
}
.aura-features__slider .swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 13px 19px;
  width: 100% !important;
  height: auto !important;
}
.aura-features__card {
  position: relative;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  aspect-ratio: 397/275;
  box-sizing: border-box;
  overflow: hidden;
  background: #ddd;
}
.aura-features__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aura-features__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 66px;
  padding: 17px 12px 7px;
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.aura-features__caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  z-index: -1;
  width: 130%;
  height: 112px;
  background: #b58a3b;
  border-radius: 50% 50% 0 0/46px 46px 0 0;
}
.aura-features__caption h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.aura-features__caption p {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  white-space: nowrap;
}
.aura-features__arrow, .aura-features__thumbs {
  display: none;
}

.aura-plans {
  position: relative;
  overflow: hidden;
  padding: 128px 20px 189px;
  color: #604333;
  background: #fff;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.aura-plans * {
  box-sizing: border-box;
}
.aura-plans__slider {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  overflow: visible;
}
.aura-plans__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.aura-plans__slide {
  width: auto;
  min-width: 0;
  height: auto;
}
.aura-plans__title {
  margin: 0 0 16px;
  color: #604333;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}
.aura-plans__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 538px;
  padding: 24px 40px 49px;
  border: 1px solid #d29570;
  border-radius: 25px;
  background: #fff;
}
.aura-plans__content h3 {
  margin: 0;
  color: #604333;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
}
.aura-plans__line {
  width: 100%;
  margin: 15px 0 15px;
  border-top: 1px dashed #c9b8ae;
}
.aura-plans__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #765c4d;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.025em;
}
.aura-plans__list li {
  position: relative;
  padding-left: 25px;
}
.aura-plans__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.aura-plans__footer {
  width: 230px;
  margin: auto auto 0;
  color: #604333;
}
.aura-plans__price-title {
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.aura-plans__price {
  margin-top: 1px;
  font-size: 33px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.aura-plans__note {
  min-height: 28px;
  margin-top: 4px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.aura-plans__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 229px;
  height: 66px;
  margin-top: 7px;
  color: #fff;
  background: #b78b40;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}
.aura-plans__button:hover, .aura-plans__button:focus-visible {
  color: #fff;
  background: #9e7534;
}
.aura-plans__arrow {
  display: none;
}

.aura-journey {
  padding: 112px 0 130px;
  color: #64493b;
  background: #fff;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.aura-journey__inner {
  position: relative;
  width: min(100% - 40px, 1440px);
  margin: 0 auto;
}
.aura-journey__heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  height: 282px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
}
.aura-journey__heading::before, .aura-journey__heading::after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ededed;
  content: "";
}
.aura-journey__heading::before {
  right: 100%;
}
.aura-journey__heading::after {
  left: 100%;
}
.aura-journey__heading-sub {
  margin: 0 0 4px;
  font-size: clamp(30px, 2.3vw, 46px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.aura-journey__heading-title {
  margin: 0;
  color: #b68a3d;
  font-family: "Times New Roman", serif;
  font-size: clamp(48px, 4vw, 74px);
  font-weight: 400;
  line-height: 1;
}
.aura-journey__heading-title em {
  font-weight: 400;
}
.aura-journey__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.aura-journey__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.aura-journey__item:nth-child(odd) .aura-journey__content {
  background: #ededed;
}
.aura-journey__image {
  height: 412px;
  overflow: hidden;
}
.aura-journey__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aura-journey__content {
  min-height: 393px;
  padding: 38px clamp(48px, 5.5vw, 106px) 92px;
  box-sizing: border-box;
  background: #fff;
}
.aura-journey__content h3 {
  margin: 0 0 20px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.aura-journey__content p {
  margin: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
.aura-journey__content p + p {
  margin-top: 24px;
}
.aura-journey__action {
  position: absolute;
  z-index: 2;
  bottom: -33px;
  left: 50%;
  transform: translateX(-50%);
}
.aura-journey__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 266px;
  min-height: 64px;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #fff;
  background: #b68a3d;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.aura-journey__button:hover, .aura-journey__button:focus-visible {
  color: #b68a3d;
  background: #fff;
  outline: 1px solid #b68a3d;
}

.aura-studio {
  overflow: hidden;
  padding: 116px 0 160px;
  background: #fbfbfb;
  color: #604638;
}
.aura-studio__heading {
  margin-bottom: 18px;
  padding: 0 30px;
  text-align: center;
}
.aura-studio__title {
  margin: 0;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.aura-studio__description {
  margin: 7px 0 0;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.aura-studio__mobile-br {
  display: none;
}
.aura-studio__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.aura-studio__swiper {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.aura-studio__swiper:active {
  cursor: grabbing;
}
.aura-studio__swiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
}
.aura-studio__slide {
  flex-shrink: 0;
  width: 233px !important;
  height: 337px;
  overflow: hidden;
  user-select: none;
}
.aura-studio__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.aura-studio__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(75px, 10.85vw, 208px);
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.52);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.aura-studio__arrow img {
  display: block;
  width: clamp(36px, 2.85vw, 55px);
  height: 46%;
  object-fit: contain;
  pointer-events: none;
}
.aura-studio__arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}
.aura-studio__arrow--prev {
  left: 0;
}
.aura-studio__arrow--next {
  right: 0;
}

.join-float-button {
  position: fixed;
  right: clamp(16px, 2vw, 36px);
  bottom: 110px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(0, #ab0000, #8f0000);
  box-shadow: 0 10px 25px rgba(83, 60, 24, 0.28);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.join-float-button .mdi {
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
  transform: rotate(0deg);
}
.join-float-button__text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.join-float-button:hover {
  color: #fff;
  box-shadow: 0 14px 30px rgba(83, 60, 24, 0.38);
  transform: translateY(-4px);
}
.join-float-button:focus-visible {
  outline: 3px solid rgba(172, 133, 65, 0.4);
  outline-offset: 4px;
}

.join-float-button,
.back-to-top {
  bottom: calc(30px + var(--footer-offset, 0px));
  transition: bottom 0.2s ease-out, opacity 0.3s ease, visibility 0.3s ease;
}

.join-float-button {
  bottom: calc(110px + var(--footer-offset, 0px));
}

.back-to-top {
  bottom: calc(30px + var(--footer-offset, 0px));
}

/* AURA Pilates page
--------------------------------------------- */
.page-aura .brand__panel {
  background: #AC8541;
}
.page-aura .brand__panel img {
  width: 122px;
  max-width: 100%;
  height: auto;
}
.page-aura .primary-nav > a::after, .page-aura .primary-nav__trigger::after {
  background: #AC8541;
}
.page-aura .language .is-active,
.page-aura .mobile-menu__lang-item.is-active {
  background: #AC8541;
}
.page-aura .section.news[data-news-carousel] {
  padding: 90px 0 68px;
  color: #583D2D;
  background: #fff;
}
.page-aura .section.news[data-news-carousel] .container {
  overflow: visible;
  width: min(100% - 64px, 1440px);
}
.page-aura .section.news[data-news-carousel] .section-title {
  margin-bottom: 24px;
  color: #583D2D;
  font-size: clamp(2.25rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
}
.page-aura .section.news[data-news-carousel] .news-slider-wrap {
  position: relative;
}
.page-aura .section.news[data-news-carousel] .news-slider {
  width: 100%;
  padding-block: 2px;
  overflow: hidden;
}
.page-aura .section.news[data-news-carousel] .news-grid {
  gap: 0;
  align-items: stretch;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide {
  display: flex;
  min-width: 0;
  min-height: 225px;
  padding: 38px clamp(36px, 3.65vw, 68px);
  border: 1px solid #d59673;
  border-radius: 26px;
  color: #583D2D;
  background: #fff;
  align-items: flex-start;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide time {
  display: inline-block;
  padding: 1px 5px;
  color: #fff;
  background: #AC8541;
  font-size: 0.875rem;
  line-height: 1.2;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide h3 {
  margin: 2px 0 13px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide[role=button] {
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide[role=button]:hover, .page-aura .section.news[data-news-carousel] .news-card.swiper-slide[role=button]:focus-visible {
  border-color: #AC8541;
  color: #d59673;
  background: rgba(172, 133, 65, 0.06);
  transform: translateY(-2px);
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide[role=button]:hover h3, .page-aura .section.news[data-news-carousel] .news-card.swiper-slide[role=button]:focus-visible h3 {
  color: #AC8541;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide[role=button]:focus-visible {
  outline: 2px solid rgba(172, 133, 65, 0.5);
  outline-offset: -2px;
}
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide-active + .news-card,
.page-aura .section.news[data-news-carousel] .news-card.swiper-slide-active + .news-card + .news-card {
  border-left: 1px solid #d59673;
}
.page-aura .section.news[data-news-carousel] .news-slider__arrow img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(16%) saturate(899%) hue-rotate(341deg) brightness(93%) contrast(86%);
}
.page-aura .section.news[data-news-carousel] .news-slider__pagination.swiper-pagination {
  margin-top: 24px;
}
.page-aura .section.news[data-news-carousel] .news-slider__pagination.swiper-pagination .swiper-pagination-bullet {
  background: rgba(111, 81, 62, 0.3);
}
.page-aura .section.news[data-news-carousel] .news-slider__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background: #AC8541;
}
.page-aura .site-footer {
  color: #fff;
  background: #AC8541;
}
.page-aura .faq-section {
  color: #583D2D;
}
.page-aura .faq-section__question:hover .faq-section__question-text, .page-aura .faq-section__question:focus-visible .faq-section__question-text {
  color: #583D2D;
}
.page-aura .faq-section__question-mark {
  background: #AC8541;
}
.page-aura .faq-section__question-text {
  margin-left: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.025em;
  transition: color 0.25s ease;
}
.page-aura .faq-section__icon {
  color: #AC8541;
}
.page-aura .store-contact {
  color: #583D2D;
}
.page-aura .store-contact__map {
  background: #e7e5e4;
}
.page-aura .store-contact__map-link:focus-visible {
  color: #fff;
  background: rgba(40, 40, 40, 0.88);
}
.page-aura .join-float-button {
  background: linear-gradient(0, #cba05b, #ac8541);
}

.aura-hero {
  width: 100%;
  overflow: hidden;
}
.aura-hero picture {
  display: block;
  width: 100%;
  aspect-ratio: 1920/854;
}
.aura-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-banner-popup {
  width: min(1100px, 100vw - 40px);
  max-width: 1100px;
  padding: 0;
  background: #fff;
}
.store-banner-popup__image {
  width: 100%;
  background: #eee;
}
.store-banner-popup__image img {
  display: block;
  width: 100%;
  height: auto;
}
.store-banner-popup__content {
  padding: 35px 45px 45px;
}
.store-banner-popup__date {
  display: block;
  margin-bottom: 12px;
  color: #999;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.store-banner-popup__title {
  margin: 0 0 22px;
  color: #ac8541;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.5;
}
.store-banner-popup__text {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.store-banner-popup__text p {
  margin: 0;
}
.store-banner-popup__text p + p {
  margin-top: 1em;
}
.store-banner-popup__text a {
  color: #ac8541;
  text-decoration: underline;
}

/*1400px 以下，1400px 本身維持桌機版*/
@media (max-width: 1400px) {
  .life-stage__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .life-stage__copy {
    padding-left: 7vw;
  }
  .site-footer {
    min-height: 291px;
    padding: 28px clamp(24px, 3vw, 48px) 18px;
    overflow: hidden;
  }
  .site-footer__inner {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 242px;
    grid-template-columns: 180px 180px minmax(0, 1fr) 180px;
    grid-template-rows: 1fr auto;
    column-gap: clamp(18px, 2vw, 32px);
    row-gap: 22px;
    align-content: stretch;
  }
  .site-footer__brand {
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
  }
  .site-footer__jexer {
    width: 90px;
  }
  .site-footer__jr-group {
    width: 68px;
  }
  .site-footer__menus {
    display: block;
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
  }
  .site-footer__menu-group {
    min-width: 0;
  }
  .site-footer__menu-group h2 {
    margin: 0 0 8px;
    white-space: nowrap;
  }
  .site-footer__menu-group + .site-footer__menu-group {
    margin-top: 24px;
  }
  .site-footer__partners {
    display: flex;
    width: 100%;
    min-width: 0;
    margin: 0;
    grid-column: 3;
    grid-row: 1;
    align-content: flex-start;
    align-items: center;
    justify-content: flex-start;
    gap: 18px 24px;
    flex-wrap: wrap;
  }
  .site-footer__partner-logo {
    display: block;
    max-width: 100%;
    height: auto;
    flex: 0 0 auto;
  }
  .site-footer__partner-logo--technogym {
    width: 92px !important;
  }
  .site-footer__partner-logo--balanced-body {
    width: 108px !important;
  }
  .site-footer__partner-logo--gaura {
    width: 112px !important;
  }
  .site-footer__partner-logo--mizuno {
    width: 48px !important;
  }
  .site-footer__partner-logo--tanita {
    width: 96px !important;
  }
  .site-footer__partner-logo--iris-ohyama {
    width: 116px !important;
  }
  .site-footer__policy {
    min-width: 0;
    grid-column: 4;
    grid-row: 1;
    align-items: flex-start;
    gap: 12px;
  }
  .site-footer__policy a {
    text-align: left;
    white-space: nowrap;
  }
  .site-footer__company {
    width: fit-content;
    margin: 0;
    grid-column: 1/-1;
    grid-row: 2;
    align-self: end;
    justify-self: center;
  }
  .site-footer__company img {
    display: block;
    width: min(345px, 100vw - 48px);
    max-width: 100%;
    height: auto;
  }
}
/*1280*/
@media (max-width: 1280px) {
  .facility-tour {
    padding: 0;
  }
  .facility-tour__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .membership-plan__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/*1100px*/
@media (max-width: 1100px) {
  :root {
    --header-height: 70px;
  }
  .primary-nav {
    margin-left: 150px;
    gap: 22px;
  }
  .primary-nav > a, .primary-nav__trigger {
    font-size: 0.82rem;
  }
  .primary-nav__submenu {
    min-width: 190px;
  }
  .primary-nav__submenu a {
    padding: 15px 24px;
    font-size: 0.95rem;
  }
  .concept__layout {
    grid-template-columns: 70px 1fr 1fr;
    gap: 38px;
  }
  .concept__source {
    height: 100px;
  }
  .concept__source::before, .concept__source::after {
    width: 155px;
    height: 100px;
    background-size: auto 100px;
  }
  .concept__source-logo {
    width: 300px;
    margin: 0 auto;
  }
  .vertical-words {
    display: none;
  }
  .cycle-tabs {
    grid-column: 1/2;
  }
  .aura-journey__content {
    padding-right: 45px;
    padding-left: 45px;
  }
  .aura-journey__content h3 {
    font-size: 20px;
  }
  .aura-journey__content p {
    font-size: 17px;
  }
  .feature-panel {
    height: 35vw;
    min-height: 0;
  }
  .feature-panel__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/*820px*/
@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }
  .brand {
    left: 0;
  }
  .brand__panel {
    width: 148px;
    height: auto;
    padding: 15px 10px;
  }
  .brand__panel img {
    width: 80%;
    height: auto;
  }
  .brand__panel small {
    font-size: 0.54rem;
  }
  .container {
    width: min(100% - 40px, var(--container));
  }
  .container--wide {
    width: 100%;
  }
  .section {
    padding: 78px 0;
  }
  .menu-toggle {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 18px;
    display: flex;
    width: 42px;
    height: 36px;
    padding: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    justify-content: space-around;
    flex-direction: column;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #313131;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .primary-nav {
    display: none;
  }
  .hero picture {
    aspect-ratio: 720/450;
  }
  .hero__image {
    object-position: center bottom;
  }
  .hero-popup {
    width: calc(100vw - 32px);
  }
  .hero-popup__body {
    padding: 26px 24px 30px;
  }
  .hero-popup__title {
    margin-bottom: 14px;
    font-size: 24px;
  }
  .hero-popup__content {
    font-size: 15px;
    line-height: 1.8;
  }
  .news {
    padding: 70px 0 48px;
  }
  .news .section-title {
    margin-bottom: 56px;
  }
  .news .container {
    width: 100%;
  }
  .news-slider {
    width: 100%;
    overflow: hidden;
  }
  .news-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  .news-grid {
    display: flex;
    grid-template-columns: none;
  }
  .news-card {
    display: flex;
    width: 100%;
    min-height: 225px;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
  }
  .news-card__inner {
    width: min(100% - 112px, 340px);
    margin-inline: auto;
  }
  .news-card time {
    font-size: 0.88rem;
  }
  .news-card h3 {
    margin: 5px 0 12px;
    font-size: 1.22rem;
    line-height: 1.5;
  }
  .news-card p {
    font-size: 0.9rem;
    line-height: 1.85;
  }
  .news-slider__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: flex;
    width: 48px;
    height: 154px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }
  .news-slider__arrow img {
    display: block;
    width: 48px;
    height: 154px;
    pointer-events: none;
  }
  .news-slider__arrow--prev {
    left: 0;
  }
  .news-slider__arrow--next {
    right: 0;
  }
  .news-slider__arrow:hover, .news-slider__arrow:focus-visible {
    opacity: 0.72;
  }
  .news-slider__arrow:focus-visible {
    outline: 2px solid rgba(171, 0, 0, 0.45);
    outline-offset: 4px;
  }
  .news-slider__pagination.swiper-pagination {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }
  .news-slider__pagination.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(49, 49, 49, 0.28);
    opacity: 1;
    transition: width 0.2s ease, border-radius 0.2s ease, background-color 0.2s ease;
  }
  .news-slider__pagination.swiper-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 999px;
    background: #ab0000;
  }
  .news[data-news-carousel] .news-slider {
    --news-arrow-space: 52px;
  }
  .news[data-news-carousel] .news-slider__arrow {
    width: 36px;
    height: 116px;
  }
  .news[data-news-carousel] .news-slider__arrow img {
    width: 36px;
    height: 116px;
  }
  .news[data-news-carousel] .news-slider__arrow--prev {
    left: 8px;
  }
  .news[data-news-carousel] .news-slider__arrow--next {
    right: 8px;
  }
  .news-card--mobile-extra {
    display: flex;
  }
  .news-expanded {
    display: none !important;
  }
  .news [data-news-toggle] {
    display: none !important;
  }
  .news-modal {
    padding: 20px;
    align-items: center;
  }
  .news-modal__dialog {
    width: 100%;
    max-height: 90vh;
  }
  .news-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
  .news-detail {
    display: block;
    min-height: 0;
  }
  .news-detail__media {
    aspect-ratio: 16/10;
    background: #fff;
  }
  .news-detail__media img {
    height: 100%;
    min-height: 0;
    padding: 18px;
    object-fit: contain;
  }
  .news-detail__body {
    padding: 34px 28px 38px;
  }
  .news-detail__body h2 {
    margin-bottom: 22px;
    font-size: 1.45rem;
  }
  .news-detail__content p {
    font-size: 0.92rem;
    line-height: 1.9;
  }
  .privacy-popup .privacy_t {
    padding: 5vh 1%;
  }
  .privacy-popup h1 {
    margin-bottom: 36px;
    font-size: 22px;
    text-align: left;
  }
  .privacy-popup h2 {
    margin-top: 38px;
    font-size: 20px;
  }
  .privacy-popup h3 {
    margin-top: 24px;
    font-size: 17px;
  }
  .privacy-popup p {
    font-size: 15px;
    line-height: 1.9;
  }
  .concept__source {
    height: auto;
    aspect-ratio: 7.5/1;
  }
  .concept__source::before, .concept__source::after {
    width: 110px;
    height: 100%;
    background-size: auto 100%;
  }
  .concept__source .container {
    width: 100%;
    height: 100%;
  }
  .concept__source-inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .concept__source-line {
    display: none;
  }
  .concept__source-logo {
    display: block;
    width: 50%;
    max-width: none;
    height: auto;
    margin-inline: auto;
  }
  .concept__visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1/1;
  }
  .concept__picture {
    width: 100%;
    height: 100%;
  }
  .concept__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
  }
  .concept__overlay {
    padding: 70px 20px;
  }
  .feature-panels {
    padding-top: 24px;
  }
  .feature-panel {
    height: clamp(170px, 46vw, 300px);
  }
  .feature-panel__content h2 {
    font-size: 1.45rem;
  }
  .feature-panel__content p {
    font-size: 0.82rem;
  }
  .life-stage {
    padding: 48px 0 24px;
  }
  .life-stage__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .life-stage__copy {
    max-width: 90%;
    padding: 0 5%;
  }
  .life-stage__copy h2 {
    font-size: 2.3rem;
  }
  .life-stage__media figcaption {
    bottom: 25px;
    left: 28px;
  }
  .life-stage__media figcaption h3 {
    font-size: 2.5rem;
  }
  .life-stage__media figcaption p {
    font-size: 1rem;
  }
  .life-stage__arrow {
    top: 50%;
    bottom: auto;
    width: 60px;
    height: 100px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35px 100px;
    transform: translateY(-50%);
    opacity: 0.7;
  }
  .life-stage__arrow img {
    display: none;
  }
  .life-stage__arrow--prev {
    left: 12px;
    background-image: url("../images/arrow2_L_w.svg");
  }
  .life-stage__arrow--next {
    right: 12px;
    background-image: url("../images/arrow2_R_w.svg");
  }
  .life-stage__arrow:hover {
    opacity: 1;
  }
  .club-experience {
    padding: 12px 0 22px;
  }
  .club-experience__gallery {
    display: flex;
    height: auto;
    transition-timing-function: linear;
  }
  .club-experience__media {
    height: auto;
    aspect-ratio: 640/310;
  }
  .club-experience__copy {
    position: static;
    width: 100%;
    min-height: clamp(82px, 15vw, 96px);
    padding: 10px 12px 14px;
    transform: none;
    flex-direction: column;
    gap: 2px;
    white-space: normal;
  }
  .club-experience__copy p {
    font-size: clamp(0.9rem, 2.8vw, 1.15rem);
  }
  .club-experience__copy h2 {
    font-size: clamp(1.35rem, 4.3vw, 1.85rem);
  }
  .club-location__card {
    height: auto;
    min-height: 0;
    padding: 22px 8px 18px;
    aspect-ratio: 7/9;
    justify-content: center;
    gap: 6vw;
  }
  .club-location__card--jexer, .club-location__card--aura, .club-location__card--coming {
    padding-bottom: 18px;
  }
  .club-location__logo {
    position: static;
    top: auto;
    left: auto;
    flex: 0 0 auto;
    transform: none;
  }
  .club-location__logo--jexer {
    width: 70%;
  }
  .club-location__logo--aura {
    width: 61%;
  }
  .club-location__name {
    position: static;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
  }
  .club-location__name--jexer {
    bottom: auto;
  }
  .facilities.section {
    padding-top: 0;
  }
  .facilities__layout {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: column;
    gap: 0;
  }
  .facilities__visual, .facilities__copy {
    display: contents;
  }
  .facilities__vertical-title {
    display: none;
  }
  .facilities__copy-intro {
    position: relative;
    z-index: 1;
    order: 1;
    display: flex;
    min-height: clamp(156px, 30vw, 220px);
    max-width: none;
    padding: clamp(100px, 20vw, 200px) clamp(44px, 10vw, 76px) clamp(14px, 3vw, 24px);
    overflow: hidden;
    box-sizing: border-box;
    justify-content: flex-end;
    flex-direction: column;
    isolation: isolate;
  }
  .facilities__copy-intro::before {
    position: absolute;
    left: clamp(80px, 20vw, 160px);
    z-index: -1;
    width: min(85vw, 680px);
    aspect-ratio: 540/200;
    background-image: url("../images/index_s4_bg1_mobile.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    content: "";
    pointer-events: none;
  }
  .facilities__headline {
    font-size: clamp(40px, 8vw, 52px);
    line-height: 1.1;
  }
  .facilities__lead {
    margin-top: 2px;
    padding-left: 24px;
    font-size: clamp(18px, 2.4vw, 22px);
    line-height: 1.4;
  }
  .facilities__lead::before {
    top: 0.7em;
    width: 16px;
  }
  .facilities__media {
    order: 2;
    width: 100%;
    aspect-ratio: 7/5;
  }
  .facilities__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .facilities__copy-detail {
    order: 3;
    width: 100%;
    max-width: none;
    min-height: clamp(104px, 20vw, 150px);
    padding: clamp(18px, 3.5vw, 30px) clamp(44px, 10vw, 76px) clamp(16px, 3.5vw, 30px);
    box-sizing: border-box;
    background: #f7f7f7;
  }
  .facilities__copy-detail h2 {
    margin: 0 0 5px;
    font-size: clamp(28px, 4vw, 35px);
    line-height: 1.25;
  }
  .facilities__copy-detail p {
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.6;
  }
  .cycle-tabs {
    order: 4;
    width: 100%;
    margin: 0;
    grid-column: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cycle-tabs__button {
    width: 100%;
    height: auto;
    aspect-ratio: 1.15/1;
    min-height: 0;
    padding: clamp(5px, 1.2vw, 10px);
    border-right-width: 2px;
  }
  .cycle-tabs__kanji {
    font-size: clamp(42px, 9.5vw, 75px);
    line-height: 0.95;
  }
  .cycle-tabs__label {
    font-size: clamp(19px, 4.3vw, 32px);
    line-height: 1;
  }
  .equipment__brand-logos {
    width: min(100%, 520px);
    margin: 30px auto 28px;
    padding: 0;
    gap: clamp(28px, 7vw, 54px);
  }
  .equipment__brand-logos--cardio {
    margin-bottom: 28px;
  }
  .equipment__brand-logo--technogym {
    width: clamp(76px, 14vw, 100px);
  }
  .equipment__brand-logo--hoist {
    width: clamp(78px, 14vw, 102px);
  }
  .equipment__brand-logo--precor {
    width: clamp(82px, 15vw, 106px);
  }
  .equipment__brand-logo--aconcept {
    width: clamp(84px, 16vw, 110px);
  }
  .equipment hr {
    margin: 58px auto 48px;
  }
  .equipment-tabs {
    display: grid;
    width: 100%;
    max-width: 440px;
    margin-bottom: 22px;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .equipment-tab {
    width: 100%;
    min-height: 44px;
    padding: 4px 10px 3px 12px;
    border-left-width: 3px;
    flex: none;
  }
  .equipment-tab__primary {
    overflow: visible;
    font-size: clamp(0.8rem, 2.1vw, 1rem);
    text-overflow: clip;
  }
  .equipment-tab__secondary {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
  }
  .equipment-tab.is-active .equipment-tab__primary {
    font-size: clamp(1rem, 3vw, 1.35rem);
  }
  .equipment-tab.is-active .equipment-tab__secondary {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
  }
  .equipment-gallery,
  .equipment-slider-wrap,
  .equipment-slider {
    width: 100%;
    max-width: none;
  }
  .equipment-slider-wrap,
  .equipment-slider {
    padding: 0;
  }
  .equipment-slider__arrow {
    display: none;
  }
  .equipment-card {
    padding: clamp(4px, 1.4vw, 10px);
    border-width: 3px;
    aspect-ratio: 1/1;
    height: auto;
    overflow: hidden;
  }
  .equipment-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .section.classes {
    padding: 0;
  }
  .classes {
    padding-bottom: clamp(34px, 7vw, 56px);
  }
  .classes__inner {
    width: 100%;
  }
  .classes__heading {
    min-height: clamp(132px, 35.3125vw, 226px);
    margin: 0;
    padding: clamp(58px, 18vw, 115px) 10px clamp(18px, 4.2vw, 27px);
    overflow: hidden;
    justify-content: flex-end;
  }
  .classes__heading h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.6rem);
    line-height: 1.25;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .classes__heading p {
    margin-top: 2px;
    font-size: clamp(0.9rem, 2.82vw, 1.125rem);
    line-height: 1.45;
    letter-spacing: 0.015em;
    white-space: normal;
  }
  .classes__heading-word {
    top: 0;
    left: 0;
    width: clamp(150px, 35.5vw, 227px);
  }
  .classes__gallery {
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
  }
  .classes__gallery:active {
    cursor: grabbing;
  }
  .classes__gallery-track {
    display: flex;
    width: 100%;
    height: clamp(197px, 52.5vw, 336px);
    gap: 0;
    transition-timing-function: linear !important;
  }
  .classes__media {
    display: block;
    width: auto;
    height: 100%;
    margin: 0;
    flex-shrink: 0;
    aspect-ratio: auto;
    user-select: none;
  }
  .classes__media img {
    pointer-events: none;
  }
  .classes__media:nth-child(2) img {
    object-position: 54% center;
  }
  .classes__panel {
    margin-top: clamp(6px, 1.4vw, 9px);
    padding: clamp(40px, 8vw, 52px) 0 clamp(50px, 10vw, 64px);
  }
  .classes__details {
    position: relative;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: clamp(44px, 15vw, 80px);
  }
  .classes__details::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - clamp(80px, 23.75vw, 152px));
    height: 1px;
    background: repeating-linear-gradient(to right, rgba(49, 49, 49, 0.38) 0 5px, transparent 5px 10px);
    content: "";
    transform: translate(-50%, -50%);
  }
  .classes__detail {
    width: 100%;
    padding-inline: clamp(36px, 5vw, 72px);
    box-sizing: border-box;
  }
  .classes__items {
    margin-top: clamp(22px, 5vw, 32px);
    grid-template-rows: repeat(2, minmax(clamp(72px, 15vw, 96px), auto));
  }
  .classes__item {
    grid-template-columns: clamp(42px, 9vw, 58px) 1px minmax(0, 1fr);
    column-gap: clamp(14px, 3.5vw, 24px);
  }
  .classes__item-key {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }
  .classes__item-line {
    height: clamp(48px, 10vw, 64px);
  }
  .classes__item p {
    font-size: clamp(1rem, 2.9vw, 1.1rem);
    line-height: 1.5;
  }
  .classes__label {
    min-height: clamp(29px, 5.625vw, 36px);
    padding-inline: clamp(9px, 2vw, 13px);
    line-height: 1.2;
  }
  .classes__divider {
    display: none;
  }
  .classes__tagline {
    min-height: clamp(52px, 11vw, 70px);
    margin: 0;
    padding: clamp(16px, 4.5vw, 26px) 8px;
    box-sizing: border-box;
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.45;
    letter-spacing: 0.02em;
    white-space: normal;
  }
  .facility-upgrade {
    padding: 78px 0 60px;
  }
  .facility-upgrade__heading {
    width: calc(100% - 40px);
    margin: 0 auto 28px;
  }
  .facility-upgrade__heading h2 {
    font-size: clamp(1.7rem, 5.7vw, 2.65rem);
    white-space: nowrap;
  }
  .facility-upgrade__heading p {
    font-size: clamp(0.9rem, 2.8vw, 1.25rem);
    letter-spacing: 0.06em;
  }
  .facility-upgrade__slider-wrap {
    width: 100%;
  }
  .facility-upgrade__card {
    background: #e5e5e5;
  }
  .facility-upgrade__body {
    min-height: 145px;
    padding: 18px 18px 22px;
  }
  .facility-upgrade__body h3 {
    font-size: clamp(1.05rem, 3.6vw, 1.45rem);
  }
  .facility-upgrade__body p {
    font-size: clamp(0.8rem, 2.15vw, 1rem);
    line-height: 1.75;
  }
  .facility-upgrade__number {
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }
  .facility-upgrade__arrow {
    top: calc((59.5238095238vw - 36px) * 216 / 380 / 2);
    width: 44px;
    height: 110px;
  }
  .facility-upgrade__arrow img {
    width: 30px;
    filter: brightness(0) invert(1);
  }
  .facility-upgrade__arrow--prev {
    left: 16px;
  }
  .facility-upgrade__arrow--next {
    right: 16px;
  }
  .safety-management {
    padding: clamp(46px, 9vw, 72px) 0 clamp(70px, 12vw, 96px);
  }
  .safety-management__heading {
    width: calc(100% - 36px);
    margin-bottom: 20px;
  }
  .safety-management__title {
    font-size: clamp(31px, 6.2vw, 42px);
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
  .safety-management__subtitle {
    margin-top: 2px;
    font-size: clamp(15px, 3.1vw, 20px);
    line-height: 1.5;
    white-space: nowrap;
  }
  .safety-gallery {
    width: 100%;
  }
  .safety-gallery__stage {
    aspect-ratio: 5/3;
  }
  .safety-gallery__main-image {
    object-position: center;
  }
  .safety-gallery__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .safety-gallery__arrow span {
    width: clamp(34px, 7vw, 50px);
    height: clamp(34px, 7vw, 50px);
  }
  .safety-gallery__arrow--prev {
    left: clamp(8px, 2vw, 18px);
  }
  .safety-gallery__arrow--next {
    right: clamp(8px, 2vw, 18px);
  }
  .safety-gallery__caption {
    right: 0;
    bottom: 0;
    display: grid;
    width: 100%;
    min-height: 54px;
    padding: 10px clamp(18px, 6vw, 42px);
    background: rgba(52, 50, 49, 0.75);
    grid-template-columns: max-content minmax(0, 1fr);
    gap: clamp(12px, 2.5vw, 22px);
    align-items: center;
  }
  .safety-gallery__caption-title {
    margin: 0;
    padding-right: clamp(12px, 2vw, 20px);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    font-size: clamp(17px, 3.2vw, 22px);
    white-space: nowrap;
  }
  .safety-gallery__caption-text {
    overflow: hidden;
    font-size: clamp(10px, 2vw, 13px);
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: normal;
  }
  .safety-gallery__thumbnails {
    margin-top: 8px;
    gap: 4px;
  }
  .safety-gallery__thumbnail {
    aspect-ratio: 1.75/1;
  }
  .safety-gallery__thumbnail::after {
    border-width: 2px;
  }
  .trainer-grid {
    grid-template-columns: 1fr;
  }
  .referral,
  .visit {
    grid-template-columns: 1fr;
  }
  .referral__media {
    min-height: 420px;
  }
  .referral__copy {
    padding: 70px 32px;
  }
  .visit__media {
    min-height: 420px;
    grid-row: 1;
  }
  .visit__copy {
    padding: 70px 24px;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
  .store-card {
    min-height: 330px;
  }
  .site-footer {
    min-height: 474px;
    padding: 28px 40px 18px;
  }
  .site-footer__inner {
    display: grid;
    min-height: 428px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    row-gap: 26px;
  }
  .site-footer__brand {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-start;
  }
  .site-footer__jexer {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
  }
  .site-footer__social {
    margin: 24px auto 0;
    gap: 12px;
  }
  .site-footer__social a {
    width: 35px;
    height: 35px;
  }
  .site-footer__jr-group {
    width: 72px;
    margin: 30px auto 0;
  }
  .site-footer__menus {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }
  .site-footer__menu-group h2 {
    margin: 0 0 8px;
    font-size: 0.88rem;
    line-height: 1.35;
  }
  .site-footer__menu-group ul {
    padding-left: 10px;
  }
  .site-footer__menu-group a {
    font-size: 0.78rem;
    line-height: 1.9;
  }
  .site-footer__menu-group + .site-footer__menu-group {
    margin-top: 28px;
  }
  .site-footer__policy {
    grid-column: 3;
    grid-row: 1;
    align-items: flex-start;
    gap: 12px;
  }
  .site-footer__policy a {
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
  }
  .site-footer__partners {
    display: flex;
    width: 100%;
    grid-column: 1/-1;
    grid-row: 2;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10vh;
  }
  .site-footer__partner-logo {
    width: auto;
    height: auto;
    flex: 0 0 auto;
  }
  .site-footer__partner-logo--technogym {
    width: 67px !important;
  }
  .site-footer__partner-logo--balanced-body {
    width: 82px !important;
  }
  .site-footer__partner-logo--gaura {
    width: 90px !important;
  }
  .site-footer__partner-logo--mizuno {
    width: 36px !important;
  }
  .site-footer__partner-logo--tanita {
    width: 73px !important;
  }
  .site-footer__partner-logo--iris-ohyama {
    width: 88px !important;
  }
  .site-footer__company {
    width: fit-content;
    grid-column: 1/-1;
    grid-row: 3;
    align-self: end;
    justify-self: center;
  }
  .site-footer__company img {
    width: min(332px, 100%);
  }
  .site-footer__company small {
    margin-top: 6px;
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: #fff;
    background: #000;
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease, visibility 0s linear 0.45s;
  }
  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease, visibility 0s;
  }
  .mobile-menu__inner {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    padding: 0 clamp(24px, 10.625vw, 68px) 72px;
    box-sizing: border-box;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .mobile-menu__top {
    position: relative;
    display: flex;
    height: 126px;
    align-items: flex-start;
    justify-content: center;
  }
  .mobile-menu__lang {
    display: inline-flex;
    width: max-content;
    height: 126px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
  }
  .mobile-menu__lang-item {
    display: flex;
    width: clamp(64px, 12.5vw, 80px);
    padding: 0 0 19px;
    color: #8f8f8f;
    font-size: clamp(18px, 3.75vw, 24px);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    align-items: flex-end;
    justify-content: center;
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  .mobile-menu__lang-item:last-child {
    width: clamp(88px, 16.40625vw, 105px);
  }
  .mobile-menu__lang-item.is-active {
    color: #fff;
    background: #ab0000;
  }
  .mobile-menu__toggle {
    position: fixed;
    top: 28px;
    right: 24px;
    z-index: 10001;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }
  .mobile-menu__toggle span {
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #8d8d8d;
  }
  .mobile-menu__nav {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding-top: 60px;
  }
  .mobile-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-menu__item {
    opacity: 0;
    text-align: center;
    transform: translateY(24px);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .mobile-menu__item > a {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    color: #fff;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
  }
  .mobile-menu__item + .mobile-menu__item {
    margin-top: 40px;
  }
  .mobile-menu__item-title {
    position: relative;
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding: 0 42px 20px;
    border: 0;
    border-bottom: 1px solid #333;
    color: #fff;
    background: transparent;
    font-family: inherit;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    appearance: none;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .mobile-menu__item-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 18px;
    height: 18px;
    transform: translateY(calc(-50% - 10px));
  }
  .mobile-menu__item-arrow::before, .mobile-menu__item-arrow::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-menu__item-arrow::before {
    width: 18px;
    height: 2px;
  }
  .mobile-menu__item-arrow::after {
    width: 2px;
    height: 18px;
  }
  .mobile-menu__sublist {
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    max-height: 0;
    margin: 0 auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    list-style: none;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu__sublist li {
    margin: 0 20px;
    padding: 24px 0 22px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.38);
    text-align: center;
  }
  .mobile-menu__sublist a {
    color: #fff;
    font-size: clamp(18px, 3.4375vw, 22px);
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
  }
  .mobile-menu__item.is-open .mobile-menu__sublist {
    max-height: 500px;
    margin-top: 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu__item.is-open .mobile-menu__item-arrow::after {
    opacity: 0;
  }
  .mobile-menu.is-open .mobile-menu__inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
  }
  .mobile-menu.is-open .mobile-menu__item {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu.is-open .mobile-menu__item:nth-child(1) {
    transition-delay: 0.18s;
  }
  .mobile-menu.is-open .mobile-menu__item:nth-child(2) {
    transition-delay: 0.23s;
  }
  .mobile-menu.is-open .mobile-menu__item:nth-child(3) {
    transition-delay: 0.28s;
  }
  .mobile-menu.is-open .mobile-menu__item:nth-child(4) {
    transition-delay: 0.33s;
  }
  .coach-team {
    padding: 63px 0 96px;
  }
  .coach-team__inner {
    width: min(100% - 40px, 410px);
  }
  .coach-team__header {
    margin-bottom: 28px;
  }
  .coach-team__title {
    font-size: clamp(34px, 6.25vw, 40px);
    line-height: 1.2;
    letter-spacing: 0.035em;
  }
  .coach-team__subtitle {
    margin-top: 3px;
    font-size: clamp(18px, 3.45vw, 22px);
    line-height: 1.45;
  }
  .coach-team__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .coach-team__body {
    padding: 17px 18px 0;
  }
  .coach-team__item-title {
    margin-bottom: 9px;
    font-size: 25px;
    line-height: 1.45;
  }
  .coach-team__description {
    font-size: 15px;
    line-height: 1.8;
  }
  .member-referral {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
  }
  .member-referral__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 8/5;
    background-position: left center;
    background-size: auto 100%;
    flex-shrink: 0;
    inset: auto;
  }
  .member-referral__content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 14px 20px 88px;
    text-align: center;
    background: #f2efed;
  }
  .member-referral__title {
    font-size: clamp(21px, 4vw, 25px);
    line-height: 1.45;
    letter-spacing: 0.035em;
    white-space: normal;
  }
  .member-referral__rate {
    margin: 0 0.06em;
    font-size: 1.6em;
    letter-spacing: 0.04em;
    vertical-align: -0.04em;
  }
  .member-referral__description {
    margin-top: 5px;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.75;
    letter-spacing: 0.025em;
  }
  .member-referral__desktop-break {
    display: none;
  }
  .facility-tour {
    padding: 0;
  }
  .facility-tour__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .facility-tour__visual {
    height: clamp(280px, 54.7vw, 448px);
    order: -1;
  }
  .facility-tour__image {
    object-position: center center;
  }
  .facility-tour__content {
    width: 100%;
    margin-left: 0;
    padding: 32px clamp(32px, 11.875vw, 76px) 67px;
  }
  .facility-tour__title {
    font-size: clamp(30px, 5.625vw, 36px);
    line-height: 1.4;
    letter-spacing: 0.02em;
    gap: clamp(15px, 3.75vw, 24px);
  }
  .facility-tour__label {
    min-height: 51px;
    margin-top: 35px;
    padding: 8px 22px;
    font-size: clamp(20px, 3.75vw, 24px);
  }
  .facility-tour__description {
    margin-top: 20px;
    font-size: clamp(15px, 2.65vw, 17px);
    line-height: 1.65;
  }
  .facility-tour__flow {
    margin-top: 20px;
  }
  .facility-tour__flow-title {
    font-size: clamp(17px, 2.95vw, 19px);
  }
  .facility-tour__step {
    margin-top: 27px;
  }
  .facility-tour__step-title, .facility-tour__step-text {
    font-size: clamp(15px, 2.65vw, 17px);
    line-height: 1.55;
  }
  .club-location {
    padding: 43px 0 106px;
  }
  .club-location__title {
    font-size: clamp(30px, 5vw, 34px);
    line-height: 1.25;
  }
  .club-location__subtitle {
    margin-top: 0;
    padding: 0 20px;
    font-size: clamp(16px, 2.8vw, 18px);
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .club-location__cards-wrap {
    margin-top: 14px;
  }
  .club-location__cards {
    width: 100%;
    max-width: none;
    gap: 3px;
  }
  .club-location__logo--jexer {
    top: 27.5%;
    width: 72%;
  }
  .club-location__logo--aura {
    top: 26%;
    width: 64%;
  }
  .club-location__name {
    bottom: 17.5%;
    padding: 0 8px;
    font-size: clamp(15px, 2.65vw, 17px);
    line-height: 1.3;
  }
  .club-location__name--jexer {
    bottom: 16.5%;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.45;
  }
  .club-location__coming {
    font-size: clamp(23px, 4.4vw, 28px);
    line-height: 0.92;
  }
  .club-location__coming span {
    display: block;
  }
  .club-location__coming span + span::before {
    content: none;
  }
  .faq-section {
    padding: 38px 0 105px;
  }
  .faq-section__inner {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 clamp(30px, 7.5vw, 48px);
  }
  .faq-section__title {
    padding-bottom: 10px;
    font-size: clamp(38px, 7.5vw, 48px);
    letter-spacing: 0.2em;
  }
  .faq-section__list {
    margin-top: 34px;
  }
  .faq-section__item + .faq-section__item {
    margin-top: 17px;
  }
  .faq-section__item.is-open {
    margin-bottom: 28px;
  }
  .faq-section__question {
    width: 100%;
    align-items: flex-start;
  }
  .faq-section__question-mark {
    width: 42px;
    height: 42px;
    font-size: 23px;
    flex-basis: 42px;
  }
  .faq-section__question-text {
    margin-top: 7px;
    margin-left: 10px;
    padding-right: 12px;
    font-size: clamp(17px, 3.15vw, 20px);
    line-height: 1.4;
    letter-spacing: 0.015em;
    flex: 1;
  }
  .faq-section__icon {
    width: 28px;
    height: 28px;
    margin-top: 7px;
    margin-left: auto;
    flex-basis: 28px;
  }
  .faq-section__answer {
    padding-left: 52px;
    padding-right: 32px;
  }
  .faq-section__answer-inner {
    padding-top: 14px;
  }
  .faq-section__answer-inner p {
    max-width: none;
    line-height: 1.45;
  }
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
  .store-banner {
    padding: 46px 0 35px;
  }
  .store-banner__slider {
    overflow: hidden;
  }
  .store-banner__slide {
    width: 100%;
    opacity: 1;
  }
  .store-banner__slide img {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .store-banner__arrow {
    width: 42px;
    height: 64px;
  }
  .store-banner__arrow img {
    width: 26px;
  }
  .store-banner__arrow--prev {
    left: 8px;
  }
  .store-banner__arrow--next {
    right: 8px;
  }
  .store-banner__pagination {
    margin-top: 38px;
    gap: 6px;
  }
  .store-banner__pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
  .store-overview {
    padding-top: 34px;
  }
  .store-overview__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .store-overview__caption {
    right: 70px;
    bottom: 58px;
    left: 70px;
    font-size: clamp(17px, 3.4vw, 22px);
    line-height: 1.45;
  }
  .store-overview__arrow {
    width: 56px;
    height: 170px;
  }
  .store-overview__arrow img {
    width: 46px;
  }
  .store-overview__arrow--prev {
    left: 10px;
  }
  .store-overview__arrow--next {
    right: 10px;
  }
  .store-overview__pagination {
    padding: 33px 0 60px;
  }
  .store-equipment {
    padding: 29px 0 31px;
  }
  .store-equipment__inner {
    width: calc(100% - 68px);
  }
  .store-equipment__title {
    font-size: 40px;
    letter-spacing: 0.06em;
  }
  .store-equipment__tabs {
    display: grid;
    margin-top: 50px;
    padding-bottom: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .store-equipment__tab {
    font-size: 24px;
    justify-self: center;
    gap: 10px;
  }
  .store-equipment__tab::before {
    width: 8px;
    height: 35px;
  }
  .store-equipment__panel {
    min-height: 258px;
  }
  .store-equipment__grid {
    margin-top: 31px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 25px;
  }
  .store-equipment__item-button {
    min-height: 38px;
    padding: 7px 5px;
    font-size: 18px;
    white-space: normal;
  }
  .store-equipment__item-button.is-active {
    padding-right: 17px;
    padding-left: 17px;
  }
  .store-equipment__panel:not(.is-expanded) .store-equipment__item:nth-child(n+11) {
    display: none;
  }
  .store-equipment__more-wrap {
    margin-top: 42px;
  }
  .store-amenities {
    padding: 34px 0 48px;
  }
  .store-amenities__inner {
    display: block;
    width: calc(100% - 56px);
  }
  .store-amenities__group {
    min-height: 0;
    padding: 0 0 47px;
  }
  .store-amenities__group + .store-amenities__group {
    padding-top: 32px;
    border-top: 1px solid rgba(75, 75, 75, 0.38);
    border-left: 0;
  }
  .store-amenities__group-title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }
  .store-amenities__list {
    margin-top: 27px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 18px;
  }
  .store-amenities__icon {
    width: 82px;
    height: 82px;
  }
  .store-amenities__caption {
    min-height: 40px;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.2;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(1) {
    order: 1;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(2) {
    order: 2;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(3) {
    order: 3;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(7) {
    order: 4;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(4) {
    order: 5;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(5) {
    order: 6;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(6) {
    order: 7;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(8) {
    order: 8;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(12) {
    order: 9;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(11) {
    order: 10;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(9) {
    order: 11;
  }
  .store-amenities__group--free .store-amenities__item:nth-child(10) {
    order: 12;
  }
  .store-amenities__note {
    display: block;
    width: calc(100% - 112px);
    margin: -2px auto 0;
    color: #484848;
    font-size: 14px;
    line-height: 1.65;
  }
  .membership-plan {
    padding-bottom: 72px;
  }
  .membership-plan__inner {
    width: calc(100% - 40px);
    max-width: 490px;
  }
  .membership-plan__title {
    margin-bottom: 25px;
    font-size: 36px;
    line-height: 1.3;
  }
  .membership-plan__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .membership-plan__card {
    min-height: 273px;
    padding: 39px 33px 30px;
  }
  .membership-plan__card-title {
    margin-bottom: 25px;
    font-size: 30px;
  }
  .membership-plan__card-title sup {
    font-size: 18px;
  }
  .membership-plan__content {
    grid-template-columns: 134px minmax(0, 1fr);
    gap: 20px;
  }
  .membership-plan__facility {
    border-left-width: 8px;
    padding-left: 8px;
  }
  .membership-plan__facility-list {
    gap: 4px;
    font-size: 25px;
    line-height: 1.42;
  }
  .membership-plan__price {
    margin-top: -3px;
    margin-bottom: 4px;
    font-size: 25px;
  }
  .membership-plan__description {
    font-size: 14px;
    line-height: 1.55;
  }
  .membership-plan__notes {
    margin-top: 37px;
    font-size: 14px;
    line-height: 1.9;
  }
  .store-classroom__heading {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 24px 20px 12px;
    box-sizing: border-box;
    text-align: center;
  }
  .store-classroom__title {
    font-size: 34px;
    line-height: 1.25;
  }
  .store-classroom__subtitle {
    margin-top: 2px;
    font-size: 18px;
    line-height: 1.4;
  }
  .store-classroom__slide {
    display: block;
    width: 100%;
    height: auto;
  }
  .store-classroom__media {
    width: 100%;
    height: auto;
    aspect-ratio: 640/315;
  }
  .store-classroom__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .store-classroom__content {
    display: block;
    height: auto;
    min-height: 162px;
    padding: 26px clamp(36px, 12.5vw, 80px) 30px;
  }
  .store-classroom__content-inner {
    max-width: none;
  }
  .store-classroom__content-inner h3 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.4;
  }
  .store-classroom__content-inner p {
    font-size: 16px;
    line-height: 2.05;
  }
  .store-classroom__arrow {
    top: 24.609375vw;
    width: 55px;
    height: 150px;
  }
  .store-classroom__arrow img {
    width: 48px;
  }
  .store-classroom__arrow--prev {
    left: 16px;
  }
  .store-classroom__arrow--next {
    right: 16px;
  }
  .store-classroom__pagination {
    min-height: 70px;
  }
  .store-trainers {
    padding: 36px 0 50px;
    background: #fff;
  }
  .store-trainers__header h2 {
    font-size: clamp(36px, 6.6vw, 42px);
  }
  .store-trainers__stage {
    margin-top: 16px;
  }
  .store-trainers__slider {
    width: 100%;
    overflow: visible;
  }
  .store-trainers__card {
    width: clamp(300px, 66.25vw, 424px) !important;
    min-height: 648px;
    padding-top: 40px;
    padding-bottom: 42px;
  }
  .store-trainers__arrow {
    display: none;
    width: 62px;
    height: 154px;
  }
  .store-trainers__arrow span {
    width: 54px;
    height: 54px;
  }
  .store-trainers__arrow--prev {
    left: clamp(20px, 5.5vw, 35px);
  }
  .store-trainers__arrow--next {
    right: clamp(20px, 5.5vw, 35px);
  }
  .course-categories {
    --course-panel-height: min(720px, calc(100svh - 170px));
    padding: 30px 0 64px;
  }
  .course-categories__inner {
    width: 100%;
  }
  .course-categories__title {
    margin-bottom: 16px;
    font-size: clamp(2rem, 6.25vw, 2.6rem);
    line-height: 1.2;
  }
  .course-categories__group + .course-categories__group {
    margin-top: 2px;
  }
  .course-categories__trigger {
    min-height: 89px;
    padding: 12px clamp(24px, 7.8vw, 50px);
  }
  .course-categories__trigger > .mdi {
    font-size: 31px;
  }
  .course-categories__trigger-label {
    font-size: clamp(1.35rem, 4vw, 1.7rem);
  }
  .course-categories__panel-scroll {
    padding: 40px 24px 64px;
    scrollbar-width: thin;
  }
  .course-categories__panel-scroll::-webkit-scrollbar {
    width: 8px;
  }
  .course-categories__course {
    min-height: 132px;
    grid-template-columns: minmax(100px, 30vw) minmax(0, 1fr);
    column-gap: clamp(20px, 5vw, 32px);
  }
  .course-categories__entry + .course-categories__entry {
    margin-top: 36px;
  }
  .course-categories__logo {
    width: 100%;
    height: auto;
    aspect-ratio: 235/132;
  }
  .course-categories__copy {
    padding-left: clamp(20px, 5vw, 32px);
  }
  .course-categories__copy p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.22;
  }
  .store-contact {
    padding: 41px 0 88px;
  }
  .store-contact__inner {
    display: grid;
    width: calc(100% - 148px);
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .store-contact__content {
    padding: 0 12px;
  }
  .store-contact__title {
    margin: -6px 0 0;
    font-size: clamp(30px, 5.625vw, 36px);
    line-height: 1.35;
    letter-spacing: 0.025em;
    white-space: nowrap;
  }
  .store-contact__store-name {
    margin-top: 27px;
    font-size: clamp(22px, 4.2vw, 27px);
    line-height: 1.45;
    white-space: nowrap;
  }
  .store-contact__details {
    margin-top: 42px;
  }
  .store-contact__detail + .store-contact__detail {
    margin-top: 22px;
  }
  .store-contact__detail dt {
    margin-bottom: 0;
    font-size: clamp(17px, 3.1vw, 20px);
    line-height: 1.45;
  }
  .store-contact__detail dd {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.55;
  }
  .store-contact__map {
    width: 100%;
    margin-top: 13px;
  }
  .aura-balance {
    padding: 20px 0 24px;
  }
  .aura-balance__heading {
    width: calc(100% - 40px);
  }
  .aura-balance__title {
    font-size: clamp(28px, 5.625vw, 36px);
    line-height: 1.4;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .aura-balance__description {
    max-width: 540px;
    margin: 8px auto 0;
    font-size: clamp(16px, 2.8vw, 18px);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
  .aura-balance__visual {
    width: 90vw;
    max-width: none;
    margin-top: 45px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .aura-balance__visual img {
    width: 100%;
    max-width: none;
  }
  .aura-features {
    padding: 65px 0 75px;
  }
  .aura-features__heading {
    margin-bottom: 26px;
    padding: 0 20px;
  }
  .aura-features__title {
    font-size: 38px;
    line-height: 1.3;
  }
  .aura-features__brand {
    gap: 7px;
    margin-top: 3px;
  }
  .aura-features__brand span {
    font-size: 50px;
  }
  .aura-features__brand em {
    font-size: 49px;
  }
  .aura-features__slider {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    touch-action: pan-y;
  }
  .aura-features__slider .swiper-wrapper {
    display: flex !important;
    grid-template-columns: none;
    grid-auto-flow: initial;
    gap: 0;
    width: 100%;
    height: auto;
  }
  .aura-features__card {
    flex-shrink: 0;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    aspect-ratio: 640/396;
  }
  .aura-features__caption {
    height: 86px;
    padding: 23px 14px 8px;
  }
  .aura-features__caption::before {
    left: -13%;
    width: 126%;
    height: 138px;
    border-radius: 50% 50% 0 0/58px 58px 0 0;
  }
  .aura-features__caption h3 {
    font-size: 25px;
  }
  .aura-features__caption p {
    margin-top: 4px;
    font-size: 16px;
  }
  .aura-features__arrow {
    position: absolute;
    top: 43%;
    z-index: 10;
    display: block;
    width: 48px;
    height: 92px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .aura-features__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 31px;
    height: 31px;
    border: solid #fff;
    border-width: 0 0 2px 2px;
  }
  .aura-features__arrow--prev {
    left: 0;
  }
  .aura-features__arrow--prev::before {
    left: 11px;
    transform: translateY(-50%) rotate(45deg);
  }
  .aura-features__arrow--next {
    right: 0;
  }
  .aura-features__arrow--next::before {
    right: 11px;
    transform: translateY(-50%) rotate(225deg);
  }
  .aura-features__thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    width: 100%;
    margin-top: 21px;
  }
  .aura-features__thumb {
    width: 100%;
    height: 69px;
    padding: 0;
    overflow: hidden;
    background: #ddd;
    border: 0;
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.25s ease;
  }
  .aura-features__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .aura-features__thumb:hover, .aura-features__thumb.is-active {
    opacity: 1;
  }
  .aura-plans {
    padding: 44px 0 93px;
  }
  .aura-plans__slider {
    max-width: none;
  }
  .aura-plans__wrapper {
    display: flex;
    gap: 0;
  }
  .aura-plans__slide {
    flex-shrink: 0;
    width: 400px !important;
  }
  .aura-plans__card {
    width: 400px;
  }
  .aura-plans__arrow {
    position: absolute;
    top: 299px;
    z-index: 10;
    display: block;
    width: 31px;
    height: 100px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .aura-plans__arrow::before, .aura-plans__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 58px;
    height: 1px;
    background: #d29570;
  }
  .aura-plans__arrow--prev {
    left: calc(50% - 261px);
  }
  .aura-plans__arrow--prev::before, .aura-plans__arrow--prev::after {
    left: 0;
    transform-origin: left center;
  }
  .aura-plans__arrow--prev::before {
    transform: rotate(-59deg);
  }
  .aura-plans__arrow--prev::after {
    transform: rotate(59deg);
  }
  .aura-plans__arrow--next {
    right: calc(50% - 261px);
  }
  .aura-plans__arrow--next::before, .aura-plans__arrow--next::after {
    right: 0;
    transform-origin: right center;
  }
  .aura-plans__arrow--next::before {
    transform: rotate(59deg);
  }
  .aura-plans__arrow--next::after {
    transform: rotate(-59deg);
  }
  .aura-plans__arrow.swiper-button-disabled {
    opacity: 0.35;
  }
  .aura-journey {
    padding: 0 0 75px;
    background: #fff;
  }
  .aura-journey__inner {
    width: 100%;
  }
  .aura-journey__heading {
    width: 100%;
    height: 252px;
    background: #ededed;
  }
  .aura-journey__heading::before, .aura-journey__heading::after {
    display: none;
  }
  .aura-journey__heading-title {
    order: 1;
    font-size: clamp(52px, 11vw, 72px);
  }
  .aura-journey__heading-sub {
    order: 2;
    margin: 12px 0 0;
    font-size: clamp(34px, 7vw, 46px);
  }
  .aura-journey__list {
    display: block;
  }
  .aura-journey__item {
    display: block;
  }
  .aura-journey__item:nth-child(odd) .aura-journey__content, .aura-journey__item:nth-child(even) .aura-journey__content {
    background: #ededed;
  }
  .aura-journey__item:nth-child(2) .aura-journey__content {
    background: #fff;
  }
  .aura-journey__image {
    height: auto;
    aspect-ratio: 640/413;
  }
  .aura-journey__image img {
    object-position: center;
  }
  .aura-journey__content {
    min-height: 0;
    padding: 38px 12% 92px;
    text-align: center;
  }
  .aura-journey__content h3 {
    margin-bottom: 24px;
    font-size: 24px;
    white-space: normal;
  }
  .aura-journey__content p {
    font-size: 20px;
    line-height: 1.45;
    text-align: left;
  }
  .aura-journey__content p + p {
    margin-top: 28px;
  }
  .aura-journey__item:last-child .aura-journey__content {
    padding-bottom: 124px;
  }
  .aura-journey__action {
    bottom: -34px;
  }
  .aura-journey__button {
    min-width: 265px;
    min-height: 62px;
    font-size: 31px;
  }
  .aura-studio {
    padding: 47px 0 63px;
  }
  .aura-studio__heading {
    margin-bottom: 29px;
    padding: 0 30px;
  }
  .aura-studio__title {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
  .aura-studio__description {
    margin-top: 7px;
    font-size: 19px;
    line-height: 1.35;
  }
  .aura-studio__mobile-br {
    display: block;
  }
  .aura-studio__swiper {
    overflow: visible;
    touch-action: pan-y;
  }
  .aura-studio__slide {
    width: 233px !important;
    height: 337px;
  }
  .aura-studio__arrow {
    width: 75px;
  }
  .aura-studio__arrow img {
    width: 36px;
    height: 44%;
  }
  .store-banner-popup {
    width: calc(100vw - 30px);
  }
  .store-banner-popup__content {
    padding: 25px 22px 30px;
  }
  .store-banner-popup__date {
    font-size: 13px;
  }
  .store-banner-popup__title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .store-banner-popup__text {
    font-size: 14px;
    line-height: 1.9;
  }
  .join-float-button {
    right: 14px;
    bottom: 90px;
    min-height: 50px;
    padding: 10px 18px;
    gap: 8px;
  }
  .join-float-button .mdi {
    font-size: 24px;
  }
  .join-float-button__text {
    font-size: 14px;
  }
  .aura-feedback {
    padding: 72px 0 64px;
  }
  .aura-feedback__inner {
    width: calc(100% - 32px);
  }
  .aura-feedback__title {
    margin-bottom: 32px;
    font-size: 38px;
  }
  .aura-feedback__item {
    padding: 0 36px;
    aspect-ratio: 1/1;
  }
  .aura-feedback__content {
    font-size: 18px;
    line-height: 1.65;
  }
  .aura-feedback__slider {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    column-gap: 8px;
  }
  .aura-feedback__arrow {
    width: 32px;
    height: 102px;
  }
}
/*520px*/
@media (max-width: 520px) {
  .site-header {
    height: 66px;
    transition: height 0.3s ease;
  }
  .site-header.is-scrolled {
    height: 46px;
  }
  .site-header.is-scrolled .brand__panel {
    width: 100px;
    height: 60px;
  }
  .brand__panel {
    width: 148px;
    height: 88px;
    transition: width 0.3s ease, height 0.3s ease;
  }
  .facility-upgrade {
    padding: 62px 0 48px;
  }
  .facility-upgrade__heading {
    margin-bottom: 22px;
  }
  .facility-upgrade__heading h2 {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }
  .facility-upgrade__heading p {
    font-size: 0.9rem;
  }
  .facility-upgrade__body {
    min-height: 128px;
    padding: 15px 16px 18px;
  }
  .facility-upgrade__body h3 {
    font-size: 1.05rem;
  }
  .facility-upgrade__body p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .facility-upgrade__number {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
  .facility-upgrade__arrow {
    top: calc((78.125vw - 18px) * 216 / 380 / 2);
  }
  .facility-upgrade__arrow img {
    width: 24px;
  }
  .facility-upgrade__arrow--prev {
    left: 8px;
  }
  .facility-upgrade__arrow--next {
    right: 8px;
  }
  .section.news {
    padding: 58px 0 40px;
  }
  .section.news .section-title {
    margin-bottom: 48px;
  }
  .news-card {
    min-height: 215px;
  }
  .news-card__inner {
    width: calc(80% - 84px);
  }
  .news-card h3 {
    font-size: 1.16rem;
  }
  .news-slider__arrow {
    width: 36px;
    height: 116px;
  }
  .news-slider__arrow img {
    width: 36px;
    height: 116px;
  }
  .news[data-news-carousel] .news-slider {
    --news-arrow-space: 40px;
  }
  .news[data-news-carousel] .news-slider__arrow {
    width: 30px;
    height: 96px;
  }
  .news[data-news-carousel] .news-slider__arrow img {
    width: 30px;
    height: 96px;
  }
  .news[data-news-carousel] .news-slider__arrow--prev {
    left: 5px;
  }
  .news[data-news-carousel] .news-slider__arrow--next {
    right: 5px;
  }
  .news-modal {
    padding: 12px;
  }
  .news-modal__dialog {
    max-height: 92vh;
  }
  .news-detail__media {
    aspect-ratio: 4/3;
  }
  .news-detail__body {
    padding: 28px 22px 32px;
  }
  .down-link {
    margin-top: 44px;
  }
  .container {
    width: min(100% - 32px, var(--container));
  }
  .section {
    padding: 64px 0;
  }
  .section-title {
    margin-bottom: 38px;
  }
  .concept__source {
    aspect-ratio: unset;
  }
  .concept__source::before, .concept__source::after {
    width: 90px;
    opacity: 0.75;
  }
  .concept__source-logo {
    width: 50%;
    padding: 15px 0;
  }
  .concept__overlay {
    padding: 50px 16px;
  }
  .concept__message {
    width: calc(100% - 40px);
  }
  .concept__message h2 {
    font-size: 1.45rem;
  }
  .concept__message p {
    font-size: 0.88rem;
  }
  .concept__message p br {
    display: none;
  }
  .concept__tagline {
    font-size: 1.45rem;
  }
  .concept__visual {
    aspect-ratio: 1/1.3;
  }
  .feature-panels {
    padding-top: 24px;
  }
  .feature-panel {
    height: clamp(170px, 46vw, 240px);
    min-height: 0;
  }
  .feature-panel__image {
    object-position: center;
  }
  .feature-panel__content {
    width: calc(100% - 32px);
  }
  .feature-panel__content h2 {
    margin-bottom: 6px;
    font-size: 1.7rem;
  }
  .feature-panel__content p {
    font-size: 1rem;
  }
  .life-stage {
    padding: 34px 0 0;
  }
  .life-stage .container {
    width: 100%;
  }
  .life-stage__layout {
    display: block;
    width: 100%;
  }
  .life-stage__copy {
    max-width: none;
    padding: 0 24px;
    margin-bottom: 18px;
  }
  .life-stage__copy h2 {
    margin-top: 16px;
    font-size: 1.85rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .life-stage__eyebrow {
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }
  .life-stage__eyebrow::before {
    margin-top: 0.78em;
  }
  .life-stage__swiper {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }
  .life-stage__media {
    position: relative;
  }
  .life-stage__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 828/686;
    object-fit: cover;
  }
  .life-stage__media figcaption {
    bottom: 20px;
    left: 24px;
    right: 24px;
  }
  .life-stage__media figcaption h3 {
    margin: 0 0 6px;
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: 1px;
  }
  .life-stage__media figcaption p {
    font-size: 1.1rem;
    line-height: 1.45;
  }
  .life-stage__media figcaption p br {
    display: none;
  }
  .life-stage__arrow {
    top: 50%;
    bottom: auto;
    width: 60px;
    height: 100px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35px 100px;
    transform: translateY(-50%);
    opacity: 0.7;
  }
  .life-stage__arrow img {
    display: none;
  }
  .life-stage__arrow--prev {
    left: clamp(12px, 4vw, 20px);
    background-image: url("../images/arrow2_L_w.svg");
  }
  .life-stage__arrow--next {
    right: clamp(12px, 4vw, 20px);
    background-image: url("../images/arrow2_R_w.svg");
  }
  .facilities__copy-intro {
    min-height: 156px;
    padding: 76px 44px 14px;
  }
  .facilities__copy-intro::before {
    top: 10px;
    left: 76px;
  }
  .facilities__headline {
    font-size: 34px;
  }
  .facilities__lead {
    padding-left: 23px;
    font-size: 13px;
  }
  .facilities__lead::before {
    width: 15px;
  }
  .facilities__media {
    aspect-ratio: 7/5;
  }
  .facilities__copy-detail {
    min-height: 104px;
    padding: 18px 44px 16px;
  }
  .facilities__copy-detail h2 {
    margin-bottom: 4px;
    font-size: 28px;
  }
  .facilities__copy-detail p {
    font-size: 12px;
    line-height: 1.6;
  }
  .cycle-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cycle-tabs__button {
    padding: 7px 8px;
    border-right-width: 2px;
  }
  .cycle-tabs__kanji {
    font-size: clamp(24px, 8vw, 40px);
  }
  .cycle-tabs__label {
    font-size: 19px;
  }
  .cycle-tabs__punctuation {
    margin: 0 0 -15px -10px;
  }
  .equipment .section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.35;
  }
  .equipment .section-heading p {
    font-size: 0.78rem;
    line-height: 1.6;
  }
  .equipment__brand-logos {
    width: 100%;
    margin: 24px auto 24px;
    gap: clamp(18px, 5vw, 24px);
  }
  .equipment__brand-logos--cardio {
    margin-bottom: 24px;
  }
  .equipment__brand-logo--technogym {
    width: clamp(66px, 20vw, 78px);
  }
  .equipment__brand-logo--hoist {
    width: clamp(68px, 20vw, 80px);
  }
  .equipment__brand-logo--precor {
    width: clamp(72px, 21vw, 84px);
  }
  .equipment__brand-logo--aconcept {
    width: clamp(74px, 22vw, 88px);
  }
  .equipment hr {
    margin: 46px auto 40px;
  }
  .equipment .section-heading--compact {
    margin-bottom: 18px;
  }
  .equipment-tabs {
    margin-bottom: 18px;
  }
  .equipment-tab {
    min-height: 40px;
    padding: 3px 6px 2px 8px;
  }
  .equipment-card {
    padding: 4px;
    border-width: 3px;
  }
  .equipment .fine-print {
    margin-top: 18px;
    font-size: 0.8rem;
    line-height: 1.7;
  }
  .section-heading__ghost {
    font-size: 10rem;
  }
  .safety-management__title {
    font-size: clamp(27px, 7vw, 34px);
  }
  .safety-management__subtitle {
    font-size: clamp(13px, 3.4vw, 17px);
  }
  .safety-gallery__stage {
    aspect-ratio: 1.52/1;
  }
  .safety-gallery__caption {
    min-height: 52px;
    padding-right: 14px;
    padding-left: 14px;
    gap: 10px;
    grid-template-columns: 2.5fr 7.5fr;
  }
  .safety-gallery__caption-title {
    padding-right: 10px;
    font-size: 16px;
    white-space: normal;
  }
  .safety-gallery__caption-text {
    font-size: 0.8rem;
  }
  .visit__copy li span {
    padding-left: 0;
  }
  .site-footer {
    padding: 24px 20px 16px;
  }
  .site-footer__inner {
    min-height: 0;
    grid-template-columns: 0.6fr 1fr 1fr;
    column-gap: 18px;
    row-gap: 22px;
  }
  .site-footer__social {
    margin-top: 18px;
    gap: 8px;
  }
  .site-footer__social a {
    width: 100%;
    height: 28px;
  }
  .site-footer__jr-group {
    width: 56px;
    margin: 22px auto 0;
  }
  .site-footer__menu-group h2 {
    margin-bottom: 6px;
  }
  .site-footer__menu-group ul {
    padding-left: 7px;
  }
  .site-footer__menu-group a {
    line-height: 1.8;
  }
  .site-footer__menu-group + .site-footer__menu-group {
    margin-top: 30px;
  }
  .site-footer__policy {
    gap: 8px;
  }
  .site-footer__policy a {
    line-height: 1.3;
  }
  .site-footer__partners {
    gap: 10px;
    flex-wrap: balanced;
  }
  .site-footer__partner-logo--technogym {
    width: 52px !important;
  }
  .site-footer__partner-logo--balanced-body {
    width: 64px !important;
  }
  .site-footer__partner-logo--gaura {
    width: 70px !important;
  }
  .site-footer__partner-logo--mizuno {
    width: 28px !important;
  }
  .site-footer__partner-logo--tanita {
    width: 58px !important;
  }
  .site-footer__partner-logo--iris-ohyama {
    width: 68px !important;
  }
  .site-footer__company img {
    width: min(290px, 100%);
  }
  .site-footer__company small {
    font-size: 0.68rem;
    white-space: normal;
  }
  .store-banner {
    padding: 47px 0 35px;
  }
  .store-banner__slider {
    overflow: hidden;
  }
  .store-banner__slide {
    width: 100%;
    max-width: none;
    opacity: 1;
  }
  .store-banner__slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: initial;
  }
  .store-banner__arrow {
    top: calc(50% - 28px);
    width: 48px;
    height: 80px;
  }
  .store-banner__arrow span {
    width: 30px;
    height: 30px;
  }
  .store-banner__arrow--prev {
    left: 2px;
  }
  .store-banner__arrow--next {
    right: 2px;
  }
  .store-banner__pagination {
    margin-top: 38px;
  }
  .store-overview__caption {
    right: 58px;
    bottom: 36px;
    left: 58px;
    font-size: 16px;
  }
  .store-overview__arrow {
    width: 46px;
  }
  .store-overview__arrow img {
    width: 38px;
  }
  .store-overview__arrow--prev {
    left: 4px;
  }
  .store-overview__arrow--next {
    right: 4px;
  }
  .store-equipment__inner {
    width: calc(100% - 36px);
  }
  .store-equipment__title {
    font-size: 34px;
  }
  .store-equipment__tabs {
    margin-top: 42px;
  }
  .store-equipment__tab {
    font-size: clamp(18px, 4vw, 24px);
    gap: 7px;
  }
  .store-equipment__tab::before {
    width: 6px;
    height: 29px;
  }
  .store-equipment__grid {
    column-gap: 7px;
    row-gap: 19px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .store-amenities__inner {
    width: calc(100% - 32px);
  }
  .store-amenities__group-title {
    font-size: 25px;
  }
  .store-amenities__list {
    column-gap: 6px;
    row-gap: 16px;
  }
  .store-amenities__icon {
    width: min(76px, 86%);
    height: auto;
    aspect-ratio: 1;
  }
  .store-amenities__caption {
    min-height: 36px;
    font-size: 14px;
    white-space: normal;
  }
  .store-amenities__note {
    width: calc(100% - 48px);
    font-size: 13px;
  }
  .membership-plan__title {
    font-size: 30px;
  }
  .membership-plan__card {
    min-height: auto;
    padding: 30px 22px;
  }
  .membership-plan__card-title {
    font-size: 26px;
  }
  .membership-plan__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .membership-plan__facility-list {
    font-size: 26px;
  }
  .membership-plan__price {
    font-size: 24px;
  }
  .membership-plan__description {
    font-size: 14px;
  }
  .store-classroom__heading {
    padding: 23px 20px 12px;
  }
  .store-classroom__title {
    font-size: clamp(28px, 5.4vw, 34px);
  }
  .store-classroom__subtitle {
    font-size: clamp(16px, 2.8vw, 18px);
  }
  .store-classroom__content {
    padding: clamp(24px, 4.5vw, 30px) clamp(40px, 12.5vw, 80px) clamp(28px, 5vw, 34px);
  }
  .store-classroom__content-inner h3 {
    font-size: clamp(20px, 3.8vw, 24px);
  }
  .store-classroom__content-inner p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 2.05;
  }
  .store-classroom__pagination {
    min-height: 70px;
  }
  .store-classroom__pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
  .store-trainers__header h2 {
    font-size: 34px;
  }
  .store-trainers__card {
    width: clamp(286px, 77vw, 340px) !important;
    min-height: 620px;
    border-radius: 16px;
  }
  .store-trainers__top, .store-trainers__details {
    padding-right: 9%;
    padding-left: 9%;
  }
  .store-trainers__top {
    column-gap: 6%;
  }
  .store-trainers__intro {
    padding-top: 8px;
  }
  .store-trainers__intro h3 {
    margin-bottom: 12px;
    font-size: 21px;
  }
  .store-trainers__intro p, .store-trainers__detail-block p, .store-trainers__detail-block ul {
    font-size: 13px;
  }
  .store-trainers__detail-block {
    margin-top: 20px;
  }
  .store-trainers__detail-block h4 {
    margin-bottom: 7px;
    font-size: 18px;
    gap: 9px;
  }
  .store-trainers__detail-block h4::before {
    width: 6px;
    height: 29px;
    flex-basis: 6px;
  }
  .store-trainers__arrow {
    width: 36px;
  }
  .store-trainers__arrow--prev {
    left: 36px;
  }
  .store-trainers__arrow--next {
    right: 36px;
  }
  .course-categories {
    --course-panel-height: min(720px, calc(100svh - 150px));
  }
  .course-categories__trigger {
    min-height: 78px;
    padding-inline: 20px;
  }
  .course-categories__trigger > .mdi {
    font-size: 28px;
  }
  .course-categories__trigger-label {
    font-size: clamp(1.08rem, 5.2vw, 1.35rem);
  }
  .course-categories__trigger-separator {
    margin-inline: 4px;
  }
  .course-categories__panel-scroll {
    padding: 32px 16px 48px;
  }
  .course-categories__course {
    min-height: 104px;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .course-categories__entry + .course-categories__entry {
    margin-top: 40px;
  }
  .course-categories__copy {
    padding-left: 16px;
    border-left: 0;
  }
  .course-categories__copy h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }
  .course-categories__copy p {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
    line-height: 1.28;
  }
  .course-categories__meta {
    margin-bottom: 8px;
    font-size: 0.76rem;
    gap: 5px 12px;
  }
  .course-categories__description {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }
  .course-detail-popup {
    width: calc(100vw - 28px);
    border-radius: 13px;
  }
  .course-detail-popup__header {
    padding: 30px 22px 22px;
  }
  .course-detail-popup__logo {
    max-height: 86px;
    margin-bottom: 16px;
  }
  .course-detail-popup__title {
    font-size: 21px;
  }
  .course-detail-popup__body {
    padding: 20px 22px 30px;
  }
  .course-detail-popup__meta > div {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .course-detail-popup__description {
    margin-top: 22px;
  }
  .course-detail-popup__description h4 {
    font-size: 18px;
  }
  .course-detail-popup__description p {
    font-size: 14px;
    line-height: 1.75;
  }
  .store-contact__inner {
    width: calc(100% - 40px);
  }
  .store-contact__content {
    padding: 0;
  }
  .store-contact__title, .store-contact__store-name {
    white-space: normal;
  }
  .aura-features {
    padding-top: 52px;
  }
  .aura-features__heading {
    margin-bottom: 22px;
  }
  .aura-features__title {
    font-size: 30px;
  }
  .aura-features__brand span {
    font-size: 42px;
  }
  .aura-features__brand em {
    font-size: 41px;
  }
  .aura-features__caption {
    height: 78px;
    padding-top: 21px;
  }
  .aura-features__caption h3 {
    font-size: 21px;
  }
  .aura-features__caption p {
    font-size: 13px;
  }
  .aura-features__thumb {
    height: 54px;
  }
  .aura-plans__slide {
    width: min(400px, 100vw - 80px) !important;
  }
  .aura-plans__card {
    width: 100%;
    padding-right: 28px;
    padding-left: 28px;
  }
  .aura-plans__title {
    font-size: 36px;
  }
  .aura-plans__list {
    font-size: 18px;
    line-height: 1.9;
  }
  .aura-plans__arrow {
    width: 28px;
  }
  .aura-plans__arrow::before, .aura-plans__arrow::after {
    width: 48px;
  }
  .aura-plans__arrow--prev {
    left: 11px;
  }
  .aura-plans__arrow--next {
    right: 11px;
  }
  .aura-journey__heading {
    height: 196px;
  }
  .aura-journey__heading-title {
    font-size: 47px;
  }
  .aura-journey__heading-sub {
    margin-top: 8px;
    font-size: 32px;
  }
  .aura-journey__content {
    padding: 30px 9% 68px;
  }
  .aura-journey__content h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .aura-journey__content p {
    font-size: 17px;
  }
  .aura-journey__content p + p {
    margin-top: 22px;
  }
  .aura-journey__item:last-child .aura-journey__content {
    padding-bottom: 102px;
  }
  .aura-journey__button {
    min-width: 220px;
    min-height: 54px;
    font-size: 25px;
  }
  .aura-studio__heading {
    padding: 0 20px;
  }
  .aura-studio__title {
    font-size: 30px;
  }
  .aura-studio__description {
    font-size: 17px;
  }
  .aura-studio__arrow {
    width: 58px;
  }
  .aura-studio__arrow img {
    width: 29px;
  }
  .aura-feedback {
    padding: 58px 0 54px;
  }
  .aura-feedback__inner {
    width: calc(100% - 24px);
  }
  .aura-feedback__title {
    margin-bottom: 28px;
    font-size: 32px;
  }
  .aura-feedback__item {
    padding: 0;
    aspect-ratio: 1.25/1;
  }
  .aura-feedback__item::before {
    display: none;
  }
  .aura-feedback__content {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 30px;
  }
  .aura-feedback__author {
    margin-top: 24px !important;
  }
  .aura-feedback__slider {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    column-gap: 6px;
  }
  .aura-feedback__arrow {
    width: 28px;
    height: 90px;
  }
  .join-float-button,
  .back-to-top {
    bottom: calc(20px + var(--footer-offset, 0px));
  }
  .join-float-button {
    bottom: calc(80px + var(--footer-offset, 0px));
  }
  .back-to-top {
    bottom: calc(20px + var(--footer-offset, 0px));
  }
}
/*360px*/
@media (max-width: 360px) {
  .site-footer__menu-group {
    min-width: 0;
  }
  .site-footer__menu-group h2 {
    white-space: unset;
  }
  .aura-features__title {
    font-size: 30px;
  }
  .aura-features__brand span,
  .aura-features__brand em {
    font-size: 42px;
  }
  .aura-features__caption h3 {
    font-size: 21px;
  }
  .aura-features__caption p {
    font-size: 14px;
  }
  .aura-features__thumb {
    height: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* AURA Pilates page */
@media (max-width: 820px) {
  .page-aura .brand__panel {
    width: 148px;
    padding: 15px 10px;
    background: #AC8541;
  }
  .page-aura .brand__panel img {
    width: 82%;
    max-width: 122px;
    height: auto;
  }
  .page-aura .mobile-menu__lang-item.is-active {
    background: #AC8541;
  }
  .page-aura .section.news {
    padding: 56px 0 44px;
  }
  .page-aura .section.news .container {
    width: min(100% - 40px, 640px);
  }
  .page-aura .section.news .section-title {
    margin-bottom: 32px;
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-aura .news-slider {
    overflow: hidden;
  }
  .page-aura .news-grid {
    gap: 0;
  }
  .page-aura .news-card {
    min-height: 220px;
    padding: 32px clamp(26px, 7vw, 42px);
    border: 1px solid #d59673;
    border-radius: 22px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .page-aura .news-card__inner {
    width: 100%;
  }
  .page-aura .news-card time {
    font-size: 0.82rem;
  }
  .page-aura .news-card h3 {
    margin: 3px 0 12px;
    font-size: 1.12rem;
  }
  .page-aura .news-card p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .page-aura .news-card[role=button]:hover, .page-aura .news-card[role=button]:focus-visible {
    transform: none;
  }
  .page-aura .news-slider__pagination.swiper-pagination {
    margin-top: 22px;
  }
  .page-aura .news-slider__pagination.swiper-pagination .swiper-pagination-bullet-active {
    background: #AC8541;
  }
  .aura-hero picture {
    aspect-ratio: 640/457;
  }
  .aura-hero__image {
    object-position: center;
  }
}
.aura-teachers {
  --aura-teacher-ink: #5b3c31;
  --aura-teacher-line: #c98b66;
  --aura-teacher-gold: #b58a39;
  min-height: 830px;
  padding: 64px 20px 102px;
  color: var(--aura-teacher-ink);
  background-color: #fbfaf7;
  background-image: url("../images/aura_teacher_bg.svg");
  background-repeat: repeat;
  background-size: 419px 432px;
  box-sizing: border-box;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.aura-teachers__title {
  margin: 0 0 26px;
  font-size: clamp(36px, 2.3vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-align: center;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
}
.aura-teachers__frame {
  position: relative;
  width: min(100%, 1360px);
  margin: 0 auto;
}
.aura-teachers__swiper {
  width: min(100%, 1100px);
  margin: 0 auto;
  overflow: hidden;
}
.aura-teachers__slide {
  height: auto;
}
.aura-teachers__card {
  width: 100%;
  height: 592px;
  padding: 31px 40px 34px;
  border: 1px solid var(--aura-teacher-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-sizing: border-box;
}
.aura-teachers__card-header {
  display: flex;
  align-items: center;
  gap: 33px;
  min-width: 0;
  margin-bottom: 21px;
  padding-left: 6px;
}
.aura-teachers__photo {
  display: block;
  flex: 0 0 122px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.aura-teachers__name {
  min-width: 0;
  margin: 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.aura-teachers__card-scroll {
  height: calc(100% - 143px);
  padding-right: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: rgba(181, 138, 57, 0.52) transparent;
  scrollbar-width: thin;
}
.aura-teachers__card-scroll::-webkit-scrollbar {
  width: 4px;
}
.aura-teachers__card-scroll::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(181, 138, 57, 0.52);
}
.aura-teachers__group {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}
.aura-teachers__group p {
  margin: 5px 0 0;
}
.aura-teachers__group--certification {
  margin-top: 78px;
}
.aura-teachers__label {
  margin: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "GenRyu Serif", "Noto Serif TC", "Source Han Serif TC", serif;
}
.aura-teachers__certifications {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.aura-teachers__certifications li {
  position: relative;
  padding-left: 14px;
}
.aura-teachers__certifications li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aura-teacher-gold);
  content: "";
  transform: translateY(-50%);
}
.aura-teachers__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 72px;
  height: 180px;
  padding: 0;
  border: 0;
  color: var(--aura-teacher-gold);
  background: transparent;
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}
.aura-teachers__arrow svg {
  display: block;
  width: 50px;
  height: 154px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.aura-teachers__arrow--prev {
  left: 0;
}
.aura-teachers__arrow--next {
  right: 0;
}
.aura-teachers__arrow:hover, .aura-teachers__arrow:focus-visible {
  color: #8f6623;
}
.aura-teachers__arrow:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (min-width: 701px) and (max-width: 1199px) {
  .aura-teachers__frame {
    width: min(100%, 910px);
  }
  .aura-teachers__swiper {
    width: min(100% - 150px, 704px);
  }
}
@media (max-width: 820px) {
  .aura-teachers__card-header {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .aura-teachers {
    min-height: 760px;
    padding: 47px 0 37px;
    background-size: 160px 80px;
  }
  .aura-teachers__title {
    margin-bottom: 42px;
    padding: 0 16px;
    font-size: 39px;
  }
  .aura-teachers__frame {
    width: 100%;
  }
  .aura-teachers__swiper {
    width: 344px;
    max-width: calc(100vw - 136px);
  }
  .aura-teachers__card {
    height: 592px;
    padding: 31px 46px 34px;
  }
  .aura-teachers__card-header {
    gap: 27px;
    margin-bottom: 21px;
    flex-direction: column;
  }
  .aura-teachers__photo {
    flex-basis: 122px;
    width: 122px;
    height: 122px;
  }
  .aura-teachers__name {
    font-size: 21px;
  }
  .aura-teachers__group {
    font-size: 16px;
  }
  .aura-teachers__group--certification {
    margin-top: 78px;
  }
  .aura-teachers__label {
    font-size: 19px;
  }
  .aura-teachers__arrow {
    width: 70px;
    height: 180px;
  }
  .aura-teachers__arrow--prev {
    left: 27px;
  }
  .aura-teachers__arrow--next {
    right: 27px;
  }
}
@media (max-width: 480px) {
  .aura-teachers__title {
    font-size: 34px;
  }
  .aura-teachers__swiper {
    width: calc(100vw - 112px);
    max-width: 344px;
  }
  .aura-teachers__card {
    padding-right: 28px;
    padding-left: 28px;
  }
  .aura-teachers__card-header {
    padding-left: 0;
    flex-direction: column;
  }
  .aura-teachers__card-header {
    gap: 18px;
    flex-direction: column;
  }
  .aura-teachers__photo {
    flex-basis: 104px;
    width: 104px;
    height: 104px;
  }
  .aura-teachers__arrow {
    width: 48px;
  }
  .aura-teachers__arrow svg {
    width: 37px;
    height: 140px;
  }
  .aura-teachers__arrow--prev {
    left: 5px;
  }
  .aura-teachers__arrow--next {
    right: 5px;
  }
}
.page-aura .aura-courses {
  --aura-course-gold: #ac8541;
  --aura-course-brown: #604638;
  --aura-course-text: #806e63;
  --aura-course-line: #c7b8af;
  --course-panel-height: min(590px, calc(100svh - 180px));
  padding: 54px 24px 70px;
  color: var(--aura-course-text);
  background: #fff;
}
.page-aura .aura-courses *,
.page-aura .aura-courses *::before,
.page-aura .aura-courses *::after {
  box-sizing: border-box;
}
.page-aura .aura-courses__inner {
  width: min(1010px, 100%);
  margin-inline: auto;
}
.page-aura .aura-courses__title {
  margin: 0 0 14px;
  color: var(--aura-course-brown);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
}
.page-aura .aura-courses__group {
  width: 100%;
}
.page-aura .aura-courses__group + .aura-courses__group {
  margin-top: 14px;
}
.page-aura .aura-courses__group.is-open .aura-courses__toggle {
  color: #fff;
  background: var(--aura-course-gold);
}
.page-aura .aura-courses__group.is-open .aura-courses__toggle > .mdi {
  transform: rotate(0deg);
}
.page-aura .aura-courses__group.is-open .aura-courses__panel {
  height: var(--course-panel-height);
  visibility: visible;
  pointer-events: auto;
}
.page-aura .aura-courses__heading {
  margin: 0;
}
.page-aura .aura-courses__toggle {
  display: grid;
  width: 100%;
  min-height: 68px;
  padding: 12px 25px 12px 54px;
  border: 1px solid var(--aura-course-gold);
  border-radius: 19px;
  color: var(--aura-course-text);
  background: #fff;
  font: inherit;
  cursor: pointer;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.page-aura .aura-courses__toggle:hover, .page-aura .aura-courses__toggle:focus-visible {
  color: #fff;
  background: var(--aura-course-gold);
}
.page-aura .aura-courses__toggle:focus-visible {
  outline: 2px solid var(--aura-course-brown);
  outline-offset: 3px;
}
.page-aura .aura-courses__toggle > .mdi {
  display: block;
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
  grid-column: 3;
  justify-self: end;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
.page-aura .aura-courses__toggle .course-categories__trigger-label {
  display: flex;
  min-width: 0;
  color: inherit;
  font-family: inherit;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.01em;
  grid-column: 2;
  align-items: center;
  justify-content: center;
}
.page-aura .aura-courses .course-categories__trigger-separator {
  margin-inline: 8px;
  font-weight: 300;
}
.page-aura .aura-courses__panel {
  width: 100%;
  height: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  contain: layout paint;
  pointer-events: none;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
}
.page-aura .aura-courses__scroll {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 31px 48px 31px 36px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--aura-course-gold) #ededed;
  scrollbar-width: auto;
}
.page-aura .aura-courses__scroll::-webkit-scrollbar {
  width: 18px;
}
.page-aura .aura-courses__scroll::-webkit-scrollbar-track {
  background: #ededed;
}
.page-aura .aura-courses__scroll::-webkit-scrollbar-thumb {
  min-height: 90px;
  border: 0;
  background: var(--aura-course-gold);
}
.page-aura .aura-courses__scroll:focus-visible {
  outline: 2px solid rgba(172, 133, 65, 0.45);
  outline-offset: -2px;
}
.page-aura .aura-courses__entry {
  width: 100%;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Times New Roman", serif;
}
.page-aura .aura-courses__entry + .aura-courses__entry {
  margin-top: 24px;
}
.page-aura .aura-courses__course {
  display: grid;
  width: 100%;
  min-height: 150px;
  padding: 15px 0;
  color: inherit;
  text-decoration: none;
  grid-template-columns: 200px minmax(0, 1fr);
  column-gap: 30px;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.page-aura .aura-courses__course:hover {
  transform: translateY(-2px);
}
.page-aura .aura-courses__course:focus-visible {
  outline: 2px solid rgba(172, 133, 65, 0.55);
  outline-offset: 5px;
}
.page-aura .aura-courses__course-image {
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1080;
  overflow: hidden;
  border: 1px solid rgba(172, 133, 65, 0.22);
  background: #fff;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.page-aura .aura-courses__course-image img {
  display: block;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  max-height: 100% !important;
  object-fit: contain;
}
.page-aura .aura-courses__course-copy {
  display: flex;
  min-width: 0;
  min-height: 116px;
  padding: 9px 8px 9px 30px;
  border-left: 1px dashed var(--aura-course-line);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.page-aura .aura-courses__course-copy h4 {
  width: 100%;
  margin: 0 0 7px;
  color: var(--aura-course-brown);
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.page-aura .aura-courses__course-copy .course-categories__meta {
  display: flex;
  width: 100%;
  margin-bottom: 7px;
  color: #9a877b;
  font-size: 1rem;
  line-height: 1.5;
  gap: 5px 18px;
  flex-wrap: wrap;
}
.page-aura .aura-courses__course-copy .course-categories__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.page-aura .aura-courses__course-copy .course-categories__meta-item .mdi {
  color: var(--aura-course-gold);
  font-size: 18px;
  line-height: 1;
}
.page-aura .aura-courses__course-copy .course-categories__description {
  display: -webkit-box;
  width: 100%;
  margin: 0;
  overflow: hidden;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.page-aura .aura-courses__course-copy .course-categories__more {
  display: inline-flex;
  margin-top: 8px;
  color: var(--aura-course-gold);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  align-items: center;
  gap: 3px;
}
.page-aura .aura-courses__course-copy .course-categories__more .mdi {
  font-size: 17px;
}
.page-aura .aura-courses__schedule {
  display: flex;
  width: fit-content;
  min-height: 64px;
  margin: 33px auto 0;
  padding: 10px 21px;
  color: #fff;
  background: var(--aura-course-gold);
  font-size: 31px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.page-aura .aura-courses__schedule:hover {
  transform: translateY(-2px);
}
.page-aura .aura-courses__schedule:focus-visible {
  outline: 2px solid var(--aura-course-brown);
  outline-offset: 3px;
}

.aura-course-detail-popup {
  --aura-course-gold: #ac8541;
  --aura-course-brown: #604638;
  --aura-course-text: #806e63;
  border: 1px solid rgba(172, 133, 65, 0.32);
  color: var(--aura-course-text);
  box-shadow: 0 22px 60px rgba(96, 70, 56, 0.2);
}
.aura-course-detail-popup .course-detail-popup__header {
  border-bottom-color: rgba(172, 133, 65, 0.22);
  background: #fbf8f2;
}
.aura-course-detail-popup .course-detail-popup__logo {
  width: min(260px, 78%);
  max-height: 130px;
}
.aura-course-detail-popup .course-detail-popup__title {
  color: var(--aura-course-brown);
  font-weight: 500;
}
.aura-course-detail-popup .course-detail-popup__meta > div {
  border-bottom-color: rgba(172, 133, 65, 0.2);
}
.aura-course-detail-popup .course-detail-popup__meta dt {
  color: #9a877b;
}
.aura-course-detail-popup .course-detail-popup__meta dt .mdi {
  color: var(--aura-course-gold);
}
.aura-course-detail-popup .course-detail-popup__description h4 {
  color: var(--aura-course-brown);
  font-weight: 500;
}
.aura-course-detail-popup .course-detail-popup__description p,
.aura-course-detail-popup .course-detail-popup__description li {
  color: var(--aura-course-text);
}
.aura-course-detail-popup .aura-course-detail__features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.aura-course-detail-popup .aura-course-detail__features li {
  position: relative;
  padding-left: 1em;
  font-size: 15px;
  line-height: 1.8;
}
.aura-course-detail-popup .aura-course-detail__features li::before {
  position: absolute;
  left: 0;
  color: var(--aura-course-gold);
  content: "・";
}
.aura-course-detail-popup .aura-course-detail__features li + li {
  margin-top: 3px;
}

.fancybox__content.aura-course-detail-popup,
.fancybox__content > .aura-course-detail-popup {
  display: block !important;
}

@media (max-width: 820px) {
  .page-aura .aura-courses {
    --course-panel-height: min(680px, calc(100svh - 155px));
    padding: 29px 31px 61px;
  }
  .page-aura .aura-courses__title {
    margin-bottom: 17px;
    font-size: 40px;
  }
  .page-aura .aura-courses__group + .aura-courses__group {
    margin-top: 16px;
  }
  .page-aura .aura-courses__toggle {
    min-height: 67px;
    padding: 12px 20px 12px 52px;
    border-radius: 19px;
  }
  .page-aura .aura-courses__toggle .course-categories__trigger-label {
    font-size: 20px;
  }
  .page-aura .aura-courses__toggle > .mdi {
    font-size: 27px;
  }
  .page-aura .aura-courses__scroll {
    padding: 28px 30px 42px;
    scrollbar-width: thin;
  }
  .page-aura .aura-courses__scroll::-webkit-scrollbar {
    width: 8px;
  }
  .page-aura .aura-courses__entry + .aura-courses__entry {
    margin-top: 28px;
  }
  .page-aura .aura-courses__course {
    min-height: 148px;
    padding: 12px 0;
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 23px;
  }
  .page-aura .aura-courses__course-image {
    width: 150px;
  }
  .page-aura .aura-courses__course-copy {
    min-height: 112px;
    padding: 8px 0 8px 23px;
  }
  .page-aura .aura-courses__course-copy h4 {
    font-size: 18px;
  }
  .page-aura .aura-courses__course-copy .course-categories__meta {
    font-size: 12px;
    gap: 4px 12px;
  }
  .page-aura .aura-courses__course-copy .course-categories__description {
    font-size: 14px;
    line-height: 1.58;
  }
  .page-aura .aura-courses__schedule {
    min-height: 63px;
    margin-top: 27px;
    font-size: 31px;
  }
}
@media (max-width: 520px) {
  .page-aura .aura-courses {
    --course-panel-height: min(720px, calc(100svh - 135px));
    padding: 29px 20px 61px;
  }
  .page-aura .aura-courses__title {
    font-size: 34px;
  }
  .page-aura .aura-courses__toggle {
    min-height: 60px;
    padding: 10px 16px 10px 44px;
  }
  .page-aura .aura-courses__toggle .course-categories__trigger-label {
    font-size: 17px;
  }
  .page-aura .aura-courses__toggle .course-categories__trigger-separator {
    margin-inline: 4px;
  }
  .page-aura .aura-courses__toggle > .mdi {
    font-size: 24px;
  }
  .page-aura .aura-courses__scroll {
    padding: 22px 14px 38px;
  }
  .page-aura .aura-courses__entry + .aura-courses__entry {
    margin-top: 36px;
  }
  .page-aura .aura-courses__course {
    min-height: 0;
    padding: 0 4px 32px;
    border-bottom: 1px dashed var(--aura-course-line);
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .page-aura .aura-courses__course-image {
    width: min(100%, 260px);
    justify-self: center;
  }
  .page-aura .aura-courses__course-copy {
    min-height: 0;
    padding: 0;
    border-left: 0;
  }
  .page-aura .aura-courses__course-copy h4 {
    margin-bottom: 8px;
    font-size: 17px;
    text-align: center;
  }
  .page-aura .aura-courses__course-copy .course-categories__meta {
    justify-content: center;
    font-size: 12px;
  }
  .page-aura .aura-courses__course-copy .course-categories__description {
    font-size: 14px;
    line-height: 1.58;
    -webkit-line-clamp: 3;
  }
  .page-aura .aura-courses__course-copy .course-categories__more {
    align-self: flex-end;
  }
  .page-aura .aura-courses__schedule {
    min-height: 56px;
    padding-inline: 18px;
    font-size: 26px;
  }
  .aura-course-detail-popup {
    width: calc(100vw - 28px);
    border-radius: 13px;
  }
  .aura-course-detail-popup .course-detail-popup__header {
    padding: 30px 22px 22px;
  }
  .aura-course-detail-popup .course-detail-popup__logo {
    max-height: 100px;
    margin-bottom: 16px;
  }
  .aura-course-detail-popup .course-detail-popup__title {
    font-size: 21px;
  }
  .aura-course-detail-popup .course-detail-popup__body {
    padding: 20px 22px 30px;
  }
  .aura-course-detail-popup .course-detail-popup__meta > div {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .aura-course-detail-popup .course-detail-popup__description {
    margin-top: 22px;
  }
  .aura-course-detail-popup .course-detail-popup__description h4 {
    font-size: 18px;
  }
  .aura-course-detail-popup .course-detail-popup__description p,
  .aura-course-detail-popup .course-detail-popup__description li {
    font-size: 14px;
    line-height: 1.75;
  }
}
