@charset "UTF-8";

/* --- Wrapper --- */
.studio-wrapper {
    width: 100%;
    overflow-x: hidden;
    background-color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    color: #444A4D;
}

.studio-wrapper * {
    box-sizing: border-box;
}

/* --- Hero Section --- */
.studio-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    background: #E8F1FF;
    background-image: linear-gradient(rgba(167, 202, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 202, 255, 0.4) 1px, transparent 1px);
    background-size: 60px 60px;
    padding-top: 202px;
    padding-bottom: 95px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.studio-hero-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 120px;
    padding-right: 20px;
}

.studio-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 0px;
    width: 100%;
}

.studio-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #444A4D;
    margin: 0;
    margin-bottom: 5px;
	
	transition: opacity 0.75s, translate 0.75s;
	opacity: 0;
	translate: 0 16px;
}

.studio-sub-title.slideIn {
  opacity: 1;
  translate: 0 0;
}

.studio-main-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1;
    font-variant: all-small-caps;
    color: #238DEB;
    margin: 0;
    margin-top: -5px;
	
	transition: clip-path 1s;
	transition-delay: 0.5s; 
	clip-path: inset(0 100% 0 0);
}

.studio-main-title.showFromLeft {
  clip-path: inset(0); 
}


/* --- Studio Plan --- */

.studio-planinner {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 100px 60px;
    margin: 0 30px;
    border-radius: 60px;
    background-color: #4D9EE8;
    overflow: hidden;
}

.studio-planheading {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.studio-planheading-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.studio-planheading-title span {
    display: block;
}

/* JP: showFromLeft */
.studio-planheading-title-jp {
    color: #FFFFFF;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 100%;

    transition: clip-path 1s;
    transition-delay: 0.5s;
    clip-path: inset(0 100% 0 0);
}

.studio-planheading-title-jp.showFromLeft {
    clip-path: inset(0);
}

/* EN: slideIn */
.studio-planheading-title-en {
    color: #FFFFFF;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 100%;

    transition: opacity 0.75s, translate 0.75s;
    opacity: 0;
    translate: 0 5vw;
}

.studio-planheading-title-en.slideIn {
    opacity: 1;
    translate: 0 0;
}

.studio-planheading-lead {
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 180%;
    text-align: center;

    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-planheading-lead.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-planmain {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.studio-planlist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1080px;
    gap: 80px 100px;
    margin: 0 auto;
}

.studio-planitem {
    display: flex;
    position: relative;

    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-planitem.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-planitem::before {
    position: absolute;
    top: 18.9px;
    left: -7px;
    z-index: 1;
    width: 360px;
    height: 100%;
    border-radius: 8px;
    transform: rotate(7deg);
    content: "";
}

.studio-planitem--intro::before {
    background-color: #FFBE0A;
}

.studio-planitem--beginner::before {
    background-color: #526DCE;
}

.studio-planitem--intermediate::before {
    background-color: #0F8EA4;
}

.studio-planitem--opl::before {
    background-color: #E72767;
}

.studio-planitem-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    gap: normal;
    position: relative;
    z-index: 2;

    width: 360px;
    height: 560px;
    border-radius: 8px;
    padding: 40px 24px 48px 24px;
    background-color: #FFFFFF;
}

.studio-planitem-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.studio-planitem-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 100%;
    text-align: center;
}

.studio-planitem-title--intro {
    color: #FFBE0A;
}

.studio-planitem-title--beginner {
    color: #526DCE;
}

.studio-planitem-title--intermediate {
    color: #0F8EA4;
}

.studio-planitem-title--opl {
    color: #E72767;
}

.studio-planitem-subtitle {
    display: inline-block;
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 100%;
}

.studio-planitem-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 260px;
}

.studio-planitem-image {
    width: 100%;
    height: 260px;
}

.studio-planitem-picture {
    width: 100%;
    height: auto;
}

.studio-planitem-detail {
    text-align: center;
}

.studio-planitem-text {
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 160%;
}

.studio-planitem-price {
    font-size: 34px;
}

.studio-planitem-addition {
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 160%;
}

.studio-plandetail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 800px;
    margin: 0 auto;
    text-align: center;

    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-plandetail.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-plandetail-point {
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 180%;
}

.studio-plandetail-remark {
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 180%;
}

@media (max-width: 1200px) {
    .studio-planinner {
        gap: 40px;
        padding: 80px 20px;
        margin: 0;
    }

    .studio-planheading-title {
        gap: 4px;
    }

    .studio-planheading-title-jp {
        font-size: 40px;
        line-height: 120%;
    }

    .studio-planheading-title-en {
        font-size: 14px;
    }

    .studio-planheading-lead {
        font-size: 16px;
        text-align: left;
    }

    .studio-planmain {
        gap: 40px;
    }

    .studio-planlist {
        gap: 80px 40px;
        max-width: none;
        margin: 0;
    }

    .studio-planitem::before {
        left: 14.51px;
        width: 335px;
    }

    .studio-planitem-inner {
        width: 335px;
        height: auto;
        padding: 34px 24px 40px;
        gap: 24px;
    }

    .studio-planitem-title {
        font-size: 36px;
    }

    .studio-planitem-main {
        gap: 24px;
    }

    .studio-plandetail {
        width: 100%;
        max-width: 335px;
        margin: 32px auto 0;
    }

    .studio-plandetail-point {
        font-size: 20px;
    }

    .studio-plandetail-remark {
        font-size: 15px;
    }
}


/* --- Payment Info Section --- */
.studio-payment-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;

    /* --- Animation Style --- */
    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-payment-wrapper.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-payment-card {
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    background-color: #1464AD;
    border-radius: 8px;
    padding: 30px 40px;
    width: 100%;
    max-width: 886px;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.studio-payment-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    border: none;
    color: #FFFFFF;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.studio-payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studio-payment-item {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 1em;
    margin-bottom: 0;
    color: #FFFFFF;
}

.studio-payment-item::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
    color: #FFFFFF;
    font-weight: 500;
}

.studio-payment-bold {
    font-weight: 700;
    border: none;
    text-decoration: none;
    display: inline;
}


/* --- Studio - Trial --- */

.studio-trialinner {
    display: flex;
    padding: 100px 0;
    margin: 0 60px;
    overflow: hidden;
}

.studio-trialinner-right-alignment {
    display: flex;
    flex-direction: row;
    gap: normal;
    justify-content: center;
    padding: 0 0 0 60px;
    width: 100%;
}

.studio-trialcolumn:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 800px;
}

.studio-trialcolumn:last-of-type {
    width: 425.06px;
}

.studio-trialheading-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.studio-trialheading-title span {
    display: block;
}

.studio-trialheading-title-jp {
    color: #4D9EE8;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 100%;

    transition: clip-path 1s;
    transition-delay: 0.5s;
    clip-path: inset(0 100% 0 0);
}

.studio-trialheading-title-jp.showFromLeft {
    clip-path: inset(0);
}

.studio-trialheading-title-en {
    color: #444A4D;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 100%;

    transition: opacity 0.75s, translate 0.75s;
    opacity: 0;
    translate: 0 5vw;
}

.studio-trialheading-title-en.slideIn {
    opacity: 1;
    translate: 0 0;
}

.studio-trialmain {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.studio-triallead {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.studio-trialquestion {
    display: flex;
    flex-direction: column;
    gap: 24px;

    transition: opacity 1.25s, translate 1.25s;
    translate: 0 5vw;
    opacity: 0;
    transition-delay: 0.5s;
}

.studio-trialquestion.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-trialpoint {
    transition: opacity 1.25s, translate 1.25s;
    translate: 0 5vw;
    opacity: 0;
    transition-delay: 0.7s;
}

.studio-trialpoint.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-trialcta {
    display: flex;
    flex-direction: column;
    gap: 40px;

    transition: opacity 1.25s, translate 1.25s;
    translate: 0 5vw;
    opacity: 0;
    transition-delay: 0.9s;
}

.studio-trialcta.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-trialcta-button {
    display: flex;
    justify-content: center;
    width: 578px;
}

.studio-trialtext {
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 180%;
}

.studio-trialtext--sp-regular {
    font-size: 18px;
    font-weight: 700;
}

.studio-trialtext--lesson {
    color: #4D9EE8;
    font-size: 22px;
}

.studio-trialtext--sp-bold {
    font-size: 18px;
    font-weight: 700;
}

.studio-triallist {
    padding: 0 0 0 18px;
}

.studio-triallist--disc {
    list-style: disc;
}

.studio-triallist--check {
    padding: 0;
    list-style: none;
}

.studio-triallist--check .studio-trialitem {
    padding: 0 0 0 25px;
    background-image: url("../img/check.webp");
    background-position: left;
    background-repeat: no-repeat;
    background-size: 21px auto;
}

.studio-trialitemmarker {
    color: #444A4D;
}

.studio-trialimage {
    display: flex;
    justify-content: center;

    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-trialimage.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-trialimage-picture {
    width: 425.06px;
    height: 482.65px;
    background-image: url("../img/top-trial.webp");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .studio-trialinner {
        padding: 80px 20px 40px;
        margin: 0;
        overflow: visible;
    }

    .studio-trialinner-right-alignment {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .studio-trialcolumn:first-of-type {
        gap: 40px;
        width: 100%;
    }

    .studio-trialcolumn:last-of-type {
        width: 100%;
    }

    .studio-trialheading-title {
        gap: 4px;
    }

    .studio-trialheading-title-jp {
        font-size: 40px;
        line-height: 120%;
    }

    .studio-trialheading-title-en {
        font-size: 16px;
        line-height: 100%;
    }

    .studio-trialmain {
        gap: 40px;
    }

    .studio-triallead {
        gap: 24px;
    }

    .studio-trialcta {
        gap: 40px;
    }

    .studio-trialcta-button {
        width: auto;
    }

    .studio-trialtext {
        font-size: 18px;
        font-weight: 700;
        line-height: 180%;
    }

    .studio-trialtext--sp-regular {
        font-size: 16px;
        font-weight: 400;
    }

    .studio-trialtext--lesson {
        font-size: 18px;
    }

    .studio-trialtext--sp-bold {
        font-size: 16px;
        font-weight: 700;
    }

    .studio-triallist {
        padding: 0 0 0 18px;
    }

    .studio-trialimage-picture {
        width: 335px;
        height: 380.11px;
        background-image: url("img/studio-plan.png");
        background-size: contain;
        background-repeat: no-repeat;
    }
}


/* --- Button Section --- */
.cta-lesson {
    margin-top: 40px;
}

.cta-lesson__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FF751F;
    border-radius: 16px;
    padding: 18px 38px 28px;
    gap: 8px;
    width: fit-content;
}

/* --- Button Lead Text --- */
.cta-lesson__lead1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- White Button --- */
.cta-lesson__link {
    background: #FFFFFF;
    border-radius: 100px;
    padding: 20px 16px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-decoration: none;
    width: 368px;
    box-sizing: border-box;
}

.cta-lesson__link-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #2F2F2D;
    margin: 0;
}

/* --- Arrow Icon --- */
.cta-lesson__link-arrow path {
    fill: #FF751F;
}

.studio-faqinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 100px 266px;
}

.studio-faqheading-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.studio-faqheading-title span {
    display: block;
}

.studio-faqheading-title-jp {
    color: #444A4D;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.04em;

    transition: opacity 0.75s, translate 0.75s;
    opacity: 0;
    translate: 0 5vw;
}

.studio-faqheading-title-jp.slideIn {
    opacity: 1;
    translate: 0 0;
}

.studio-faqheading-title-en {
    color: #4D9EE8;
    font-family: Montserrat, sans-serif;
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 100%;

    transition: clip-path 1s;
    transition-delay: 0.5s;
    clip-path: inset(0 100% 0 0);
}

.studio-faqheading-title-en.showFromLeft {
    clip-path: inset(0);
}

.studio-faqmain {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 880px;
}

.studio-faqitem {
    display: flex;
    flex-direction: column;
    gap: 24px;

    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-faqitem.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-faqitem[open] .studio-faqquestion::after {
    opacity: 0;
}

.studio-faqquestion {
    display: flex;
    position: relative;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
    border-radius: 10px;
    background-color: #F7F7F7;
}

.studio-faqquestion::-webkit-details-marker {
    display: none;
}

.studio-faqquestion::before {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 16px;
    height: 2px;
    background-color: #444A4D;
    transform: translateY(-50%);
    content: "";
}

.studio-faqquestion::after {
    position: absolute;
    top: 50%;
    right: 31px;
    width: 2px;
    height: 16px;
    background-color: #444A4D;
    transform: translateY(-50%);
    transition: 0.3s;
    content: "";
}

.studio-faqquestion-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background-color: #4D9EE8;
}

.studio-faqquestion-q {
    color: #FFFFFF;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

.studio-faqquestion-text {
    width: calc(100% - 40px - 30px - 16px);
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.02em;
}

.studio-faqanswer {
    display: flex;
    gap: 24px;
    padding: 0 26px;
}

.studio-faqanswer-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background-color: #FFB301;
}

.studio-faqanswer-a {
    color: #FFFFFF;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

.studio-faqanswer-text {
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
    .studio-faqinner {
        gap: 40px;
        padding: 80px 20px;
    }

    .studio-faqheading-title {
        gap: 0;
    }

    .studio-faqheading-title-jp {
        font-size: 14px;
        line-height: 100%;
    }

    .studio-faqheading-title-en {
        font-size: 64px;
        line-height: 100%;
    }

    .studio-faqmain {
        width: 100%;
    }

    .studio-faqquestion {
        gap: 20px;
        padding: 14px 20px;
    }

    .studio-faqquestion::before {
        right: 20px;
    }

    .studio-faqquestion::after {
        right: 27px;
        width: 2px;
        height: 16px;
    }

    .studio-faqquestion-icon {
        width: 30px;
        height: 30px;
        border-radius: 15px;
    }

    .studio-faqquestion-q {
        font-size: 16px;
        line-height: 100%;
    }

    .studio-faqquestion-text {
        width: calc(100% - 40px - 30px - 16px);
        font-size: 15px;
        line-height: 150%;
    }

    .studio-faqanswer {
        gap: 20px;
        padding: 0 20px;
    }

    .studio-faqanswer-icon {
        width: 30px;
        height: 30px;
        border-radius: 15px;
    }

    .studio-faqanswer-a {
        font-size: 16px;
        line-height: 100%;
    }

    .studio-faqanswer-text {
        font-size: 15px;
        line-height: 160%;
    }
}


/* --- Studio - Voices --- */

.studio-voicesinner {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 100px 0;
}

.studio-voicesheading {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.studio-voicesheading-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.studio-voicesheading-title span {
    display: block;
}

/* Title animations (same behavior as toppage) */
.studio-voicesheading-title-jp {
    color: #4D9EE8;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 100%;

    transition: clip-path 1s;
    transition-delay: 0.5s;
    clip-path: inset(0 100% 0 0);
}

.studio-voicesheading-title-jp.showFromLeft {
    clip-path: inset(0);
}

.studio-voicesheading-title-en {
    color: #444A4D;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 100%;

    transition: opacity 0.75s, translate 0.75s;
    opacity: 0;
    translate: 0 5vw;
}

.studio-voicesheading-title-en.slideIn {
    opacity: 1;
    translate: 0 0;
}

.studio-voicesheading-subtitle {
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 180%;

    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-voicesheading-subtitle.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-voiceslist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.studio-voicesitem {
    transition: opacity 1.25s, translate 1.25s;
    transition-delay: 0.5s;
    translate: 0 5vw;
    opacity: 0;
}

.studio-voicesitem.slideIn {
    translate: 0 0;
    opacity: 1;
}

.studio-voicescard {
    background: #FFFFFF;
    border: 3px solid #99CEFF;
    box-shadow: 0px 0px 30px rgba(3, 69, 119, 0.08);
    border-radius: 8px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.studio-voicesheader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.studio-voicesmeta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.studio-voicestag {
    background: #0F8EA4;
    border-radius: 4px;
    padding: 4px 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    display: inline-block;
}

.studio-voicestitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: #07859B;
    margin: 0;
}

.studio-voicesicon-wrapper {
    flex-shrink: 0;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background: #e0e0e0;
    overflow: hidden;
}

.studio-voicesicon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-voicestext {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #444A4D;
    margin: 0;
}

@media (max-width: 1200px) {
    .studio-voicesinner {
        gap: 40px;
        padding: 80px 20px;
    }

    .studio-voicesheading {
        gap: 8px;
    }

    .studio-voicesheading-title {
        gap: 4px;
    }

    .studio-voicesheading-title-jp {
        font-size: 40px;
        line-height: 120%;
    }

    .studio-voicesheading-title-en {
        font-size: 14px;
    }

    .studio-voicesheading-subtitle {
        font-size: 20px;
    }

    .studio-voiceslist {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 1200px) {

    .studio-hero-section {
        padding-top: 0;
        padding-bottom: 0;
        min-height: 520px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .studio-hero-inner {
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    .studio-title-group {
        gap: 4px;
    }

    .studio-sub-title {
        font-size: 14px;
        line-height: 100%;
        margin: 0;
        margin-bottom: 0;
    }

    .studio-main-title {
        font-size: 42px;
        line-height: 140%;
        margin: 0;
        margin-top: 0;
    }
}

@media (max-width: 1200px) {

    .studio-payment-wrapper {
        margin-top: 40px;
        padding: 0 20px;
    }

    .studio-payment-card {
        width: 100%;
        max-width: 335px;
        padding: 24px 14px;
        gap: 40px;
        border-radius: 8px;
        background-color: #1464AD;
    }

    .studio-payment-title {
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: 0.05em;
    }

    .studio-payment-item {
        font-size: 15px;
        line-height: 1.6;
        font-weight: 400;
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width: 1200px) {

    .studio-wrapper .top-trialinner {
        padding: 80px 20px 40px;
        box-sizing: border-box;
    }

    .studio-wrapper .top-trialinner-right-alignment {
        flex-direction: column;
        gap: 40px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .studio-wrapper .top-trialcolumn {
        width: 100%;
        max-width: 100%;
        gap: 40px;
        box-sizing: border-box;
    }

    .studio-wrapper .top-trialheading-title {
        gap: 4px;
    }

    .studio-wrapper .top-trialheading-title-en {
        font-size: 16px;
        line-height: 1;
    }

    .studio-wrapper .top-trialheading-title-jp {
        font-size: 34px;
        line-height: 1.2;
    }

    .studio-wrapper .top-trialcta-button {
        display: flex;
        justify-content: center;
    }

    .studio-wrapper .cta-lesson {
        margin-top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .studio-wrapper .cta-lessoninner {
        width: 100%;
        max-width: 335px;
        padding: 14px 14px 24px;
        gap: 6px;
        box-sizing: border-box;
    }

    .studio-wrapper .cta-lessonlink {
        width: 100%;
        max-width: 307px;
        height: 60px;
        box-sizing: border-box;
        gap: 18px;
        justify-content: space-between;
    }

    .studio-wrapper .cta-lessonlink-text {
        font-size: 18px;
        line-height: 1;
        white-space: nowrap;
    }

    .studio-wrapper .top-trialimage {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .studio-wrapper .top-trialimage::before {
        content: "";
        position: absolute;
        width: 100%;
        max-width: 335px;
        height: 380.11px;
        background: #99CEFF;
        border-radius: 8px;
        transform: rotate(14deg);
        top: 18px;
        left: 50%;
        translate: -50% 0;
        z-index: 0;
    }

    .studio-wrapper .top-trialimage-picture {
        width: 100%;
        max-width: 335px;
        height: 380.11px;
        border-radius: 8px;
        position: relative;
        z-index: 1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1200px) {
    .studio-trialinner {
        padding: 80px 20px 40px;
    }

    .studio-trialinner-right-alignment {
        flex-direction: column;
        gap: 40px;
        padding-left: 0;
    }

    .studio-trialcolumn:first-child {
        max-width: 100%;
        gap: 40px;
    }

    .studio-trialcolumn:last-child {
        max-width: 100%;
    }

    .studio-trialheading-title {
        gap: 4px;
    }

    .studio-trialheading-title-en {
        font-size: 16px;
    }

    .studio-trialheading-title-jp {
        font-size: 34px;
        line-height: 1.2;
    }

    .studio-trialmain {
        gap: 40px;
    }

    .studio-trialcta-button {
        justify-content: center;
    }

    .cta-lesson {
        display: flex;
        justify-content: center;
    }

    .cta-lesson__inner {
        max-width: 335px;
        padding: 14px 14px 24px;
        gap: 6px;
    }

    .cta-lesson__link {
        max-width: 307px;
        height: 60px;
        padding: 18px 14px;
        gap: 18px;
    }

    .cta-lesson__link-text {
        font-size: 18px;
    }

    .studio-trialimage::before {
        width: 100%;
        max-width: 335px;
        height: 380.11px;
    }

    .studio-trialimage-picture {
        width: 100%;
        max-width: 335px;
        height: 380.11px;
    }
}
