/*mv*/
.section-mv {
    position: relative;
}
.mvOverlay {
    width: 100%;
    height: 100vh; /* 必要な高さを指定 */
    background-image: url("../image/mv.jpg");
    background-size: cover;
    background-position: center;
}

.mvOverlay::after {
    content: "";
    position: absolute;
    inset: 0; /* top, right, bottom, left全部0 */
    background: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
}
.mv-title {
    font-size: 60rem;
    color: #fff;
    position: absolute;
    top: 54vh;
    left: 50%;
    letter-spacing: 19rem;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    line-height: 110rem;
}
@media(max-width:640px){
    .mv-title {
        top: 50vh;
        font-size: 40rem;
        letter-spacing: 12rem;
        line-height: 84rem;
    }
}
/*aboutセクション*/
.section-about{
    text-align: center;
}
.sectionText {
    line-height: 60rem;
}
/*profileセクション*/
.section-profile h3 {
    margin-bottom: 60rem;
}
.profile {
    display: flex;
    gap: 80rem;
}
@media (max-width: 640px) {
    .sectionText {
        letter-spacing: 2rem;
    }
    .profile {
        display: block;
    }
}
.profileImg{
    width: 100%;
}
.profilePost {
    color: #435891;
    font-weight: 600;
    letter-spacing: 8rem;
    margin-bottom: 20rem;
}
.profileName {
    margin-bottom: 30rem;
}
.profileNameJa, .profileNameKana {
    margin-left: 20rem;
}
.profileNameJa {
    font-size: 36rem;
    letter-spacing: 16rem;
    margin-bottom: 10rem;
}
.profileNameKana {
    font-size: 26rem;
    letter-spacing: 10rem;
}
.profileCCareer {
    line-height: 50rem;
}
.profileTitle {
    font-weight: 600;
}
/*体験レッスン*/
/*無料期間*/
.section-trial h3{
    margin-bottom: 60rem;
}
.freeTrial {
    width: 50%;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .freeTrial {
        width: 100%;
    }
}
.trialLesson {
    display: flex;
    background: #435891;
    border: #435891 solid 3rem;
    border-radius: 20rem;
    text-align: center;
    align-items: center;
    font-size: 30rem;
    letter-spacing: 8rem;
    margin-bottom: 40rem;
}
.trialLessonItem {
    flex: 2;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 640px) {
    .trialLesson {
        font-size: 27rem;
        letter-spacing: 3rem;
    }
    .trialLessonItem{
        display: block;
    }
}
.trialLessonItem p {
    font-weight: 500;
    margin-left: 20rem;
    font-size: 24rem;
    align-items: center;
}
.trialLessonPrice {
    flex: 1;
    color: #435891;
    font-weight: 600;
    background: #fff;
    padding: 50rem;
    border-top-right-radius:18rem;
    border-bottom-right-radius:18rem;
}
@media (max-width: 640px) {
    .trialLessonPrice{
        padding: 50rem 14rem;
    }
}
.trialLessonInfo {
    line-height: 50rem;
}
.trialLessonCheckItem {
    gap: normal!important;
    align-items: center;
    margin-bottom: 10rem;
}
.trialLessonCheckItem p {
    line-height: 38rem;
}
.trialLessonCheck img {
    width: 60rem;
    height: 60rem;
    margin-right: 20rem;
    overflow: visible;
}
.sectionItem {
    font-weight: 600;
    color: #435891;
    margin: 50rem 0 20rem;
    font-size: 34rem;
    letter-spacing: 8rem;
    padding-left: 30rem;
}
.trialLessonCheckText {
    margin-top: 20rem;
}
.borderTop {
    border-top: #333 solid 1rem;
    padding:30rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.borderTop p {
    font-size: 28rem;
    letter-spacing: 8rem;
}
@media(max-width: 640px){
    .borderTop p {
        font-size: 26rem;
        letter-spacing: 5rem;
    }
}
/*生徒からの声*/
.section-voice h3 {
    margin-bottom: 60rem;
}
.voiceItem {
    background: #fff;
    border: #435891 solid 2rem;
    border-radius: 20rem;
    padding: 40rem;
    margin-bottom: 40rem;
}
.voiceItemName {
    text-align: right;
    margin-top: 30rem;
}
.voiceItemName span {
    line-height: 50rem;
}
/*アクセス*/
.section-access{
    width: 60vw;
    margin: 0 auto 200rem;
}
@media (max-width: 640px) {
    .section-access {
        width: 87vw;
        margin: 0 auto 150rem;
    }
}
.accessItem p {
    padding-left: 30rem;
    margin-bottom: 30rem;
}
.accessItems{
    display: flex;
    gap: 40rem;
    justify-content: space-between;
    margin-bottom: 20rem;
}
@media (max-width: 640px) {
    .accessItems {
        display: block;
    }
    .accessItem p {
        letter-spacing: 2rem;
    }
}
.accessImg {
    width: 570rem;
}
@media (max-width: 640px) {
    .accessImg {
        width: 100%;
    }
}
.googleMap{
    border-radius: 30rem;
}
/*ドロワーカラー変更*/
#nav-open span,
#nav-open span:before{
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #fff; /* 初期は白 */
}

#nav-open span:before {
    bottom: -13px;
}

#nav-open span:after {
    bottom: -30px;
}

/* スクロール後 */
#nav-open.scrolled span,
#nav-open.scrolled span:before {
    background-color: #435891 !important;
}
