body {
    background-color: var(--color-light-brown);
}

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

.on-sp {
    display: inline;

    @media (width >= 768px) {
        display: none;
    }
}

.on-pc {
    display: none;

    @media (width >= 768px) {
        display: inline;
    }
}

.the-breadcrumb {
    position: relative;
    display: none;
    margin: 2rem auto -1rem;
    font-family: var(--font-family-en);
    line-height: 1.1;
    letter-spacing: 0.06em;

    @media (width >= 768px) {
        display: block;
        margin: 0 auto;
    }
}

.breadcrumb {
    display: flex;
    font-size: 14px;

    @media (width >= 768px) {
        position: absolute;
        top: 10px;
    }
    
    a {
        color: var(--color-brown);
    }

    a::after {
        display: inline-block;
        width: 7px;
        height: 9px;
        margin: 0 0.75rem;
        content: "";
        background-image: url('../img/icon/breadcrumb-arrow-fade.svg');
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
}

/* fv-section */
.fv-section {
    display: grid;
    grid-template-columns: 1fr;
    padding: 3rem 0;

    @media (width >= 768px) {
        grid-template-columns: auto 1fr;
        gap: 0 5rem;
        align-items: center;
        padding-top: 0;
    }
}

.fv-section-text-container {
    margin-bottom: 1.25rem;
    text-align: center;
    
    .hgroup {
        p {
            font-size: var(--text-ja-14);
        }
    }

    .section-main-title {
        margin-bottom: 0.75rem;
        line-height: 170%;
        display: block;
    }
}

.fv-section-information {
    font-size: var(--text-ja-20);
}

.fv-section-image {
    width: 100%;
    height: auto;
}

/* campaign-banner-section */
.studio-campaign-banner-section {
    padding: 2.5rem 0;

    .studio-campaign-banner-image {
        max-width: 100%;
        height: auto;
        margin: auto;
    }
}

/* cta-section */
.cta-section {
    position: relative;
    display: grid;
    grid-template-rows:4rem 1fr 4rem;
    grid-template-columns: 1fr;

    @media (width >= 768px) {
        grid-template-rows: 8rem 1fr 8rem;
    }

    .cta-button-group {
        display: flex;
        flex-direction: column;
        gap:1rem;
    }

    .cta-button {
        height: 60px;

        @media (width >= 768px) {
            height: 80px;
            min-width: 440px;
        }
    }

    .tel-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 60px;
        font-size: var(--text-ja-16);
        color: var(--color-dark-brown);
        background-color: var(--color-white);
        border-radius: 2px;
        
        .tel-button-icon {
            display: flex;
            font-family: var(--font-family-en);
            font-size: var(--text-en-20);
        }

        @media (width >= 768px) {
            display: none;
        }
    }
}

.cta-section-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    grid-row: 1 / -1;
    grid-column: 1;
    width: 100%;
    height: 100%;
}

.cta-section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section-main-container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    grid-row: 2;
    grid-column: 1;
    place-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    margin: auto;
    color: var(--color-white);
    text-align: center;
}

.cta-section-title-container {
    margin-bottom: 2.5rem;

    .en-label {
        font-size: var(--text-en-18);
        
        @media (width >= 768px) {
            letter-spacing: 0.36em;
        }
    }

    .ja-label {
        font-size: var(--text-ja-15);

        @media (width >= 768px) {
            font-size: var(--text-ja-16);
            letter-spacing: 0.24em;
        }
    }
}

/* intro-section */
.intro-section {
    padding: 2.5rem 0 5rem;

    @media (width >= 768px) {
        padding: 10rem 0;
    }
}

.intro-section-title {
    font-size: var(--text-ja-24);
    text-align: center;
    white-space: initial;
}

.intro-section-description {
    margin-top: 1.25rem;
    font-size: var(--text-ja-14);

    @media (width >= 768px) {
        margin-top: 1.5rem;
        font-size: var(--text-ja-15);
    }
}

.intro-section-video-container {
    margin-top: 2.5rem;
}

.intro-section-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.intro-section-link-button-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    margin-top: 2.5rem;

    @media (width >= 768px) {
        grid-template-columns: repeat(4,1fr);
    }
}

.intro-section-link-button {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: start;
    padding: 8px;
    font-size: var(--text-en-13);
    line-height: normal;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 6px;

    @media (width >= 768px) {
        justify-content: center;
        padding: 16px;
    }
}

/* access-section */
.access-section {
    padding: 3rem 0;
}

.access-section-headline {
    margin-bottom: 2.5rem;
    text-align: center;
}

.access-section-map {
    aspect-ratio: 1 / 1;

    @media (width >= 768px) {
        height: 43.75rem;
        aspect-ratio: inherit;
    }
}

.access-info-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 3rem 0;

    @media (width >= 768px) {
        grid-template-rows: repeat(3,auto);
        grid-template-columns: 1fr 1fr;

        .access-info {
            grid-column: 1 / -1;
        }

        .time,.closing {
            grid-column: span 1;
        }
    }
}

.access-info {
    padding-left: 1rem;
    line-height: 170%;
    border-left: 1px solid var(--color-dark-brown);
}

.access-info-title {
    margin-bottom: 0.625rem;
    font-size: var(--text-ja-20);
}

.access-info-description {
    margin-bottom: 0.25rem;
    font-size: var(--text-ja-14);
}

.access-info-description-small {
    margin-bottom: 1rem;
    font-size: var(--text-ja-13);
    color: var(--color-medium-brown-2);
}

/* break-section */
.break-section-image {
    width: 100%;
    height: auto;
}

.price-section {
    width: 89.3%;
    padding: 5rem 0;
    margin: auto;

    
    .price-section-title-group {
        margin-bottom: 2.5rem;
        text-align: center;

        @media(width >= 768px) {
            margin-bottom: 6rem;
        }
    }

    @media (width >= 768px) {
        width: 88.3%;
        padding: 10rem 0;
    }
}

.price-banner-container {
    margin-bottom: 2.5rem;
    position: relative;
    @media (width >= 768px) {
        margin-bottom: 5rem;
    }
    .studio_price_banner_link{
        position: absolute;
        width: 280px;
        height: 46px;
        top: 43.6%;
        left: 0;
        right: 0;
        margin: 0 auto;
        @media (width >= 1250px){
            width: 180px;
            height: 46px;
        }
        @media(width >= 768px){
            width: 14vw;
            height: 3.7vw;
            top: 25.5%;
            right: 10.5%;
        }
    }
}

/* news-section */
.news-section {
    padding: 5rem 0;
    color: var(--color-dark-brown);
    text-align: center;
    background-color: var(--color-beige);
    border-radius: 20px 20px 0 0;

    @media (width >= 768px) {
        padding: 10rem 0;
        border-radius: 40px 40px 0 0;
    }
}

.news-list {
    display: flex;
    flex-direction: column;
    margin: 2.5rem 0;
    text-align:left;

    @media (width >= 768px) {
        margin: 5rem 0;
    }
}

.news-list-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-light-brown);

    @media (width >= 768px) {
        padding: 0.5rem 0;
        border: none;
    }
}

.news-list-item:first-child {
    padding-top: 0;
}

.news-list-item:last-child {
    padding-bottom: 0;
    border: none;
}

.news-list-item-date {
    margin-bottom: 0.125rem;
    font-size: var(--text-en-10);
    color: var(--color-brown);

    @media (width >= 768px) {
        margin-bottom: 0.5rem;
        font-size: var(--text-en-12);
    }
}

.news-list-item-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: var(--text-ja-16);
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-section-read-more {
    text-align: center;

    a::before {
        display:inline-block;
        width: 1.5rem;
        height: 1.3125rem;
        margin-right: 0.5rem;
        vertical-align: middle;
        content: "";
        background-image: url("../img/icon/fav-icon.svg");
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    
    a::after {
        display:inline-block;
        width: 7.125rem;
        height: 0.5rem;
        margin-left: 0.75rem;
        vertical-align: middle;
        content: "";
        background-image: url("../img/icon/long-arrow-right-brown.svg");
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
}


/* schedule-section */
.schedule-section {
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    text-align: center;
}

.schedule-section-bg-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.schedule-section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-section-main-container {
    z-index: 2;
    padding: 5rem 0 4.4375rem;

    @media (width >= 768px) {
        padding: 10rem 0;
    }

    .section-main-title {
        margin-bottom: 0.625rem;
    }
}

.section-main-description {
    font-size: var(--text-ja-16);

    @media (width >= 768px) {
        font-size: var(--text-ja-20);
    }
}

.schedule-list-container {
    padding: 1.25rem;
    margin: 2.5rem 0;
    background-color: rgb(1 21 12 / 60%);
    border-radius: 20px;

    @media (width >= 768px) {
        max-width: 57.5rem;
        padding: 2.5rem;
        margin: 2.5rem auto 5rem;
    }
}

.schedule-list {
    max-width: 31.25rem;
    margin: 0 auto;
}

.schedule-list-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-light-grayish-green);

    @media (width >= 768px) {
        font-size: var(--text-ja-20);
    }

    .schedule-list-icon {
        width: 20px;
        height: 20px;

        @media (width >= 768px) {
            width: 40px;
            height: 40px;
        }
    }

    .schedule-list-text {
        flex-grow: 1;
        margin-left: 0.5rem;
        overflow: hidden;
        font-size: var(--text-ja-16);
        text-align: left;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.schedule-list-item:last-child {
    border: none;
}

.cta-button-appeal-label {
    margin-bottom: 1.25rem;
    font-size: var(--text-ja-15);

    @media (width >= 768px) {
        font-size: var(--text-ja-16);
    }
}

.cta-button-appeal-price {
    display: block;
    margin-top: 0.125rem;
    font-size: var(--text-ja-18);

    @media (width >= 768px) {
        display: inline;
        font-size: var(--text-ja-16);
    }
}

.price {
    font-size: var(--text-en-32);

    @media (width >= 768px) {
        font-size: var(--text-ja-24);
    }
}

.schedule-section-button-area {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    max-width: 74%;
    margin: 0 auto;

    @media (width >= 768px) {
        flex-wrap: inherit;
        gap: 0 2.5rem;
        max-width: 57.5rem;
    }

    * {
        flex: 1 1 auto;
    }

    .login-button {
        padding: 14px 24px;
        font-size: var(--text-ja-18);
        color: var(--color-dark-brown);
        background-color: var(--color-beige);
        border-radius: 2px;

        @media (width >= 768px) {
            padding: 20px 24px;
            font-size: var(--text-ja-20);
        }
    }
}

/* program-section */
.program-section {
    padding-bottom: 100px;
    background-color: var(--color-beige);

    /* stylelint-disable-next-line selector-class-pattern */
    .splide__arrow {
        top: auto;
        bottom: 16%;
        width: 80px;
        height: 80px;
        background-color: transparent;
        background-size: 100% auto;
    }
    
    /* stylelint-disable-next-line selector-class-pattern */
    .splide__arrow--prev {
        left: -10rem;
    }
    
    /* stylelint-disable-next-line selector-class-pattern */
    .splide__arrow--next {
        right: -10rem;
    }
}

.program-slide-group {
    @media (width >= 768px) {
        display: flex;
        flex-direction: column;

    }
}

.program-section-text-container {
    position: sticky;
    top: 0;
    z-index: 1;
    padding-top: 70px;
    margin: 0 -1.25rem;
    font-size: var(--text-en-16);
    text-align: center;
    background-color: var(--color-beige);
    transition: transform 0.3s ease;

    @media (width >= 768px) {
        padding-top: 100px;
        padding-left: 3%;
        margin: 0;
        text-align: left;
        background-color: transparent;
    }

    h2 {
        font-size: var(--text-en-32);
    }

    h3 {
        margin-top: 1rem;
        font-size: var(--text-ja-24);

        @media (1280px >= width >= 768px) {
            font-size: var(--text-ja-20);
        }
    }

    &.stuck {
        @media (1024px >= width >= 768px) {
            transform: scale(0.4) translateX(-80%);
        }

        @media (width >= 1024px) {
            transform: scale(0.7) translateX(-30%);
        }
    }
}

.program-card {
    @media (width >= 768px) {
        grid-template: 'thumbnail' 440px 'title' 'description' 'rate' / 1fr;
    }
}

.program-section-group {
    @media (width >= 768px) {
        position: sticky;
        top: 0;
    }
}

.program-slide-wrapper {
    padding-top: 4rem;
    
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}
  
@keyframes fadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}
  
@keyframes fadeOut {
    from { opacity: 1 }
    to { opacity: 0.2 }
}
  
.program-slide-wrapper-inner {
    max-width: 440px;
    margin: 0 auto;
}

.program-slide {
    margin: 0 -1.25rem;
}

.program-card-image {
    height: auto;
}

.program-card-header {
    margin-bottom: 2rem;
    text-align: center;
    
    @media (width >= 768px) {
        margin-bottom: 1.25rem;
    }
}

.program-card-header-title {
    padding-bottom: 0.5rem;
    margin: 0 0 0.5rem;
    font-size: var(--text-en-32);
    border-bottom: 1px solid var(--color-dark-brown);

    @media (width >= 768px) {
        font-size: var(--text-en-24);
    }
}

.program-card-header-about {
    font-size: var(--text-ja-13);
    
    @media (width >= 768px) {
        font-size: var(--text-en-15);
    }
}

.program-card-time {
    img {
        vertical-align: -2px !important;
    }
}

/* column-section */
.column-section {
    --border-radius: 20px;

    position: relative;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;

    @media (width >= 768px) {
        --border-radius: 40px;

        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
}

.column-section-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    grid-row: 1 / -1;
    grid-column: 1;
    width: 100%;
    height: 100%;
}

.column-section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-section-inner {
    grid-row: 1;
    grid-column: 1;
    padding: 5rem 0;

    @media (width >= 768px) {
        padding: 10rem 0;
    }

    .link-wrapper {
        place-self: center;
        margin-top: 2.5rem;

        @media (width >= 768px) {
            place-self: end;
            margin-top: 3.5rem;
            
        }
    }
}

.column-section-text-container {
    margin-bottom: 2rem;
    text-align: center;

    @media (width >= 768px) {
        margin-bottom: 7rem;
        text-align: left;
    }

    h2 {
        font-size: var(--text-en-32);
    }

    .column-section-sub-title {
        margin-top: 1rem;
        font-size: var(--text-ja-15);

        @media (width >= 768px) {
            margin-top: 1.25rem;
            font-size: var(--text-ja-24);
        }
    }

    p {
        font-size: var(--text-en-16);

        @media (width >= 768px) {
            font-size: var(--text-en-20);
        }
    }
}

/* topics-section */
.topics-section {
    padding: 5rem 0;
    background-color: var(--color-beige);
    
    @media (width >= 768px) {
        padding: 10rem 0;
    }

    .base-wrapper {
        max-width: 1098px;
    }
    
    .splide__track--draggable {
        @media (width >= 768px) {
            height: 344px !important;
        }
    }
}

.topics-section-text-container {
    display: flex;
    flex-direction: column;
    gap:1rem;
    width: fit-content;
    margin: auto;
    margin-bottom: 2rem;
    text-align: center;

    @media (width >= 768px) {
        gap:1.25rem;
        margin-bottom: 2.5rem;
    }

}

.topics-section-title {
    font-size: var(--text-en-32);
}

.topics-section-description {
    font-size: var(--text-ja-13);

    @media (width >= 768px) {
        font-size: var(--text-ja-15);
    }
}

.topics-slide-banner-container{
    height: 100%;

    img{
        height: 100%;
        object-fit: cover;
        border-radius: 8px;

        @media (width >= 768px) {
            border-radius: 4px;
        }
    }
}

/* wining-section */
.wining-section-outer {
    background-color: var(--color-medium-brown-2);
}

.wining-section {
    --border-radius: 20px;

    background-color: var(--color-beige);
    border-radius:0 0 var(--border-radius) var(--border-radius);

    @media (width >= 768px) {
        --border-radius: 40px;

        font-size: var(--text-ja-15);
    }
}

/* top-appeal */
.top-appeal{
    padding: 0 0 88px;

    @media (width >= 768px){
        padding-bottom: 160px;
    }

    img{
        max-width: 100%;
    }

    .wide-wrapper{
        @media (width >= 768px){
            max-width: 1280px;
            margin: 0 auto;
        }
    }

    .top-appeal-box{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding-top: 55px;

        @media (width >= 768px) {
            gap: 40px;
            align-items: center;
            max-width: 1022px;
            padding: 80px 0 0;
            margin: 0 auto;
        }

        .featured{
            width: 100%;
            max-width: 200px;

            @media (width >= 768px) {
                width: 382px;
                max-width: 100%;
            }
        }

        .information{
            width: 100%;
            color: var(--color-dark-brown);

            @media (width >= 768px) {
                width: calc(100% - 422px);
            }

            .title{
                margin-bottom: 8px;
                font-family: var(--font-family-en);
                font-size: var(--text-en-20);
                line-height: 1.1;
                letter-spacing: 0.08em;

                @media (width >= 768px) {
                    margin-bottom: 16px;
                    font-size: var(--text-en-24);
                }
            }

            .description{
                margin-bottom: 0;
                font-size: var(--text-ja-13);
                line-height: 1.7;
                letter-spacing: 0.08em;

                @media (width >= 768px) {
                    font-size: var(--text-ja-15);
                }
            }
        }
    }
}

.instagram-section {
    background-color: var(--color-beige);
}

.instagram-feed-container {
    
    /* stylelint-disable-next-line selector-id-pattern */
    #sb_instagram {
        /* プラグインのデフォルトのpadding-bottomを削除 */
        padding-bottom:0 !important;

        /* stylelint-disable-next-line selector-id-pattern */
        #sbi_images {
            padding: 0;
        }
    }

    display: grid;
    grid-template: "feed" "button" 1fr / 1fr;
    margin: 10px auto;

    .instagram-feed {
        grid-area: feed;
    }

    .instagram-feed-more-button {
        position: relative;
        grid-area: button;
        place-self: end center;
        width: 85%;
        height: 80px;
        margin-top: -40px;
        font-size: var(--text-en-16);
        color: var(--color-white);
        background: url("../img/top/instagram-bg.webp") no-repeat center center/cover;

        @media (width >= 768px) {
            place-self: center;
            width: 80%;
            height: 100%;
            max-height: 200px;
            margin-top: 0;
        }

        span{
            position: relative;

            &::before{
                display: block;
                width: 20px;
                height: 20px;
                margin: 0 auto 8px;
                content: "";
                background: url("../img/top/instagram-icon.svg") no-repeat center center/100% auto;
            }
        }
    }

    @media (width >= 768px) {
        grid-template: "feed button" 1fr / 1fr 264px;
    }
}

.text-loop-container {
    --loop-speed: 40s;
    --loop-delay:calc(-1 * var(--loop-speed) * 0.5);

    display: flex;
    width: 100%;
    overflow: hidden;
    font-family: var(--font-family-en);
    font-size: 12px;
    color: var(--color-brown);

    @media (width >= 768px) {
        --loop-speed: 30s;
    }
    
    .loop {
        flex: 0 0 auto;
        padding-left: 0.5em;
        overflow: hidden;
        white-space: nowrap;

        &:nth-child(odd) {
            animation: loop var(--loop-speed) var(--loop-delay) linear infinite;
        }

        &:nth-child(even) {
            animation: loop2 var(--loop-speed) linear infinite;
        }
    }

    .loop-reverse {
        flex: 0 0 auto;
        padding-left: 0.5em;
        overflow: hidden;
        white-space: nowrap;

        &:nth-child(odd) {
            animation: loop-reverse var(--loop-speed) linear infinite;
        }

        &:nth-child(even) {
            animation: loop-reverse2 var(--loop-speed) var(--loop-delay) linear infinite;
        }
    }

}

@keyframes loop {
    0%{
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0%{
      transform: translateX(0);
    }

    100%{
      transform: translateX(-200%);
    }
}

@keyframes loop-reverse{
    0%{
      transform: translateX(-100%);
    }

    100%{
      transform: translateX(100%);
    }
}

@keyframes loop-reverse2{
    0%{
      transform: translateX(-200%);
    }

    100%{
      transform: translateX(0);
    }
}

/* faq-section */
.faq-section-divider-wrapper {
    position: relative;
    width: 68%;
    margin: auto;

    @media (width >= 768px) {
        width: 88.9%;
    }

    .faq-section-divider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        border:none;
        border-top: 1px solid var(--color-light-brown);
        
    }
   
}

.faq-section {
    padding: 4rem 0 5rem;
    background-color: var(--color-beige);

    @media (width >= 768px) {
        padding: 10rem 0;
    }

    .top-heading-group {
        text-align: center;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.faq-list-container {
    max-width: 960px;
    margin: auto;
}

.faq-list-item {
    padding-left: 0.75rem;
    border-left: 1px solid var(--color-dark-brown);
}

.faq-question-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.faq-question {
    flex-grow: 1;
    padding-right: 1em;
}

.faq-arrow-button {
    width: 10.5%;
    text-align: right;
}

.faq-arrow-image {
    display: inline-block;
    transition: transform 0.5s ease;
}

.faq-arrow-image.active {
    transform: rotate(180deg);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: var(--text-ja-16);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-dark-brown);
  text-align: left;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;

   @media (width >=768px) { 
    font-size: var(--text-ja-18);
   }
}

.accordion-trigger.active .faq-arrow-image {
  transform: rotate(180deg);
}

.faq-answer-container {
  transition: padding 0.3s ease-out;
}

.faq-answer-container-inner {
  padding: 10px 20px;
  font-size: var(--text-ja-13);
  font-weight: 400;
  line-height: 1.7;
}

.faq-small-text{
    font-size: var(--text-ja-13);
    font-weight: 400;

    @media (width >=768px) { 
        font-size: var(--text-ja-15);
    }
}

.faq-text{
    font-size: var(--text-ja-16);
    font-weight: 400;

    @media (width >=768px) { 
        font-size: var(--text-ja-18);
    }
}

/* studio-section */
.studio-section {
    padding-bottom: 64px;
    padding-left: 20px;
    background-color: var(--color-beige);

    @media(width >= 768px) {
        padding-bottom: 104px;
        padding-left: 80px;
    }
}

.studio-section-text-container {
    display: flex;
    flex-direction: column;
    
    @media (width >= 768px) {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    .en-label {
        font-size: var(--text-en-32);
    }

    .studio-section-text {
        font-size: var(--text-ja-15);

        @media (width >= 768px) {
            font-size: var(--text-ja-20);
        }
    }
}

.studio-image-container {
    margin-top: 2.5rem;
    overflow: hidden;
    
    @media (width >= 768px) {
        margin-top: 5rem;
    }
    
    .studio-image-container-text {
        font-size: 10px;

        @media (width >= 768px) {
            font-size: var(--text-ja-15);
        }
    }

    .studio-image {
        width: 100%;
        min-width: 600px;
        height: auto;
        margin-top: 0.5rem;

        @media(width >= 768px) {
            margin-top: 1rem;
        }
        
    }
}

#pickup-studio-slide {
    padding-left: 10px;
    margin-top: 2rem;

    @media (width >= 768px) {
        padding-left: 2rem;
        margin-top: 2.5rem;
    }
}

.studio-section-studio-list {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--color-dark-brown);
}

.studio-card {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    height: 100%;
    overflow: hidden;
    color: var(--color-dark-brown);
    cursor: pointer;
    background-color: var(--color-white);
    border-radius: 8px;
    transition: box-shadow 0.3s ease-out;

    &:hover {
        box-shadow: 2px 2px 20px rgb(65 46 28 / 16%);
        opacity: inherit;
    }
}

.studio-card-label-container {
    display: flex;
    grid-area: 1/1;
    gap: 0.5rem;
    place-self: start end;
}

.studio-card-label {
    --border-radius: 4px;

    padding: 10px 6px;
    font-size: 14px;
    font-weight: 400;

    &:not(:last-child) {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    &:last-child {
        border-radius: 0 var(--border-radius);
    }

    &.purple {
        color: var(--color-white);
        background-color: var(--color-purple);
    }

    &.green {
        color: var(--color-white);
        background-color: var(--color-green);
    }

    &.blank {
        visibility: hidden;
    }

    .en-label {
        font-family: var(--font-family-en);
        font-size: 14px;
        font-weight: 700;

        &.thin {
            font-size: 12px;
        }

        .strong {
            font-size: 20px;
        }
    }
}

.studio-card-inner {
    display: flex;
    flex-direction: column;
    grid-area: 1/1;
    padding: 1.5rem;

    @media (width >= 768px) {
        padding: 2rem;
    }
}

.studio-card-head {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #000;
}

.studio-card-note {
    font-family: var(--font-family-en);
    font-size: 12px;
    font-weight: 500;
}

.studio-card-title {
    font-size: var(--text-ja-20);
}

.studio-card-tel {
    font-family: var(--font-family-en);
    font-size: var(--text-en-13);
}

.studio-card-body {
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0;
}

.studio-card-access {
    font-size: var(--text-ja-14);
}

.studio-card-postal {
    font-size: var(--text-ja-13);
}

.studio-card-address {
    font-size: var(--text-ja-13);
}

.pickup-studio-slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px; 
    height: 90px;
    background: #DDD7E7;

    @media (width >= 768px) {
        width: 4px;
        height: 120px;
    }

    /* stylelint-disable-next-line selector-class-pattern */
    .splide__progress__bar {
        width: 100%;
        height: 0%; 
        background: #9F8FCA;
        transition: height 0.3s ease;
    }
}

.column-card {
    display: block;
    padding: 1.25rem;
    border-radius: 8px;
    transition: box-shadow,background-color 0.3s ease;

    @media(width >= 768px) {
        padding: 2rem;
    }

    &:hover {
        background-color: var(--color-medium-grayish-green);
        box-shadow: 2px 2px 20px rgb(65 46 28 / 16%);
        opacity: inherit;
    }
}

.column-card-image-container{
    width: 100%;

    img {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 3;
    }
}

.column-card-body {
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    width: 100%;
    margin-top: 0.625rem;
    font-size: var(--text-ja-13);

    @media(width >= 768px) {
        margin-top: 1.25rem;
        font-size: var(--text-ja-16);
    }
}

.tags{
    display: flex;

    span{
        margin-right: 6px;
    }
}

.tag {
    padding: 4px 8px;
    font-size: 12px;
    color:white;
    background-color: rgb(255 255 255 / 50%);
    border-radius: 4px;

    @media(width >= 768px) {
        color:#5E857D;
    }
}

.column-card-title {
    display: -webkit-box;
    overflow: hidden;
    text-align: left;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.studio-price-banner-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
}

.studio-price-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.trial-date{
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}