html, body {
    margin: 0;
    padding: 0;
    background: #fff;
}

.page {
    display: flex;
    flex-direction: column;
}

.page__body {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 0 160px;
}

@media (max-width: 767px) {
    .page {
    gap: 48px;
    }

    .page__body {
    gap: 48px;
    padding: 0 0 48px;
    }
}

/* ---------- HERO ---------- */
.page-hero {
    position: relative;
    width: 100%;
    margin: 0;
    aspect-ratio: 1920 / 480;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.page-hero__text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.page-hero__title {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.7;
    color: #fff;
    white-space: nowrap;
}

.page-hero__subtitle {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.7;
    letter-spacing: 2px;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .page-hero {
    aspect-ratio: 16 / 9;
    }

    .page-hero__title {
    font-size: 36px;
    }

    .page-hero__subtitle {
    font-size: 22px;
    letter-spacing: 1px;
    }
}

/* ---------- NAV ---------- */
.nav {
    width: 100%;
    background: #fff;
    padding: 40px 0 112px;
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    flex: 0 0 auto;
}

.nav__link,
.nav__link:hover,
.nav__link:focus,
.nav__link:visited,
.nav__link:active {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4px;
    text-decoration: none;
}

.nav__ja {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.7;
    color: #e4e4e4;
    transition: color 0.25s ease;
}

.nav__en {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #e4e4e4;
    transition: color 0.25s ease;
}

.nav__en::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav__link:hover .nav__ja,
.nav__link--active .nav__ja {
    color: #231f20;
}

.nav__link:hover .nav__en::after,
.nav__link--active .nav__en::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .nav {
    padding: 20px 0;
    }

    .nav__list {
    gap: 20px;
    }

    .nav__ja {
    font-size: 18px;
    }

    .nav__en {
    font-size: 11px;
    }
}

/* ---------- FITNESS ---------- */
.fitness {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.fitness__slider {
    width: 100%;
    aspect-ratio: 940 / 592;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.fitness__track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.fitness__slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
}

.fitness__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.fitness__caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.fitness__dots {
    display: flex;
    align-items: center;
    gap: 24px;
}

.fitness__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c1c1c1;
    cursor: pointer;
    transition: background 0.25s ease;
}

.fitness__dot--active {
    background: #772583;
}

.fitness__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.fitness__title {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.7;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fitness__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    color: #303030;
}

.fitness__desc p {
    margin: 0;
}

@media (max-width: 767px) {
    .fitness {
    gap: 20px;
    padding: 0 16px;
    }

    .fitness__title {
    font-size: 24px;
    }

    .fitness__desc {
    font-size: 14px;
    text-align: left;
    }
}

/* ---------- AUTO CHECK-IN ---------- */
.auto-checkin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.auto-checkin__slider {
    width: 100%;
    aspect-ratio: 940 / 592;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.auto-checkin__track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.auto-checkin__slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
}

.auto-checkin__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.auto-checkin__caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.auto-checkin__dots {
    display: flex;
    align-items: center;
    gap: 24px;
}

.auto-checkin__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c1c1c1;
    cursor: pointer;
    transition: background 0.25s ease;
}

.auto-checkin__dot--active {
    background: #772583;
}

.auto-checkin__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.auto-checkin__title {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.7;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auto-checkin__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    color: #303030;
}

.auto-checkin__desc p {
    margin: 0;
}

@media (max-width: 767px) {
    .auto-checkin {
    gap: 20px;
    padding: 0 16px;
    }

    .auto-checkin__title {
    font-size: 24px;
    }

    .auto-checkin__desc {
    font-size: 14px;
    text-align: left;
    }
}

/* ---------- FOOTER ---------- */
.footer {
    width: 100%;
    background: #772583;
    padding: 56px 0;
}

.footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__logo {
    display: block;
    width: 240px;
    height: auto;
}

.footer__info {
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    color: #ffffff;
}

.footer__info p {
    margin: 0;
}

@media (max-width: 767px) {
    .footer {
    padding: 40px 0;
    }

    .footer__inner {
    padding: 0 20px;
    }

    .footer__content {
    width: 100%;
    gap: 24px;
    }

    .footer__logo {
    width: 180px;
    }

    .footer__info {
    font-size: 14px;
    }
}