@charset "UTF-8";

/* =======================================================
文字の下半分に線
======================================================= */
.under1 {
    background: linear-gradient(#ffffff00 50%, var(--thema-color-sub-2) 50%);
}

.under2 {
    background: linear-gradient(#ffffff00 50%, var(--thema-color-base-3) 50%);
}

/* =======================================================
スムーズスクロール
======================================================= */
html {
    scroll-behavior: smooth;
}

/* =======================================================
スマホで表示させない
======================================================= */
@media screen and (max-width: 568px) {
    .display-none {
        display: none;
    }
}

/* =======================================================
グリッド
======================================================= */
.grid-base {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
}

.grid-47 {
    display: grid;
    gap: 10px;
    /* margin: 20px 0px; */
    grid-template-columns: repeat(auto-fill, minmax(47%, 1fr));
}

.grid-32 {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
}

/* =======================================================
子要素
======================================================= */
/* ベース */
.item-base {
    width: 100%;
    margin: 20px 0px;
}

/* アシスタント */
.item-teacher {
    margin: 10px;
}

/* クラス */
.item-class {
    padding: 10px;
    background: #ffffff99
}

/* FAQ */
.item-faq {
    padding: 10px;
    background: #ffffff99;
}

/* コロナ */
.item-covid {
    padding: 10px;
    background-color: white;
    font-size: 13px;
}

/* 受賞歴 */
.item-competition {
    padding: 10px;
    background: #ffffff99
}


/* =======================================================
１アコーディオン／グラデーション／講師＆クラス
======================================================= */
.accordion-box {
    position: relative;
}

.accordion-box label {
    height: 200px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-left: -50%;
    z-index: 1;
    pointer-events: none;
    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--thema-color-body) 90%);
}

.accordion-box input:checked+label {
    background: inherit;
    /* 開いた時には背景グラデーションを消す */
}

.accordion-box label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f107' '　もっとみる';
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #757575;
    background-color: #f1f3f4;
    width: 97%;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: #dadce0;
    z-index: 1;
    pointer-events: all;
}

@media screen and (max-width: 568px) {
    .accordion-box label:after {
        font-size: 14px;
        line-height: 2rem;
    }
}

.accordion-box label:before {
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-140px, 0);
    background-color: #fff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.accordion-box input {
    display: none;
}

.accordion-box .accordion-container {
    overflow: hidden;
    height: 550px;
    /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box input:checked+label {
    /* 閉じるボタンは要らないとき */
}

.accordion-box input:checked+label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f00d' '　閉じる';
    pointer-events: all;
}

.accordion-box input:checked+label:before {}

.accordion-box input:checked~.accordion-container {
    height: auto;
    padding-bottom: 100px;
    /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


@media screen and (max-width: 568px) {
    .accordion-box .accordion-container {
        height: 400px;
        /* 開く前に見えている部分の高さ */
    }
}


/* =======================================================
２アコーディオン／グラデーション／スケジュール
======================================================= */
.accordion-box-2 {
    position: relative;
}

.accordion-box-2 label {
    height: 200px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: -20px;
    width: 100%;
    margin-left: -50%;
    border-radius: 20px;
    pointer-events: none;
    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--thema-color-body) 90%);
}

.accordion-box-2 input:checked+label {
    background: inherit;
    /* 開いた時には背景グラデーションを消す */
}

.accordion-box-2 label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f107' '　もっとみる';
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #757575;
    background-color: #f1f3f4;
    width: 97%;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: #dadce0;
    z-index: 1;
    pointer-events: all;
}

@media screen and (max-width: 568px) {
    .accordion-box-2 label:after {
        font-size: 14px;
        line-height: 2rem;
    }
}

.accordion-box-2 label:before {
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-140px, 0);
    background-color: #fff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.accordion-box-2 input {
    display: none;
}

.accordion-box-2 .accordion-container {
    overflow: hidden;
    height: 400px;
    /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box-2 input:checked+label {
    /* display: none ; 閉じるボタンは要らないとき */
}

.accordion-box-2 input:checked+label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f00d' '　閉じる';
    pointer-events: all;
}

.accordion-box-2 input:checked+label:before {}

.accordion-box-2 input:checked~.accordion-container {
    height: auto;
    padding-bottom: 100px;
    /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


@media screen and (max-width: 568px) {
    .accordion-box-2 .accordion-container {
        height: 300px;
        /* 開く前に見えている部分の高さ */
    }
}


/* =======================================================
３アコーディオン／グラデーション／カレンダー
======================================================= */
.accordion-box-3 {
    position: relative;
}

.accordion-box-3 label {
    height: 200px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: -20px;
    width: 100%;
    margin-left: -50%;
    border-radius: 20px;
    pointer-events: none;
    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--thema-color-body) 90%);
}

.accordion-box-3 input:checked+label {
    background: inherit;
    /* 開いた時には背景グラデーションを消す */
}

.accordion-box-3 label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f107' '　もっとみる';
    font-size: 16px;
    line-height: 2.5rem;
    letter-spacing: .05em;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #757575;
    background-color: #f1f3f4;
    width: 97%;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: #dadce0;
    pointer-events: all;
}

@media screen and (max-width: 568px) {
    .accordion-box-3 label:after {
        font-size: 14px;
        line-height: 2rem;
    }
}

.accordion-box-3 label:before {
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-140px, 0);
    background-color: #fff;
    z-index: 1;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.accordion-box-3 input {
    display: none;
}

.accordion-box-3 .accordion-container {
    overflow: hidden;
    height: 350px;
    /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box-3 input:checked+label {
    /* display: none ; 閉じるボタンは要らないとき */
}

.accordion-box-3 input:checked+label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f00d' '　閉じる';
    pointer-events: all;
}

.accordion-box-3 input:checked+label:before {}

.accordion-box-3 input:checked~.accordion-container {
    height: auto;
    padding-bottom: 60px;
    /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


@media screen and (max-width: 568px) {
    .accordion-box-3 .accordion-container {
        height: 300px;
        /* 開く前に見えている部分の高さ */
    }
}


/* =======================================================
４アコーディオン／グラデーション／よくある質問
======================================================= */

.accordion-box-4 {
    position: relative;
}

.accordion-box-4 label {
    height: 200px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    margin-left: -50%;
    pointer-events: none;
    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    z-index: 1;
}

.accordion-box-4 input:checked+label {
    background: inherit;
    /* 開いた時には背景グラデーションを消す */
}

.accordion-box-4 label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f107' '　もっとみる';
    letter-spacing: .05em;
    line-height: 2rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #757575;
    background-color: #f1f3f4;
    width: 100%;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: #dadce0;
    pointer-events: all;
}

.accordion-box-4 label:before {
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-140px, 0);
    background-color: #fff;
    z-index: 1;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.accordion-box-4 input {
    display: none;
}

.accordion-box-4 .accordion-container {
    overflow: hidden;
    height: 480px;
    /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box-4 input:checked+label {
    /* display: none ; 閉じるボタンは要らないとき */
}

.accordion-box-4 input:checked+label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f00d' '　閉じる';
    pointer-events: all;
}

.accordion-box-4 input:checked+label:before {}

.accordion-box-4 input:checked~.accordion-container {
    height: auto;
    padding-bottom: 60px;
    /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


@media screen and (max-width: 568px) {
    .accordion-box-4 .accordion-container {
        height: 240px;
        /* 開く前に見えている部分の高さ */
    }
}



/* =======================================================
５アコーディオン／グラデーション／メモリー＆受賞歴
======================================================= */

.accordion-box-5 {
    position: relative;
}

.accordion-box-5 label {
    height: 200px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: -20px;
    width: 100%;
    margin-left: -50%;
    z-index: 1;
    border-radius: 20px;
    pointer-events: none;
    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--thema-color-body) 90%);
}

.accordion-box-5 input:checked+label {
    background: inherit;
    /* 開いた時には背景グラデーションを消す */
}

.accordion-box-5 label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f107' '　もっとみる';
    letter-spacing: .05em;
    line-height: 2rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #757575;
    background-color: #f1f3f4;
    width: 97%;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: #dadce0;
    z-index: 1;
    pointer-events: all;
}

.accordion-box-5 label:before {
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-140px, 0);
    background-color: #fff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.accordion-box-5 input {
    display: none;
}

.accordion-box-5 .accordion-container {
    overflow: hidden;
    height: 400px;
    /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box-5 input:checked+label {
    /* display: none ; 閉じるボタンは要らないとき */
}

.accordion-box-5 input:checked+label:after {
    font-family: "FontAwesome", "メイリオ", "Meiryo", sans-serif;
    content: '\f00d' '　閉じる';
    pointer-events: all;
}

.accordion-box-5 input:checked+label:before {}

.accordion-box-5 input:checked~.accordion-container {
    height: auto;
    padding-bottom: 100px;
    /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


@media screen and (max-width: 568px) {
    .accordion-box-5 .accordion-container {
        height: 290px;
        /* 開く前に見えている部分の高さ */
    }
}


/* =======================================================
吹き出し／よくある質問
======================================================= */
.box24 {
    position: relative;
    padding: 0.5em 0.7em;
    margin: 32px 0 24px 0;
    background: var(--thema-color-base-2);
    color: #666666;
    font-weight: bold;
    border-radius: 20px;
}

.box24:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid var(--thema-color-base-2);
    width: 0;
    height: 0;
}

.box24 p {
    margin: auto;
    padding: 4px;
}



/* =======================================================
スマホ／ボトムナビゲーション
======================================================= */
.bottom-sticky-nav {
    display: none;
}

@media (max-width: 720px) {
    .bottom-sticky-nav {
        height: 50px;
        position: fixed;
        display: block;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .bottom-sticky-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-evenly;
    }

    .bottom-sticky-nav ul li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .bottom-sticky-nav ul li a {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        padding-top: 7px;
        padding-bottom: 10px;
        height: 50px;
        color: #ffffff;
        background-color: var(--thema-color-sub-1);
        margin-top: -14px;
        text-decoration: none;
        text-shadow: 0px 0px 5px #000000ba;
    }

    .bottom-sticky-nav ul li a:hover,
    .bottom-sticky-nav ul li a:focus {
        text-decoration: none;
    }

    .bottom-sticky-nav ul li a.is-active {
        background: var(--thema-color-1);
        color: #ffffff;
    }

    .bottom-sticky-nav ul li a i {
        font-size: 18px;
    }

    .bottom-sticky-nav ul li a span {
        font-size: 16px;
        line-height: 2.1;
    }

    footer {
        margin-bottom: 50px;
    }
}


/* =======================================================
１．アコーディオン／画面幅100％／主宰
======================================================= */
.s_01 .accordion_one {
    max-width: 900px;
    margin: 0 auto;
}

.s_01 .accordion_one .accordion_header {
    background: white;
    color: var(--thema-color-base-1);
    font-size: 14px;
    width: 34%;
    margin: auto;
    padding: 4px;
    padding-right: 40px;
    text-align: center;
    position: relative;
    z-index: +0;
    cursor: pointer;
    transition-duration: 0.1s;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
}

@media screen and (max-width: 568px) {
    .s_01 .accordion_one .accordion_header {
        font-size: 14px;
        padding-left: 10px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

.s_01 .accordion_one .accordion_header:hover {
    opacity: .8;
}

.s_01 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
}

.s_01 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}

.s_01 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.s_01 .accordion_one .accordion_header .i_box .one_i:before,
.s_01 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: var(--thema-color-base-1);
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}

.s_01 .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}

.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
}

.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.s_01 .accordion_one .accordion_inner {
    display: none;
    padding: 20px 0px;
    box-sizing: border-box;
}

.s_01 .accordion_one .accordion_inner .box_one {
    height: auto;
    padding-bottom: 30px;
    font-size: 14px;
}

.s_01 .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
}

.s_01 .accordion_one .accordion_inner .closeArea {
    width: 180px;
    margin: 0 auto;
}

@media screen and (max-width: 568px) {
    .s_01 .accordion_one .accordion_inner .closeArea {
        width: 45%;
    }
}

.s_01 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--thema-color-base-1);
    text-decoration: none;
    line-height: 30px;
    margin-top: -20px;
    margin-bottom: 25px;
    color: #fff;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    transition-duration: 0.1s;
    border-radius: 30px;
}

.s_01 .accordion_one .accordion_inner .closeArea .close_box a.close_btn:hover {
    opacity: .8;
}

.s_01 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 10%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

.s_01 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 18px;
    height: 18px;
}

.s_01 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before,
.s_01 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:after {
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
    transform-origin: center center;
}

.s_01 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}



/* =======================================================
２．アコーディオン／画面幅50％
======================================================= */
.s_02 .accordion_one {
    max-width: 900px;
    margin: 0 auto;
}

.s_02 .accordion_one .accordion_header {
    background: white;
    color: var(--thema-color-base-1);
    font-size: 14px;
    margin-top: 5px;
    padding: 4px;
    padding-right: 40px;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition-duration: 0.1s;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
}

@media screen and (max-width: 568px) {
    .s_02 .accordion_one .accordion_header {
        padding-right: 30px;
    }
}

.s_02 .accordion_one .accordion_header:hover {
    opacity: .8;
}

.s_02 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.1s;
}

.s_02 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}

.s_02 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.s_02 .accordion_one .accordion_header .i_box .one_i:before,
.s_02 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: var(--thema-color-base-1);
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}

.s_02 .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}

.s_02 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
}

.s_02 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.s_02 .accordion_one .accordion_inner {
    display: none;
    padding: 20px 0px;
    box-sizing: border-box;
}

.s_02 .accordion_one .accordion_inner .box_one {
    height: auto;
    padding-bottom: 30px;
    font-size: 14px;
}

.s_02 .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
}

.s_02 .accordion_one .accordion_inner .closeArea {
    width: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 568px) {
    .s_02 .accordion_one .accordion_inner .closeArea {
        width: 100%;
    }
}

.s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--thema-color-base-1);
    text-decoration: none;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    transition-duration: 0.1s;
    border-radius: 30px;
    padding-left: 20px;
    margin-left: -20%;
    margin-right: -20%;
}

@media screen and (max-width: 568px) {
    .s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
        padding-left: -10px;
        margin-left: 0%;
        margin-right: 0%;
    }
}

.s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn:hover {
    opacity: .8;
}

.s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 10%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

.s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 18px;
    height: 18px;
}

.s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before,
.s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:after {
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
    transform-origin: center center;
}

.s_02 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}


/* =======================================================
３．アコーディオン／画面幅100％／体験レッスン
======================================================= */
.s_03 .accordion_one {
    max-width: 900px;
    margin: 0 auto;
}

.s_03 .accordion_one .accordion_header {
    background: var(--thema-color-sub-1);
    color: #ffffff;
    font-size: 24px;
    margin-top: 5px;
    padding: 10px 11%;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition-duration: 0.1s;
    border-radius: 30px;
    letter-spacing: 12px;
}

@media screen and (max-width: 568px) {
    .s_03 .accordion_one .accordion_header {
        font-size: 17px;
        padding-right: 43px;
        padding-top: 6px;
        padding-bottom: 6px;
        letter-spacing: 0px;
    }
}

.s_03 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.1s;
}

.s_03 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.1s;
    position: relative;
}

.s_03 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.s_03 .accordion_one .accordion_header .i_box .one_i:before,
.s_03 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #ffffff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}

.s_03 .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}

.s_03 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
}

.s_03 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.s_03 .accordion_one .accordion_inner {
    display: none;
    padding: 20px 0px;
    box-sizing: border-box;
}

.s_03 .accordion_one .accordion_inner .box_one {
    height: auto;
    padding-bottom: 30px;
}

.s_03 .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
}

.s_03 .accordion_one .accordion_inner .closeArea {
    width: 180px;
    margin: 0 auto;
}

.s_03 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--thema-color-sub-1);
    padding: 15px 15px 15px 20px;
    text-decoration: none;
    line-height: 0;
    color: #fff;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    transition-duration: 0.1s;
    border-radius: 30px;
}

.s_03 .accordion_one .accordion_inner .closeArea .close_box a.close_btn:hover {
    opacity: .8;
}

.s_03 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 10%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

.s_03 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 18px;
    height: 18px;
}

.s_03 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before,
.s_03 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:after {
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
    transform-origin: center center;
}

.s_03 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}


/* =======================================================
ナビゲーション／ハンバーガー
======================================================= */
#hamburger .btn-gNav {
    position: fixed;
    top: 20px;
    right: 88px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 400ms;
    background-color: var(--thema-color-sub-1);
    width: 60px;
    height: 60px;
    border-radius: 60px;
    box-shadow: 0px 0px 30px #ffffffba;
}

@media screen and (max-width: 568px) {
    #hamburger .btn-gNav {
        top: 3px;
        right: 11px;
    }
}

#hamburger .btn-gNav span {
    position: absolute;
    width: 65%;
    height: 4px;
    background: white;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    margin-top: 17px;
    margin-left: -19px;
}

#hamburger .btn-gNav span:nth-child(1) {
    top: 23px;
}

#hamburger .btn-gNav span:nth-child(2) {
    top: -2px;
}

#hamburger .btn-gNav span:nth-child(3) {
    top: 11px;
}

#hamburger .btn-gNav.open span:nth-child(1) {
    background: white;
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hamburger .btn-gNav.open span:nth-child(2),
#hamburger .btn-gNav.open span:nth-child(3) {
    top: 10px;
    background: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

#gNav {
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--thema-color-sub-1);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2;
    transition: .3s;
    padding-top: 94px;
    box-shadow: 0px 0px 30px #ffffff;
}

@media screen and (max-width: 568px) {
    #gNav {
        font-size: 14px;
        padding-top: 70px;
    }
}

#gNav.open {
    right: 50px;
}

@media screen and (max-width: 1000px) {
    #gNav.open {
        right: 0px;
    }
}

#gNav .gNav-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#gNav .gNav-menu li {
    display: block;
    padding: 20px 30px;
    border-top: dotted 1px white;
}

@media screen and (max-width: 568px) {
    #gNav .gNav-menu li {
        padding: 10px 13px;
    }
}

#gNav .gNav-menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    text-shadow: 0px 0px 5px #000000ba;
    text-align: left;
    font-weight: 700;
}


/* =======================================================
１ルーペアイコン＆自動トリミング／コンペ
======================================================= */
.glass-plus {
    position: relative;
}

.glass-plus .fa-solid {
    position: absolute;
    top: 78%;
    left: 80%;
    color: #ffffffbf;
    font-size: 30px;
}

.glass-plus img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    /* 自動トリミング */
}

@media screen and (max-width: 568px) {
    .glass-plus .fa-solid {
        top: 72%;
        left: 75%;
    }

    .glass-plus img {
        height: 135px;
    }
}


/* =======================================================
２ルーペアイコン＆自動トリミング／メモリー
======================================================= */
.glass-plus-1 {
    position: relative;
}

.glass-plus-1 .fa-solid {
    position: absolute;
    top: 77%;
    left: 81%;
    color: #ffffffbf;
    font-size: 22px;
}

.glass-plus-1 img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    /* 自動トリミング */
}

@media screen and (max-width: 568px) {
    .glass-plus-1 .fa-solid {
        top: 72%;
        left: 75%;
    }

    .glass-plus-1 img {
        height: 110px;
    }
}


/* =======================================================
グーグルカレンダースクロール
======================================================= */
.schedule__google {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: scroll;
}


/* =======================================================
ふわふわ四角
======================================================= */
.circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.2;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: var(--thema-color-base-1);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 1000%;
    }

}

/* =======================================================
ページトップ＆画面右下の固定
======================================================= */
/*1.ページトップ*/
#page_top {
    width: 45px;
    height: 45px;
    border-radius: 60px;
    position: fixed;
    right: 10vw;
    bottom: 20px;
    background-color: var(--thema-color-sub-1);
    z-index: 3;
    box-shadow: 0px 0px 30px #ffffffba;
}

@media screen and (max-width: 1000px) {
    #page_top {
        right: 3vw;
        bottom: 70px;
    }
}

#page_top a {
    position: relative;
    display: block;
    width: 37px;
    height: 54px;
    text-decoration: none;
}

#page_top a::before {
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    content: "\f106";
    font-size: 24px;
    color: #fff;
    position: absolute;
    width: 13px;
    height: 44px;
    bottom: 0;
    right: 0px;
    left: 0px;
    margin: auto;
    text-align: center;
}