*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
html,body{
    width: 100%;
    height: 100%;
}
html{
    font-size: 62.5%;
}
body{
    font-family: 'Noto Sans JP', "源ノ角ゴシック Regular", 源ノ角ゴシック, 游ゴシック体, "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.6em;
    letter-spacing: .13em;
    line-height: 1.7em;
    color: #121212;
}
a{
    color: #121212;
    border: none;
}

/* COLOR */
.bk-white{
    background-color: white;
}
.bk-gray{
    background-color: #F0F0F0;
}
.bk-black{
    background-color: #121212;
}
.bk-yellow{
    background-color: #EDED24;
}
.bd-yellow{
    border-color: #EDED24;
}
.txt-white{
    color: white;
}
.txt-yellow{
    color:#EDED24;
}
.bd-white{
    border-color: white;
}
.bd-blue{
    border-color: #3984AA;
}

/* COMMON */
h1{
    font-size: 100px;
    line-height: 1em;
}
h2{
    font-size: 100px;
    line-height: 1em;
    display: inline-block;
}
.h-en{
    font-family: Arial, 'Noto Sans JP', sans-serif;
}
section{
    position: relative;
    padding: 70px 0;
}
.bk{
    position: absolute;
    z-index: -10;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
}
img{
    width: 100%;
    vertical-align: bottom;
}
.small{
    font-size: .75em;
}
.flex{
    display: flex;
}
.f-between{
    justify-content: space-between;
}
.f-end{
    justify-content: end;
}
.f-center{
    justify-content: center;
}
.f-align-center{
    align-items:center;
}
.f-align-end{
    align-items:end;
}
.f-column{
    flex-direction: column;
}
.bold{
    font-weight: bold;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
.left{
    text-align: left;
}
.spacer-s{
    margin-top: 16px;
}
.spacer-m{
    margin-top: 32px;
}
.spacer-l{
    margin-top: 60px;
}
.bd-bottom_s{
    border-bottom-width: 2px;
    border-bottom-style: solid;
}
.bd-bottom_m{
    border-bottom-width: 3px;
    border-bottom-style: solid;
}
.bd-bottom_l{
    border-bottom-width: 6px;
    border-bottom-style: solid;
}
.bd-m{
    border-width: 3px;
    border-bottom-style: solid;
}
a.btn,
nav li a{
    transition: color .3s;
}
a.btn:hover,
nav li a:hover{
    color: #EDED24;
}
.hasbk-caption span{
    padding: 0.2em .5em;
    display: inline-block;
    margin: 8px 0;
    font-size: 30px;
}

/* PARTS */
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.sub-container{
    max-width: 820px;
    margin:0 auto;
}
.tt{
    margin-top: 84px;
    border-bottom: 1px solid;
}
.map iframe{
    width: 100%;
    min-height: 600px;
}
.cap{
    position: relative;
    font-size: 24px;
}
.checkBox{
    margin-left: 40px;
    gap: 24px;
}
.checkBox li{
    position: relative;
    display: inline-block;
    width: 47%;
}
.checkBox li::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -40px;
    width: 30px;
    height: 26px;
    background-image: url('/img/check.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.courseTitle{
    display: inline-block;
    padding: 2px 4px;
}
.oz{
    position: relative;
    padding-left: 2.5em;
}
.oz::before{
    content: "";
    background-repeat: no-repeat;
    background-image: url('/img/oz-numbers.png');
    background-size: 8em;
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 2.25em;
    height: 2.1em;
}
.reasonsbox > div:nth-child(1) .oz::before{
    background-position: 0px;
}
.reasonsbox > div:nth-child(2) .oz::before{
    background-position: -52px;
}
.reasonsbox > div:nth-child(3) .oz::before{
    background-position: -107px;
}
a.btn{
    display: inline-block;
    border-radius: 24px;
    padding: 12px 24px;
}
@media (max-width:1248px) {
    .container{
        padding: 0 24px;
        width: calc(100% - 48px);
        margin: unset;
    }
}
@media (max-width:820px) {
    .sub-container{
        width: calc(100% - 48px);
        padding: 0 24px;
        margin: unset;
    }
    .container .sub-container{
        padding: 0;
        width: 100%;
    }
}
@media(min-width:768px) and (max-width:1248px) {
    .flex-d-column-md{
        flex-direction: column !important;
    }
    .flex-d-column-reverse-md{
        flex-direction: column-reverse !important;
    }
    .spacer-s-md{
        margin-top: 16px !important;
    }
    .spacer-m-md{
        margin-top: 24px !important;
    }
    .spacer-l-md{
        margin-top: 36px !important;
    }
    .f-center-md{
        justify-content: center !important;
    }
    .d-none-md{
        display: none;
    }
}
@media (min-width:920px) and (max-width:1248px) {
    .flex-d-column-md{
        flex-direction: row !important;
    }
    .flex-d-column-reverse-md{
        flex-direction: row !important;
    }
    .spacer-s-md{
        margin-top: 0 !important;
    }
    .spacer-m-md{
        margin-top: 0 !important;
    }
    .spacer-l-md{
        margin-top: 0 !important;
    }
}
@media (max-width:767px) {
    body{
        font-size: 1.4em;
    }
    h1, h2{
        font-size: 50px;
        text-align: center;
    }
    small{
        font-size: 0.7em;
    }
    .cap{
        font-size: 22px;
    }
    .flex-d-column-sm{
        flex-direction: column !important;
    }
    .flex-d-column-reverse-sm{
        flex-direction: column-reverse !important;
    }
    .f-align-center-sm{
        align-items: center !important;
    }
    .spacer-s-sm{
        margin-top: 8px !important;
    }
    .spacer-m-sm{
        margin-top: 24px !important;
    }
    .spacer-l-sm{
        margin-top: 36px !important;
    }
    .center-sm{
        text-align: center;
    }
    .left-sm{
        text-align: left;
    }
    .d-none-sm{
        display: none !important;
    }
    .d-block-sm{
        display: block !important;
    }
    .checkBox li{
        width: 100%;
    }
    .oz{
        padding-left: 2.5em;
    }
    .oz::before{
        background-size: 8em;
        bottom: 1px;
        width: 2.25em;
        height: 2.1em;
    }
    .reasonsbox > div:nth-child(2) .oz::before{
        background-position: -45px;
    }
    .reasonsbox > div:nth-child(3) .oz::before{
        background-position: -93px;
    }
}

/* Header */
header .fixed{
    position: fixed;
    top: 24px;
    width: 100%;
    z-index: 100;
    transition: top .5s cubic-bezier(0.86,0,0.07,1);
}
header .hide{
    top: calc(-24px - 60px);
}
.menu{
    height: 60px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,.08);
    padding:0 30px;
}
.menu .logo, .menu .logo a{
    height: 100%;
}
.menu .logo img{
    width:auto;
    height: 100%;
}
header nav ul{
    gap: 16px;
}

/* Footer */
footer > div:first-child{
    padding-top: 60px;
    padding-bottom: 24px;
}
footer nav ul{
    gap: 16px;
}
footer .logo{
    width: 160px;
}

footer .groups{
    width: 50vw;
    max-width: 500px;
}
footer .groups .flex{
    gap: 15px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}
footer .groups .flex > div{
    width: calc(50% - 15px);
    height: 7vw;
    padding: 8px 0;
    /* max-height: 200px; */
}
footer .groups .flex > div:first-child{
    border-right: 1px solid white;
    padding-right: 14px;
}
footer .groups .flex > div a{
    width: 100%;
    height: 100%;
    display: inline-block;
}
footer .groups .flex > div a > div{
    width: 100%;
    height: calc(100% - 2em - 8px);
    padding: 8px 0;
}
footer .groups .flex > div img{
    width: auto;
    height: 100%;
}

@media (max-width:1248px) {
}
@media(min-width:768px) and (max-width:1248px) {
}
@media (max-width:767px) {
    .menu{
        height: 50px;
        border-radius: 25px;
        padding:0 25px;
    }
    footer > div:first-child{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    footer .logo{
        max-width: 300px;
        width: 40vw;
        margin: 0 auto;
        text-align: center;
        margin-top: 32px;
    }
    footer .contentwrap{
        margin-left: -24px;
        margin-right: -24px;
        margin-top: 24px;
        border-top: 1px solid white;
    }
    footer .groups{
        max-width: none;
        width: 100%;
        margin-top: 24px;

    }
    footer .groups .flex > div {
        height: auto;
        padding-left: 8px;
        padding-right: 8px;
    }
    footer .groups .flex > div a > div {
        height: 50px;
    }
    footer .groups .flex {
        gap: 0px;
        margin-top: 8px;
    }
    footer .groups .flex > div:first-child {
        padding-right: 8px;
    }
}



/* TOP */
.hero{
    height: calc(84px + 50vw);
    min-height: 710px;
    width: 100%;
    padding: unset;
    position: relative;
}
.hero.sub{
    height: auto;
    min-height: unset;
}
.catchWrap{
    position: absolute;
    width: 100%;
    /* height: 80%; */
    top: 20%;
}
.catchWrap p{
    font-size: 20px;
    line-height: 2em;
}
.heroImgWrap{
    position: absolute;
    right: 2vw;
    top: calc(84px + 2vw);
    z-index: -1;
}
.hero img{
    width: 50vw;
}
.hero.sub .heroImgWrap{
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 780px;
    overflow: hidden;
    top: initial;
    right: initial;
    display: flex;
    justify-content: center;
    align-items:center;
}
.hero.sub img{
    width: 100%;
}
.coursebox{
    padding: calc(3em + 24px) CALC(1em + 24px) CALC(1em + 24px);
    border: 8px solid #121212;
}
.detailsBox{
    border-top: 2px solid;
}
.detailsBox > div{
    border-left: 2px solid;
    border-right: 2px solid;
    border-bottom: 2px solid;
}
.detailsTitle{
    position: relative;
    cursor: pointer;
    transition: all .3s;
}
.detailsTitle::after{
    content: "+";
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    cursor: pointer;
    line-height: 3em;
}
.detailsTitle.open::after{
    content: "-";
}
.detailsTitle:hover{
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}
.details_cap{
    position: relative;
}
.details_cap span::before,
.details_cap span::after{
    position: absolute;
    display: inline-block;
    content: "";
    background: #121212;
    width: 2px;
    height: 1.55em;
    margin: 0 1em;
    margin-top: -.2em;
    vertical-align: middle;
    bottom: 0;
}
.details_cap span::before{
    transform: rotate(-35deg);
    left: -17%;
}
.details_cap span::after{
    transform: rotate(35deg);
}
.details_cap span br{
    display: none;
}
.details{
    padding: 0px 24px;
    box-shadow: 0 4px 10px -8px inset;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.86,0,0.07,1) max-height, 0.5s cubic-bezier(0.86,0,0.07,1) padding;
}
.details.open{
    padding: 16px 24px;
}
.detailsTitle{
    padding: 12px 24px;
    line-height: 1.5em;
}
#reasons h3{
    display: inline-block;
    padding: 2px 4px;
}
.reasonsbox .flex{
    gap: 40px;
}
.reasonsbox img{
    width: 140px;
    height: auto;
}
.reasonsbox a{
    width: 100%;
    height: 100%;
    display: inline-block;
    transition: all .3s;
}
.reasonsbox a:hover{
    box-shadow: 0 0 12px rgba(0, 0, 0, .3);
}
.reasonsbox a > div{
    height: 100%;
}
.reasonsbox .groupbox{
    gap: 24px;
}
.groupbox > div{
    width: 100%;
    border: 2px solid;
}
.circleImgBox {
    gap: 40px;
}
.circleImgBox > div{
    width: 100%;
    position: relative;
}
.circleImgBox img{
    border-radius: 50%;
    border: 8px solid;
    width: calc(100% - 16px);
}
.circleImgBox .arrow::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 21px solid #121212;
    border-right: 0;
    top: calc(76% / 2);
    right: -30px;
}
.customerBox{
    position: relative;
    height: 29vw;
    max-height: 572px;
    width: 100%;
    overflow: hidden;
}
.customerBox .customerImg{
    position: absolute;
    width: 50%;
    max-width: 1000px;
    right: -20px;
    top: 0;
}
.triangle{
    position: absolute;
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.triangle-y{
    background-image: url("/img/triangle-y.svg");
}
.triangle-g{
    background-image: url("/img/triangle-g.svg");
}
.triangle-b{
    background-image: url("/img/triangle-b.svg");
}
.hero .triangle-y{
    bottom: calc(50% - 75px - 270px);
    left: calc(50% - 75px - 648px);
    transform: rotate(-10deg);
}
.hero .triangle-b{
    left: 50%;
    top: 36%;
    transform: rotate(45deg);
}
.hero .triangle-g{
    top: calc(20% - 75px);
    left: calc(50% - 75px - 648px);
    transform: rotate(45deg);
}
#course .trwrap .triangle-y:nth-child(1){
    bottom: calc(50% - 75px - 270px);
    left: calc(50% - 75px - 630px);
    transform: rotate(60deg);
}
#course .trwrap .triangle-y:nth-child(2){
    top: 20%;
    right: calc(50% - 75px - 630px);
    transform: rotate(-10deg);
}
#course .trwrap .triangle-y:nth-child(3){
    bottom: 5%;
    right: calc(50% - 75px - 648px);
    transform: rotate(35deg);
}
@media (max-width:1248px) {
    .triangle{
        display: none;
    }
}
@media(min-width:768px) and (max-width:1248px) {
}
@media(min-width:768px) and (max-width:930px) {
    .customerBox{
        height: 270px;
    }
}
@media (max-width:767px) {
    .hero{
        height: auto;
        min-height: unset;
        width: 100%;
    }
    .hero img{
        width: 100%;
    }
    .catchWrap{
        position: unset;
        margin-top: 110px;
    }
    .hero.sub .catchWrap{
        margin-top: 0;
    }
    .hasbk-caption{
        text-align: center;
    }
    .hasbk-caption span {
        font-size: 20px;
        margin: 4px 0;
    }
    .catchWrap p {
        font-size: 14px;
    }
    .heroImgWrap {
        position: relative;
        top: 15vw;
        right: unset;
        left: -15vw;
        width: calc(100% + 8vw);
        margin-top: -20vw;
    }
    .hero.sub .heroImgWrap {
        left: 0;
        margin-top: 0;
    }
    .coursebox, .detailsTitle, .details.open {
        padding: 16px;
    }
    .coursebox{
        padding-bottom: 0;
        border: 4px solid;
    }
    .details{
        background-color: #F0F0F0;
        padding: 0 16px;
    }
    .detailsBox {
        margin-left: -16px;
        margin-right: -16px;
        border: none;
        border-top: 2px solid;
    }
    .detailsBox > div {
        border-left: none;
        border-right: none;
    }
    .detailsBox > div:last-child{
        border-bottom: none;
    }
    .details {
        box-shadow: 0px 8px 8px -4px rgba(0, 0, 0, .3) inset;
    }
    .detailsTitle:hover{
        box-shadow: unset;
    }
    .detailsTitle::after {
        font-size: 1.5em;
        line-height: 2.45em;
    }
    .groupbox > div {
        height: 30vw;
    }
    .reasonsbox .flex {
        gap: 16px;
    }
    .reasonsbox img {
        width: 100px;
    }
    .reasonsbox .groupbox img {
        width: auto;
        height: 90%;
    }
    .circleImgBox > div {
        width: 250px;
        margin: 0 auto;
    }
    .circleImgBox img {
        border: 4px solid;
        width: calc(100% - 8px);
    }
    .circleImgBox .arrow::after {
        top: unset;
        bottom: -30px;
        transform: rotate(90deg);
        right: calc(50% - 12px);
    }
    .customerBox {
        height: unset;
    }
    .customerBox .customerImg {
        position: unset;
        width: 100%;
        margin-top: 24px;
        margin-left: 2vw;
    }
    .details_cap span::before,
    .details_cap span::after{
        height: 2.5em;
    }
    .details_cap span::before{
        left: -28%;
    }
    .details_cap span::after{
        right: -78%;
    }
}

/* ABOUT */
#company li{
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid;
}
#company li > p:first-child{
    min-width: 10em;
}
.schoolimgs img{
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .16);
}
@media (max-width:767px) {
    #company li {
        gap: 0px;
        padding: 12px 8px;
    }
}