@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --color-primary: #EC217A;
    --color-primary-dark: #C91A65;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-light: #F9FAFB;
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Outfit', sans-serif;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 120px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-ja);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

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

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

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
}

.section__en-title {
    display: block;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 100;
    padding: 15px 30px;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header__inner {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.header__logo {
    margin-left: 0;
}

.header__logo img {
    height: 40px;
}

.header__nav {
    position: relative;
}

.header__nav ul {
    display: flex;
    gap: 30px;
}

.header__nav a {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-en);
    transition: color 0.3s;
}

.header__nav a:hover {
    color: var(--color-primary);
}

@media screen and (max-width: 900px) {
    .header__nav {
        display: none; /* Hide on smaller screens */
    }
}

/* ==========================================================================
   FV (First View) Section
   ========================================================================== */
.fv {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F8FBFC 0%, #E6F7FF 100%);
    padding-top: 80px;
    padding-bottom: 120px;
}

.fv__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.fv__inner {
    display: flex;
    align-items: center;
}

.fv__left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 40px;
    margin-left: -40px;
    margin-top: 140px;
}

.fv__right {
    position: absolute !important;
    right: 0;
    top: 0;
    width: 50vw;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 50vw 0 0 50vw;
}

.fv__slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.fv__right.js-reveal-wrapper.is-revealed::after {
    animation: wipeBlock 10s infinite cubic-bezier(0.77, 0, 0.175, 1) !important;
}

.fv__right.js-reveal-wrapper.is-revealed .fv__slide-img--1 {
    animation: wipeImage1 10s infinite !important;
}

.fv__right.js-reveal-wrapper.is-revealed .fv__slide-img--2 {
    animation: wipeImage2 10s infinite !important;
}

@keyframes wipeBlock {
    0% { transform-origin: right; transform: scaleX(1); }
    5% { transform-origin: right; transform: scaleX(0); }
    45% { transform-origin: left; transform: scaleX(0); }
    50% { transform-origin: left; transform: scaleX(1); }
    50.001% { transform-origin: right; transform: scaleX(1); }
    55% { transform-origin: right; transform: scaleX(0); }
    95% { transform-origin: left; transform: scaleX(0); }
    100% { transform-origin: left; transform: scaleX(1); }
}

@keyframes wipeImage1 {
    0%, 50% { opacity: 1; }
    50.001%, 100% { opacity: 0; }
}

@keyframes wipeImage2 {
    0%, 50% { opacity: 0; }
    50.001%, 100% { opacity: 1; }
}

.fv__decor {
    position: absolute;
    z-index: 10;
}

.fv__decor--bottom-left-1 {
    bottom: -20px;
    left: -20px;
    width: 250px;
    opacity: 0.6;
}

.fv__decor--top-left {
    top: 120px;
    left: 20px;
    width: 150px;
    opacity: 0.8;
}

.fv__decor--center {
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 200px;
    opacity: 0.8;
    z-index: 100;
}

.fv__top-text {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px;
}

.fv__catch {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #333;
}

.fv__catch span {
    color: var(--color-primary);
}

.fv__sub-catch {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.fv__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.fv__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fv__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 200px;
}

.fv__btn--line {
    background-color: #06C755;
    color: #fff;
    box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
}

.fv__btn--outline {
    background-color: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.fv__btn:hover {
    transform: translateY(-3px);
}

.fv__badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 20;
}

.fv__badge-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    flex: 1;
    max-width: 320px;
}

.fv__badge-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.fv__badge-text h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
}

.fv__badge-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.fv__decor {
    position: absolute;
    z-index: 1;
}

.fv__decor--1 {
    top: 15%;
    left: 5%;
    width: 100px;
    opacity: 0.6;
}

.fv__decor--2 {
    bottom: -10%;
    right: -10%;
    width: 400px;
    opacity: 0.2;
}

.fv__decor--3 {
    top: 20%;
    right: 35%;
    width: 80px;
    animation: zoomIn 10s infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@media screen and (max-width: 991px) {
    .fv {
        padding-bottom: 60px;
        flex-direction: column;
        padding-top: 120px;
    }
    .fv__right {
        position: relative !important;
        width: 100vw;
        height: 60vw;
        min-height: 300px;
        border-radius: 0;
        margin-bottom: 40px;
        order: -1;
    }
    .fv__inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .fv__left {
        padding-right: 0;
        max-width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .fv__top-text {
        margin: 0 auto 20px;
    }
    .fv__badges {
        position: relative;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
    .fv__buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .fv__catch {
        font-size: 38px;
    }
    .fv__sub-catch {
        font-size: 22px;
    }
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-banner {
    background-color: var(--color-primary);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-banner__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.cta-banner__text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-banner__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: var(--color-primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    min-width: 250px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner__btn--instagram {
    color: #E1306C;
}

.cta-banner__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Worry Section
   ========================================================================== */
.worry {
    background-color: var(--color-bg-light);
}

.worry__split {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
}

.worry__image-half {
    width: 55%;
}

.worry__image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.worry__content-half {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 40px;
    margin-left: -5%;
    position: relative;
    z-index: 2;
}

.worry__content-inner {
    max-width: 500px;
}

.worry__title-box {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-radius: 0;
    display: inline-block;
}

.worry__title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.worry__title .highlight {
    color: var(--color-primary);
    font-size: 1.2em;
}

.worry__list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.worry__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 10px rgba(236, 33, 122, 0.3);
}

/* Worry Image Decorations */
.worry-decor {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    width: 20vw;
    height: auto !important; /* Override .worry__image-half img rule */
}

/* top right of section */
.worry-decor--tr {
    top: 5%;
    right: 5%;
    max-width: 180px;
    width: 25vw;
    transform: rotate(15deg);
}

/* bottom right of section */
.worry-decor--br {
    bottom: 5%;
    right: 5%;
    max-width: 140px;
    transform: rotate(-25deg);
}

/* bottom left of the worry image */
.worry-decor--bl {
    bottom: -10%;
    left: 5%;
    max-width: 180px;
    width: 35vw;
    transform: rotate(35deg);
}

/* Badges */
.badges {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.badges__lead {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.8;
}

.badges__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.badges__row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badges__row--top .badge-item {
    width: calc(25% - 22.5px);
    max-width: 220px;
}

.badges__row--bottom .badge-item {
    width: calc(33.333% - 20px);
    max-width: 240px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-10px);
}

.badge-item img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.badge-item__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about.section {
    padding-bottom: 0;
}

.about__container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.about__white-box {
    background-color: #fff;
    border-radius: 40px 40px 0 0;
    padding: 80px 60px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.02);
}

.about__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about__content {
    flex: 1;
}

.about__image {
    flex: 1.6;
}

.about__images {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about__img-wrapper {
    flex: 1;
    aspect-ratio: 2 / 3;
    border-radius: 20px;
    overflow: hidden;
}

.about__img-wrapper--1 {
    margin-top: 0;
}

.about__img-wrapper--2 {
    margin-top: 80px;
}

.about__img-wrapper--3 {
    margin-top: 0;
}

.about__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about__text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.about__text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Marquee Slider
   ========================================================================== */
.marquee-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background-color: transparent;
    margin-top: 130px;
    margin-bottom: 80px;
}

.marquee-slider__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-slider__group {
    display: flex;
}

.marquee-slider__item {
    display: flex;
    flex-direction: column;
    padding-right: 60px;
}

.marquee-slider__item .solid,
.marquee-slider__item .outline {
    font-size: 100px;
    font-weight: 900;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-slider__item .solid {
    color: #63CDF6;
    line-height: 1;
}

.marquee-slider__item .outline-wrapper {
    height: 0.5em; /* Crops bottom half */
    overflow: hidden;
}

.marquee-slider__item .outline {
    color: transparent;
    -webkit-text-stroke: 2px #63CDF6;
    line-height: 1;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media screen and (max-width: 768px) {
    .marquee-slider__item .solid,
    .marquee-slider__item .outline {
        font-size: 60px;
    }
    .marquee-slider__item {
        padding-right: 40px;
    }
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.service.section {
    padding-bottom: 300px;
}

.service-stack {
    position: relative;
    width: 100%;
    margin-top: 150px;
}

.service-stack__space {
    height: 30vh;
}

.service-stack__item {
    position: sticky;
    z-index: 10;
    border: none;
    background-color: transparent;
}

.service-stack__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.service-stack__item--1 {
    top: 120px;
}

.service-stack__item--2 {
    top: 180px;
    z-index: 20;
}

.service-stack__item--3 {
    top: 240px;
    z-index: 30;
}

.service-stack__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 60px 60px 140px; /* Increased left padding to reveal 01 */
}

.service-stack__num {
    flex: 1;
}

.service-stack__num .num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.service-stack__img {
    flex: 2;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
}

.service-stack__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-stack__content {
    flex: 2;
}

.service-stack__content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.5;
    color: #fff;
}

.service-stack__content p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}

/* ==========================================================================
   Voice Section
   ========================================================================== */
.voice {
    background-color: var(--color-bg-light);
}

.voice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.voice-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.voice-card__stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.voice-card__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.voice-card__text.hidden {
    display: none;
}

.voice-card__toggle {
    text-align: right;
    margin-top: 10px;
}

.voice-card__toggle button {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s;
}

.voice-card__toggle button:hover {
    color: var(--color-text);
}

/* Voice Decorations */
.voice-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    max-width: 150px;
    opacity: 0.8;
}

.voice-decor--1 {
    top: 10%;
    left: 5%;
    width: 20vw;
    transform: rotate(-15deg);
}

.voice-decor--2 {
    bottom: 10%;
    right: 5%;
    width: 25vw;
    transform: rotate(30deg);
}

.voice-decor--3 {
    top: 45%;
    right: 15%;
    width: 15vw;
    transform: rotate(-45deg);
}

.voice-decor--4 {
    top: 65%;
    left: 5%;
    width: 22vw;
    transform: rotate(20deg);
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.access {
    background-color: #E6F7FF;
}

.access__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.access__icon svg {
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(236,33,122,0.1);
}

.access__inner {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.access__info {
    flex: 1;
}

.access__list {
    margin-bottom: 30px;
}

.access__row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.access__row:last-child {
    border-bottom: none;
}

.access__row dt {
    width: 100px;
    font-weight: 700;
    color: var(--color-primary);
}

.access__row dd {
    flex: 1;
    margin: 0;
}

.access__links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.access__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    flex: 1;
    transition: all 0.3s ease;
}

.access__btn--instagram {
    background-color: #E1306C;
}

.access__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.access__map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.access__map iframe {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 991px) {
    .worry__split {
        flex-direction: column;
    }
    
    .worry__image-half, .worry__content-half {
        width: 100%;
        margin-left: 0;
        padding: 20px;
    }
    
    .about__white-box {
        padding: 40px 20px;
    }
    
    .about__inner {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .about__content, .about__image {
        width: 100%;
        flex: none;
    }
    
    .badges__row--top .badge-item,
    .badges__row--bottom .badge-item {
        width: calc(50% - 15px);
    }

    .access__inner {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    .access__map {
        width: 100%;
    }

    .voice__grid {
        grid-template-columns: 1fr;
    }

    .service-stack__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .service-stack__img {
        width: 100%;
        aspect-ratio: 3 / 2;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .fv__catch {
        font-size: 8vw;
    }

    .cta-banner__btn {
        width: 100%;
        min-width: auto;
    }
    
    .worry__list li {
        font-size: 14px;
        padding-left: 35px;
    }

    .worry__list li::before {
        width: 24px;
        height: 24px;
        background-size: 12px;
    }
    
    .badges__row--top .badge-item,
    .badges__row--bottom .badge-item {
        width: 100%;
        max-width: none;
    }
    
    .about__title {
        font-size: 24px;
    }

    .access__links {
        flex-direction: column;
    }
    .access__row {
        flex-direction: column;
        gap: 5px;
    }
    .access__row dt {
        width: auto;
    }
}

/* ==========================================================================
   Plan Section
   ========================================================================== */
.plan-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    background: transparent;
}

.plan-intro__title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: bold;
}

.plan-intro__text {
    line-height: 1.8;
}

.plan-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    margin-right: calc(50% - 50vw);
    padding-right: 5vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.plan-slider::-webkit-scrollbar {
    display: none;
}

.plan-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card__left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 15px;
    border-radius: 10px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card__img img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.plan-card__right {
    display: none;
}

.plan-card__num {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--color-primary);
    font-style: italic;
    line-height: 1;
    margin-bottom: 10px;
}

.plan-card__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.plan-card__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.plan-card__highlight {
    background: #FFF4F8;
    border-left: 4px solid var(--color-primary);
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
}

.plan-card__highlight strong {
    color: var(--color-primary);
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
}

.plan-table-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.table-responsive {
    overflow-x: auto;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 15px;
    min-width: 400px;
}

.plan-table th, 
.plan-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.plan-table th {
    background: #fafafa;
    font-weight: bold;
    color: #555;
}

.plan-table td.price {
    font-weight: bold;
    color: var(--color-text);
    font-size: 18px;
}

.plan-card__price-large {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.plan-card__price-large .label {
    font-weight: bold;
    font-size: 16px;
}

.plan-card__price-large .amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary);
}

.plan-card__price-large .amount span {
    font-size: 16px;
    color: var(--color-text);
    font-weight: normal;
}

.plan-notes {
    list-style: none;
    font-size: 13px;
    color: #777;
    margin-top: 15px;
}

.plan-notes li {
    margin-bottom: 5px;
    line-height: 1.6;
}

.plan-content-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.plan-content-box h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.plan-content-box ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 1.8;
}

.plan-content-box p {
    line-height: 1.8;
    font-size: 15px;
}


/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(236, 33, 122, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #d11c69;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(236, 33, 122, 0.4);
}

@media screen and (max-width: 767px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==========================================================================
   Plan Modal
   ========================================================================== */
.plan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.plan-modal.is-open {
    display: flex;
}
.plan-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}
.plan-modal__content {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    padding: 40px;
    overflow-y: auto;
}
.plan-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.plan-modal__close:hover {
    background: #e0e0e0;
}
.plan-modal__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-primary);
    text-align: center;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
}
.plan-modal__content .plan-card__right {
    display: block !important;
}


.plan-slider__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.plan-slider__progress {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    position: relative;
}

.plan-slider__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15%; /* Will be set dynamically */
    background: var(--color-primary); /* Pink */
    border-radius: 2px;
    transition: width 0.3s ease-out;
}

.plan-slider__nav-group {
    display: flex;
    gap: 15px;
}

.plan-slider__nav {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 60px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.plan-slider__nav:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ==========================================================================
   Image Slide Reveal Motion
   ========================================================================== */
.js-reveal-wrapper {
    position: relative;
    overflow: hidden;
}

.js-reveal-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 2;
}

.js-reveal-wrapper img,
.js-reveal-wrapper .fv__bg {
    opacity: 0;
}

.js-reveal-wrapper.is-revealed::after {
    animation: slideRevealBlock 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.js-reveal-wrapper.is-revealed img {
    animation: slideRevealImage 1.2s forwards;
}

.js-reveal-wrapper.is-revealed .fv__bg {
    animation: slideRevealImage 1.2s forwards, zoomIn 20s ease infinite alternate;
}

@keyframes slideRevealBlock {
    0% { transform-origin: left; transform: scaleX(0); }
    49.9% { transform-origin: left; transform: scaleX(1); }
    50% { transform-origin: right; transform: scaleX(1); }
    100% { transform-origin: right; transform: scaleX(0); }
}

@keyframes slideRevealImage {
    0%, 49.9% { opacity: 0; }
    50%, 100% { opacity: 1; }
}

/* ==========================================================================
   Text Fade Up Motion
   ========================================================================== */
.js-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-fade-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Blue Slide Reveal
   ========================================================================== */
.js-reveal-blue::after {
    background-color: #63CDF6 !important;
}

/* ==========================================================================
   Additional Reveal Modifiers
   ========================================================================== */
.js-reveal-white::after {
    background-color: #ffffff !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.cta-banner__btn--line {
    color: #06C755;
}
.access__btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
    flex: none;
}
.access__btn--line { background-color: #06C755; }
.access__btn--youtube { background-color: #FF0000; }

/* ==========================================================================
   Trainer Section
   ========================================================================== */
.trainer__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}
.trainer__history {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}
.trainer__image {
    flex: 2;
    border-radius: 10px;
    overflow: hidden;
}
.trainer__content {
    flex: 3;
}
.trainer__column {
    flex: 1;
}
.trainer__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}
.trainer__content p, .trainer__content ul {
    line-height: 1.8;
}
.trainer__content h4, .trainer__column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-primary);
}
.trainer__column h4 {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}
.trainer__history-row {
    display: flex;
    margin-bottom: 8px;
    line-height: 1.8;
}
.trainer__history-row dt {
    width: 80px;
    font-weight: bold;
}
.trainer__history-row dd {
    flex: 1;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .trainer__inner, .trainer__history {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   SP Only Additions
   ========================================================================== */
.sp-only { display: none; }

@media screen and (max-width: 767px) {
    /* Utility */
    .sp-only { display: block; }
    br.sp-only, span.sp-only { display: inline; }
    .sp-bottom-bar.sp-only { display: flex; }

    /* Header Hidden in FV */
    .header {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .header.is-past-fv {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* SP First View Layout */
    .fv {
        min-height: 100vh;
        height: 100vh;
        height: 100svh; /* Use dynamic viewport height if available */
        padding-top: 15px;
        padding-bottom: 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .fv__decor {
        display: none !important;
    }
    .fv__decor--center {
        display: block !important;
        top: 28%;
        right: -10px;
        left: auto;
        transform: none;
        width: 100px;
        z-index: 10;
    }
    .fv__decor--top-left {
        display: block !important;
        top: auto;
        bottom: 22%;
        left: -10px;
        width: 100px;
        z-index: 10;
    }
    .fv__container {
        display: contents; /* Allow inner children to be ordered in flex column */
    }
    .fv__inner {
        order: 1 !important; /* Text at the top */
        text-align: left;
        margin-bottom: 5px;
        width: 100%;
    }
    .fv__top-text {
        margin: 0 0 5px 0;
    }
    .fv__left {
        margin-top: 0;
        text-align: left;
    }
    .fv__catch {
        margin-bottom: 5px;
    }
    .fv__sub-catch {
        font-size: 16px !important; /* Slightly smaller text */
        margin-bottom: 0;
    }
    .fv__right {
        order: 2 !important; /* Image in the middle */
        flex: 1;
        min-height: 25vh;
        height: auto;
        margin-bottom: 10px;
        margin-left: calc(-45vw + 50%);
        width: 95vw;
        border-radius: 50vw 0 0 50vw !important; /* Trims left side like PC */
        overflow: hidden;
    }
    .fv__buttons {
        display: none;
    }
    .fv__badges {
        order: 3 !important; /* Badges horizontal at bottom */
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 5px;
        margin: 0;
        padding: 0 10px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        bottom: auto;
    }
    .fv__badge-card {
        flex: 1;
        width: 32%;
        max-width: none;
        padding: 10px 5px;
        margin: 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column; /* Icon top, Text bottom */
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    .fv__badge-icon img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
    .fv__badge-text h4 {
        font-size: 13px; /* Slightly larger */
        line-height: 1.3;
        margin-bottom: 0;
        letter-spacing: -0.5px;
        white-space: normal;
    }
    .fv__badge-text p {
        display: none !important; /* Delete the subtext on SP only */
    }

    /* Header Hamburger Menu (Full Screen) */
    button.header__hamburger.sp-only { display: block; }
    
    .header__nav {
        position: absolute;
        top: -20px;
        left: calc(-50vw + 50%);
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0;
        box-shadow: none;
        display: none;
        padding-top: 100px;
        z-index: 1000;
        transition: none; /* override PC transition */
        box-sizing: border-box;
    }
    .header__nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0;
    }
    .header__nav a {
        font-size: 24px;
    }
    .header__nav.is-open {
        display: block;
    }
    .header__hamburger {
        position: relative;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        margin-left: auto;
    }
    .header__hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--color-primary);
        border-radius: 3px;
        transition: all 0.3s;
    }
    .header__hamburger span:nth-child(1) { top: 0; }
    .header__hamburger span:nth-child(2) { top: 10px; }
    .header__hamburger span:nth-child(3) { bottom: 0; }
    
    .header__hamburger.is-open span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .header__hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }
    .header__hamburger.is-open span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    /* CTA Banner */
    .cta-banner__title {
        font-size: 18px;
    }

    /* Worry Section */
    .worry__image-half {
        height: 350px;
    }
    .worry-decor {
        transform: scale(0.6);
        transform-origin: center;
    }
    .worry__title {
        font-size: 18px;
    }
    .badges__lead {
        text-align: left;
        font-size: 16px;
        line-height: 1.6;
    }

    /* Badges Layout (2 columns, last one centered) */
    .badges__row--top,
    .badges__row--bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    .badges__row--top .badge-item,
    .badges__row--bottom .badge-item {
        width: calc(50% - 5px);
        max-width: none;
    }
    .badges__row--bottom .badge-item:last-child {
        margin: 0 auto;
    }

    /* Voice Section Decoration */
    .voice-decor--1 {
        top: 2%;
        left: -5vw;
        width: 35vw;
    }

    /* About Section (Sequential Image Fade with Reveal Block) */
    .about__images {
        position: relative;
        height: 250px;
    }
    .about__img-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1; /* Keep wrapper visible, we animate its contents */
        z-index: 1;
        animation: none !important; /* Disable fade animation on wrapper */
    }
    /* Re-enable and animate the slide reveal block on SP */
    .about__img-wrapper::after {
        display: block !important;
        animation: spSlideRevealBlock 12s infinite !important;
    }
    /* Animate image opacity safely behind the block */
    .about__img-wrapper img {
        opacity: 0; /* Removing !important so the animation can override it */
        animation: spSlideRevealImage 12s infinite !important;
    }
    /* Set delays for both the reveal block and the image */
    .about__img-wrapper--1::after, .about__img-wrapper--1 img { animation-delay: 0s !important; }
    .about__img-wrapper--2 { margin-top: 0; } /* Reset desktop margin */
    .about__img-wrapper--2::after, .about__img-wrapper--2 img { animation-delay: 4s !important; }
    .about__img-wrapper--3::after, .about__img-wrapper--3 img { animation-delay: 8s !important; }
    
    /* Decrease marquee slider space */
    .marquee-slider {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    /* Service Section Sticky Motion & Title */
    .service-stack__content h3 {
        font-size: 20px;
    }
    .service.section {
        padding-bottom: 200px; /* Leave space for scrolling */
    }
    .service-stack__item {
        position: sticky;
    }
    .service-stack__item--1 { top: 90px; }
    .service-stack__item--2 { top: 120px; }
    .service-stack__item--3 { top: 150px; }
    .service-stack__space { height: 40vh; }
    
    /* Plan Section text */
    .plan-intro__text {
        text-align: left;
    }
    
    /* Access Section Links */
    .access__links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .access__btn {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Bottom Fixed Bar */
    .sp-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    .sp-bottom-bar__btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        padding: 8px 0;
        font-size: 12px;
        font-weight: bold;
        text-decoration: none;
        transition: background 0.3s;
    }
    .sp-bottom-bar__btn svg {
        margin-bottom: 4px;
    }
    .sp-bottom-bar__btn--tel {
        background-color: #333;
    }
    .sp-bottom-bar__btn--line {
        background-color: #06C755;
    }
    
    /* Adjust back-to-top button position to avoid overlapping bottom bar */
    .back-to-top {
        bottom: 70px;
    }
    
    /* Adjust body padding so content isn't hidden behind the bottom bar */
    body {
        padding-bottom: 60px;
    }
}

@keyframes spSlideRevealBlock {
    0% { transform-origin: left; transform: scaleX(0); }
    4.9% { transform-origin: left; transform: scaleX(1); }
    5% { transform-origin: right; transform: scaleX(1); }
    10% { transform-origin: right; transform: scaleX(0); }
    100% { transform-origin: right; transform: scaleX(0); }
}

@keyframes spSlideRevealImage {
    0%, 4.9% { opacity: 0; }
    5%, 39% { opacity: 1; }
    39.1%, 100% { opacity: 0; }
}
