/* ここからmv */
.mv_inner {
    border-radius: 30px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
    animation: zoomUp 7s linear 0s normal both;
}


.mv_container {
    position: relative;
    object-fit: cover;
}

.mv_container::before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";

    mix-blend-mode: multiply;
}


@media (max-width: 768px) {
    .mv_inner {
        aspect-ratio: 1 / 1;
    }
}

.swiper {
    width: 100%;
    height: 100%;
    /* 親の高さに合わせる */
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-img {
    width: 100%;
    height: 100%;
}

.mv_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* アスペクト比を保って全体にフィット */
}



.mv_title_container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 70px;
    padding-left: 90px;
}

@media (max-width: 768px) {
    .mv_title_container {
        padding-top: 50px;
        padding-left: 55px;
    }
}

@media (max-width: 570px) {
    .mv_title_container {
        position: relative;
        padding-top: 18px;
        padding-left: 30px;
    }
}

@media (max-width: 570px) {
    .mv_title_box {
        display: flex;
        justify-content: space-between;
    }
}

.mv_title {
    font-size: 70px;
    font-weight: bold;
    line-height: 100%;
    position: absolute;
    z-index: 3;
}


@media (max-width: 768px) {
    .mv_title {
        font-size: 50px;
        font-weight: bold;
        line-height: 100%;
        padding: 10px;
    }
}

@media (max-width: 570px) {
    .mv_title {
        position: relative;
        padding: 0;
    }
}

.mv_title span {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
}

.mv_title .title_span {
    margin-top: 26px;
}

@media (max-width: 768px) {
    .mv_title .title_span {
        margin-top: 18px;
    }
}

@media (max-width: 570px) {

    .mv_title span,
    .mv_title .title_span {
        font-size: 30px;
        line-height: 1.4;
    }

    .mv_title .title_span {
        margin-top: 0;
    }
}

.mv_text {
    position: absolute;
    z-index: 3;
    font-size: 20px;
    line-height: 100%;
    background-color: #fff;
    opacity: .8;
    bottom: 64px;
    padding: 5px;
    line-height: 140%;
}

@media (max-width: 768px) {
    .mv_text {
        font-size: 15px;
        line-height: 120%;
        background-color: #fff;
        opacity: .8;
        margin-top: 100px;
    }
}

@media (max-width: 570px) {
    .mv_text {
        position: relative;
    }
}

.span {
    background-color: #fff;
}

.trial_button {
    position: absolute;
    content: "";
    bottom: 10px;
    right: 50px;
    z-index: 3;
    background-color: #FBDF54;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trial_line {
    width: 135px;
    height: 135px;
}

/* SP */
.trial_button.trial_button-sp {
    display: none;
}

@media (max-width: 570px) {
    .trial_button.trial_button-sp {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .trial_button {
        width: 150px;
        height: 150px;
    }

    .trial_line {
        width: 70px;
        height: 70px;
    }

    .trial_text {
        font-size: 13px;
        border-radius: 20px;
    }
}

@media (max-width: 570px) {
    .trial_button {
        position: relative;
        bottom: auto;
        right: auto;
        /* margin-bottom: 10px; */
    }

    .trial_button.trial_button-pc {
        display: none;
    }

    .trial_text {
        text-align: center;
    }
}


/* ここまでmv */

/* ここからアバウト */

.about_img_taxt {
    position: relative;
    width: 100%;
    background-image: url(/img/flame-deco/flame_gray.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    background-repeat: no-repeat;
}


.about_img_taxt::before {
    position: absolute;
    content: "";
    background-image: url(../img/flame-deco/flame_left.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: -14%;
    left: 0;
    width: 240px;
    height: 100%;
}

@media (max-width: 570px) {
    .about_img_taxt::before {
        position: absolute;
        content: "";
        background-image: url(../img/flame-deco/flame_left.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        top: -10%;
        left: 0;
        width: 180px;
        height: 100%;
    }
}

.about_img_taxt::after {
    position: absolute;
    content: "";
    background-image: url(../img/flame-deco/flame_right.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: -6%;
    right: 0;
    width: 240px;
    height: 100%;
}

@media (max-width: 570px) {
    .about_img_taxt::after {
        position: absolute;
        content: "";
        background-image: url(../img/flame-deco/flame_right.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        top: 0%;
        right: 0;
        width: 180px;
        height: 100%;
    }

    .about_img_taxt {
        margin-top: 0;
    }
}

.about_img_taxt .about_body {
    position: relative;
    z-index: 100;
}

.about_title {
    font-size: 20px;
    font-weight: bold;
    line-height: 180%;
    margin-top: 210px;
    text-align: center;
}

@media (max-width: 570px) {
    .about_title {
        margin-top: 300px;
    }
}

.about_info {
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    margin-top: 55px;
}

.about_button {
    margin-top: 72px;
    margin-bottom: 350px;

}



@media (max-width: 570px) {

    .about_title {
        font-size: 18px;
        align-items: center;
    }

    .about_info {
        font-size: 14px;
        align-items: center;
        margin-top: 25px;
    }

    .about_button {
        margin-top: 40px;
    }
}

/* ここまでアバウト */


/* ここからニュース */

/* .news {
    padding: 100px 200px;
} */

.section_title.-news {
    padding-top: 200px;
    margin-bottom: 50px;

}

.instagram-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.lightwidget-widget {
    display: block;
    width: 100%;
    border: 0;
    /* 高さは JS がセットするので基本は指定しない */
}


/* ここまでニュース */

/* ここから1日の流れ */

.schedule {
    position: relative;
    background-image: url(/img/flame-deco/cork.jpg);
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 200px;

}

.schedule_wrap {
    background-color: #fff;
    border-radius: 95px;
    margin-top: 150px;
    margin-bottom: 150px;

}

.schedule .section_title {
    margin-top: 35px;
}

.section_title-schedule {
    position: relative;
}

.section_title-schedule .section_title {
    position: relative;
    z-index: 5;
}

.section_title-schedule .title_img {
    position: absolute;
    content: "";
    top: -60px;
    left: -78px;
    width: 473px;
    height: 210px;
    z-index: 3;
}

.title_img {
    max-width: 95%;
    height: auto;
}

.timetable_icon {
    align-items: center;
}

.timetable_pic {
    width: 270px;
    align-items: start;
}

.timetable_text {
    width: calc(50% + 27px);
    margin-top: 115px;
    background-color: #F7F6F6;
    border-radius: 15px;
    position: relative;
    z-index: 3;
    margin-left: -27px;
    padding: 39px 35px 36px 60px;
}

.time_info {
    display: flex;
}


.time_info:not(:first-of-type) {
    margin-top: -16px;
}

.time_infoLeft {
    display: flex;
    width: 50%;
    position: relative;
    z-index: 5;
    /* 文章より画像が上に来るように表示順設定 */
}

.border {
    height: 185px;
}

.time_img {
    width: 270px;
    margin: auto;
    margin-left: 0;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}

.timetable_icon {
    position: relative;
}

.timetable_icon::after {
    position: absolute;
    content: "";
    background-image: url(../img/flame-deco/border.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 2px;
    height: calc(100% - 67px - 25px);
    top: 67px;
    left: 30px;
}

.time_info:last-child .timetable_icon::after {
    display: none;
}

.button.-lesson {
    margin-top: 80px;
}

.button.-price {
    margin-top: 15px;
    margin-bottom: 85px;
}

@media (max-width: 570px) {
    .time_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        overflow: hidden;
    }

    .timetable_text {
        width: 60%;
        margin-top: 10px;
        background-color: #F7F6F6;
        border-radius: 15px;
        position: relative;
        z-index: 3;
        padding: 10px;
        /* margin-bottom: 50px; */
        width: calc(100% - 60px);
        margin-left: auto;
    }

    .time_infoLeft {
        width: 100%;
    }

    .timetable_pic {
        width: calc(100% - 60px);
    }

    .time_img {
        width: 100%;
    }

    .timetable_icon {
        align-items: center;
    }

    .timetable_icon::after {
        height: 150%;
    }

}

/* ここまで1日の流れ */



/* ここからポリシー */

.policy {
    position: relative;
    width: 100%;
    background-image: url(/img/flame-deco/flame_green.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.policy_wrap {
    background-color: #fff;
    border-radius: 95px;
    margin-top: 90px;
    margin-bottom: 90px;
    padding: 60px 0 90px 0;
}


.policy_text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 82px;
}

.policy_body {
    border: 1.5px solid #562915;
    border-radius: 30px;
    border-color: #562915;
    width: 310px;
    height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.number {
    font-size: 32px;
    margin-top: 35px;
}

.policy_title {
    font-size: 15px;
    font-weight: bold;
    width: 165px;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    align-items: center;
}

.policy_body_text {
    font-size: 14px;
    line-height: 24px;
    width: 250px;
    text-align: center;
    align-items: center;
    margin-top: 30px;
}



/* ここまでポリシー */

/* ここからアクセス */

.access {
    position: relative;
    width: 100%;
    background-image: url(/img/flame-deco/access_flame.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.access_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 150px;
}

.info {
    font-size: 14px;
    margin-bottom: 10px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 600px;
}

.access_wrap {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 300px;
}

@media (max-width: 750px) {
    .access_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .access_adress {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

/* ここまでアクセス */

/* ここからQ&A */

.qa {
    border: 2px solid;
    border-color: #562915;
    border-radius: 700px 700px 0% 0%;
    width: 95%;
    margin: auto;
    margin-bottom: 100px;
}

.qa .section_title {
    margin-top: 215px;
}

.qa_text {
    margin-top: 120px;
    align-items: center;
}

.qa_body {
    margin-bottom: 60px;
}

.q-1 {
    font-size: 15px;
    font-weight: bold;
    border: 1.5px solid;
    border-color: #562915;
    border-radius: 8px;
    padding: 15px 20px;
    align-items: center;
    background-color: #9FD2D6;

}

.q-2 {
    font-size: 15px;
    font-weight: bold;
    border: 1.5px solid;
    border-color: #562915;
    border-radius: 8px;
    padding: 15px 20px;
    align-items: center;
    background-color: #FFE97A;

}

.q-3 {
    font-size: 15px;
    font-weight: bold;
    border: 1.5px solid;
    border-color: #562915;
    border-radius: 8px;
    padding: 15px 20px;
    align-items: center;
    background-color: #F7B0BE;

}

@media (max-width: 570px) {

    .q-1,
    .q-2,
    .q-3 {
        padding: 15px 20px;
    }
}

.a {
    font-size: 14px;
    align-items: center;
    width: 95%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.button.-contact {
    margin-top: 85px;
    margin-bottom: 105px;
}

@media (max-width: 768px) {
    .qa {
        width: calc(100% - 44px);
        margin: 0 22px 100px 22px;
    }
}

@media (max-width: 570px) {
    .qa {
        margin-top: 100px;
    }
}

/* ここまでQ＆A */