html {
    margin: 0;
    padding: 0;
}

.fadeUpTrigger {
    opacity: 0;
}








/*========= レイアウトのためのCSS ===============*/

.bgextend {
    width: 220px;
    padding: 20px;
    margin: 0 20px 20px 0;
    box-sizing: border-box;
}

/*========= 背景色の動きのCSS ===============*/

/*背景色が伸びて出現 共通*/
.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------- 左から --------*/
.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;
    /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}


















.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "noto sans CJK JP,ヒラギノ角ゴシック ProN,ヒラギノ角ゴシック,Meiryo,MS Pゴシック,sans-serif";
    /*
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;*/
}

.bar {
    position: fixed;
    z-index: 999;
    width: 1rem;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
    background: -webkit-linear-gradient(bottom, #c94208, orange);
    background: linear-gradient(0deg, #c94208, orange);
}

#wrapper {
    background: url(img/top-background.jpg)no-repeat center;
    background-size: cover;
    height: 30rem;
    padding-bottom: 130px;
    padding-top: 150px;
}

header {

    margin: 0;
    padding: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    z-index: 999;
}

.header-inner {
    position: fixed;
    top: 0;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    align-items: center;
    background: #FFFFFF;
    border-radius: 0px 47.5px 47.5px 0px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0px 30px;
    width: 80%;
    max-width: 100%;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 999;
    animation-name: fadeDownAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-10rem);
    }

    to {
        opacity: 1;
        transform: translateY(0rem);
    }
}

.top-logo {
    margin-left: 20px;
}

.top-logo img {
    width: 250px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

h1 {
    font-size: 15px;
    font-weight: 800;
    margin: 0;
}

table {
    margin: 0;
}

.nav {
    display: flex;
    top: 0;
    right: 0;
}

.main-nav {
    padding-left: 0;
    margin-top: 16px;
    margin-bottom: 14px;
}

.main-nav li {
    display: inline-block;
    /* padding-left: 20px; */
    font-size: 13px;
}

.main-nav li a:hover {
    color: orange;
}

.btnlinestretches {
    position: relative;
    color: #333;
    padding: 5px 15px 5px 15px;
    display: inline-block;
    text-decoration: none;
    outline: none;
    font-weight: 700;
}

/*線の設定*/
.btnlinestretches::before,
.btnlinestretches::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}

/*hover時に伸びる線の形状*/
.btnlinestretches::after {
    width: 0;
    background: orange;
}

/*hover時に100%に伸びる*/
.btnlinestretches:hover::after {
    width: 100%;
}

/*矢印の設定*/
.btnlinestretches span::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 1.3em;
    right: 20px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hover時に矢印が移動*/
.btnlinestretches:hover span::after {
    right: 15px;
}

.contact-nav a {
    text-decoration: none;
}


a.btn {
    align-items: center;
    background: orange;
    border-bottom: 1px solid orange;
    border-left: 1px solid orange;
    border-radius: 48px;
    border-right: 1px solid orange;
    border-top: 1px solid orange;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    height: auto;
    justify-content: center;
    margin: 0px 0px 0px 0px;
    padding: 16px 0px;
    width: 210px;
    --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
    --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
    --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
    max-width: 100%;
    color: white;
    vertical-align: middle;
    margin-left: 20px;
}

a.btn:before {
    content: "\f0e0";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 15px;
}


a.btn:hover {
    color: orange;
    background-color: #fff;
}

.top-left {
    position: absolute;
    text-align: center;
    top: 13rem;
    left: 14%;
}


.top-left-first {
    width: 570px;
    z-index: 555;
}

/*ボタン*/
.btntextchange {
    position: relative;
    border-radius: 25px 10px 25px 10px;
    min-width: 210px;
    padding: 20px;
    text-align: center;
    display: inline-block;
    width: 300px;
    /* height: 500px; */
    text-decoration: none;
    color: white;
    outline: none;
    transition: all .2s;
    background-color: orange;
    height: 30px;
    font-weight: 700;
    font-size: 20px;
    z-index: 222;
}

.btntextchange:hover {
    background: white;
    color: orange;

}

.btntextchange span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    display: block;
    white-space: nowrap;
}


.btntextchange span:nth-child(2) {
    opacity: 0;
}


.btntextchange:hover span:nth-child(1) {
    opacity: 0;
}

.btntextchange:hover span:nth-child(2) {
    opacity: 1;
}

.dotted-line {
    border-bottom: 1px dotted #222222;
    width: 800px;
    margin: 0 auto;

}


h2 {
    font-size: 30px;
    line-height: 46px;
    letter-spacing: -1.5px;
    margin-bottom: 0;
    font-weight: 600;
    color: #222222;
    text-align: left;
    margin-left: 14rem;
    font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
}

/*
h2 span {
    font-size: 25px;
    font-weight: 700;
    color: var(--theme-colorA);
    letter-spacing: 0.025em;
    line-height: 1;
    margin-bottom: 50px;
    font-family: 'Outfit', sans-serif;
    background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
    background: -webkit-linear-gradient(bottom, #c94208, orange);
    background: linear-gradient(0deg, #c94208, orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}*/

#About {
    margin-top: 80px;
}

.About_inner {
    margin-top: 60px;
    margin-left: 8rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.About_inner span {
    color: orange;
    font-size: 20px;
    font-weight: 900;
}

.vertical-catch {
    margin-right: 1rem;
    margin-top: 14px;
}

.vertical-catch p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 19px;

}

.vertical-catch p span {
    color: orange;
    font-size: 19px;
}

.About-line {
    border-left: 1px solid #000000;
    /*線の設定*/
    padding: 2px 8px;
    /*余白の設定*/
}

.About-main {
    margin-left: 1rem;
}


.About-main p {
    font-size: 16px;
    width: 50%;
    font-weight: 100;
    line-height: 30px;
    margin-top: 10px;
    width: max-content;

}




.btn {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    padding: 10px 20px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    background-color: orange;
    height: 35px;

    width: 200px;
    margin-top: 9rem;
    margin-left: 50px;
}

.btn2 {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    background-color: orange;
    height: 35px;
    width: 200px;
    margin-top: 10.5rem;
    border: 1px solid #222222;
}


/*ボタン内spanの形状*/
.btn2 span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: white;
    text-align: left;
    font-size: 15px;
}

.btn2:hover span {
    color: black;
}

.btn2:hover {
    border: 1px solid #222222;
}

/*== 背景が流れる（斜め） */
.bgskew::before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -130%;
    /*色や形状*/
    background-color: #c94208;
    width: 120%;
    height: 100%;
    transform: skewX(-25deg);
    background-color: white;
}

/*hoverした時のアニメーション*/あ
.bgskew:hover::before {
    animation: skewanime .5s forwards;
    /*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
    100% {
        left: -10%;
        /*画面の見えていない左から右へ移動する終了地点*/
    }
}

.btn2:hover .arrow-right {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 15px 20px 0px 30px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg);
}

.arrow-right {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 15px 20px 0px 30px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}

.Service {
    padding-top: 50px;
    margin-bottom: 50px;
}

.Service_item {
    display: flex;
    justify-content: center;
}

.Service_item_01 {
    width: 370px;
}

.Service_item_02 {
    width: 400px;
    margin-top: 20px;
    border: 1px solid black;
}

.Service_item_imgbox {}

.Service_item_explanationbox {
    margin-right: 6%;
    margin-top: 40px;
}

.Service_item_explanationbox2 {
    margin-right: 5%;
    margin-top: 50px;
    margin-left: 5%;
}

h3 {
    font-size: 30px;
    color: black;
    width: max-content;
    background: linear-gradient(transparent 70%, darkorange 70%);
    margin-bottom: 10px;
    padding: 0 5px 0 5px;
    margin-left: 10px;
}

.Service_item p {
    font-size: 20px;
    line-height: 45px;
}

.Service_number span {
    color: orange;
    margin-top: 0;
    font-size: 200px;
    margin-bottom: 0;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    font-weight: 900;
}

.Service_item_explanationbox ul {
    list-style-type: none;
}

.Service_item_explanationbox li {
    position: relative;
    line-height: 1.8;
}

.Service_item_explanationbox li::after {
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    left: -1.5em;
    width: 10px;
    height: 5px;
    border-left: 3px solid orange;
    border-bottom: 3px solid orange;
    transform: rotate(-45deg);
}

.Service_item_explanationbox2 ul {
    list-style-type: none;
}

.Service_item_explanationbox2 li {
    position: relative;
    line-height: 1.8;
}

.Service_item_explanationbox2 li::after {
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    left: -1.5em;
    width: 10px;
    height: 5px;
    border-left: 3px solid orange;
    border-bottom: 3px solid orange;
    transform: rotate(-45deg);
}

#reason_for_choosing {
    margin-top: 60px;
    ;
}

.reason_for_choosing_container {
    display: flex;
    flex-wrap: wrap;
    /* 折返し指定 */
    justify-content: center;
    margin-top: 60px;
}


.reason_for_choosing-inner {
    display: flex;
    flex-wrap: wrap;
    /* 折返し指定 */
    justify-content: center;
    gap: 20px;
    width: 800px;
}

.reason_for_choosing-inner_box {
    margin: 0 auto;
    display: block;
    width: 25%;
}

.reason_for_choosing-inner_box img {
    width: 120px;
    margin: 0 auto;
    display: block;
}

.About-main_container {
    width: 320px;
}

h6 {
    text-align: center;
    margin-top: 0;
    font-size: 15px;
}


#price {
    margin-top: 0px;
    margin-bottom: 4rem;
}

.price-inner {
    display: flex;
    justify-content: center;
}

.price-inner_box {
    width: 55%;
}

#price p {
    font-size: 40px;
    color: #222222;
    text-align: center;
    font-weight: 800;
    margin-bottom: 0;
}

#mainprice {
    background: linear-gradient(transparent 60%, darkorange 60%);
    font-size: 50px;
}

.price-inner_box_bottom {
    text-align: right;
}

.price span {
    font-size: 17px;
    margin-top: 0%;
    font-weight: 700;
}

#teacher {
    margin-top: 60px;

}

.teacher-inner {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 5rem;
}

.teacher-inner-left img {
    width: 250px;
}

.mb_brreason_for_choosing {
    display: none;
}

h4 {
    color: #222222;
    font-size: 28px;
    width: max-content;
    margin: 0;
    /* background: linear-gradient(transparent 70%, darkorange 70%); */
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    color: #1c1c1c;
}

h4 span {
    margin-left: 10px;
}


.teacher-name {
    width: 200px;
    text-align: center;
    font-size: 20px;

}

.name-top {
    font-size: 12px;

}

.teacher-inner-right {
    width: 550px;
}

.teacher-inner-right p {
    font-size: 12px;
}

.teacher-inner-right img {
    width: 500px;
}

.name-bottom {
    margin-top: 0;
    background-color: darkorange;
    text-align: center;
    color: white;
}

.name-bottom span {
    margin-left: 5px;
    ;
}

#sample {
    margin-top: 90px;
}

.sample-inner {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}


.samplemovie {
    margin-top: 20px;
    width: 560px;
    height: 315px;
}



#review {
    margin-top: 50px;
    margin-bottom: 50px;
}

.review-movie {
    width: 300px;
    height: 168.9px;
}

.review-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.review-inner-box {
    width: 300px;
    background-color: #f8f8f8;
    border-radius: 20px;
    border: 1px solid #ebebeb;
    padding-bottom: 50px;
}

.review-inner-box iframe {
    border-radius: 20px 20px 0px 0px;

}

.classification {
    color: #777777;
    font-size: 12px;
    width: max-content;
    margin-left: 5%;
    margin-bottom: 15px;
    margin-top: 20px;
}

h5 {
    font-size: 17px;
    color: #222222;
    margin-top: 0;
    margin-bottom: 10px;
    width: max-content;
    margin-left: 5%;

}

.comment {
    width: 90%;
    font-size: 15px;
    margin: 0 auto;
    color: #777777;
}

.btnarrow-box {
    margin-left: 55%;
}

/*矢印の移動モーション*/
/*矢印の移動モーション*/
/*矢印の移動モーション*/
/*矢印の移動モーション*/

/*矢印が右に移動する*/
.btnarrow4 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #222222;
    font-weight: 800;
    text-decoration: none;
    outline: none;
    font-size: 14px;
}

/*矢印と下線の形状*/
.btnarrow4::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: -8px;
    left: 15%;
    /*下線の形状*/
    width: 85%;
    height: 2px;
    background: #777777;
    /*アニメーションの指定*/
    transition: all .3s;
}

.btnarrow4::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: -3px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 2px;
    background: #777777;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before {
    left: 20%;
}

.btnarrow4:hover::after {
    right: -5%;
}

footer {
    background: linear-gradient(135deg, orange, darkorange);
    text-align: center;
    padding-bottom: 50px;
    padding-top: 30px;
}

footer p {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
}


.btn--orange,
a.btn--orange {
    color: orange;
    background-color: white;
    margin-left: 0;

}

.btn--orange:hover,
a.btn--orange:hover {
    color: #fff;
    background: #f56500;
}

a.btn--radius {
    border-radius: 100vh;
    width: 250px;
}


.footer-button-area {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media screen and (max-width: 1400px) and (min-width: 1250px) {
    .main-nav {
        padding: 0;
    }

    .top-logo img {
        width: 210px;
        /* margin-left: 10px; */
        margin-right: 10px;
        margin-top: 5px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 5px 10px 5px 10px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }



    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px 47.5px 47.5px 0px;
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0px 30px;
        width: 80%;
        max-width: 100%;
        margin-top: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
        z-index: 999;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: max-content;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 14px;
        margin-bottom: 0px;
    }

    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        font-weight: 800;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 16px 5px;
        width: 160px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        max-width: 100%;
        color: white;
        vertical-align: middle;
        margin-left: 20px;
        font-size: 14px;
    }

    .top-left-first {
        width: 550px;
        margin-bottom: 10px;
        z-index: 555;
    }

    .top-left {
        position: absolute;
        text-align: center;
        top: 13rem;
        left: 13%;
    }

    h2 {
        margin-left: 10rem;
    }

    footer a.btn {
        align-items: center;
        background: white;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        justify-content: center;

        padding: 16px 0px;
        width: 200px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        max-width: 100%;
        color: orange;
        vertical-align: middle;

        font-size: 14px;
        margin: 0;
    }

    .About_inner {
        margin-top: 60px;
        margin-left: 8rem;
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 70px;
    }
}

/*トップレスポ*/
@media screen and (max-width: 1249px) and (min-width: 1100px) {
    .main-nav {
        padding: 0;
    }

    .top-logo img {
        width: 200px;
        margin-left: 0px;
        margin-right: 5px;
        margin-top: 5px;
    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 23rem;
        padding-bottom: 130px;
        padding-top: 150px;
    }

    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px 47.5px 47.5px 0px;
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0px 20px;
        width: 86%;
        max-width: 100%;
        margin-top: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
        z-index: 999;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: max-content;
    }

    h1 {
        font-size: 13px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }

    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 14px;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 13px 5px;
        width: 150px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        max-width: 100%;
        color: white;
        vertical-align: middle;
        margin-left: 10px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 13px 0px 13px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {
        position: absolute;
        text-align: center;
        top: 11rem;
        left: 12%;
    }

    .top-left-first {
        width: 500px;
        z-index: 555;
    }

}

/*トップレスポ*/
@media screen and (max-width: 1099px) and (min-width: 1000px) {
    .main-nav {
        padding: 0;
    }

    .top-logo img {
        width: 170px;
        margin-left: 20px;
        margin-right: 5px;
        margin-top: 5px;
    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 20rem;
        padding-bottom: 130px;
        padding-top: 150px;
    }

    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px 47.5px 47.5px 0px;
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0px 20px;
        width: 86%;
        max-width: 100%;
        margin-top: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
        z-index: 999;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: max-content;
    }

    h1 {
        font-size: 13px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }

    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 14px;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 13px 0px;
        width: 150px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        max-width: 100%;
        color: white;
        vertical-align: middle;
        margin-left: 10px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {
        position: absolute;
        text-align: center;
        top: 10.5rem;
        left: 13%;
    }

    .top-left-first {
        width: 470px;
        z-index: 555;
    }



}


@media screen and (max-width: 1249px) and (min-width: 1000px) {


    h2 {
        font-size: 25px;
        line-height: 37px;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        font-weight: 600;
        color: #222222;
        text-align: left;
        margin-left: 6rem;
        font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
    }

    h2 span {
        font-size: 25px;
        font-weight: 700;
        color: var(--theme-colorA);
        letter-spacing: 0.025em;
        line-height: 1;
        margin-bottom: 50px;
        font-family: 'Outfit', sans-serif;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #About {
        margin-top: 80px;
    }

    .About_inner {
        margin-top: 40px;
        margin-left: 3rem;
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-bottom: 60px;
    }

    .About_inner span {
        color: orange;
        font-size: 20px;
        font-weight: 900;
    }

    .vertical-catch {
        margin-right: 1rem;
        margin-top: 14px;
    }

    .vertical-catch p {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 15px;

    }

    .vertical-catch p span {
        color: orange;
        font-size: 15px;
    }

    .About-line {
        border-left: 1px solid #000000;
        /*線の設定*/
        padding: 2px 8px;
        /*余白の設定*/
    }

    .About-main {
        margin-left: 1rem;
    }


    .About-main p {
        font-size: 12px;
        width: 50%;
        font-weight: 100;
        line-height: 20px;
        margin-top: 10px;
        width: 400px;

    }




    .btn {
        /*アニメーションの起点とするためrelativeを指定*/
        position: relative;
        overflow: hidden;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        border-radius: 2px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        /*アニメーションの指定*/
        transition: ease .2s;
        background-color: orange;
        height: 35px;

        width: 200px;
        margin-top: 9rem;
        margin-left: 50px;
    }

    .btn2 {
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        transition: ease .2s;
        background-color: orange;
        height: 35px;
        width: 180px;
        margin-top: 6.5rem;
        border: 1px solid #222222;
    }


    /*ボタン内spanの形状*/
    .btn2 span {
        position: relative;
        z-index: 3;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        color: white;
        text-align: left;
        font-size: 15px;
    }

    .btn2:hover span {
        color: black;
    }

    .btn2:hover {
        border: 1px solid #222222;
    }

    /*== 背景が流れる（斜め） */
    .bgskew::before {
        content: '';
        /*絶対配置で位置を指定*/
        position: absolute;
        top: 0;
        left: -130%;
        /*色や形状*/
        background-color: #c94208;
        width: 120%;
        height: 100%;
        transform: skewX(-25deg);
        background-color: white;
    }

    /*hoverした時のアニメーション*/
    .bgskew:hover::before {
        animation: skewanime .5s forwards;
        /*アニメーションの名前と速度を定義*/
    }

    @keyframes skewanime {
        100% {
            left: -10%;
            /*画面の見えていない左から右へ移動する終了地点*/
        }
    }

    .btn2:hover .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 20px 0px 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
        transform: rotate(45deg);
    }

    .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 10px 0px 12px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    .Service {
        padding-top: 50px;
        margin-bottom: 50px;
    }

    .Service_item {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .Service_item_01 {
        width: 300px;
    }

    .Service_number {
        margin-top: 50px;
    }

    .Service_item_02 {
        width: 350px;
        margin-top: 20px;
        border: 1px solid black;
    }

    .Service_item_imgbox {}

    .Service_item_explanationbox {
        margin-right: 0;
        margin-top: 40px;
    }

    .Service_item_explanationbox2 {
        margin-right: 5%;
        margin-top: 20px;
        margin-left: 5%;
    }

    h3 {
        font-size: 30px;
        color: black;
        width: max-content;
        background: linear-gradient(transparent 70%, darkorange 70%);
        margin-bottom: 10px;
        padding: 0 5px 0 5px;
        margin-left: 10px;
        margin-top: 20px;

    }

    .Service_item p {
        font-size: 20px;
        line-height: 45px;
    }

    .Service_number span {
        color: orange;
        margin-top: 0;
        font-size: 50px;
        margin-bottom: 0;
        font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
        font-weight: 900;
        display: none;
    }

    .Service_item_explanationbox ul {
        list-style-type: none;
    }

    .Service_item_explanationbox li {
        position: relative;
        line-height: 1.8;
    }

    .Service_item_explanationbox li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    #reason_for_choosing {
        margin-top: 60px;
        ;
    }

    .reason_for_choosing_container {
        display: flex;
        flex-wrap: wrap;
        /* 折返し指定 */
        justify-content: center;
        margin-top: 60px;
    }


    .reason_for_choosing-inner {
        display: flex;
        flex-wrap: wrap;
        /* 折返し指定 */
        justify-content: center;
        gap: 20px;
        width: 800px;
    }

    .reason_for_choosing-inner_box {
        margin: 0 auto;
        display: block;
        width: 25%;
    }

    .reason_for_choosing-inner_box img {
        width: 100px;
        margin: 0 auto;
        display: block;
    }



    h6 {
        text-align: center;
        margin-top: 0;
        font-size: 15px;
    }


    #price {
        margin-top: 0px;
        margin-bottom: 4rem;
    }

    .price-inner {
        display: flex;
        justify-content: center;
    }

    .price-inner_box {
        width: 55%;
    }

    #price p {
        font-size: 30px;
        color: #222222;
        text-align: center;
        font-weight: 800;
        margin-bottom: 0;
    }

    #mainprice {
        background: linear-gradient(transparent 60%, darkorange 60%);
        font-size: 45px;
    }

    .price-inner_box_bottom {
        text-align: right;
    }

    .price span {
        font-size: 17px;
        margin-top: 0%;
        font-weight: 700;
    }

    #teacher {
        margin-top: 60px;
        ;
    }


    .teacher-inner {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .teacher-inner-left img {
        width: 250px;
    }

    .samplemovie {
        margin-top: 20px;

    }



    .sample-inner {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    h4 {
        color: #222222;
        font-size: 28px;
        width: max-content;
        margin: 0;
        /* background: linear-gradient(transparent 70%, darkorange 70%); */
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro',
    }

    h4 span {
        margin-left: 10px;
    }


    .teacher-name {
        width: 200px;
        text-align: center;
        font-size: 20px;

    }

    .name-top {
        font-size: 12px;

    }

    .teacher-inner-right {
        width: 550px;
    }

    .teacher-inner-right p {
        font-size: 11.5px;
    }

    .teacher-inner-right img {
        width: 500px;
    }

    .name-bottom {
        margin-top: 0;
        background-color: darkorange;
        text-align: center;
        color: white;
    }

    .name-bottom span {
        margin-left: 5px;
        ;
    }




    .review {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-inner {
        display: flex;
        justify-content: center;
        gap: 28px;
        margin-top: 3rem;
    }

    .review-inner-box {
        width: 300px;
        background-color: #f8f8f8;
        border-radius: 20px;
        border: 1px solid #ebebeb;
        padding-bottom: 50px;
    }

    .review-inner-box iframe {
        border-radius: 20px 20px 0px 0px;

    }

    .classification {
        color: #777777;
        font-size: 12px;
        width: max-content;
        margin-left: 5%;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    h5 {
        font-size: 17px;
        color: #222222;
        margin-top: 0;
        margin-bottom: 10px;
        width: max-content;
        margin-left: 5%;

    }

    .comment {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        color: #777777;
    }

    .btnarrow-box {
        margin-left: 55%;
    }

    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/

    /*矢印が右に移動する*/
    .btnarrow4 {
        /*矢印と下線の基点とするためrelativeを指定*/
        position: relative;
        /*形状*/
        display: inline-block;
        padding: 0 20px;
        color: #222222;
        font-weight: 800;
        text-decoration: none;
        outline: none;
        font-size: 14px;
    }

    /*矢印と下線の形状*/
    .btnarrow4::before {
        content: '';
        /*絶対配置で下線の位置を決める*/
        position: absolute;
        bottom: -8px;
        left: 15%;
        /*下線の形状*/
        width: 85%;
        height: 2px;
        background: #777777;
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .btnarrow4::after {
        content: '';
        /*絶対配置で矢印の位置を決める*/
        position: absolute;
        bottom: -3px;
        right: 0;
        /*矢印の形状*/
        width: 15px;
        height: 2px;
        background: #777777;
        transform: rotate(35deg);
        /*アニメーションの指定*/
        transition: all .3s;
    }

    /*hoverした際の移動*/
    .btnarrow4:hover::before {
        left: 20%;
    }

    .btnarrow4:hover::after {
        right: -5%;
    }

    footer {
        background-color: orange;
        text-align: center;
        padding-bottom: 60px;
        padding-top: 30px;
    }



    footer p {
        font-size: 25px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }


    .btn--orange,
    a.btn--orange {
        color: orange;
        background-color: white;
        margin-left: 0;

    }

    .btn--orange:hover,
    a.btn--orange:hover {
        color: #fff;
        background: #f56500;
    }

    a.btn--radius {
        border-radius: 100vh;
        width: 250px;
    }


    .footer-button-area {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

}

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

    .mb_brreason_for_choosing {
        display: block;
    }


}

@media screen and (max-width: 999px) and (min-width: 700px) {


    .main-nav {
        padding-left: 0;
        margin-top: 16px;
        margin-bottom: 14px;
        display: none;
    }

    .top-logo img {
        width: 225px;
        margin-left: 0px;
        margin-right: 0px;
        /* margin-top: 10px; */
    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 8rem;

    }

    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        gap: 30px;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px;
        box-shadow: 0px;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 0px 10px;
        width: 100%;
        max-width: 100%;
        /* margin-top: 20px; */
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 990;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: 50px;
    }

    h1 {
        font-size: 17px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }

    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 16px;
        font-weight: 800;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 10px 0px;

        /* max-width: 100%; */
        color: white;
        vertical-align: bottommiddle;
        margin-left: 10px;
    }

    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {
        position: absolute;
        text-align: center;
        top: 6.5rem;
        left: 11%;

    }

    .top-left-first {
        width: 350px;
        z-index: 555;
    }

    .btntextchange {
        position: relative;
        border-radius: 25px 10px 25px 10px;
        min-width: 210px;
        padding: 15px;
        text-align: center;
        display: inline-block;
        width: 200px;
        /* height: 500px; */
        text-decoration: none;
        color: white;
        outline: none;
        transition: all .2s;
        background-color: orange;
        height: 25px;
        font-weight: 700;
        font-size: 20px;
        z-index: 222;

    }

    h2 {
        font-size: 24px;
        line-height: 35px;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        font-weight: 600;
        color: #222222;

        text-align: left;
        margin-left: 4.5rem;
        font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
    }

    h2 span {
        font-size: 25px;
        font-weight: 700;
        color: var(--theme-colorA);
        letter-spacing: 0.025em;
        line-height: 1;
        margin-bottom: 50px;
        font-family: 'Outfit', sans-serif;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }



    #About {
        margin-top: 55px;
    }

    .About_inner {
        margin-top: 30px;
        margin-left: 0rem;
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
    }

    .About_inner span {
        color: orange;
        font-size: 20px;
        font-weight: 900;
    }

    .vertical-catch {
        margin-right: 1rem;
        margin-top: 14px;
        display: none;
    }

    .vertical-catch p {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 15px;

    }

    .vertical-catch p span {
        color: orange;
        font-size: 15px;
    }

    .About-line {

        border-left: 1px solid #000000;
        padding: 2px 8px;
        display: none;

    }

    .dotted-line {
        border-bottom: 1px dotted #222222;
        width: 550px;
        margin: 0 auto;
    }

    .About-main {
        margin-left: 1rem;
    }


    .About-main p {
        font-size: 12px;
        width: 50%;
        font-weight: 100;
        line-height: 25px;
        margin-top: 10px;
        width: max-content;

    }






    .btn {
        /*アニメーションの起点とするためrelativeを指定*/
        position: relative;
        overflow: hidden;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        border-radius: 2px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        /*アニメーションの指定*/
        transition: ease .2s;
        background-color: orange;
        height: 30px;

        width: 200px;
        margin-top: 5rem;
        margin-left: 50px;
    }

    .btn2 {
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        transition: ease .2s;
        background-color: orange;
        height: 30px;
        width: 150px;
        margin-top: 8.5rem;
        border: 1px solid #222222;
    }


    /*ボタン内spanの形状*/
    .btn2 span {
        position: relative;
        z-index: 3;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        color: white;
        text-align: left;
        font-size: 12px;
    }

    .btn2:hover span {
        color: black;
    }

    .btn2:hover {
        border: 1px solid #222222;
    }

    /*== 背景が流れる（斜め） */
    .bgskew::before {
        content: '';
        /*絶対配置で位置を指定*/
        position: absolute;
        top: 0;
        left: -130%;
        /*色や形状*/
        background-color: #c94208;
        width: 120%;
        height: 100%;
        transform: skewX(-25deg);
        background-color: white;
    }

    /*hoverした時のアニメーション*/
    .bgskew:hover::before {
        animation: skewanime .5s forwards;
        /*アニメーションの名前と速度を定義*/
    }

    @keyframes skewanime {
        100% {
            left: -10%;
            /*画面の見えていない左から右へ移動する終了地点*/
        }
    }

    .btn2:hover .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 20px 0px 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
        transform: rotate(45deg);
    }

    .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 12px 10px 0px 12px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    .Service {
        padding-top: 50px;
        margin-bottom: 50px;
    }

    .Service_item {
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }

    .Service_item_01 {
        width: 250px;
    }

    .Service_number {
        margin-top: 50px;
    }

    .Service_item_02 {
        width: 250px;
        margin-top: 20px;
        border: 1px solid black;
    }

    .Service_item_imgbox {}

    .Service_item_explanationbox {
        margin-right: 0;
        margin-top: 40px;
    }

    .Service_item_explanationbox2 {
        margin-right: 5%;
        margin-top: 20px;
        margin-left: 5%;
    }

    h3 {
        font-size: 20px;
        color: black;
        width: max-content;
        background: linear-gradient(transparent 70%, darkorange 70%);
        margin-bottom: 10px;
        padding: 0 5px 0 5px;
        margin-left: 30px;
        margin-top: 10px;
    }

    .Service_item p {
        font-size: 20px;
        line-height: 45px;
    }

    .Service_number span {
        color: orange;
        margin-top: 0;
        font-size: 50px;
        margin-bottom: 0;
        font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
        font-weight: 900;
        display: none;
    }

    .Service_item_explanationbox ul {
        list-style-type: none;
    }

    .Service_item_explanationbox li {
        position: relative;
        line-height: 1.8;
        font-size: 14px;
    }

    .Service_item_explanationbox li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox2 ul {
        list-style-type: none;
    }

    .Service_item_explanationbox2 li {
        position: relative;
        line-height: 1.8;
        font-size: 14px;
    }

    .Service_item_explanationbox2 li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    #reason_for_choosing {
        margin-top: 60px;
        ;
    }

    .reason_for_choosing_container {
        display: flex;
        flex-wrap: wrap;
        /* 折返し指定 */
        justify-content: center;
        margin-top: 60px;
    }


    .reason_for_choosing-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 600px;

    }

    .reason_for_choosing-inner_box {
        margin: 0 auto;
        display: block;
        width: 25%;
    }

    .reason_for_choosing-inner_box img {
        width: 100px;
        margin: 0 auto;
        display: block;
    }



    h6 {
        text-align: center;
        margin-top: 0;
        font-size: 11px;
    }


    #price {
        margin-top: 0px;
        margin-bottom: 4rem;
    }

    .price-inner {
        display: flex;
        justify-content: center;
    }

    .price-inner_box {
        width: 55%;
    }

    #price p {
        font-size: 20px;
        color: #222222;
        text-align: center;
        font-weight: 800;
        margin-bottom: 0;
    }

    #mainprice {
        background: linear-gradient(transparent 60%, darkorange 60%);
        font-size: 35px;
    }

    .price-inner_box_bottom {
        text-align: right;
    }

    .price span {
        font-size: 17px;
        margin-top: 0%;
        font-weight: 700;
    }

    #teacher {
        margin-top: 60px;
        ;
    }


    .teacher-inner {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .teacher-inner-left img {
        width: 230px;
    }

    .sample-inner {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    h4 {
        color: #222222;
        font-size: 23px;
        width: max-content;
        margin: 0;
        /* background: linear-gradient(transparent 70%, darkorange 70%); */
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro',
    }

    h4 span {
        margin-left: 10px;
    }


    .teacher-name {
        width: 200px;
        text-align: center;
        font-size: 20px;

    }

    .name-top {
        font-size: 12px;

    }

    .teacher-inner-right {
        width: 350px;
    }

    .teacher-inner-right p {
        font-size: 10px;
    }

    .teacher-inner-right img {
        width: 500px;
    }

    .name-bottom {
        margin-top: 0;
        background-color: darkorange;
        text-align: center;
        color: white;
    }

    .name-bottom span {
        margin-left: 5px;
        ;
    }




    .review {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 3rem;
    }

    .review-inner-box {
        width: 300px;
        background-color: #f8f8f8;
        border-radius: 20px;
        border: 1px solid #ebebeb;
        padding-bottom: 50px;
    }

    .review-inner-box iframe {
        border-radius: 20px 20px 0px 0px;

    }

    .classification {
        color: #777777;
        font-size: 12px;
        width: max-content;
        margin-left: 5%;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    h5 {
        font-size: 17px;
        color: #222222;
        margin-top: 0;
        margin-bottom: 10px;
        width: max-content;
        margin-left: 5%;

    }

    .comment {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        color: #777777;
    }

    .btnarrow-box {
        margin-left: 55%;
    }

    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/

    /*矢印が右に移動する*/
    .btnarrow4 {
        /*矢印と下線の基点とするためrelativeを指定*/
        position: relative;
        /*形状*/
        display: inline-block;
        padding: 0 20px;
        color: #222222;
        font-weight: 800;
        text-decoration: none;
        outline: none;
        font-size: 14px;
    }

    /*矢印と下線の形状*/
    .btnarrow4::before {
        content: '';
        /*絶対配置で下線の位置を決める*/
        position: absolute;
        bottom: -8px;
        left: 15%;
        /*下線の形状*/
        width: 85%;
        height: 2px;
        background: #777777;
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .btnarrow4::after {
        content: '';
        /*絶対配置で矢印の位置を決める*/
        position: absolute;
        bottom: -3px;
        right: 0;
        /*矢印の形状*/
        width: 15px;
        height: 2px;
        background: #777777;
        transform: rotate(35deg);
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .samplemovie {
        margin-top: 20px;
        width: 400px;
        height: 200px
    }

    /*hoverした際の移動*/
    .btnarrow4:hover::before {
        left: 20%;
    }

    .btnarrow4:hover::after {
        right: -5%;
    }

    footer {
        background-color: orange;
        text-align: center;
        padding-bottom: 60px;
        padding-top: 30px;
    }

    footer p {
        font-size: 25px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }


    .btn--orange,
    a.btn--orange {
        color: orange;
        background-color: white;
        margin-left: 0;

    }

    .btn--orange:hover,
    a.btn--orange:hover {
        color: #fff;
        background: #f56500;
    }

    a.btn--radius {
        border-radius: 100vh;
        width: 250px;
    }


    .footer-button-area {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

}



@media screen and (max-width: 699px) and (min-width: 500px) {


    .main-nav {
        padding-left: 0;
        margin-top: 16px;
        margin-bottom: 14px;
        display: none;
    }

    .top-logo img {
        width: 155px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 5px;
    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 8rem;

    }

    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        gap: 30px;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px;
        box-shadow: 0px;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 0px 10px;
        width: 100%;
        max-width: 100%;
        /* margin-top: 20px; */
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 990;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: 50px;
    }

    h1 {
        font-size: 17px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }

    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 16px;
        font-weight: 800;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 6px 0px;
        width: 150px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        /* max-width: 100%; */
        color: white;
        vertical-align: bottommiddle;
        margin-left: 10px;
    }

    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {

        position: absolute;
        text-align: center;
        top: 7rem;
        left: 10%;
    }




    .top-left-first {
        width: 340px;
        z-index: 555;
    }

    .btntextchange {
        position: relative;
        border-radius: 20px 10px 20px 10px;
        min-width: 0;
        padding: 20px;
        text-align: center;
        display: inline-block;
        width: 190px;
        /* height: 500px; */
        text-decoration: none;
        color: white;
        outline: none;
        transition: all .2s;
        background-color: orange;
        height: 15px;
        font-weight: 700;
        font-size: 15px;
        z-index: 222;

    }

    h2 {
        font-size: 26px;
        line-height: 30px;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        line-height: 36px;
        letter-spacing: -2px;
        font-weight: 600;
        color: #222222;
        text-align: left;
        margin-left: 3rem;
        font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
    }

    h2 span {
        font-size: 25px;
        font-weight: 700;
        color: var(--theme-colorA);
        letter-spacing: 0.025em;
        line-height: 1;
        margin-bottom: 50px;
        font-family: 'Outfit', sans-serif;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #About {
        margin-top: 50px;
    }

    .About-main br {
        display: none;
    }

    .About_inner {
        margin-top: 0px;
        margin-left: 0rem;
        display: block;
        margin-bottom: 30px;
        margin: 0 auto;
        width: max-content;
        margin-top: 30px;
    }

    .About_inner span {
        color: orange;
        font-size: 20px;
        font-weight: 900;
    }

    .vertical-catch {
        margin-right: 1rem;
        margin-top: 14px;
        display: none;
    }

    .vertical-catch p {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 15px;

    }

    .vertical-catch p span {
        color: orange;
        font-size: 15px;
    }

    .About-line {

        border-left: 1px solid #000000;
        padding: 2px 8px;
        display: none;

    }

    .dotted-line {
        border-bottom: 1px dotted #222222;
        width: 450px;
        margin: 0 auto;
    }

    .About-main {
        margin-left: 0rem;
    }


    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .About-main p {
        font-size: 10px;
        font-weight: 100;
        line-height: 25px;
        margin-top: 10px;
        width: 400px;
    }


    .btn {
        /*アニメーションの起点とするためrelativeを指定*/
        position: relative;
        overflow: hidden;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        border-radius: 2px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        /*アニメーションの指定*/
        transition: ease .2s;
        background-color: orange;
        height: 30px;

        width: 200px;
        margin-top: 5rem;
        margin-left: 50px;
    }

    .btn2 {
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        transition: ease .2s;
        background-color: orange;
        height: 25px;
        width: 100px;
        display: none;
        margin-top: 0.5rem;
        border: 1px solid #222222;
    }

    .About-main_container {
        width: 500px;
        display: flex;
        margin: 0 auto;
        width: 400px;
    }


    /*ボタン内spanの形状*/
    .btn2 span {
        position: relative;
        z-index: 3;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        color: white;
        text-align: left;
        font-size: 12px;
    }

    .btn2:hover span {
        color: black;
    }

    .btn2:hover {
        border: 1px solid #222222;
    }

    /*== 背景が流れる（斜め） */
    .bgskew::before {
        content: '';
        /*絶対配置で位置を指定*/
        position: absolute;
        top: 0;
        left: -130%;
        /*色や形状*/
        background-color: #c94208;
        width: 120%;
        height: 100%;
        transform: skewX(-25deg);
        background-color: white;
    }

    /*hoverした時のアニメーション*/
    .bgskew:hover::before {
        animation: skewanime .5s forwards;
        /*アニメーションの名前と速度を定義*/
    }

    @keyframes skewanime {
        100% {
            left: -10%;
            /*画面の見えていない左から右へ移動する終了地点*/
        }
    }

    .btn2:hover .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 20px 0px 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
        transform: rotate(45deg);
    }

    .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    .Service {
        padding-top: 0px;
        margin-top: 4rem;
        margin-bottom: 40px;
    }

    .Service_item {
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }

    .Service_item_01 {
        width: 200px;
    }

    .Service_number {
        margin-top: 50px;
    }

    .Service_item_02 {
        width: 200px;
        margin-top: 0px;
        border: 1px solid black;
    }

    .Service_item_imgbox {}

    .Service_item_explanationbox {
        margin-right: 0;
        margin-top: 40px;
    }

    .Service_item_explanationbox2 {
        margin-right: 5%;
        margin-top: 0px;
        margin-left: 5%;
    }

    h3 {
        font-size: 18px;
        color: black;
        width: max-content;
        background: linear-gradient(transparent 70%, darkorange 70%);
        margin-bottom: 10px;
        padding: 0 5px 0 5px;
        margin-left: 0px;
        margin-top: 10px;
    }

    .Service_item p {
        font-size: 20px;
        line-height: 45px;
    }

    .Service_number span {
        color: orange;
        margin-top: 0;
        font-size: 50px;
        margin-bottom: 0;
        font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
        font-weight: 900;
        display: none;
    }

    .Service_item_explanationbox ul {
        list-style-type: none;
    }

    .Service_item_explanationbox li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox2 ul {
        list-style-type: none;
    }

    .Service_item_explanationbox2 li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox2 li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox ul {
        padding-left: 10px;
    }

    .Service_item_explanationbox2 ul {
        padding-left: 10px;
    }

    #reason_for_choosing {
        margin-top: 60px;
        ;
    }

    .reason_for_choosing_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }

    .reason_for_choosing-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 450px;
    }



    .reason_for_choosing-inner_box {
        margin: 0 auto;
        display: block;
        width: 25%;
    }

    .reason_for_choosing-inner_box img {
        width: 80px;
        margin: 0 auto;
        display: block;
    }



    h6 {
        text-align: center;
        margin-top: 0;
        font-size: 11px;
        margin-bottom: 0;
    }


    #price {
        margin-top: 0px;
        margin-bottom: 2rem;
    }

    .price-inner {
        display: flex;
        justify-content: center;
    }

    .price-inner_box {
        width: 85%;
    }

    #price p {
        font-size: 20px;
        color: #222222;
        text-align: center;
        font-weight: 800;
        margin-bottom: 0;
    }

    #mainprice {
        background: linear-gradient(transparent 60%, darkorange 60%);
        font-size: 35px;
    }

    .price-inner_box_bottom {
        text-align: right;
    }

    .arrow-right {
        display: none;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    #teacher {
        margin-top: 4rem;
    }

    .dotted-line {
        display: none;
    }


    .teacher-inner {
        margin-top: 30px;
        display: block;
    }

    .teacher-inner-left img {
        width: 150px;
    }

    .teacher-inner-left {
        text-align: center;
    }

    .sample-inner {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #sample {
        margin-top: 4rem;
    }

    h4 {
        color: #222222;
        font-size: 23px;
        width: max-content;
        margin: 0;
        /* background: linear-gradient(transparent 70%, darkorange 70%); */
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro',
    }

    h4 span {
        margin-left: 10px;
    }





    .teacher-name {
        width: 200px;
        text-align: center;
        font-size: 20px;

    }

    .name-top {
        font-size: 12px;

    }

    #review {
        margin-top: 4rem;
        margin-bottom: 50px;
    }

    .teacher-inner-right {
        display: block;
        width: 380px;
        margin: 0 auto;

    }

    .teacher-inner-right p {
        font-size: 10px;
    }

    .teacher-inner-right img {
        width: 500px;
    }

    .name-bottom {
        margin-top: 0;
        background-color: darkorange;
        text-align: center;
        color: white;
    }

    .name-bottom span {
        margin-left: 5px;
    }




    .review {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 2rem;
    }

    .review-inner-box {
        width: 300px;
        background-color: #f8f8f8;
        border-radius: 20px;
        border: 1px solid #ebebeb;
        padding-bottom: 50px;
    }

    .review-inner-box iframe {
        border-radius: 20px 20px 0px 0px;

    }

    .classification {
        color: #777777;
        font-size: 12px;
        width: max-content;
        margin-left: 5%;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    h5 {
        font-size: 17px;
        color: #222222;
        margin-top: 0;
        margin-bottom: 10px;
        width: max-content;
        margin-left: 5%;

    }

    .comment {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        color: #777777;
    }

    .btnarrow-box {
        margin-left: 55%;
    }

    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/

    /*矢印が右に移動する*/
    .btnarrow4 {
        /*矢印と下線の基点とするためrelativeを指定*/
        position: relative;
        /*形状*/
        display: inline-block;
        padding: 0 20px;
        color: #222222;
        font-weight: 800;
        text-decoration: none;
        outline: none;
        font-size: 14px;
    }

    /*矢印と下線の形状*/
    .btnarrow4::before {
        content: '';
        /*絶対配置で下線の位置を決める*/
        position: absolute;
        bottom: -8px;
        left: 15%;
        /*下線の形状*/
        width: 85%;
        height: 2px;
        background: #777777;
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .btnarrow4::after {
        content: '';
        /*絶対配置で矢印の位置を決める*/
        position: absolute;
        bottom: -3px;
        right: 0;
        /*矢印の形状*/
        width: 15px;
        height: 2px;
        background: #777777;
        transform: rotate(35deg);
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .samplemovie {
        margin-top: 20px;
        width: 400px;
        height: 200px
    }

    /*hoverした際の移動*/
    .btnarrow4:hover::before {
        left: 20%;
    }

    .btnarrow4:hover::after {
        right: -5%;
    }

    footer {
        background-color: orange;
        text-align: center;
        padding-bottom: 60px;
        padding-top: 30px;
    }

    footer p {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }


    .btn--orange,
    a.btn--orange {
        color: orange;
        background-color: white;
        margin-left: 0;

    }

    .btn--orange:hover,
    a.btn--orange:hover {
        color: #fff;
        background: #f56500;
    }

    a.btn--radius {
        border-radius: 100vh;
        width: 200px;
    }


    .footer-button-area {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
}


@media screen and (max-width: 499px) and (min-width: 450px) {

    .bar {
        position: fixed;
        z-index: 999;
        width: 0.6rem;
        height: 100%;
        top: 0;
        left: 0;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
    }

    .main-nav {
        padding-left: 0;
        margin-top: 16px;
        margin-bottom: 14px;
        display: none;
    }

    .top-logo img {
        width: 170px;
        margin-left: 30px;
        margin-right: 0px;
        margin-top: 5px;

    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 3rem;

    }

    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        gap: 30px;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px;
        box-shadow: 0px;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 0px 10px;
        width: 100%;
        max-width: 100%;
        /* margin-top: 20px; */
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 990;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: max-content;
    }

    h1 {
        font-size: 14px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }

    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 13px;
        font-weight: 800;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 6px 10px;
        width: 120px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        /* max-width: 100%; */
        color: white;
        vertical-align: bottommiddle;
        margin-left: 0px;
    }

    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {

        position: absolute;
        text-align: center;
        top: 6rem;
        left: 10%;
    }




    .top-left-first {
        width: 250px;
        z-index: 555;
    }

    .btntextchange {
        position: relative;
        border-radius: 20px 10px 20px 10px;
        min-width: 0;
        padding: 12px;
        text-align: center;
        display: inline-block;
        width: 150px;
        /* height: 500px; */
        text-decoration: none;
        color: white;
        outline: none;
        transition: all .2s;
        background-color: orange;
        height: 15px;
        font-weight: 700;
        font-size: 15px;
        z-index: 222;

    }

    h2 {
        font-size: 23px;
        line-height: 30px;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        line-height: 35px;
        letter-spacing: -2px;
        font-weight: 600;
        color: #222222;
        text-align: left;
        margin-left: 2rem;
        font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
    }

    h2 span {
        font-size: 25px;
        font-weight: 700;
        color: var(--theme-colorA);
        letter-spacing: 0.025em;
        line-height: 1;
        margin-bottom: 50px;
        font-family: 'Outfit', sans-serif;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #About {
        margin-top: 50px;
    }

    .About-main br {
        display: none;
    }

    .About_inner {
        margin-top: 20px;
        margin-left: 0rem;
        display: block;
        width: max-content;
        margin: 0 auto;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .About_inner span {
        color: orange;
        font-size: 20px;
        font-weight: 900;
    }

    .vertical-catch {
        margin-right: 1rem;
        margin-top: 14px;
        display: none;
    }

    .vertical-catch p {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 15px;

    }

    .vertical-catch p span {
        color: orange;
        font-size: 15px;
    }

    .About-line {

        border-left: 1px solid #000000;
        padding: 2px 8px;
        display: none;

    }

    .dotted-line {
        border-bottom: 1px dotted #222222;
        width: 450px;
        margin: 0 auto;
    }

    .About-main {
        margin-left: 0rem;
    }

    .About-main_container {
        width: 320px;
    }


    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .About-main p {
        font-size: 10px;
        font-weight: 100;
        line-height: 20px;
        margin-top: 10px;
        width: 380px;
    }


    .btn {
        /*アニメーションの起点とするためrelativeを指定*/
        position: relative;
        overflow: hidden;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        border-radius: 2px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        /*アニメーションの指定*/
        transition: ease .2s;
        background-color: orange;
        height: 30px;

        width: 200px;
        margin-top: 5rem;
        margin-left: 50px;
    }

    .btn2 {
        display: none;
    }

    .About-main_container {
        width: 500px;
        display: block;
        margin: 0 auto;
        width: 380px;
    }


    /*ボタン内spanの形状*/
    .btn2 span {
        position: relative;
        z-index: 3;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        color: white;
        text-align: left;
        font-size: 12px;
    }

    .btn2:hover span {
        color: black;
    }

    .btn2:hover {
        border: 1px solid #222222;
    }

    /*== 背景が流れる（斜め） */
    .bgskew::before {
        content: '';
        /*絶対配置で位置を指定*/
        position: absolute;
        top: 0;
        left: -130%;
        /*色や形状*/
        background-color: #c94208;
        width: 120%;
        height: 100%;
        transform: skewX(-25deg);
        background-color: white;
    }

    /*hoverした時のアニメーション*/
    .bgskew:hover::before {
        animation: skewanime .5s forwards;
        /*アニメーションの名前と速度を定義*/
    }

    @keyframes skewanime {
        100% {
            left: -10%;
            /*画面の見えていない左から右へ移動する終了地点*/
        }
    }

    .btn2:hover .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 20px 0px 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
        transform: rotate(45deg);
    }

    .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    .Service {
        padding-top: 0px;
        margin-top: 4rem;
        margin-bottom: 40px;
    }

    .Service_item {
        display: block;
        justify-content: center;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_01 {
        width: 180px;
    }

    .Service_number {
        margin-top: 0px;
    }

    .Service_inner_container {
        margin: 0 auto;
        display: block;
        width: 300px;
        width: max-content;
    }

    .Service_item_02 {
        width: 200px;
        margin-top: 0px;
        border: 1px solid black;
        display: none;
    }

    .Service_item_imgbox {
        margin: 0 auto;
        width: max-content;
    }

    .Service_item_explanationbox {
        margin-right: 0;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_explanationbox2 {
        margin-right: 0;
        margin-top: 50px;
        margin-left: 0%;
        width: max-content;

    }

    h3 {
        font-size: 21px;
        color: black;
        width: max-content;
        background: linear-gradient(transparent 70%, darkorange 70%);
        margin-bottom: 10px;
        padding: 0 5px 0 5px;
        margin-left: 0px;
        margin-top: -20px;
    }

    .Service_item p {
        font-size: 20px;
        line-height: 45px;
    }

    .Service_number span {
        color: orange;
        margin-top: 0;
        font-size: 50px;
        margin-bottom: 0;
        font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
        font-weight: 900;
        display: none;
    }

    .Service_item_explanationbox ul {
        list-style-type: none;
    }

    .Service_item_explanationbox li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox2 ul {
        list-style-type: none;
    }

    .Service_item_explanationbox2 li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox2 li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox ul {
        padding-left: 10px;
    }

    .Service_item_explanationbox2 ul {
        padding-left: 10px;
    }

    #reason_for_choosing {
        margin-top: 60px;
        ;
    }

    .reason_for_choosing_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }

    .reason_for_choosing-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 300px;
    }



    .reason_for_choosing-inner_box {
        margin: 0 auto;
        display: block;
        width: 45%;
    }

    .reason_for_choosing-inner_box img {
        width: 80px;
        margin: 0 auto;
        display: block;
    }



    h6 {
        text-align: center;
        margin-top: 0;
        font-size: 10px;
        margin-bottom: 0;
    }


    #price {
        margin-top: 0px;
        margin-bottom: 2rem;
    }

    .price-inner {
        display: flex;
        justify-content: center;
    }

    .price-inner_box {
        width: 85%;
    }

    #price p {
        font-size: 20px;
        color: #222222;
        text-align: center;
        font-weight: 800;
        margin-bottom: 0;
    }

    #mainprice {
        background: linear-gradient(transparent 60%, darkorange 60%);
        font-size: 23px;
    }

    .price-inner_box_bottom {
        text-align: right;
    }

    .price-inner_box_bottom span {
        font-size: 10px;
    }

    .arrow-right {
        display: none;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    #teacher {
        margin-top: 4rem;
    }

    .dotted-line {
        display: none;
    }


    .teacher-inner {
        margin-top: 30px;
        display: block;
    }

    .teacher-inner-left img {
        width: 150px;
    }

    .teacher-inner-left {
        text-align: center;
    }

    .sample-inner {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #sample {
        margin-top: 4rem;
    }

    h4 {
        color: #222222;
        font-size: 23px;
        width: max-content;
        margin: 0;
        /* background: linear-gradient(transparent 70%, darkorange 70%); */
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro',
    }

    h4 span {
        margin-left: 10px;
    }





    .teacher-name {
        width: 200px;
        text-align: center;
        font-size: 20px;

    }

    .name-top {
        font-size: 12px;

    }

    #review {
        margin-top: 4rem;
        margin-bottom: 50px;
    }

    .teacher-inner-right {
        display: block;
        width: 380px;
        margin: 0 auto;

    }

    .teacher-inner-right p {
        font-size: 10px;
    }

    .teacher-inner-right img {
        width: 500px;
    }

    .name-bottom {
        margin-top: 0;
        background-color: darkorange;
        text-align: center;
        color: white;
    }

    .name-bottom span {
        margin-left: 5px;
        ;
    }




    .review {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 2rem;
    }

    .review-inner-box {
        width: 300px;
        background-color: #f8f8f8;
        border-radius: 20px;
        border: 1px solid #ebebeb;
        padding-bottom: 30px;
    }

    .review-inner-box iframe {
        border-radius: 20px 20px 0px 0px;

    }

    .classification {

        color: #777777;
        font-size: 11px;
        width: max-content;
        margin-left: 5%;
        margin-bottom: 5px;
        margin-top: 5px;

    }

    h5 {
        font-size: 17px;
        color: #222222;
        margin-top: 0;
        margin-bottom: 10px;
        width: max-content;
        margin-left: 5%;

    }

    .comment {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        color: #777777;
    }

    .btnarrow-box {
        margin-left: 55%;
    }

    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/

    /*矢印が右に移動する*/
    .btnarrow4 {
        /*矢印と下線の基点とするためrelativeを指定*/
        position: relative;
        /*形状*/
        display: inline-block;
        padding: 0 20px;
        color: #222222;
        font-weight: 800;
        text-decoration: none;
        outline: none;
        font-size: 14px;
    }

    /*矢印と下線の形状*/
    .btnarrow4::before {
        content: '';
        /*絶対配置で下線の位置を決める*/
        position: absolute;
        bottom: -8px;
        left: 15%;
        /*下線の形状*/
        width: 85%;
        height: 2px;
        background: #777777;
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .btnarrow4::after {
        content: '';
        /*絶対配置で矢印の位置を決める*/
        position: absolute;
        bottom: -3px;
        right: 0;
        /*矢印の形状*/
        width: 15px;
        height: 2px;
        background: #777777;
        transform: rotate(35deg);
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .samplemovie {
        margin-top: 20px;
        width: 400px;
        height: 200px
    }

    /*hoverした際の移動*/
    .btnarrow4:hover::before {
        left: 20%;
    }

    .btnarrow4:hover::after {
        right: -5%;
    }

    .samplemovie {
        width: 270px;
        height: 150px;
    }

    footer {
        background-color: orange;
        text-align: center;
        padding-bottom: 30px;
        padding-top: 10px;
    }

    footer p {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }


    .btn--orange,
    a.btn--orange {
        color: orange;
        background-color: white;
        margin-left: 0;

    }

    .btn--orange:hover,
    a.btn--orange:hover {
        color: #fff;
        background: #f56500;
    }

    a.btn--radius {
        border-radius: 100vh;
        width: 160px;
        padding: 10px;
    }


    .footer-button-area {
        display: flex;

        gap: 10px;
        justify-content: center;
    }
}



@media screen and (max-width: 449px) and (min-width: 380px) {

    .bar {
        position: fixed;
        z-index: 999;
        width: 0.6rem;
        height: 100%;
        top: 0;
        left: 0;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
    }

    .main-nav {
        padding-left: 0;
        margin-top: 16px;
        margin-bottom: 14px;
        display: none;
    }

    .top-logo img {
        width: 170px;
        margin-left: 30px;
        margin-right: 0px;
        margin-top: 5px;

    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 1rem;
    }


    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        gap: 30px;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px;
        box-shadow: 0px;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 0px 10px;
        width: 100%;
        max-width: 100%;
        /* margin-top: 20px; */
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 990;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: max-content;
    }

    h1 {
        font-size: 14px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }

    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 13px;
        font-weight: 800;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 6px 0px;
        width: 120px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        /* max-width: 100%; */
        color: white;
        vertical-align: bottommiddle;
        margin-left: 0px;
        margin-right: 10px;
    }

    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {

        position: absolute;
        text-align: center;
        top: 5.5rem;
        left: 8.4%;
    }




    .top-left-first {
        width: 230px;
        z-index: 555;
    }

    .btntextchange {
        position: relative;
        border-radius: 10px 3px 10px 3px;
        min-width: 0;
        padding: 10px;
        text-align: center;
        display: inline-block;
        width: 150px;
        /* height: 500px; */
        text-decoration: none;
        color: white;
        outline: none;
        transition: all .2s;
        background-color: orange;
        height: 15px;
        font-weight: 700;
        font-size: 15px;
        z-index: 222;
    }

    h2 {
        font-size: 21px;
        line-height: 30px;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        line-height: 30px;
        letter-spacing: -2px;
        font-weight: 600;
        color: #222222;
        text-align: left;
        margin-left: 1.5rem;
        font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
    }

    h2 span {
        font-size: 25px;
        font-weight: 700;
        color: var(--theme-colorA);
        letter-spacing: 0.025em;
        line-height: 1;
        margin-bottom: 50px;
        font-family: 'Outfit', sans-serif;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #About {
        margin-top: 50px;
    }

    .About-main br {
        display: none;
    }

    .About_inner {
        margin-top: 20px;
        margin-left: 0rem;
        display: block;
        margin-bottom: 30px;
        margin: 0 auto;
        width: max-content;
        margin-top: 30px;
    }

    .About_inner span {
        color: orange;
        font-size: 20px;
        font-weight: 900;
    }

    .vertical-catch {
        margin-right: 1rem;
        margin-top: 14px;
        display: none;
    }

    .vertical-catch p {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 15px;

    }

    .vertical-catch p span {
        color: orange;
        font-size: 15px;
    }

    .About-line {

        border-left: 1px solid #000000;
        padding: 2px 8px;
        display: none;

    }

    .dotted-line {
        border-bottom: 1px dotted #222222;
        width: 450px;
        margin: 0 auto;
    }

    .About-main {
        margin-left: 0rem;
    }

    .About-main_container {
        width: 320px;
    }


    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .About-main p {
        font-size: 10px;
        font-weight: 100;
        line-height: 20px;
        margin-top: 10px;
        width: 300px;
    }


    .btn {
        /*アニメーションの起点とするためrelativeを指定*/
        position: relative;
        overflow: hidden;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        border-radius: 2px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        /*アニメーションの指定*/
        transition: ease .2s;
        background-color: orange;
        height: 30px;

        width: 200px;
        margin-top: 5rem;
        margin-left: 50px;
    }

    .btn2 {
        display: none;
    }

    .About-main_container {
        width: 500px;
        display: block;
        margin: 0 auto;
        width: 300px;
    }


    /*ボタン内spanの形状*/
    .btn2 span {
        position: relative;
        z-index: 3;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        color: white;
        text-align: left;
        font-size: 12px;
    }

    .btn2:hover span {
        color: black;
    }

    .btn2:hover {
        border: 1px solid #222222;
    }

    /*== 背景が流れる（斜め） */
    .bgskew::before {
        content: '';
        /*絶対配置で位置を指定*/
        position: absolute;
        top: 0;
        left: -130%;
        /*色や形状*/
        background-color: #c94208;
        width: 120%;
        height: 100%;
        transform: skewX(-25deg);
        background-color: white;
    }

    /*hoverした時のアニメーション*/
    .bgskew:hover::before {
        animation: skewanime .5s forwards;
        /*アニメーションの名前と速度を定義*/
    }

    @keyframes skewanime {
        100% {
            left: -10%;
            /*画面の見えていない左から右へ移動する終了地点*/
        }
    }

    .btn2:hover .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 20px 0px 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
        transform: rotate(45deg);
    }

    .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    .Service {
        padding-top: 0px;
        margin-top: 4rem;
        margin-bottom: 40px;
    }

    .Service_item {
        display: block;
        justify-content: center;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_01 {
        width: 180px;
    }

    .Service_number {
        margin-top: 0px;
    }

    .Service_inner_container {
        margin: 0 auto;
        display: block;
        width: 300px;
        width: max-content;
    }

    .Service_item_02 {
        width: 200px;
        margin-top: 0px;
        border: 1px solid black;
        display: none;
    }

    .Service_item_imgbox {}

    .Service_item_explanationbox {
        margin-right: 0;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_explanationbox2 {
        margin-right: 0;
        margin-top: 50px;
        margin-left: 0%;
        width: max-content;

    }

    h3 {
        font-size: 17px;
        color: black;
        width: max-content;
        background: linear-gradient(transparent 70%, darkorange 70%);
        margin-bottom: 10px;
        padding: 0 5px 0 5px;
        margin-left: 0px;
        margin-top: -20px;
    }

    .Service_item p {
        font-size: 20px;
        line-height: 45px;
    }

    .Service_number span {
        color: orange;
        margin-top: 0;
        font-size: 50px;
        margin-bottom: 0;
        font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
        font-weight: 900;
        display: none;
    }

    .Service_item_explanationbox ul {
        list-style-type: none;
    }

    .Service_item_explanationbox li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox2 ul {
        list-style-type: none;
    }

    .Service_item_explanationbox2 li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox2 li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox ul {
        padding-left: 10px;
    }

    .Service_item_explanationbox2 ul {
        padding-left: 10px;
    }

    #reason_for_choosing {
        margin-top: 60px;
        ;
    }

    .reason_for_choosing_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }

    .reason_for_choosing-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 300px;
    }



    .reason_for_choosing-inner_box {
        margin: 0 auto;
        display: block;
        width: 45%;
    }

    .reason_for_choosing-inner_box img {
        width: 80px;
        margin: 0 auto;
        display: block;
    }



    h6 {
        text-align: center;
        margin-top: 0;
        font-size: 10px;
        margin-bottom: 0;
    }


    #price {
        margin-top: 0px;
        margin-bottom: 2rem;
    }

    .price-inner {
        display: flex;
        justify-content: center;
    }

    .price-inner_box {
        width: 85%;
    }

    #price p {
        font-size: 15px;
        color: #222222;
        text-align: center;
        font-weight: 800;
        margin-bottom: 0;
        margin-top: 40px;
    }

    #mainprice {
        background: linear-gradient(transparent 60%, darkorange 60%);
        font-size: 23px;
    }

    .price-inner_box_bottom {
        text-align: right;
    }

    .arrow-right {
        display: none;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    #teacher {
        margin-top: 4rem;
    }

    .dotted-line {
        display: none;
    }


    .teacher-inner {
        margin-top: 30px;
        display: block;
    }

    .teacher-inner-left img {
        width: 150px;
    }

    .teacher-inner-left {
        text-align: center;
    }

    .sample-inner {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #sample {
        margin-top: 4rem;
    }

    h4 {
        color: #222222;
        font-size: 23px;
        width: max-content;
        margin: 0;
        /* background: linear-gradient(transparent 70%, darkorange 70%); */
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro',
    }

    h4 span {
        margin-left: 10px;
    }





    .teacher-name {
        width: 200px;
        text-align: center;
        font-size: 20px;

    }

    .name-top {
        font-size: 12px;

    }

    #review {
        margin-top: 4rem;
        margin-bottom: 50px;
    }

    .teacher-inner-right {
        display: block;
        width: 300px;
        margin: 0 auto;

    }

    .teacher-inner-right p {
        font-size: 10px;
    }

    .teacher-inner-right img {
        width: 500px;
    }

    .name-bottom {
        margin-top: 0;
        background-color: darkorange;
        text-align: center;
        color: white;
    }

    .name-bottom span {
        margin-left: 5px;
        ;
    }




    .review {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 2rem;
    }

    .review-inner-box {
        width: 300px;
        background-color: #f8f8f8;
        border-radius: 20px;
        border: 1px solid #ebebeb;
        padding-bottom: 30px;
    }

    .review-inner-box iframe {
        border-radius: 20px 20px 0px 0px;

    }

    .classification {

        color: #777777;
        font-size: 11px;
        width: max-content;
        margin-left: 5%;
        margin-bottom: 5px;
        margin-top: 5px;

    }

    h5 {
        font-size: 17px;
        color: #222222;
        margin-top: 0;
        margin-bottom: 10px;
        width: max-content;
        margin-left: 5%;

    }

    .comment {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        color: #777777;
    }

    .btnarrow-box {
        margin-left: 55%;
    }

    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/

    /*矢印が右に移動する*/
    .btnarrow4 {
        /*矢印と下線の基点とするためrelativeを指定*/
        position: relative;
        /*形状*/
        display: inline-block;
        padding: 0 20px;
        color: #222222;
        font-weight: 800;
        text-decoration: none;
        outline: none;
        font-size: 14px;
    }

    /*矢印と下線の形状*/
    .btnarrow4::before {
        content: '';
        /*絶対配置で下線の位置を決める*/
        position: absolute;
        bottom: -8px;
        left: 15%;
        /*下線の形状*/
        width: 85%;
        height: 2px;
        background: #777777;
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .btnarrow4::after {
        content: '';
        /*絶対配置で矢印の位置を決める*/
        position: absolute;
        bottom: -3px;
        right: 0;
        /*矢印の形状*/
        width: 15px;
        height: 2px;
        background: #777777;
        transform: rotate(35deg);
        /*アニメーションの指定*/
        transition: all .3s;
    }

    .samplemovie {
        margin-top: 20px;
        width: 400px;
        height: 200px
    }

    /*hoverした際の移動*/
    .btnarrow4:hover::before {
        left: 20%;
    }

    .btnarrow4:hover::after {
        right: -5%;
    }

    .samplemovie {
        width: 270px;
        height: 150px;
    }

    footer {
        background-color: orange;
        text-align: center;
        padding-bottom: 30px;
        padding-top: 10px;
    }

    footer p {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }


    .btn--orange,
    a.btn--orange {
        color: orange;
        background-color: white;
        margin-left: 0;

    }

    .btn--orange:hover,
    a.btn--orange:hover {
        color: #fff;
        background: #f56500;
    }

    a.btn--radius {
        border-radius: 100vh;
        width: 160px;
        margin-right: 0px;
    }


    .footer-button-area {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
}

@media screen and (max-width: 379px) and (min-width: 350px) {

    .bar {
        position: fixed;
        z-index: 999;
        width: 0.6rem;
        height: 100%;
        top: 0;
        left: 0;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
    }

    .main-nav {
        padding-left: 0;
        margin-top: 16px;
        margin-bottom: 14px;
        display: none;
    }

    .top-logo img {
        width: 150px;
        margin-left: 20px;
        margin-right: 0px;
        margin-top: 5px;
    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 6.5rem;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        gap: 20px;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px;
        box-shadow: 0px;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 0px 10px;
        width: 100%;
        max-width: 100%;
        /* margin-top: 20px; */
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 990;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: max-content;
    }

    h1 {
        font-size: 12px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }


    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 11px;
        font-weight: 800;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 6px 0px;
        width: 130px;
        margin-right: 10px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        /* max-width: 100%; */
        color: white;
        vertical-align: bottommiddle;
        margin-left: 0px;
    }


    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {
        position: absolute;
        text-align: center;
        top: 5rem;
        left: 9%;
    }

    .top-left-first {
        width: 190px;
        z-index: 555;
    }

    .btntextchange {
        position: relative;
        border-radius: 20px 10px 20px 10px;
        min-width: 0;
        padding: 15px;
        text-align: center;
        display: inline-block;
        width: 120px;
        /* height: 500px; */
        text-decoration: none;
        color: white;
        outline: none;
        transition: all .2s;
        background-color: orange;
        height: 10px;
        font-weight: 700;
        font-size: 12px;
        z-index: 222;
    }

    h2 {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        line-height: 28px;
        letter-spacing: -1px;
        font-weight: 600;
        color: #222222;
        text-align: left;
        margin-left: 1.5rem;
        font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
    }

    h2 span {
        font-size: 25px;
        font-weight: 700;
        color: var(--theme-colorA);
        letter-spacing: 0.025em;
        line-height: 1;
        margin-bottom: 50px;
        font-family: 'Outfit', sans-serif;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #About {
        margin-top: 35px;
    }

    .About-main br {
        display: none;
    }

    .About_inner {
        margin-top: 20px;
        margin-left: 0rem;
        display: block;
        margin-bottom: 30px;
        margin: 0 auto;
        width: max-content;
    }

    .About_inner span {
        color: orange;
        font-size: 20px;
        font-weight: 900;
    }

    .vertical-catch {
        margin-right: 1rem;
        margin-top: 14px;
        display: none;
    }

    .vertical-catch p {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 15px;

    }

    .vertical-catch p span {
        color: orange;
        font-size: 15px;
    }

    .About-line {

        border-left: 1px solid #000000;
        padding: 2px 8px;
        display: none;

    }

    .dotted-line {
        border-bottom: 1px dotted #222222;
        width: 450px;
        margin: 0 auto;
    }

    .About-main {
        margin-left: 0rem;
    }

    .About-main_container {
        width: 320px;
    }


    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 3px;
    }

    .About-main p {
        font-size: 10px;
        font-weight: 100;
        line-height: 20px;
        margin-top: 10px;
        width: 300px;
    }


    .btn {
        /*アニメーションの起点とするためrelativeを指定*/
        position: relative;
        overflow: hidden;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        border-radius: 2px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        /*アニメーションの指定*/
        transition: ease .2s;
        background-color: orange;
        height: 30px;

        width: 200px;
        margin-top: 5rem;
        margin-left: 50px;
    }

    .btn2 {
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        transition: ease .2s;
        background-color: orange;
        height: 25px;
        width: 100px;
        margin-top: 0.5rem;
        border: 1px solid #222222;
        display: none;
    }

    .About-main_container {
        width: 500px;
        display: block;
        margin: 0 auto;
        width: 300px;
    }


    /*ボタン内spanの形状*/
    .btn2 span {
        position: relative;
        z-index: 3;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        color: white;
        text-align: left;
        font-size: 12px;
    }

    .btn2:hover span {
        color: black;
    }

    .btn2:hover {
        border: 1px solid #222222;
    }

    /*== 背景が流れる（斜め） */
    .bgskew::before {
        content: '';
        /*絶対配置で位置を指定*/
        position: absolute;
        top: 0;
        left: -130%;
        /*色や形状*/
        background-color: #c94208;
        width: 120%;
        height: 100%;
        transform: skewX(-25deg);
        background-color: white;
    }

    /*hoverした時のアニメーション*/
    .bgskew:hover::before {
        animation: skewanime .5s forwards;
        /*アニメーションの名前と速度を定義*/
    }

    @keyframes skewanime {
        100% {
            left: -10%;
            /*画面の見えていない左から右へ移動する終了地点*/
        }
    }

    .btn2:hover .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 20px 0px 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
        transform: rotate(45deg);
    }

    .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    .Service {
        padding-top: 0px;
        margin-top: 4rem;
        margin-bottom: 40px;
    }

    .Service_item {
        display: block;
        justify-content: center;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_01 {
        width: 180px;
    }

    .Service_number {
        margin-top: 0px;
    }

    .Service_inner_container {
        margin: 0 auto;
        display: block;
        width: 300px;
        width: max-content;
    }

    .Service_item_02 {
        width: 200px;
        margin-top: 0px;
        border: 1px solid black;
        display: none;
    }

    .Service_item_imgbox {}

    .Service_item_explanationbox {
        margin-right: 0;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_explanationbox2 {
        margin-right: 0;
        margin-top: 50px;
        margin-left: 0%;
        width: max-content;

    }

    h3 {
        font-size: 15px;
        color: black;
        width: max-content;
        background: linear-gradient(transparent 70%, darkorange 70%);
        margin-bottom: 10px;
        padding: 0 5px 0 5px;
        margin-left: 0px;
        margin-top: -20px;
    }

    .Service_item p {
        font-size: 20px;
        line-height: 45px;
    }

    .Service_number span {
        color: orange;
        margin-top: 0;
        font-size: 50px;
        margin-bottom: 0;
        font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
        font-weight: 900;
        display: none;
    }

    .Service_item_explanationbox ul {
        list-style-type: none;
    }

    .Service_item_explanationbox li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox2 ul {
        list-style-type: none;
    }

    .Service_item_explanationbox2 li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox2 li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox ul {
        padding-left: 10px;
    }

    .Service_item_explanationbox2 ul {
        padding-left: 10px;
    }

    #reason_for_choosing {
        margin-top: 60px;
        ;
    }

    .reason_for_choosing_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }

    .reason_for_choosing-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 280px;
    }



    .reason_for_choosing-inner_box {
        margin: 0 auto;
        display: block;
        width: 45%;
    }

    .reason_for_choosing-inner_box img {
        width: 70px;
        margin: 0 auto;
        display: block;
    }



    h6 {
        text-align: center;
        margin-top: 0;
        font-size: 9px;
        margin-bottom: 0;
    }


    #price {
        margin-top: 0px;
        margin-bottom: 2rem;
    }

    .price-inner {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .price-inner_box {
        width: 85%;
    }

    #price p {
        font-size: 13px;
        color: #222222;
        text-align: center;
        font-weight: 800;
        margin-bottom: 0;
    }

    #mainprice {
        background: linear-gradient(transparent 60%, darkorange 60%);
        font-size: 25px;
    }

    .price-inner_box_bottom {
        text-align: right;
        font-size: 10px;
    }

    .arrow-right {
        display: none;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    #teacher {
        margin-top: 4rem;
    }

    .dotted-line {
        display: none;
    }


    .teacher-inner {
        margin-top: 30px;
        display: block;
    }

    .teacher-inner-left img {
        width: 150px;
    }

    .teacher-inner-left {
        text-align: center;
    }

    .sample-inner {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #sample {
        margin-top: 4rem;
    }

    h4 {
        color: #222222;
        font-size: 23px;
        width: max-content;
        margin: 0;
        /* background: linear-gradient(transparent 70%, darkorange 70%); */
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro',
    }

    h4 span {
        margin-left: 10px;
    }





    .teacher-name {
        width: 200px;
        text-align: center;
        font-size: 20px;

    }

    .name-top {
        font-size: 12px;

    }

    #review {
        margin-top: 4rem;
        margin-bottom: 50px;
    }

    .teacher-inner-right {
        display: block;
        width: 300px;
        margin: 0 auto;

    }

    .teacher-inner-right p {
        font-size: 10px;

    }

    .teacher-inner-right img {
        width: 500px;
    }

    .name-bottom {
        margin-top: 0;
        background-color: darkorange;
        text-align: center;
        color: white;

    }

    .name-bottom span {
        margin-left: 5px;
        ;
    }




    .review {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 2rem;
    }

    .review-inner-box {
        width: 270px;
        background-color: #f8f8f8;
        border-radius: 20px;
        border: 1px solid #ebebeb;
        padding-bottom: 30px;
    }

    .review-inner-box iframe {
        border-radius: 20px 20px 0px 0px;

    }

    .review-movie {
        width: 270px;
        height: 150px;
    }

    .classification {

        color: #777777;
        font-size: 11px;
        width: max-content;
        margin-left: 5%;
        margin-bottom: 5px;
        margin-top: 5px;

    }

    h5 {
        font-size: 17px;
        color: #222222;
        margin-top: 0;
        margin-bottom: 10px;
        width: max-content;
        margin-left: 5%;

    }

    .comment {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        color: #777777;
    }

    .btnarrow-box {
        margin-left: 55%;
    }

    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/

    /*矢印が右に移動する*/
    .btnarrow4 {
        /*矢印と下線の基点とするためrelativeを指定*/
        position: relative;
        /*形状*/
        display: inline-block;
        padding: 0 20px;
        color: #222222;
        font-weight: 800;
        text-decoration: none;
        outline: none;
        font-size: 14px;
    }

    .btnarrow4::before {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 24%;
        width: 70%;
        height: 2px;
        background: #777777;
        transition: all .3s;
    }

    .btnarrow4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 5px;
        width: 10px;
        height: 2px;
        background: #777777;
        transform: rotate(35deg);
        transition: all .3s;
    }

    .samplemovie {
        margin-top: 20px;
        width: 400px;
        height: 200px
    }

    /*hoverした際の移動*/
    .btnarrow4:hover::before {
        left: 20%;
    }

    .btnarrow4:hover::after {
        right: -5%;
    }

    .samplemovie {
        width: 270px;
        height: 150px;
    }

    footer {
        background-color: orange;
        text-align: center;
        padding-bottom: 30px;
        padding-top: 10px;
    }

    footer p {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }


    .btn--orange,
    a.btn--orange {
        color: orange;
        background-color: white;
        margin-left: 0;

    }

    .btn--orange:hover,
    a.btn--orange:hover {
        color: #fff;
        background: #f56500;
    }

    a.btn--radius {
        border-radius: 100vh;
        width: 200px;
        padding: 10px;
        height: 30p;
        margin-bottom: 5px;
        font-size: 13px;
    }


    .footer-button-area {
        display: block;
    }
}

@media screen and (max-width: 349px) and (min-width: 320px) {
    .bar {
        position: fixed;
        z-index: 999;
        width: 0.6rem;
        height: 100%;
        top: 0;
        left: 0;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
    }

    .main-nav {
        padding-left: 0;
        margin-top: 16px;
        margin-bottom: 14px;
        display: none;
    }

    .top-logo img {
        width: 130px;
        margin-left: 20px;
        margin-right: 0px;
        margin-top: 5px;
    }

    #wrapper {
        background: url(img/top-background.jpg)no-repeat center;
        background-size: cover;
        height: 6.5rem;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .header-inner {
        position: fixed;
        top: 0;
        display: flex;
        margin: 0;
        gap: 20px;
        padding: 0;
        width: 100%;
        align-items: center;
        background: #FFFFFF;
        border-radius: 0px;
        box-shadow: 0px;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 0px 10px;
        width: 100%;
        max-width: 100%;
        /* margin-top: 20px; */
        padding-top: 10px;
        padding-bottom: 10px;
        z-index: 990;
        animation-name: fadeDownAnime;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        opacity: 0;
        height: max-content;
    }

    h1 {
        font-size: 12px;
        font-weight: 800;
        margin: 0;
        width: max-content;
    }


    a.btn {
        align-items: center;
        background: orange;
        border-bottom: 1px solid orange;
        border-left: 1px solid orange;
        border-radius: 48px;
        border-right: 1px solid orange;
        border-top: 1px solid orange;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        height: auto;
        font-size: 11px;
        font-weight: 800;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        padding: 6px 0px;
        width: 130px;
        margin-right: 10px;
        --gap-h-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 4px;
        --gap-v-c2ca5b25-d2f9-4c06-b34c-8fe565b48156: 0px;
        --gap-uuid: c2ca5b25-d2f9-4c06-b34c-8fe565b48156;
        /* max-width: 100%; */
        color: white;
        vertical-align: bottommiddle;
        margin-left: 0px;
    }


    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 7px;
    }

    .btnlinestretches {
        position: relative;
        color: #333;
        padding: 17px 7px 0px 7px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-weight: 700;
    }

    .top-logo {
        margin-left: 0px;
    }

    .main-nav {
        padding-left: 0;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .top-left {
        position: absolute;
        text-align: center;
        top: 5rem;
        left: 9%;
    }

    .top-left-first {
        width: 190px;
        z-index: 555;
    }

    .btntextchange {
        position: relative;
        border-radius: 20px 10px 20px 10px;
        min-width: 0;
        padding: 15px;
        text-align: center;
        display: inline-block;
        width: 120px;
        /* height: 500px; */
        text-decoration: none;
        color: white;
        outline: none;
        transition: all .2s;
        background-color: orange;
        height: 10px;
        font-weight: 700;
        font-size: 12px;
        z-index: 222;
    }

    h2 {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        line-height: 28px;
        letter-spacing: -1px;
        font-weight: 600;
        color: #222222;
        text-align: left;
        margin-left: 1.5rem;
        font-family: noto sans CJK JP, ヒラギノ角ゴシック ProN, ヒラギノ角ゴシック, Meiryo, MS Pゴシック, sans-serif;
    }

    h2 span {
        font-size: 25px;
        font-weight: 700;
        color: var(--theme-colorA);
        letter-spacing: 0.025em;
        line-height: 1;
        margin-bottom: 50px;
        font-family: 'Outfit', sans-serif;
        background: -webkit-gradient(linear, left bottom, left top, from(#c94208), to(orange));
        background: -webkit-linear-gradient(bottom, #c94208, orange);
        background: linear-gradient(0deg, #c94208, orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #About {
        margin-top: 35px;
    }

    .About-main br {
        display: none;
    }

    .About_inner {
        margin-top: 20px;
        margin-left: 0rem;
        display: block;
        margin-bottom: 30px;
        margin: 0 auto;
        width: max-content;
    }

    .About_inner span {
        color: orange;
        font-size: 20px;
        font-weight: 900;
    }

    .vertical-catch {
        margin-right: 1rem;
        margin-top: 14px;
        display: none;
    }

    .vertical-catch p {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 15px;

    }

    .vertical-catch p span {
        color: orange;
        font-size: 15px;
    }

    .About-line {

        border-left: 1px solid #000000;
        padding: 2px 8px;
        display: none;

    }

    .dotted-line {
        border-bottom: 1px dotted #222222;
        width: 450px;
        margin: 0 auto;
    }

    .About-main {
        margin-left: 0rem;
    }

    .About-main_container {
        width: 320px;
    }


    a.btn:before {
        content: "\f0e0";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 3px;
    }

    .About-main p {
        font-size: 10px;
        font-weight: 100;
        line-height: 17px;
        margin-top: 30px;
        width: 240px;
    }

    .btn {
        /*アニメーションの起点とするためrelativeを指定*/
        position: relative;
        overflow: hidden;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        border-radius: 2px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        /*アニメーションの指定*/
        transition: ease .2s;
        background-color: orange;
        height: 30px;

        width: 200px;
        margin-top: 5rem;
        margin-left: 50px;
    }

    .btn2 {
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
        padding: 10px 20px;
        text-align: center;
        outline: none;
        transition: ease .2s;
        background-color: orange;
        height: 25px;
        width: 100px;
        margin-top: 0.5rem;
        border: 1px solid #222222;
        display: none;
    }

    .About-main_container {
        width: 500px;
        display: flex;
        margin: 0 auto;
        width: 240px;
    }


    /*ボタン内spanの形状*/
    .btn2 span {
        position: relative;
        z-index: 3;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        color: white;
        text-align: left;
        font-size: 12px;
    }

    .btn2:hover span {
        color: black;
    }

    .btn2:hover {
        border: 1px solid #222222;
    }

    /*== 背景が流れる（斜め） */
    .bgskew::before {
        content: '';
        /*絶対配置で位置を指定*/
        position: absolute;
        top: 0;
        left: -130%;
        /*色や形状*/
        background-color: #c94208;
        width: 120%;
        height: 100%;
        transform: skewX(-25deg);
        background-color: white;
    }

    /*hoverした時のアニメーション*/
    .bgskew:hover::before {
        animation: skewanime .5s forwards;
        /*アニメーションの名前と速度を定義*/
    }

    @keyframes skewanime {
        100% {
            left: -10%;
            /*画面の見えていない左から右へ移動する終了地点*/
        }
    }

    .btn2:hover .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 15px 20px 0px 30px;
        border-top: 2px solid black;
        border-right: 2px solid black;
        transform: rotate(45deg);
    }

    .arrow-right {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    .Service {
        padding-top: 0px;
        margin-top: 4rem;
        margin-bottom: 40px;
    }

    .Service_item {
        display: block;
        justify-content: center;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_01 {
        width: 180px;
    }

    .Service_number {
        margin-top: 0px;
    }

    .Service_inner_container {
        margin: 0 auto;
        display: block;
        width: 300px;
        width: max-content;
    }

    .Service_item_02 {
        width: 200px;
        margin-top: 0px;
        border: 1px solid black;
        display: none;
    }

    .Service_item_imgbox {}

    .Service_item_explanationbox {
        margin-right: 0;
        margin-top: 0px;
        width: max-content;
    }

    .Service_item_explanationbox2 {
        margin-right: 0;
        margin-top: 50px;
        margin-left: 0%;
        width: max-content;

    }

    h3 {
        font-size: 15px;
        color: black;
        width: max-content;
        background: linear-gradient(transparent 70%, darkorange 70%);
        margin-bottom: 10px;
        padding: 0 5px 0 5px;
        margin-left: 0px;
        margin-top: -20px;
    }

    .Service_item p {
        font-size: 20px;
        line-height: 45px;
    }

    .Service_number span {
        color: orange;
        margin-top: 0;
        font-size: 50px;
        margin-bottom: 0;
        font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
        font-weight: 900;
        display: none;
    }

    .Service_item_explanationbox ul {
        list-style-type: none;
    }

    .Service_item_explanationbox li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox2 ul {
        list-style-type: none;
    }

    .Service_item_explanationbox2 li {
        position: relative;
        line-height: 1.8;
        font-size: 11px;
    }

    .Service_item_explanationbox2 li::after {
        content: '';
        display: block;
        position: absolute;
        top: .5em;
        left: -1.5em;
        width: 10px;
        height: 5px;
        border-left: 3px solid orange;
        border-bottom: 3px solid orange;
        transform: rotate(-45deg);
    }

    .Service_item_explanationbox ul {
        padding-left: 10px;
    }

    .Service_item_explanationbox2 ul {
        padding-left: 10px;
    }

    #reason_for_choosing {
        margin-top: 60px;
        ;
    }

    .reason_for_choosing_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }

    .reason_for_choosing-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 280px;
    }



    .reason_for_choosing-inner_box {
        margin: 0 auto;
        display: block;
        width: 45%;
    }

    .reason_for_choosing-inner_box img {
        width: 70px;
        margin: 0 auto;
        display: block;
    }



    h6 {
        text-align: center;
        margin-top: 0;
        font-size: 9px;
        margin-bottom: 0;
    }


    #price {
        margin-top: 0px;
        margin-bottom: 2rem;
    }

    .price-inner {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .price-inner_box {
        width: 85%;
    }

    #price p {
        font-size: 13px;
        color: #222222;
        text-align: center;
        font-weight: 800;
        margin-bottom: 0;
    }

    #mainprice {
        background: linear-gradient(transparent 60%, darkorange 60%);
        font-size: 23px;
    }

    .price-inner_box_bottom {
        text-align: right;
        font-size: 10px;
    }

    .arrow-right {
        display: none;
        width: 6px;
        height: 6px;
        margin: 4px 0px 0px 4px;
        border-top: 2px solid white;
        border-right: 2px solid white;
        transform: rotate(45deg);
    }

    #teacher {
        margin-top: 4rem;
    }

    .dotted-line {
        display: none;
    }


    .teacher-inner {
        margin-top: 30px;
        display: block;
    }

    .teacher-inner-left img {
        width: 150px;
    }

    .teacher-inner-left {
        text-align: center;
    }

    .sample-inner {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #sample {
        margin-top: 4rem;
    }

    h4 {
        color: #222222;
        font-size: 20px;
        width: max-content;
        margin: 0;
        /* background: linear-gradient(transparent 70%, darkorange 70%); */
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro',
    }

    h4 span {
        margin-left: 10px;
    }





    .teacher-name {
        width: 200px;
        text-align: center;
        font-size: 20px;

    }

    .name-top {
        font-size: 12px;

    }

    #review {
        margin-top: 4rem;
        margin-bottom: 50px;
    }

    .teacher-inner-right {
        display: block;
        width: 280px;
        margin: 0 auto;

    }

    .teacher-inner-right p {
        font-size: 10px;

    }

    .teacher-inner-right img {
        width: 500px;
    }

    .name-bottom {
        margin-top: 0;
        background-color: darkorange;
        text-align: center;
        color: white;

    }

    .name-bottom span {
        margin-left: 5px;
        ;
    }




    .review {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 2rem;
    }

    .review-inner-box {
        width: 270px;
        background-color: #f8f8f8;
        border-radius: 20px;
        border: 1px solid #ebebeb;
        padding-bottom: 30px;
    }

    .review-inner-box iframe {
        border-radius: 20px 20px 0px 0px;

    }

    .review-movie {
        width: 270px;
        height: 150px;
    }

    .classification {

        color: #777777;
        font-size: 11px;
        width: max-content;
        margin-left: 5%;
        margin-bottom: 5px;
        margin-top: 5px;

    }

    h5 {
        font-size: 17px;
        color: #222222;
        margin-top: 0;
        margin-bottom: 10px;
        width: max-content;
        margin-left: 5%;

    }

    .comment {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        color: #777777;
    }

    .btnarrow-box {
        margin-left: 55%;
    }

    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/
    /*矢印の移動モーション*/

    /*矢印が右に移動する*/
    .btnarrow4 {
        /*矢印と下線の基点とするためrelativeを指定*/
        position: relative;
        /*形状*/
        display: inline-block;
        padding: 0 20px;
        color: #222222;
        font-weight: 800;
        text-decoration: none;
        outline: none;
        font-size: 14px;
    }

    .btnarrow4::before {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 24%;
        width: 70%;
        height: 2px;
        background: #777777;
        transition: all .3s;
    }

    .btnarrow4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 5px;
        width: 10px;
        height: 2px;
        background: #777777;
        transform: rotate(35deg);
        transition: all .3s;
    }

    .samplemovie {
        margin-top: 20px;
        width: 400px;
        height: 200px
    }

    /*hoverした際の移動*/
    .btnarrow4:hover::before {
        left: 20%;
    }

    .btnarrow4:hover::after {
        right: -5%;
    }

    .samplemovie {
        width: 270px;
        height: 150px;
    }

    footer {
        background-color: orange;
        text-align: center;
        padding-bottom: 30px;
        padding-top: 10px;
    }

    footer p {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }


    .btn--orange,
    a.btn--orange {
        color: orange;
        background-color: white;
        margin-left: 0;

    }

    .btn--orange:hover,
    a.btn--orange:hover {
        color: #fff;
        background: #f56500;
    }

    a.btn--radius {
        border-radius: 100vh;
        width: 200px;
        padding: 10px;
        height: 30p;
        margin-bottom: 5px;
        font-size: 13px;
    }


    .footer-button-area {
        display: block;
    }
}