@charset "utf-8";

@font-face {
    font-family: "NotoSansJP-Black";
    src: url("../fonts/NotoSansJP-Black.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSansJP-Bold";
    src: url("../fonts/NotoSansJP-Bold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSansJP-Medium";
    src: url("../fonts/NotoSansJP-Medium.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSansJP-Regular";
    src: url("../fonts/NotoSansJP-Regular.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSerifJP-Black";
    src: url("../fonts/NotoSerifJP-Black.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSerifJP-Bold";
    src: url("../fonts/NotoSerifJP-Bold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSerifJP-Medium";
    src: url("../fonts/NotoSerifJP-Medium.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSerifJP-Regular";
    src: url("../fonts/NotoSerifJP-Regular.otf") format("OpenType");
    font-weight: 400;
}

@font-face {
    font-family: "NotoSerifJP-SemiBold";
    src: url("../fonts/NotoSerifJP-SemiBold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "OleoScript-Bold";
    src: url("../fonts/OleoScript-Bold.ttf") format("TrueType");
    font-weight: bold;
}

@font-face {
    font-family: "OleoScript-Regular";
    src: url("../fonts/OleoScript-Regular.ttf") format("TrueType");
    font-weight: 400;
}

@font-face {
    font-family: "Poppins-ExtraBold";
    src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "NotoSerif-Regular";
    src: url("../fonts/NotoSerif-Regular.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "JosefinSans-Bold";
    src: url("../fonts/JosefinSans-VariableFont_wght.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "JosefinSans-Regular";
    src: url("../fonts/JosefinSans-Regular.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "MonomaniacOne";
    src: url("../fonts/MonomaniacOne-Regular.ttf") format("truetype");
}

/*html設定_______________________________________________________________html*/
html {
    -webkit-overflow-scrolling: touch;
}

/*body設定_______________________________________________________________body*/
body {
    display: flex;
    flex-flow: column;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 3s ease;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}


a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.mgr-10 {
    margin-right: 10px;
}

.mgl-10 {
    margin-left: 10px;
}

/*_______________________________________________________________各要素のフェードイン*/
.js-fadeUp1 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp1.is-inview1 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .5s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp2 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp2.is-inview2 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .8s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp3 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp3.is-inview3 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .3s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp4 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp4.is-inview4 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .3s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp5 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp5.is-inview5 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .2s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp6 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp6.is-inview6 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .2s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp7 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp7.is-inview7 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .2s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp8 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp8.is-inview8 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .2s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp9 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp9.is-inview9 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .6s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp10 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp10.is-inview10 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp11 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp11.is-inview11 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp12 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp12.is-inview12 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp13 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp13.is-inview13 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp14 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp14.is-inview14 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

/*___________________________________________________________________________________________スクロールバーデザイン*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track-piece {
    display: none;
}

::-webkit-scrollbar-track {

    background: rgba(0, 0, 0, 1);
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background: #fff;
    border-radius: 5px;
}

:root {
    --font-jp: "NotoSansJP-Regular";
    --font-eng: "JosefinSans-Regular";
    --font-jp_b: "NotoSansJP-Bold";
    --font-eng_b: "JosefinSans-Bold";
    --font-jp2: "MonomaniacOne";

    /*darkorange　R:255 G:140 B:0*/
    --menu-color: #ff8c00;

    /*blue R:0 G:0 B:255*/
    --blue: #0000ff;

    /*mediumturquoise R:72 G:209 B:204*/
    --mediumturquoise: #48d1cc;

    /*turquoise R:64 G:224 B:208*/
    --turquoise: #40e0d0;

    /*apple HP color */
    --darkgrey: #6e6e73;

    /*bluegrey R:45 G:67 B:89 */
    --bluegrey: #2D4359;
}

/*footerをウィンドウ最下部へ固定する_______________________________________________________________wrapper*/
.wrapper {
    width: calc((100 / 1366) * 1366vw);
    min-height: 100vh;
    position: relative;
    /*←footerと相対位置*/
    padding-bottom: calc((100 / 1366) * 700vw);
    /*←footerの高さ*/
    box-sizing: border-box;
    /*←全て含めてmin-height:100vhに*/
}

/*___________________________________________________________________________________________header*/

/*header設定*/
#header {

    width: 100%;
    height: calc((100 / 1366) * 644vw);
    overflow: hidden;
    position: relative;
    /*h1の中央寄せ配置の起点とするためのrelative*/
}

.header_bg {
    width: 100%;
    height: calc((100 / 1366) * 644vw);
    filter: brightness(85%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.header_bg img {
    width: 100%;
    height: calc((100 / 1366) * 644vw);
    filter: brightness(85%);
}

/*___________________________________________________________________________________________g-nav*/

.site-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: calc((100 / 1366) * 100vw);
    background-color: rgba(0, 0, 0, 0);
    padding-top: calc((100 / 1366) * 30vw);
    padding-right: calc((100 / 1366) * 50vw);
    padding-left: calc((100 / 1366) * 50vw);
    position: fixed;
    opacity: 0;
    animation-name: fadein1;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    z-index: 999;
}

@keyframes fadein1 {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header2 {
    display: none;
}

.menu-simbol h2 {
    width: calc((100 / 1366) * 200vw);
    height: 100%;
}

.menu-simbol h2 a {
    display: block;
    width: 100%;
    height: 100%;
}

.menu-simbol h2 img {
    width: calc((100 / 1366) * 200vw);
}

nav {
    margin-top: 10px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    width: calc((100 / 1366) * 500vw);
    list-style: none;
}

.active_menu {
    font-family: var(--font-eng_b);
    font-size: calc((100 / 1366) * 14vw);
    color: var(--menu-color);
    margin-top: 8px;
    position: relative;
}

.active_menu::before {
    content: '';
    display: block;
    width: 100%;
    border: solid #ff8c00 1px;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    left: 0;
    opacity: 0;
    animation-name: stretch-line;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes stretch-line {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(0);
    }

    100% {
        width: 100%;
        color: var(--menu-color);
        opacity: 1;
        transform: translateX(0px);
    }
}

nav ul li a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #fff;
    position: relative;
}

nav ul li.current a,
nav ul li a:hover {
    color: var(--menu-color);
    transition: all .2s ease;
}

/*メニュー下線の動き*/
nav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 15px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background: var(--menu-color);
    border-radius: 5px;
    /*アニメーションの指定*/
    transition: all .2s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: center top;
    /*上部中央基点*/
}

/*現在地とhoverの設定*/
nav li.current a::after,
nav li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

/*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
.header-logo.headerLogoScroll.-before {
    display: none;
}

.header-logo.-after {
    display: none;
}

/* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
.header-logo.headerLogoScroll.-after {
    display: block;
    position: absolute;
    top: calc((100 / 1366) * 30vw);
    left: calc((100 / 1366) * 50vw);
}

/* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
.g-navi ul li a.headerColorScroll {
    color: #000;
    transition: color 0.4s ease-out;
}

/* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
.g-navi ul li.current a.headerColorScroll,
.g-navi ul li a.headerColorScroll:hover {
    color: var(--menu-color);
    transition: all .2s ease;
}

/* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
.active_menu.scroll::before {
    border: solid #ff8c00 1px;
}

/*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/

.content_title {
    display: none;
    width: calc((100 / 1366) * 130vw);
    height: 10%;
    position: relative;
    top: 40%;
    left: 72%;
    text-align: center;
}

.content_title h3 {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 30vw);
    color: #fff;
}

/*___________________________________________________________________________________________スクロールダウン*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
    display: none;
    height: 50px;
    /*描画位置※位置は適宜調整してください*/
    position: fixed;
    top: calc((100 / 1366) * 400vw);
    right: calc((100 / 1366) * 250vw);
    transform: translate(-50%, -50%);
    /*全体の高さ*/
    text-align: center;
    z-index: 10;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #fff;
}

/* 線の描写 */
.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    left: 50%;
    /*線の形状*/
    width: 2px;
    height: 30px;
    background: #fff;
    margin-top: 20px;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: linemove 1.4s ease-in-out infinite;
    opacity: 0;
    transition: all 1.5s ease;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes linemove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: .5s all ease;
}

/*___________________________________________________________________________________________cource-title*/
#menu-course-title1 {
    background-color: rgba(255, 255, 255, 1);
    font-family: var(--font-eng_b);
    font-size: calc((100 / 1366) * 60vw);
    padding: 30px;
    position: relative;
    text-align: center;
    z-index: 11;
}

#menu-course-copy1 {
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    padding-bottom: calc((100 / 1366) * 50vw);
    position: relative;
    text-align: center;
    z-index: 11;
}

.menu-course-title1_text1 {
    color: black;
    width: 100%;
    height: 100%;
    padding-bottom: calc((100 / 1366) * 30vw);
}


.menu-course-title1_text1 .jp {
    font-family: var(--font-jp_b);
    color: var(--bluegrey);
    font-size: calc((100 / 1366) * 20vw);
}

.menu-course-title1_text2 {
    font-family: var(--font-jp_b);
    color: #000;
    font-size: calc((100 / 1366) * 20vw);
}

/*___________________________________________________________________________________________content*/
#content1 {
    width: 100%;
    padding-top: calc((100 / 1366) * 50vw);
    padding-right: calc((100 / 1366) * 50vw);
    padding-bottom: calc((100 / 1366) * 0vw);
    padding-left: calc((100 / 1366) *50vw);
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    z-index: 10;
}

#content2 {
    width: 100%;
    padding-top: calc((100 / 1366) * 100vw);
    padding-right: calc((100 / 1366) * 50vw);
    padding-bottom: calc((100 / 1366) * 100vw);
    padding-left: calc((100 / 1366) * 50vw);
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    z-index: 10;
}

#content3 {
    width: 100%;
    padding-right: calc((100 / 1366) * 50vw);
    padding-bottom: calc((100 / 1366) * 50vw);
    padding-left: calc((100 / 1366) * 50vw);
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    z-index: 10;
}

#content1 .course,
#content3 .course {
    display: flex;
    width: 100%;
    height: 100%;
}

#content2 .course {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
}

#content1 .course>div:first-child,
#content2 .course>div:first-child,
#content3 .course>div:first-child {
    flex: 6;
    /* 6の割合 */
}

#content1 .course>div:last-child,
#content2 .course>div:last-child,
#content3 .course>div:last-child {
    flex: 4;
    /* 4の割合 */
}

#content1 .course_image,
#content2 .course_image,
#content3 .course_image {
    width: calc((100 / 1366) * 1366vw);
}

#content1 .course_image img,
#content2 .course_image img,
#content3 .course_image img {
    width: 100%;
    border-radius: 5px;
    filter: brightness(80%);
}

.cource_copy {
    width: 100%;
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 35vw);
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#content1 .base_course {
    width: 100%;
    margin-top: calc((100 / 1366) * 20vw);
    margin-left: calc((100 / 1366) * 50vw);
}

#content2 .base_course {
    width: 100%;
    margin-top: calc((100 / 1366) * 20vw);
    margin-right: calc((100 / 1366) * 50vw);
}

#content3 .base_course {
    width: 100%;
    margin-top: calc((100 / 1366) * 20vw);
    margin-left: calc((100 / 1366) * 50vw);
}

.base_course h3 {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 20vw);
    color: #000;
}

.base_course img {
    width: calc((100 / 1366) * 30vw);
    margin-right: 5px;
}

.base_course h3 .jp {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: var(--darkgrey);
}

.base_course p {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 16vw);
    color: #000;
    margin-top: 20px;
    line-height: 2;
}

.base_course .price {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 18vw);
    margin-top: 20px;
    color: #000;
}

#option {
    width: 100%;
    height: calc((100 / 1366) * 850vw);
    background-color: rgba(255, 255, 255, 1);
    text-align: left;
}

.option_title {
    background-color: rgba(255, 255, 255, 1);
    font-family: var(--font-eng_b);
    font-size: calc((100 / 1366) * 70vw);
    color: #000;
    padding-top: calc((100 / 1366) * 50vw);
    padding-bottom: calc((100 / 1366) * 20vw);
    position: relative;
    text-align: center;
    z-index: 11;
}

.option_title h3 {
    width: 100%;
    height: 100%;
}

.option_title .jp {
    font-family: var(--font-jp);
    color: var(--bluegrey);
    font-size: calc((100 / 1366) * 20vw);
}

.option_title img {
    width: calc((100 / 1366) * 20vw);
    margin-right: 2px;
}

.option_title_doc {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 20vw);
    margin-top: 10px;
    text-align: center;
    line-height: 2;
}

.option_wrapper {
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    padding-top: calc((100 / 1366) * 0vw);
    padding-right: calc((100 / 1366) * 0vw);
    padding-left: calc((100 / 1366) * 50vw);
    padding-bottom: calc((100 / 1366) * 50vw);
}

#option .info {
    text-align: center;
    line-height: 2;
}

#option .info p br:first-child {
    display: none;
}

#option .info p {
    font-family: var(--font-jp_b);
    font-size: calc((100 / 1366) * 16vw);
    padding-top: 50px;
}

/*___________________________________________________________________________________________swiper*/
#swiper-container {
    width: 100%;
    padding-left: 50px;
}


.menu-swiper {
    width: 100%;
    cursor: pointer;
}

.menu-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.menu-swiper .swiper-slide {
    width: calc((100 / 1366) * 300vw);
    height: calc((100 / 1366) * 450vw);
    background-color: var(--mediumturquoise);
    border-radius: 10px;
    margin-top: calc((100 / 1366) * 50vw);
    /*overflow: hidden;*/
    transition: all .5s ease-in-out;
}

.menu-swiper .swiper-slide figure {
    width: 100%;
    height: calc((100 / 1366) * 220vw);
    /*overflow: hidden;*/
}


.menu-swiper .swiper-slide img {
    width: 100%;
    filter: none;
    /* 通常時はフィルターなし */
    transition: 1s all;
}

.menu-swiper .swiper-slide:hover :nth-child(1) :nth-child(1) {
    transform: scale(1.2, 1.2);
    transition: .5s all;
}

.menu-swiper .swiper-slide:hover img {
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
    /* 画像の被写体に影を付ける */
}


.menu-swiper:hover .swiper-slide:not(:hover) {
    opacity: 1;
    filter: brightness(100%);
    cursor: pointer;
}

/* 前へ次への矢印カスタマイズ */
.menu-swiper .swiper-button-prev::after,
.menu-swiper .swiper-button-next::after {
    content: "";
    width: 0;
    height: 0;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

.slide-content {
    width: 100%;
    max-width: 90%;
    height: calc((100 / 1366) * 190vw);
    padding: 10px;
    position: absolute;
    /* 画像上に配置するためabsoluteを使用 */
    overflow: hidden;
    z-index: 2;
    /* 画像より上に表示するためにz-indexを設定 */
  }

  .slide-content_title {
    font-family: var(--font-jp_b);
    font-size: calc((100 / 1366) * 20vw);
    color: #fff;
    margin-bottom: 5px;
    position: absolute;
    top: 10%;
  }

  .slide-content_contents {
    width: 100%;
    max-width: 90%;
    font-family: var(--font-jp_b);
    font-size: calc((100 / 1366) * 18vw);
    color: #fff;
    position: absolute;
    top: 30%;
  }

/*___________________________________________________________________________________________inquiry 矢印エフェクト*/
.inquiry_arrow {
    display: inline-block;
    width: calc((100 / 1366) * 330vw);
    padding: 30px 30px 10px 20px;
    text-align: center;
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 16vw);
    color: #000;
    margin: 2px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.inquiry_arrow::after {
    content: "";
    display: block;
    width: calc((100 / 1366) * 25vw);
    height: 6px;
    border: none;
    border-right: 2px solid #000;
    border-bottom: 1px solid #000;
    margin-top: 10px;
    position: absolute;
    top: 45%;
    right: calc((100 / 1366) * 100vw);
    transform: skew(45deg);
    transition: .2s;
}

.inquiry_arrow:hover::after {
    right: calc((100 / 1366) * 85vw);
    width: calc((100 / 1366) * 40vw);
}

/*___________________________________________________________________________________________footer*/

#footer {
    width: 100%;
    height: calc((100 / 1366) * 500vw);
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    /*←絶対位置*/
    bottom: calc((100 / 480) * 0vw);
    /*下に固定*/
    z-index: 10;
}

.footer_wrapper {
    display: none;
    width: 100%;
    height: 100%;
    padding-top: calc((100 / 1366) * 50vw);
    padding-right: calc((100 / 1366) * 100vw);
    padding-bottom: calc((100 / 1366) * 20vw);
    padding-left: calc((100 / 1366) * 100vw);
}

.footer_inner {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    margin-top: calc((100 / 1366) * 30vw);
}

.footer_logo img {
    width: calc((100 / 1366) * 200vw);
    object-fit: cover;
    object-position: left top;
}

.footer_address {
    width: 100%;
    text-align: center;
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    line-height: 2;
}

.footer_address p {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
}

.footer_address a {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    text-decoration: none;
}

.footer_address a .color {
    transition: all 0.3s ease 0s;
}

.footer_address a:hover .color {
    color: var(--menu-color);
}

.footer_address .mgr {
    margin-right: calc((100 / 1366) * 20vw);
}

.footer_inner2 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    margin-top: calc((100 / 1366) * 50vw);
}

.footer_nav {
    width: 100%;
}

.footer_nav_li {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer_nav_content {
    display: flex;
    justify-content: space-between;
    width: 35%;
}

.footer_nav_item {
    cursor: pointer;
}

.footer_nav_active a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: var(--menu-color);
    border-left: 2px solid #ff8c00;
    padding-top: calc((100 / 480) * 1vw);
    padding-left: calc((100 / 480) * 2vw);
    cursor: auto;
    pointer-events: none;
}

.footer_nav_item a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    border-left: 2px solid #000;
    padding-top: calc((100 / 480) * 1vw);
    padding-left: calc((100 / 480) * 2vw);
    transition: all 0.3s ease 0s;
}

.footer_nav_item a:hover {
    color: var(--menu-color);
    border-color: var(--menu-color);
}

.footer_sns {
    width: 100%;
    margin-top: 50px;
}

.footer_sns ul {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 15px;
}

.footer_sns ul li {
    display: inline-block;
    width: calc((100 / 1366) * 80vw);
    height: calc((100 / 1366) * 80vw);
}

.sns-icon img {
    width: 35%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.sns-icon.sns-x img {
    width: 30%;
}

.sns-icon.sns-x img:hover {
    content: url('../images/sns_X_Logo_BlackWhite.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .6));
}

.sns-icon.sns-ig:hover img {
    content: url('../images/sns_IG_Logo_GradientWhite.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .2));
}

.sns-icon.sns-fb:hover img {
    content: url('../images/sns_FB_Logo_Primary.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .6));
}

.footer_copylight {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.footer_copylight p {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
}

.footer_copylight img {
    width: calc((100 / 1366) * 100vw);
    margin-left: 10px;
}

/*____________________________________________________________________________________________________________media_768*/
@media (max-width:768px) {

    /*footerをウィンドウ最下部へ固定する*/
    .wrapper {
        width: calc((100 / 768) * 768vw);
        min-height: 100vh;
        position: relative;
        /*←footerと相対位置*/
        padding-bottom: calc((100 / 768) * 500vw);
        /*←footerの高さ*/
        box-sizing: border-box;
        /*←全て含めてmin-height:100vhに*/
    }

    /*___________________________________________________________________________________________header*/

    /*header設定*/
    #header {
        width: 100%;
        height: calc((100 / 768) * 368vw);
        overflow: hidden;
        position: relative;
        /*h1の中央寄せ配置の起点とするためのrelative*/
    }

    .header_bg {
        width: 100%;
        height: calc((100 / 768) * 368vw);
        filter: brightness(85%);
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .header_bg img {
        width: 100%;
        height: calc((100 / 768) * 368vw);
        filter: brightness(85%);
    }

    /*___________________________________________________________________________________________g-nav*/

    .site-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: calc((100 / 768) * 100vw);
        background-color: rgba(0, 0, 0, 0);
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 50vw);
        padding-left: calc((100 / 768) * 50vw);
        position: fixed;
        animation-name: fadein1;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        z-index: 999;
    }

    @keyframes fadein1 {
        0% {
            opacity: 0;
            transform: translateY(0);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-simbol {
        width: calc((100 / 768) * 200vw);
        height: 70%;
    }

    .menu-simbol h2 {
        width: calc((100 / 768) * 200vw);
        height: 100%;
    }

    .menu-simbol h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 img {
        width: calc((100 / 768) * 200vw);
    }

    .openbtn1 {
        display: inline-block;
        position: fixed;
        /*ボタンを最前面に*/
        z-index: 9999;
        top: 35px;
        right: 50px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fff;
        width: 70%;
    }

    .openbtn1.scroll span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 70%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 50%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 50%;
    }

    nav {
        width: 100%;
        height: 25vh;
        /*ナビの高さ*/
        background-color: var(--menu-color);
        margin-top: 0px;
        position: fixed;
        z-index: -1;
        top: -150%;
        left: 0;
        opacity: 0;
        /*動き*/
        transition: all 0.6s;
        transform: none;
    }

    nav.panelactive {
        top: 0;
        opacity: 1;
        margin-top: 0;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        width: calc((100 / 768) * 500vw);
        list-style: none;
        position: absolute;
        z-index: 999;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .active_menu {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: var(--blue);
        margin-top: 5px;
        position: relative;
    }

    .active_menu::before {
        content: '';
        display: block;
        width: 100%;
        border: solid var(--blue) 1px;
        border-radius: 5px;
        position: absolute;
        top: 15px;
        left: 0;
        opacity: 0;
        animation-name: stretch-line;
        animation-duration: 1s;
        animation-delay: 5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes stretch-line {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(0);
        }

        100% {
            width: 100%;
            color: var(--menu-color);
            opacity: 1;
            transform: translateX(0px);
        }
    }

    nav ul li a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #fff;
        position: relative;
    }

    nav ul li.current a,
    nav ul li a:hover {
        color: var(--blue);
        transition: all .2s ease;
    }

    /*メニュー下線の動き*/
    nav li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        top: 15px;
        left: 0;
        /*線の形状*/
        width: 100%;
        height: 2px;
        background: var(--blue);
        border-radius: 5px;
        /*アニメーションの指定*/
        transition: all .2s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    nav li.current a::after,
    nav li a:hover::after {
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    /*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
    .header-logo.headerLogoScroll.-before {
        display: none;
    }

    .header-logoheaderLogoScroll.-after {
        display: none;
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .header-logo.headerLogoScroll.-after {
        display: block;
        width: 30%;
        height: 50%;
        position: absolute;
        top: calc((100 / 768) * 30vw);
        left: calc((100 / 768) * 50vw);
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li a.headerColorScroll {
        color: #000;
        transition: color 0.4s ease-out;
    }

    /* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li.current a.headerColorScroll,
    .g-navi ul li a.headerColorScroll:hover {
        color: orange;
        transition: all .2s ease;
    }

    /* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
    .active_menu.scroll::before {
        border: solid red 1px;
    }

    /*footer手前でロゴとナビを削除*/
    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________cource-title*/
    #menu-course-title1 {
        background-color: rgba(255, 255, 255, 1);
        padding-top: calc((100 / 768) * 30vw);
        padding-bottom: calc((100 / 768) * 30vw);
        position: relative;
        text-align: center;
        z-index: 11;
    }

    .menu-course-title1_text1 {
        color: black;
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 50vw);
        line-height: .8;
        padding-bottom: calc((100 / 768) * 30vw);
    }

    .menu-course-title1_text1 .jp {
        font-size: calc((100 / 768) * 16vw);
    }

    .menu-course-title1_text2 {
        font-size: calc((100 / 768) * 16vw);
    }


    .menu-course-title1_text {
        background-color: rgba(255, 255, 255, 1);
        width: 100%;
        color: black;
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 20vw);
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 30vw);
        padding-bottom: calc((100 / 768) * 30vw);
        padding-left: calc((100 / 768) * 30vw);
        line-height: 2;
        text-align: center;
        z-index: 11;
    }

    /*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/

    .content_title {
        display: none;
        width: calc((100 / 768) * 130vw);
        height: 10%;
        position: relative;
        top: 40%;
        left: 70%;
        text-align: center;
    }
    .content_title h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 25vw);
        color: #fff;
    }

    /*___________________________________________________________________________________________スクロールダウン*/

    /*スクロールダウン全体の場所*/
    .scrolldown1 {
        position: absolute;
        top: 70%;
        right: 14%;
    }

    /*Scrollテキストの描写*/
    .scrolldown1 span {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #fff;
    }

    /*___________________________________________________________________________________________content*/
    #content1 {
        width: 100%;
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 30vw);
        padding-bottom: calc((100 / 768) * 30vw);
        padding-left: calc((100 / 768) * 30vw);
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 10;
    }

    #content2 {
        width: 100%;
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 30vw);
        padding-bottom: calc((100 / 768) * 30vw);
        padding-left: calc((100 / 768) * 30vw);
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 10;
    }

    #content3 {
        width: 100%;
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 30vw);
        padding-bottom: calc((100 / 768) * 80vw);
        padding-left: calc((100 / 768) * 30vw);
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 10;
    }

    #content1 .course,
    #content3 .course {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 100%;
    }

    #content2 .course {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        width: 100%;
        height: 100%;
    }

    #content1 .course>div:first-child,
    #content2 .course>div:first-child,
    #content3 .course>div:first-child {
        flex: 6;
        /* 6の割合 */
    }

    #content1 .course>div:last-child,
    #content2 .course>div:last-child,
    #content3 .course>div:last-child {
        flex: 4;
        /* 4の割合 */
    }

    #content1 .course_image,
    #content2 .course_image,
    #content3 .course_image {
        width: calc((100 / 768) * 320vw);
        height: calc((100 / 768) * 300vw);
    }

    #content2 .course_image {
        text-align: right;
    }

    #content1 .course_image img,
    #content2 .course_image img,
    #content3 .course_image img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
        margin-top: 0%;
    }

    #content1 .base_course,
    #content3 .base_course {
        width: 100%;
        margin-top: calc((100 / 768) * 5vw);
        margin-left: calc((100 / 768) * 10vw);
    }

    #content2 .base_course {
        width: 100%;
        margin-top: calc((100 / 768) * 5vw);
        margin-right: calc((100 / 768) * 0vw);
        padding-right: calc((100 / 768) * 10vw);
    }

    .base_course h3 {
        font-size: calc((100 / 768) * 14vw);
    }

    .base_course img {
        width: calc((100 / 768) * 25vw);
        margin-right: 5px;
    }

    .base_course h3 .jp {
        font-size: calc((100 / 768) * 12vw);
    }

    .base_course p {
        font-size: calc((100 / 768) * 12vw);
        margin-top: 20px;
        line-height: 1.5;
    }

    .base_course .price {
        font-size: calc((100 / 768) * 12vw);
        margin-top: 10px;
    }

    #option {
        width: 100%;
        height: calc((100 / 768) * 850vw);
        background-color: rgba(255, 255, 255, 1);
        text-align: left;
    }

    .option_wrapper {
        width: 100%;
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 30vw);
        padding-bottom: calc((100 / 768) * 30vw);
        padding-left: calc((100 / 768) * 30vw);
    }

    .option_title {
        background-color: rgba(255, 255, 255, 1);
        color: #000;
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 47vw);
        padding-top: calc((100 / 768) * 30vw);
        line-height: .8;
        position: relative;
        text-align: center;
        z-index: 11;
    }

    .option_title p {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        margin-top: 10px;
        line-height: 2;
    }

    #option .info {
        text-align: center;
        line-height: 2;
    }

    #option .info p br:first-child {
        display: none;
    }

    #option .info p {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
    }

    .option_title .eng {
        font-family: var(--font-eng);
        color: #fff;
        font-size: 20px;
    }

    .option_title .jp {
        font-family: var(--font-jp_b);
        color: var(--bluegrey);
        font-size: calc((100 / 768) * 16vw);
    }

    .option_title img {
        width: calc((100 / 768) * 20vw);
        margin-right: 2px;
    }

    .option_title_doc {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        margin-top: 10px;
        text-align: center;
        line-height: 2;
    }

    #option .info {
        text-align: center;
        line-height: 2;
    }

    #option .info p {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 768) * 14vw);
        padding-top: 50px;
    }

    /*___________________________________________________________________________________________swiper*/
    #swiper-container {
        width: 100%;
        padding-left: 50px;
    }


    .menu-swiper {
        width: 100%;
        cursor: pointer;
    }

    .menu-swiper .swiper-wrapper {
        transition-timing-function: linear !important;
    }

    .menu-swiper .swiper-slide {
        width: calc((100 / 768) * 250vw);
        height: calc((100 / 768) * 350vw);
        margin-top: calc((100 / 768) * 30vw);
    }

    .menu-swiper .swiper-slide figure {
        width: 100%;
        height: calc((100 / 768) * 220vw);
    }

    .menu-swiper .swiper-slide:hover img {
        filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
        /* 画像の被写体に影を付ける */
    }

    .slide-content {
        width: 100%;
        max-width: 90%;
        height: calc((100 / 768) * 190vw);
        padding: 10px;
        position: absolute;
        /* 画像上に配置するためabsoluteを使用 */
        overflow: hidden;
        z-index: 2;
        /* 画像より上に表示するためにz-indexを設定 */
      }

      .slide-content_title {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 16vw);
        color: #fff;
        margin-bottom: 5px;
        position: absolute;
        top: 5%;
      }

      .slide-content_contents {
        width: 100%;
        max-width: 90%;
        font-family: var(--font-jp_b);
        font-size: calc((100 / 768) * 14vw);
        color: #fff;
        position: absolute;
        top: 20%;
      }

    /*___________________________________________________________________________________________inquiry 矢印エフェクト*/
    .inquiry_arrow {
        display: inline-block;
        width: calc((100 / 768) * 330vw);
        padding: 30px 30px 10px 20px;
        text-align: center;
        font-family: var(--font-eng_b);
        font-size: calc((100 / 768) * 16vw);
        color: #000;
        margin: 2px;
        cursor: pointer;
        position: relative;
        text-decoration: none;
    }

    .inquiry_arrow::after {
        content: "";
        display: block;
        width: calc((100 / 768) * 25vw);
        height: 6px;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 1px solid #000;
        margin-top: 10px;
        position: absolute;
        top: 45%;
        right: calc((100 / 768) * 100vw);
        transform: skew(45deg);
        transition: .2s;
    }

    .inquiry_arrow:hover::after {
        right: calc((100 / 768) * 85vw);
        width: calc((100 / 768) * 40vw);
    }

    /*___________________________________________________________________________________________footer*/

    #footer {
        width: 100%;
        height: calc((100 / 768) * 500vw);
        background-color: rgba(255, 255, 255, 1);
        position: absolute;
        /*←絶対位置*/
        bottom: calc((100 / 768) * 10vw);
        /*下に固定*/
        z-index: 10;
    }

    .footer_wrapper {
        display: none;
        width: 100%;
        height: 100%;
        padding-top: calc((100 / 768) * 50vw);
        padding-right: calc((100 / 768) * 100vw);
        padding-bottom: calc((100 / 768) * 20vw);
        padding-left: calc((100 / 768) * 100vw);
    }

    .footer_inner {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 768) * 60vw);
    }

    .footer_logo img {
        width: calc((100 / 768) * 200vw);
        object-fit: cover;
        object-position: left top;
    }

    .footer_address {
        width: 100%;
        text-align: center;
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
        line-height: 2;
    }

    .footer_address p {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
    }

    .footer_address a {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
        text-decoration: none;
    }

    .footer_address p:nth-child(3) {
        margin-top: 10px;
    }

    .footer_address a .color {
        transition: all 0.3s ease 0s;
    }

    .footer_address a:hover .color {
        color: var(--blue);
    }

    .footer_address .mgr {
        margin-right: calc((100 / 768) * 20vw);
    }

    .footer_inner2 {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 768) * 50vw);
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer_nav_content {
        display: flex;
        justify-content: space-between;
        width: 60%;
    }

    .footer_nav_item {
        cursor: pointer;
    }

    .footer_nav_active a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 13vw);
        color: var(--menu-color);
        border-left: 2px solid #ff8c00;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 768) * 2vw);
        cursor: auto;
        pointer-events: none;
    }

    .footer_nav_item a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 13vw);
        color: #000;
        border-left: 2px solid #000;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 768) * 3vw);
        transition: all 0.3s ease 0s;
    }

    .footer_nav_item a:hover {
        color: var(--menu-color);
        border-color: var(--menu-color);
    }

    .footer_sns {
        margin-top: 30px;
    }

    .footer_sns ul li {
        width: calc((100 / 768) * 70vw);
        height: calc((100 / 768) * 70vw);
    }

    .footer_copylight {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 15px;
    }

    .footer_copylight p {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
    }

    .footer_copylight img {
        width: calc((100 / 768) * 100vw);
        margin-left: 10px;
    }
}

/*____________________________________________________________________________________________________________media_480*/
@media (max-width:480px) {

    /*footerをウィンドウ最下部へ固定する*/
    .wrapper {
        width: calc((100 / 480) * 480vw);
        min-height: 100vh;
        position: relative;
        /*←footerと相対位置*/
        padding-bottom: calc((100 / 480) * 350vw);
        /*←footerの高さ*/
        box-sizing: border-box;
        /*←全て含めてmin-height:100vhに*/
    }

    /*___________________________________________________________________________________________header*/

    /*header設定*/
    #header {
        width: calc((100 / 480) * 480vw);
        overflow: hidden;
        position: relative;
        /*h1の中央寄せ配置の起点とするためのrelative*/
    }

    .header_bg {
        width: calc((100 / 480) * 480vw);
        filter: brightness(85%);
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .header_bg img {
        width: 100%;
        filter: brightness(85%);
    }

    /*___________________________________________________________________________________________g-nav*/

    .site-header {
        display: block;
        width: 100%;
        height: calc((100 / 480) * 100vw);
        background-color: rgba(0, 0, 0, 0);
        padding-top: calc((100 / 480) * 15vw);
        padding-right: calc((100 / 480) * 50vw);
        padding-left: calc((100 / 480) * 15vw);
        text-align: left;
        position: fixed;
        z-index: 999;
        top: 0%;
        opacity: 0;
        animation-name: fadein1;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
    }

    @keyframes fadein1 {
        0% {
            opacity: 0;
            transform: translateY(0);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-simbol {
        width: calc((100 / 480) * 150vw);
        height: 70%;
    }

    .menu-simbol h2 {
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 img {
        width: calc((100 / 480) * 150vw);
    }

    .openbtn1 {
        display: inline-block;
        position: fixed;
        /*ボタンを最前面に*/
        z-index: 9999;
        top: 10px;
        right: 40px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fff;
        width: 70%;
    }

    .openbtn1.scroll span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 70%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }

    nav {
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background-color: var(--menu-color);
        margin-top: 0px;
        position: fixed;
        z-index: -1;
        top: -800%;
        left: 0;
        opacity: 0;
        /*動き*/
        transition: all 0.6s;
        transform: none;
    }

    nav.panelactive {
        top: 0;
        opacity: 1;
        margin-top: 0;
        transform: none;
    }

    nav ul {
        display: block;
        justify-content: space-between;
        width: 80%;
        list-style: none;
        position: absolute;
        z-index: 999;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    nav ul li {
        margin-top: 20px;
        transition: all .3s ease;
    }

    nav ul li:hover {
        background: rgba(255, 255, 0, .3);
    }

    nav ul li a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: #fff;
        position: relative;
    }

    /*メニュー下線の動き*/
    nav ul li a:hover {
        color: #0000ff;
    }

    nav li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        top: 15px;
        left: 0;
        /*線の形状*/
        width: 100%;
        height: 1.6px;
        background: #0000ff;
        border-radius: 5px;
        /*アニメーションの指定*/
        transition: all .2s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    nav li:hover a::after {
        color: #0000ff;
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    nav.panelactive {
        top: 0%;
        opacity: 1;
        transform: none;
    }

    .active_menu {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: var(--blue);
        /*blue R:0 G:0 B:255*/
        margin-top: 20px;
        pointer-events: none;
        position: relative;
    }

    .active_menu::before {
        content: '';
        display: block;
        width: 100%;
        border: solid var(--blue) 1px;
        border-radius: 5px;
        position: absolute;
        top: 15px;
        left: 0;
        opacity: 0;
        animation-name: stretch-line;
        animation-duration: 1s;
        animation-delay: 5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes stretch-line {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(0);
        }

        100% {
            width: 14%;
            opacity: 1;
            transform: translateX(0px);
        }
    }

    /*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
    .header-logo.headerLogoScroll.-before {
        display: none;
    }

    .header-logo.-after {
        display: none;
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .header-logo.headerLogoScroll.-after {
        display: block;
        width: 30%;
        height: 50%;
        position: absolute;
        top: calc((100 / 480) * 15vw);
        left: calc((100 / 480) * 15vw);
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li a.headerColorScroll {
        color: #000;
        transition: color 0.4s ease-out;
    }

    /* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li.current a.headerColorScroll,
    .g-navi ul li a.headerColorScroll:hover {
        color: #0000ff;
        /*blue R:0 G:0 B:255*/
        transition: all .2s ease;
    }

    /* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
    .active_menu.scroll::before {
        border: solid #ff8c00 1px;
    }

    /*footer手前でロゴとナビを削除*/
    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________cource-title*/
    #menu-course-title1 {
        padding: 10px 0 0 0;
    }

    .menu-course-title1_text1 {
        font-size: calc((100 / 480) * 47vw);
        padding-bottom: calc((100 / 480) * 30vw);
    }

    .menu-course-title1_text1 .jp {
        font-size: calc((100 / 480) * 16vw);
    }

    .menu-course-title1_text2 {
        font-size: calc((100 / 480) * 13vw);
    }

    .menu-course-title1_text {
        background-color: rgba(255, 255, 255, 1);
        width: 100%;
        color: black;
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 20vw);
        padding-top: calc((100 / 480) * 30vw);
        padding-right: calc((100 / 480) * 30vw);
        padding-bottom: calc((100 / 480) * 30vw);
        padding-left: calc((100 / 480) * 30vw);
        line-height: 2;
        text-align: center;
        z-index: 11;
    }

    /*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/
    .content_title {
        display: none;
        width: calc((100 / 480) * 120vw);
        height: 10%;
        position: relative;
        top: 50%;
        left: 65%;
        text-align: center;
    }
    .content_title h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 20vw);
        color: #fff;
    }

    /*___________________________________________________________________________________________480_スクロールダウン*/

    /*スクロールダウン全体の場所*/
    .scrolldown1 {
        display: none !important;
    }

    /* 線の描写 */
    .scrolldown1::after {
        content: "none";
    }

    /*___________________________________________________________________________________________content*/
    #content1,
    #content3 {
        width: calc((100 / 480) * 480vw);
        height: auto;
        padding-top: calc((100 / 480) * 20vw);
        padding-right: calc((100 / 480) * 20vw);
        padding-bottom: calc((100 / 480) * 10vw);
        padding-left: calc((100 / 480) * 20vw);
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 10;
    }

    #content2 {
        width: calc((100 / 480) * 480vw);
        height: auto;
        padding-top: calc((100 / 480) * 20vw);
        padding-right: calc((100 / 480) * 20vw);
        padding-bottom: calc((100 / 480) * 0vw);
        padding-left: calc((100 / 480) * 20vw);
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 10;
    }

    #content1 .course,
    #content3 .course {
        flex-direction: column;
    }

    #content2 .course {
        flex-direction: column;
    }

    #content1 .course>div:first-child,
    #content2 .course>div:first-child,
    #content3 .course>div:first-child {
        flex: 5;
        /* 6の割合 */
    }

    #content1 .course>div:last-child,
    #content2 .course>div:last-child,
    #content3 .course>div:last-child {
        flex: 5;
        /* 4の割合 */
    }

    #content1 .course_image,
    #content2 .course_image,
    #content3 .course_image {
        width: 100%;
        height: 100%;
        text-align: left;
    }

    #content2 .course_image {
        text-align: left;
    }

    #content1 .course_image img,
    #content2 .course_image img,
    #content3 .course_image img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
        margin-top: 0%;
    }

    #content1 .base_course,
    #content3 .base_course {
        width: 100%;
        margin: 0;
        padding-top: 15px;
        position: relative;
    }

    #content2 .base_course {
        width: 100%;
        margin: 0;
        padding-top: 15px;
    }

    .base_course h3 {
        font-size: calc((100 / 480) * 18vw);
    }

    .base_course img {
        width: calc((100 / 480) * 20vw);
        padding-top: 5px;
        margin-right: 0px;
    }

    .base_course h3 .jp {
        font-size: calc((100 / 480) * 12vw);
    }

    .cource_copy {
        font-size: calc((100 / 480) * 20vw);
    }

    .base_course p {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 12vw);
        margin-top: 20px;
    }

    #content1 .base_course .price,
    #content3 .base_course .price {
        width: 100%;
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 12vw);
        margin-top: 20px;
        color: #000;
        position: static;
    }

    #content2 .base_course .price {
        width: 100%;
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 12vw);
        text-align: left;
        margin-top: 20px;
        color: #000;
        position: static;
    }

    .base_course .price:nth-child(2),
    .base_course .price:nth-child(4) {
        width: 100%;
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 12vw);
        margin-top: 20px;
        color: #000;
        position: absolute;
        top: calc((100 / 480) * 250vw);
        left: calc((100 / 480) * 180vw);
    }

    #option {
        width: calc((100 / 480) * 480vw);
        height: 100%;
        background-color: rgba(255, 255, 255, 1);
        padding-top: calc((100 / 480) * 0vw);
        padding-right: calc((100 / 480) * 0vw);
        padding-left: calc((100 / 480) * 0vw);
        padding-bottom: calc((100 / 480) * 0vw);
        text-align: left;
    }

    .option_wrapper {
        width: 100%;
        padding-top: calc((100 / 480) * 20vw);
        padding-right: calc((100 / 480) * 30vw);
        padding-bottom: calc((100 / 480) * 30vw);
        padding-left: calc((100 / 480) * 30vw);
    }

    .option_title {
        font-size: calc((100 / 480) * 40vw);
        padding-top: calc((100 / 480) * 30vw);
    }

    .option_title p {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 12vw);
        margin-top: 10px;
        line-height: 2;
    }

    .option_title_doc {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 12vw);
        margin-top: 10px;
        text-align: center;
        line-height: 2;
    }

    .option_title_doc br:first-child {
        display: block;
    }

    #option .info {
        text-align: center;
        line-height: 2;
    }

    #option .info p br:first-child {
        display: block;
    }

    #option .info p {
        font-size: calc((100 / 480) * 14vw);
        padding-top: 50px;
    }

    .option_title .jp {
        font-family: var(--font-jp_b);
        color: var(--bluegrey);
        font-size: calc((100 / 480) * 14vw);
    }

    /*___________________________________________________________________________________________swiper*/
    #swiper-container {
        width: 100%;
        padding-left: 0px;
    }

    .menu-swiper {
        width: 100%;
        cursor: pointer;
    }

    .menu-swiper .swiper-wrapper {
        transition-timing-function: linear !important;
    }

    .menu-swiper .swiper-slide {
        width: calc((100 / 480) * 250vw);
        height: calc((100 / 480) * 350vw);
        margin-top: calc((100 / 480) * 30vw);
    }

    .menu-swiper .swiper-slide figure {
        width: 100%;
        height: calc((100 / 480) * 220vw);
    }

    .menu-swiper .swiper-slide:hover img {
        filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
        /* 画像の被写体に影を付ける */
    }

    .slide-content {
        width: 100%;
        max-width: 95%;
        position: absolute;
        /* 画像上に配置するためabsoluteを使用 */
        overflow: hidden;
        z-index: 2;
        /* 画像より上に表示するためにz-indexを設定 */
      }

    .slide-content_title {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 16vw);
        color: #fff;
        margin-bottom: 5px;
        position: absolute;
        top: 5%;
      }

    .slide-content_contents {
        width: 100%;
        max-width: 90%;
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
        color: #fff;
        position: absolute;
        top: 25%;
      }

    /*___________________________________________________________________________________________inquiry 矢印エフェクト*/
    .inquiry_arrow {
        display: inline-block;
        width: calc((100 / 480) * 330vw);
        padding: 30px 30px 10px 20px;
        text-align: center;
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        font-weight: bold;
        color: #000;
        margin: 2px;
        cursor: pointer;
        position: relative;
        text-decoration: none;
    }

    .inquiry_arrow::after {
        content: "";
        display: block;
        width: calc((100 / 480) * 25vw);
        height: 6px;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 1px solid #000;
        margin-top: 10px;
        position: absolute;
        top: 45%;
        right: calc((100 / 480) * 100vw);
        transform: skew(45deg);
        transition: .2s;
    }

    .inquiry_arrow:hover::after {
        right: calc((100 / 480) * 85vw);
        width: calc((100 / 480) * 40vw);
    }

    /*___________________________________________________________________________________________footer*/

    #footer {
        /*scroll-snap-align: start;*/
        width: 100%;
        height: calc((100 / 480) * 350vw);
        background-color: rgba(0, 0, 0, 0);
        position: absolute;
        /*←絶対位置*/
        bottom: 0;
        /*下に固定
        z-index: 10;*/
    }

    .footer_wrapper {
        width: 100%;
        height: 100%;
        padding-top: calc((100 / 480) * 20vw);
        padding-right: calc((100 / 480) * 30vw);
        padding-bottom: calc((100 / 480) * 30vw);
        padding-left: calc((100 / 480) * 30vw);
    }

    .footer_inner {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 480) * 0vw);
    }

    .footer_logo img {
        width: calc((100 / 480) * 200vw);
        object-fit: cover;
        object-position: left top;
    }

    .footer_address {
        width: 100%;
        text-align: center;
        color: #000;
        line-height: 2;

    }

    .footer_address p {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
        color: #000;
        text-decoration: none;
    }

    .footer_address a {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
        color: #000;
        text-decoration: none;
    }

    .footer_address a .color {
        transition: all 0.3s ease 0s;
    }

    .footer_address a:hover .color {
        color: var(--blue);
    }

    .footer_address .mgr {
        margin-right: calc((100 / 480) * 20vw);
    }

    .footer_inner2 {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 480) * 20vw);
        padding-bottom: calc((100 / 480) * 30vw);
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer_nav_content {
        display: flex;
        justify-content: space-between;
        width: 80%;
    }

    .footer_nav_item {
        cursor: pointer;
    }

    .footer_nav_active a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: var(--menu-color);
        border-left: 1.5px solid #ff8c00;
        padding-top: calc((100 / 480) * 2vw);
        padding-left: calc((100 / 480) * 5vw);
        cursor: auto;
        pointer-events: none;
    }

    .footer_nav_item a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: #000;
        border-left: 1.5px solid #000;
        padding-top: calc((100 / 480) * 2vw);
        padding-left: calc((100 / 480) * 5vw);
        transition: all 0.3s ease 0s;
    }

    .footer_nav_item a:hover {
        color: var(--menu-color);
        border-color: var(--menu-color);
    }

    .footer_sns {
        margin-top: 30px;
    }

    .footer_sns ul li {
        width: calc((100 / 480) * 60vw);
        height: calc((100 / 480) * 50vw);
    }

    .footer_copylight {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .footer_copylight p {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: #000;
        text-align: center;
    }

    .footer_copylight img {
        width: 20%;
        margin-left: 10px;
    }
}

/*____________________________________________________________________________________________________________media_390*/
@media (max-width:390px) {

    /*footerをウィンドウ最下部へ固定する*/
    .wrapper {
        width: calc((100 / 390) * 390vw);
        min-height: 100vh;
        position: relative;
        /*←footerと相対位置*/
        padding-bottom: calc((100 / 390) * 550vw);
        /*←footerの高さ*/
        box-sizing: border-box;
        /*←全て含めてmin-height:100vhに*/
    }

    /*___________________________________________________________________________________________header*/

    /*header設定*/
    #header {
        width: calc((100 / 390) * 390vw);
        height: calc((100 / 390) * 200vw);
        overflow: hidden;
        position: relative;
        /*h1の中央寄せ配置の起点とするためのrelative*/
    }

    .header_bg {
        width: calc((100 / 390) * 390vw);
        height: calc((100 / 390) * 200vw);
        filter: brightness(85%);
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .header_bg img {
        width: 100%;
        height: 100%;
        filter: brightness(85%);
    }

    /*___________________________________________________________________________________________g-nav*/

    .site-header {
        display: block;
        width: calc((100 / 390) * 390vw);
        height: calc((100 / 390) * 100vw);
        background-color: rgba(0, 0, 0, 0);
        padding-top: calc((100 / 390) * 10vw);
        padding-right: calc((100 / 390) * 30vw);
        padding-left: calc((100 / 390) * 30vw);
        position: fixed;
        animation-name: fadein1;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        z-index: 999;
    }

    @keyframes fadein1 {
        0% {
            opacity: 0;
            transform: translateY(0);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-simbol {
        width: calc((100 / 390) * 150vw);
        height: 70%;
    }

    .menu-simbol h2 {
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 img {
        width: calc((100 / 390) * 150vw);
    }

    .openbtn1 {
        display: inline-block;
        position: fixed;
        /*ボタンを最前面に*/
        z-index: 9999;
        top: 10px;
        right: 40px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fff;
        width: 70%;
    }

    .openbtn1.scroll span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 70%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }

    nav {
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background-color: var(--menu-color);
        margin-top: 0px;
        position: fixed;
        z-index: -1;
        top: -800%;
        left: 0;
        opacity: 0;
        /*動き*/
        transition: all 0.6s;
        transform: none;
    }

    nav.panelactive {
        top: 0;
        opacity: 1;
        margin-top: 0;
        transform: none;
    }

    nav ul {
        display: block;
        justify-content: space-between;
        width: 80%;
        list-style: none;
        position: absolute;
        z-index: 999;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    nav ul li {
        margin-top: 20px;
        transition: all .3s ease;
    }

    nav ul li:hover {
        background: rgba(255, 255, 0, .3);
    }

    nav ul li a {
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 14vw);
        color: #fff;
        position: relative;
    }

    /*メニュー下線の動き*/
    nav ul li a:hover {
        color: #0000ff;
    }

    nav li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        top: 15px;
        left: 0;
        /*線の形状*/
        width: 100%;
        height: 1.6px;
        background: #0000ff;
        border-radius: 5px;
        /*アニメーションの指定*/
        transition: all .2s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    nav li:hover a::after {
        color: #0000ff;
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    nav.panelactive {
        top: 0%;
        opacity: 1;
        transform: none;
    }

    .active_menu {
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 14vw);
        color: var(--menu-color);
        margin-top: 20px;
        pointer-events: none;
        position: relative;
    }

    .active_menu::before {
        content: '';
        display: block;
        width: 100%;
        border: solid #ff8c00 1px;
        border-radius: 5px;
        position: absolute;
        top: 15px;
        left: 0;
        opacity: 0;
        animation-name: stretch-line;
        animation-duration: 1s;
        animation-delay: 5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes stretch-line {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(0);
        }

        100% {
            width: 20%;
            color: var(--menu-color);
            opacity: 1;
            transform: translateX(0px);
        }
    }

    /*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
    .header-logo.headerLogoScroll.-before {
        display: none;
    }

    .header-logo.-after {
        display: none;
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .header-logo.headerLogoScroll.-after {
        display: block;
        width: 30%;
        height: 50%;
        position: absolute;
        top: calc((100 / 390) * 30vw);
        left: calc((100 / 390) * 50vw);
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li a.headerColorScroll {
        color: #000;
        transition: color 0.4s ease-out;
    }

    /* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li.current a.headerColorScroll,
    .g-navi ul li a.headerColorScroll:hover {
        color: #0000ff;
        /*blue R:0 G:0 B:255*/
        transition: all .2s ease;
    }

    /* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
    .active_menu.scroll::before {
        border: solid #ff8c00 1px;
    }

    /*footer手前でロゴとナビを削除*/
    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________cource-title*/
    #menu-course-title1 {
        padding: 15px 0 0 0;
    }

    .menu-course-title1_text1 {
        font-size: calc((100 / 390) * 47vw);
        padding-bottom: calc((100 / 390) * 30vw);
    }

    .menu-course-title1_text1 .jp {
        font-size: calc((100 / 390) * 14vw);
    }

    .menu-course-title1_text2 {
        font-size: calc((100 / 390) * 11vw);
    }


    .menu-course-title1_text {
        background-color: rgba(255, 255, 255, 1);
        width: 100%;
        color: black;
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 20vw);
        padding-top: calc((100 / 390) * 30vw);
        padding-right: calc((100 / 390) * 30vw);
        padding-bottom: calc((100 / 390) * 30vw);
        padding-left: calc((100 / 390) * 30vw);
        line-height: 2;
        text-align: center;
        z-index: 11;
    }

    /*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/
    .content_title {
        display: none;
        width: 100%;
        height: calc((100 / 390) * 50vw);
        position: relative;
        top: calc((100 / 390) * 120vw);
        z-index: 10;
        text-align: right;
    }

    .content_title h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 20vw);
        color: #fff;
        position: fixed;
        top: calc((100 / 390) * 120vw);
        right: calc((100 / 390) * 70vw);
    }

    /*___________________________________________________________________________________________390_スクロールダウン*/

    /*スクロールダウン全体の場所*/
    .scrolldown1 {
        display: none !important;
        height: 50px;
        /*描画位置※位置は適宜調整してください*/
        position: fixed;
        top: 35%;
        right: 17%;
        transform: translate(-50%, -50%);
        /*全体の高さ*/
        text-align: center;
        z-index: 10;
    }

    /*Scrollテキストの描写*/
    .scrolldown1 span {
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 14vw);
        color: #fff;
    }

    /* 線の描写 */
    .scrolldown1::after {
        content: "";
        /*描画位置*/
        position: absolute;
        top: 0;
        left: 50%;
        /*線の形状*/
        width: 2px;
        height: 30px;
        background: #fff;
        margin-top: 20px;
        /*線の動き1.4秒かけて動く。永遠にループ*/
        animation: linemove 1.4s ease-in-out infinite;
        opacity: 0;
        transition: all 1.5s ease;
    }

    /*高さ・位置・透過が変化して線が上から下に動く*/
    @keyframes linemove {
        0% {
            height: 0;
            top: 0;
            opacity: 0;
        }

        30% {
            height: 30px;
            opacity: 1;
        }

        100% {
            height: 0;
            top: 50px;
            opacity: 0;
        }
    }

    /*___________________________________________________________________________________________content*/
    #content1,
    #content3 {
        width: calc((100 / 390) * 390vw);
        height: auto;
        padding-top: calc((100 / 390) * 20vw);
        padding-right: calc((100 / 390) * 20vw);
        padding-bottom: calc((100 / 390) * 10vw);
        padding-left: calc((100 / 390) * 20vw);
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 10;
    }

    #content2 {
        width: calc((100 / 390) * 390vw);
        height: auto;
        padding-top: calc((100 / 390) * 20vw);
        padding-right: calc((100 / 390) * 20vw);
        padding-bottom: calc((100 / 390) * 0vw);
        padding-left: calc((100 / 390) * 20vw);
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 10;
    }

    #content1 .course,
    #content3 .course {
        flex-direction: column;
    }

    #content2 .course {
        flex-direction: column;
    }

    #content1 .course>div:first-child,
    #content2 .course>div:first-child,
    #content3 .course>div:first-child {
        flex: 5;
        /* 6の割合 */
    }

    #content1 .course>div:last-child,
    #content2 .course>div:last-child,
    #content3 .course>div:last-child {
        flex: 5;
        /* 4の割合 */
    }

    #content1 .course_image,
    #content2 .course_image,
    #content3 .course_image {
        width: 100%;
        height: 100%;
        text-align: left;
    }

    #content2 .course_image {
        text-align: left;
    }

    #content1 .course_image img,
    #content2 .course_image img,
    #content3 .course_image img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
        margin-top: 0%;
        filter: brightness(80%);
    }

    #content1 .base_course,
    #content3 .base_course {
        width: 100%;
        margin: 0;
        padding-top: 15px;
        position: relative;
    }

    #content2 .base_course {
        width: 100%;
        margin: 0;
        padding-top: 15px;
    }

    .base_course h3 {
        font-size: calc((100 / 390) * 18vw);
    }

    .base_course h3 img {
        width: calc((100 / 390) * 20vw);
        padding-top: 5px;
        margin-right: 5px;
    }

    .base_course h3 .jp {
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 12vw);
    }

    .cource_copy {
        font-size: calc((100 / 390) * 16vw);
    }

    .base_course p {
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 11vw);
        color: #000;
        margin-top: 20px;
        line-height: 2;
    }

    #content1 .base_course .price,
    #content3 .base_course .price {
        width: 100%;
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 11vw);
        margin-top: 20px;
        color: #000;
        position: static;
    }

    #content2 .base_course .price {
        width: 100%;
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 11vw);
        text-align: left;
        margin-top: 20px;
        color: #000;
        position: static;
    }

    .base_course .price:nth-child(2),
    .base_course .price:nth-child(4) {
        width: 100%;
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 11vw);
        margin-top: 20px;
        color: #000;
        position: absolute;
        top: calc((100 / 390) * 250vw);
        left: calc((100 / 390) * 180vw);
    }

    #option {
        width: calc((100 / 390) * 390vw);
        height: calc((100 / 390) * 600vw);
        background-color: rgba(255, 255, 255, 1);
        padding-top: calc((100 / 390) * 0vw);
        padding-right: calc((100 / 390) * 0vw);
        padding-left: calc((100 / 390) * 0vw);
        padding-bottom: calc((100 / 390) * 0vw);
        text-align: left;
    }

    .option_wrapper {
        width: 100%;
        padding-top: calc((100 / 390) * 10vw);
        padding-right: calc((100 / 390) * 0vw);
        padding-bottom: calc((100 / 390) * 10vw);
        padding-left: calc((100 / 390) * 30vw);
    }

    .option_title {
        font-size: calc((100 / 390) * 47vw);
        padding-top: calc((100 / 390) * 30vw);
    }

    .option_title p {
        font-size: calc((100 / 390) * 11vw);
        margin-top: 10px;
    }

    .option_title_doc {
        font-size: calc((100 / 390) * 10vw);
        margin-top: 10px;
    }

    .option_title_doc br:first-child {
        display: block;
    }

    #option .info p br:first-child {
        display: block;
    }

    #option .info p {
        font-size: calc((100 / 390) * 12vw);
        padding-top: 0;
    }

    .option_title .jp {
        font-family: var(--font-jp_b);
        color: var(--bluegrey);
        font-size: calc((100 / 390) * 14vw);
    }

    /*___________________________________________________________________________________________swiper*/
    #swiper-container {
        width: 100%;
        padding-left: 50px;
    }

    .menu-swiper {
        width: 100%;
        cursor: pointer;
    }

    .menu-swiper .swiper-wrapper {
        transition-timing-function: linear !important;
    }

    .menu-swiper .swiper-slide {
        width: calc((100 / 390) * 250vw);
        height: calc((100 / 390) * 280vw);
        margin-top: calc((100 / 390) * 30vw);
    }

    .menu-swiper .swiper-slide figure {
        width: 100%;
        height: calc((100 / 390) * 150vw);
    }

    .menu-swiper .swiper-slide:hover img {
        filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
        /* 画像の被写体に影を付ける */
    }

    .slide-content {
        width: 100%;
        max-width: 90%;
        height: calc((100 / 390) * 120vw);
        position: absolute;
        /* 画像上に配置するためabsoluteを使用 */
        overflow: hidden;
        z-index: 2;
        /* 画像より上に表示するためにz-indexを設定 */
      }

      .slide-content_title {
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 16vw);
        color: #fff;
        margin-bottom: 5px;
        position: absolute;
        top: 10%;
      }

      .slide-content_contents {
        width: 100%;
        max-width: 90%;
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 12vw);
        color: #fff;
        position: absolute;
        top: 20%;
      }

    /*___________________________________________________________________________________________inquiry 矢印エフェクト*/
    .inquiry_arrow {
        display: inline-block;
        width: calc((100 / 390) * 330vw);
        padding: 30px 30px 10px 20px;
        text-align: center;
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 14vw);
        font-weight: bold;
        color: #000;
        margin: 2px;
        cursor: pointer;
        position: relative;
        text-decoration: none;
    }

    .inquiry_arrow::after {
        content: "";
        display: block;
        width: calc((100 / 390) * 25vw);
        height: 6px;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 1px solid #000;
        margin-top: 10px;
        position: absolute;
        top: 45%;
        right: calc((100 / 390) * 100vw);
        transform: skew(45deg);
        transition: .2s;
    }

    .inquiry_arrow:hover::after {
        right: calc((100 / 390) * 85vw);
        width: calc((100 / 390) * 40vw);
    }

    /*___________________________________________________________________________________________footer*/

    #footer {
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 1);
        position: absolute;
        /*←絶対位置*/
        /*下に固定*/
        z-index: 10;
    }

    .footer_wrapper {
        display: none;
        width: 100%;
        height: 100%;
        padding-top: calc((100 / 390) * 0vw);
        padding-right: calc((100 / 390) * 0vw);
        padding-bottom: calc((100 / 390) * 0vw);
        padding-left: calc((100 / 390) * 0vw);
    }

    .footer_inner {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 390) * 60vw);
    }

    .footer_logo img {
        width: calc((100 / 390) * 200vw);
        object-fit: cover;
        object-position: left top;
    }

    .footer_address {
        width: 100%;
        text-align: center;
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 10vw);
        color: #000;
        line-height: 2;

    }

    .footer_address p {
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 10vw);
        color: #000;
        text-decoration: none;
    }

    .footer_address a {
        font-family: var(--font-jp);
        font-size: calc((100 / 390) * 10vw);
        color: #000;
        text-decoration: none;
    }

    .footer_address a .color {
        transition: all 0.3s ease 0s;
    }

    .footer_address a:hover .color {
        color: var(--blue);
    }

    .footer_address .mgr {
        margin-right: calc((100 / 390) * 20vw);
    }

    .footer_inner2 {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 390) * 30vw);
        padding-bottom: calc((100 / 390) * 30vw);
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer_nav_content {
        display: flex;
        justify-content: space-between;
        width: 70%;
    }

    .footer_nav_item {
        cursor: pointer;
    }

    .footer_nav_active a {
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 10vw);
        color: var(--menu-color);
        border-left: 1.5px solid #ff8c00;
        padding-top: calc((100 / 390) * 2vw);
        padding-left: calc((100 / 390) * 5vw);
        cursor: auto;
        pointer-events: none;
    }

    .footer_nav_item a {
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 10vw);
        color: #000;
        border-left: 1.5px solid #000;
        padding-top: calc((100 / 390) * 2vw);
        padding-left: calc((100 / 390) * 5vw);
        transition: all 0.3s ease 0s;
    }

    .footer_nav_item a:hover {
        color: var(--menu-color);
        border-color: var(--menu-color);
    }

    .footer_sns {
        margin-top: 30px;
    }

    .footer_sns ul li {
        width: calc((100 / 390) * 60vw);
        height: calc((100 / 390) * 50vw);
    }

    .footer_copylight {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
    }

    .footer_copylight p {
        font-family: var(--font-eng);
        font-size: calc((100 / 390) * 12vw);
        color: #000;
        text-align: center;
    }

    .footer_copylight img {
        width: 20%;
        margin-left: 10px;
    }
}