@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

/* ---------------------------------------------
    reset
--------------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,img {margin: 0; padding: 0;}
table {border-collapse: collapse; border-spacing: 0;}
fieldset,img {border: 0;}
img {display: block; max-width: 100%; height: auto;}
img a {border: none;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal; font-weight: normal;}
ol, ul {list-style: none;}
caption, th {text-align: left;}
h1,h2,h3,h4,h5,h6 {font-size: 100%; font-weight: normal; line-height: 1.0;}
q:before, q:after {content: "";}
figure {width: 100%; margin: 0; padding: 0;}

/* ---------------------------------------------
    common
--------------------------------------------- */
* {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
body {
    -webkit-text-size-adjust: 100%;
    word-break: break-all;
    color: #333;
    font-family: '游ゴシック Medium','Yu Gothic Medium','YuGothic M','游ゴシック','Yu Gothic','游ゴシック体',YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "M+ 1p", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: rgb(229,242,255);
}
a {text-decoration: none; -webkit-transition: all .3s; transition: all .3s;}
a:link {color: #333;}
a:visited {color: #333;}
a:hover { color: #0068B7; text-decoration: underline;}
a:active {color: #0068B7;}
p {line-height: 1.6;}

.pc-contact-btn {
    position: fixed;
    top: 170px;
    right: 0;
}
.pc-contact-btn p {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1;
}
.pc-contact-btn p a {
    display: block;
    padding: 20px 12px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 3px;
    background-color: #0068B7;
    border-radius: 10px 0 0 10px;
}
.pc-contact-btn p a:hover {
    text-decoration: none;
    background-color: #F47458;
}

#pageTop {
    position: fixed;
    width: 48px;
    right: 10px;
    bottom: 10px;
    z-index: 998;
    cursor: pointer;
}
@media only screen and (max-width: 960px) {
    .pc-contact-btn {
        display: none;
    }
}

.wrap {
    width: 100%;
    padding: 100px 20px;
    overflow: hidden;
    background-color: #fff;
}
.inner1 {
    max-width: 960px;
    margin: 0 auto;
}
.inner2 {
    max-width: 1120px;
    margin: 0 auto;
}
.inner3 {
    max-width: 800px;
    margin: 0 auto;
}
.bg-skyblue {
    background-color: #E5F2FF;
}
.bg-gray {
    background-color: #f6f6f6;
}
.marker {
    background: linear-gradient(transparent 75%, #FFC9BC 0%);
    padding: 0 5px;
}
.sec-title1 {
    font-size: 30px;
    font-weight: bold;
    color: #0068B7;
    text-align: center;
    margin-bottom: 60px;
}
.sec-title1 span {
    display: block;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    line-height: 1;
    color: #333;
    text-align: center;
    margin-top: 15px;
}
@media only screen and (max-width: 768px) {
    .wrap {
        padding: 80px 20px;
    }
    .inner1 {
    }
    .inner2 {
    }
    .sec-title1 {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .sec-title1 span {
        font-size: 12px;
        margin-top: 10px;
    }

}
@media only screen and (max-width: 640px) {
    .inner1 {
    }
    .inner2 {
    }

}


/* ---------------------------------------------
    effect
--------------------------------------------- */
.effectUp,
.effectUpBig,
.effectDown {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "alpha( opacity=0 )";
    -webkit-transition: 1.0s ease-out;
    -moz-transition: 1.0s ease-out;
    transition: 1.0s ease-out;
}
.effectUp {
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
}
.effectUpBig {
    transform: translateY(150px);
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
}
.effectDown {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
}
.effectUp.start,
.effectUpBig.start,
.effectDown.start {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha( opacity=100 )";
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
}
.effectRight {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "alpha( opacity=0 )";
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -webkit-transition: 1.0s ease-out;
    -moz-transition: 1.0s ease-out;
    transition: 1.0s ease-out;
}
.effectRight.start {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha( opacity=100 )";
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
}
.effectUp.d_02,
.effectUpBig.d_02,
.effectDown.d_02,
.effectRight.d_02 {
    transition-delay:0.2s;
    -webkit-transition-delay:0.2s;
}
.effectUp.d_04,
.effectUpBig.d_04,
.effectDown.d_04,
.effectRight.d_04 {
    transition-delay:0.4s;
    -webkit-transition-delay:0.4s;
}
.effectUp.d_06,
.effectUpBig.d_06,
.effectDown.d_06,
.effectRight.d_06 {
    transition-delay:0.6s;
    -webkit-transition-delay:0.6s;
}
.effectUp.d_08,
.effectUpBig.d_08,
.effectDown.d_08,
.effectRight.d_08 {
    transition-delay:0.8s;
    -webkit-transition-delay:0.8s;
}

/* ---------------------------------------------
    navigation
--------------------------------------------- */
#head {
    position: absolute;
    top: -80px;
    width: 100%;
    height: 80px;
    margin: 80px auto 0;
    padding: 0 0 0;
    line-height: 1;
    z-index: 999;
    background-color: #fff;
}
#head,
#head a {text-decoration: none;}
#head .inner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
#head .inner:after {
    content: "";
    clear: both;
    display: block;
}
#head .logo {
    float: left;
    width: 280px;
    margin-top: 26px;
}
#globalnav ul {
    list-style: none;
    position: absolute;
    right: 20px;
    top: 32px;
    display: flex;
    flex-wrap: wrap;
}
#globalnav ul li {
    line-height: 1;
    text-align: center;
}
#globalnav ul li a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    padding: 0 1em;
    display: block;
}
#globalnav ul li a:hover {
    color: #0068B7;
    -webkit-transition: all .3s; transition: all .3s;
}
#globalnav ul li:first-child a {padding-left: 0;}
#globalnav ul li:last-child a {padding-right: 0;}
#globalnav ul li:nth-child(7) a {padding-right: 0;}
#head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 0;
    height: 60px;
    background: rgba(250,250,250,1);
    transition: top 0.5s ease-in;
    -webkit-transition: top 0.5s ease-in;
    -moz-transition: top 0.5s ease-in;
}
#head.fixed .logo {
    width: 180px;
    margin-top: 21px;
}
#head.fixed #globalnav ul {
    top: 22px;
}
#head.fixed #globalnav ul li {
    font-size: 14px;
}
#nav-toggle {
    display: none;
    position: absolute;
    right: 10px;
    top: 13px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {position: relative;}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #0068B7;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {top: 0;}
#nav-toggle span:nth-child(2) {top: 10px;}
#nav-toggle span:nth-child(3) {top: 20px;}
#nav-toggle p {
    font-size: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1;
    color: #333;
    text-align: center;
    margin-top: 26px;
}
#mobile .sp-contact-btn {
    display: none;
}
@media only screen and (max-width: 960px) {
    #head,
    #head .inner {
        width: 100%;
        height: 60px;
        padding: 0;
    }
    #head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    #head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile {
        background: #fff;
        width: 100%;
        height: 60px;
        z-index: 999;
        position: relative;
    }
    #head.fixed .logo,
    #head .logo {
        display: block;
        position: absolute;
        left: 10px;
        top: 0;
        margin-top: 21px;
        width: 180px;
   }
    #head #globalnav {
        position: absolute;
        top: -496px;
        background: rgba(250,250,250,1);
        width: 100%;
        text-align: center;
        padding: 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #head #globalnav ul {position: static;}
    #head.fixed #globalnav ul {margin-top: 0;}
    #head #globalnav ul li {
        position: static;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    #head #globalnav ul li:first-child {border-top: 1px solid rgba(0,0,0,0.1);}
    #head.fixed #globalnav ul li:nth-child(7) a {padding-right: 0;}
    #head #globalnav ul li a,
    #head.fixed #globalnav ul li a {
        display: block;
        margin: 0;
        padding: 15px 0;
        font-size: 15px;
    }
    #head #globalnav ul li a span {}
    #nav-toggle {display: block;}
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    .open #globalnav {
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
    #mobile .sp-contact-btn {
        display: block;
        position: absolute;
        width: 36px;
        height: 36px;
        top: 12px;
        right: 60px;
    }
}

/* ---------------------------------------------
    footer
--------------------------------------------- */
footer {
    padding: 20px 20px 40px;
    background-color: #fff;
}
.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-logo {
    max-width: 200px;
    margin-bottom: 10px;
}
.footer-ods-info {
    font-size: 14px;
    line-height: 2;
}
.footer-navi li a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    background-image: url(../img/arrow-right-blue.svg);
    background-size: 5px auto;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 12px;
    position: relative;
    transition: .3s;
    line-height: 2;
}
.footer-navi li a:hover {
    text-decoration: none;
    background-image: url(../img/arrow-right-orange.svg);
    color: #E25A44;
}
.footer-navi li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #E25A44;
    transition: .3s;
}
.footer-navi li a:hover::after {
    width: 100%;
}
.copyright {
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    line-height: 1;
    margin-top: 20px;
}
@media only screen and (max-width: 768px) {
    footer {
        padding: 0px 20px 40px;
    }
    .footer-info {
        flex-direction: column-reverse;
    }
    .footer-info-l {
        width: 100%;
    }
    .footer-info-r {
        max-width: 160px;
        margin-bottom: 30px;
    }
}

/* ---------------------------------------------
    main-image
--------------------------------------------- */
.main-image {
    margin-top: 80px;
    padding: 0 0 40px;
    position: relative;
    overflow: hidden;
}
.main-image-bg {
    padding: 40px 0 0;
    background: linear-gradient(0deg, rgba(229,242,255,1) 30%, rgba(255,255,255,1) 100%);
}
.main-image-txt {
    max-width: 500px;
    margin: 0 0 40px 50px;
}
.arcB {
    min-height: 640px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.main-image-drone1 {
    width: 160px;
    position: absolute;
    bottom: 0px;
    left: 25%;
    z-index: 2;
}
.main-image-drone2 {
    width: 230px;
    position: absolute;
    top: 10px;
    right: 20%;
}
.main-image-mask {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}
@media only screen and (max-width: 960px) {
    .main-image {
        margin-top: 60px;
    }
    .main-image-bg {
        padding: 20px 0 0;
        background: linear-gradient(0deg, rgba(229,242,255,1) 10%, rgba(255,255,255,1) 100%);
    }
    .main-image-txt {
        max-width: 320px;
        margin: 0 0 30px 30px;
    }
    .arcB {
        min-height: 400px;
    }
    .main-image-drone1 {
        width: 100px;
    }
    .main-image-drone2 {
        width: 130px;
        top: 10px;
        right: 10%;
    }
}
@media only screen and (max-width: 640px) {
    .main-image {
        padding: 0 0 20px;
    }
    .main-image-txt {
        max-width: 260px;
        margin: 0 0 30px 20px;
    }
    .main-image-drone1 {
        width: 90px;
        left: 20%;
    }
    .main-image-drone2 {
        width: 120px;
        right: 5%;
    }
}
@media only screen and (max-width: 480px) {
    .main-image-txt {
        max-width: 220px;
        margin: 0 0 20px 20px;
    }
    .main-image-drone2 {
        width: 100px;
        right: 3%;
    }
}

/* ---------------------------------------------
    ods-open
--------------------------------------------- */
.ods-open {
    background-image: url(../img/bg-ods-txt1.svg);
    background-repeat: no-repeat;
    background-size: 94% auto;
    background-position: top 40px center;
}
.ods-open-txt1 {
    font-size: 26px;
    font-weight: bold;
    color: #0068B7;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
}
.uas-mark {
    max-width: 140px;
    margin: 0 auto 20px;
}
@media only screen and (max-width: 768px) {
    .ods-open {
        background-position: top 20px center;
    }
    .ods-open-txt1 {
        font-size: 20px;
    }
    .uas-mark {
        max-width: 100px;
    }
}
@media only screen and (max-width: 640px) {
    .ods-open {
        background-size: 90% auto;
    }
    .ods-open-txt1 {
        font-size: 16px;
    }
}
@media only screen and (max-width: 480px) {
    .ods-open-txt1 {
        text-align: left;
    }
    .ods-open-txt1 br {
        display: none;
    }
}


/* ---------------------------------------------
    about-drone
--------------------------------------------- */
.about-drone {
    background-color: #EFEDEA;
}
.about-drone-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.about-drone-inner > div {
    width: 47.5%;
}
.about-drone-txt1 {
    font-size: 15px;
    line-height: 2;
}
@media only screen and (max-width: 640px) {
    .about-drone-inner > div {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 40px;
    }
    .about-drone-inner > div:last-child {
        margin-bottom: 0;
    }
    .about-drone-img1 {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ---------------------------------------------
    about-juida
--------------------------------------------- */
.about-juida-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.about-juida-inner > div {
    width: 47.5%;
}
.about-juida-txt1 {
    font-size: 15px;
    line-height: 2;
}
.logo-juida {
    max-width: 360px;
    margin: 0 auto;
}
@media only screen and (max-width: 640px) {
    .about-juida-inner > div {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 40px;
    }
    .about-juida-inner > div:last-child {
        margin-bottom: 0;
    }
    .logo-juida {
        max-width: 200px;
    }
}


/* ---------------------------------------------
    about-ods
--------------------------------------------- */
.ods-photo3,
.ods-photo-slide {
    background-color: #fff;
}
.ods-photo3 ul {
    display: flex;
    flex-wrap: wrap;
}
.ods-photo3 ul li {
    width: 33.3333%;
}
.ods-photo-slide .slide div:focus {
    outline: none;
}
@media only screen and (max-width: 640px) {
    .ods-photo3 ul li {
        width: 100%;
    }
}

.about-ods-point {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
.about-ods-point li {
    width: 49%;
    background-color: #0089F1;
    border: 2px solid #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 0 #ccc;
    margin-bottom: 20px;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-ods-point li p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.8;
    text-align: center;
}
.about-ods-point li p span {
    display: block;
    font-size: 12px;
    font-weight: normal;
}
.about-ods-txt1 {
    font-size: 15px;
    line-height: 2;
}
.about-ods-txt1 span {
    font-weight: bold;
}
.about-ods-img {
    max-width: 300px;
    height: 380px;
    margin: 60px auto 0;
    position: relative;
}
.about-ods-img1 {
    max-width: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.about-ods-img2 {
    max-width: 130px;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width: 768px) {
    .about-ods-point li p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 640px) {
    .about-ods-point li {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 15px;
    }
    .about-ods-point li p {
        font-size: 16px;
    }
    .about-ods-img {
        max-width: 200px;
        height: 340px;
    }
    .about-ods-img1 {
        max-width: 80px;
    }
    .about-ods-img2 {
        max-width: 110px;
    }
}

/* ---------------------------------------------
    curriculum
--------------------------------------------- */
.curriculum {
    background-image: url(../img/bg-clouds-top.svg);
    background-repeat: repeat-x;
    background-size: auto 40px;
    background-position: top center;
    padding-top: 140px;
}
.course1,
.course3 {
    margin-bottom: 60px;
}
.course1 h3,
.course2 h3,
.course3 h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 40px;
    padding: 10px 20px;
}
.course1 h3 {
    background-color: #0089F1;
}
.course2 h3 {
    background-color: #0068B7;
}
.course3 h3 {
    background-color: #F47458;
}
.course-txt1 {
    max-width: 960px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 2;
}
.course-txt1 span {
    font-weight: bold;
}
.course-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.course-info > div {
    width: 49%;
    margin-bottom: 25px;
    background-color: #fff;
}
.course-subject {
    border: 2px solid #0068B7;
    background-color: #f6f6f6;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.course-subject li {
    font-size: 20px;
    font-weight: bold;
    color: #0068B7;
}
.course-subject li span {
    display: block;
    font-size: 15px;
}
.course-info dl {
    padding: 20px;
}
.course-info dt {
    font-size: 14px;
    font-weight: bold;
    line-height: 2;
}
.course-info dd {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px dotted #ccc;
}
@media only screen and (max-width: 768px) {
    .course1 h3,
    .course2 h3,
    .course3 h3 {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 10px 15px;
    }
    .course-info > div {
        width: 100%;
    }
    .course-info > div:last-child {
        margin-bottom: 0;
    }
    .course-subject li {
        font-size: 17px;
    }
    .course-subject li span {
        font-size: 14px;
    }
    .course-info dl {
        padding: 17px;
    }
}
@media only screen and (max-width: 640px) {
    .course1 h3,
    .course2 h3,
    .course3 h3 {
        font-size: 16px;
    }
}
/* ---------------------------------------------
    schedule
--------------------------------------------- */
.schedule {
    background-image: url(../img/bg-clouds-bottom.svg);
    background-repeat: repeat-x;
    background-size: auto 40px;
    background-position: bottom center;
    padding-bottom: 140px;
    border-top: 1px solid #fff;
}
.schedule-cal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}
.schedule-cal li {
    width: 48%;
}
.schedule-cal-month {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.schedule-cal-info,
.schedule-cal-all,
.schedule-cal-control,
.schedule-cal-safe {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 15px 10px;
}
.schedule-cal-info {background-color: #65B50C;}
.schedule-cal-all {background-color: #F47458;}
.schedule-cal-control {background-color: #0089F1;}
.schedule-cal-safe {background-color: #0068B7;}
.schedule-cal table {
    width: 100%;
    margin-bottom: 20px;
}
.schedule-cal table td {
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border: 2px solid #E5F2FF;
}
.schedule-cal span.close {
    font-size: 14px;
    color: #cc0000;
    margin-left: 0.5em;
}
.schedule-txt1 {
    font-size: 14px;
    text-indent: -1em;
    padding-left: 1em;
}
.form-btn {
    max-width: 640px;
    margin: 60px auto 0;
}
.form-btn ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-btn ul li {
    width: 48%;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
}
.form-btn ul li a {
    display: block;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-image: url(../img/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 8px auto;
    background-position: center right 15px;
    border-bottom: 5px solid #E25A44;
    border-radius: 8px;
    background-color: #F47458;
}
.form-btn ul li a:hover {
    text-decoration: none;
    background-color: rgba(244, 116, 88, 0.8);
}
@media only screen and (max-width: 768px) {
    .schedule-cal {
        max-width: 460px;
        margin: 0 auto 10px;
    }
    .schedule-cal li {
        width: 100%;
        margin-bottom: 40px;
    }
    .schedule-cal li:last-child {
        margin-bottom: 0;
    }
    .form-btn {
        max-width: 320px;
    }
    .form-btn ul li {
        width: 100%;
        margin-bottom: 30px;
    }
}


/* ---------------------------------------------
    price
--------------------------------------------- */
.price-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.price-table {
    width: 60%;
}
.price-image {
    width: 30%;
}
.price-table dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.price-table dl dt {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
}
.price-table dl dt p {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.price-course1 {
    background-color: #F47458;
}
.price-course2 {
    background-color: #0089F1;
}
.price-course3 {
    background-color: #0068B7;
}
.price-table dl dd {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
    background-color: #f6f6f6;
}
.price-table dl dd p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
.price-table dl dd .price1 {
    font-size: 40px;
    font-family: 'Roboto Condensed', sans-serif;
}
.price-table dl dd .price2 {
    font-size: 15px;
}
@media only screen and (max-width: 768px) {
    .price-table {
        width: 100%;
        max-width: 640px;
        margin: 0 auto 40px;
    }
    .price-image {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
    .price-table dl dd .price1 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 640px) {
    .price-table dl dt {
        width: 100%;
        padding: 10px 15px;
    }
    .price-table dl dt p br {
        display: none;
    }
    .price-table dl dd {
        width: 100%;
        padding: 20px 15px;
    }
    .price-image {
        max-width: 200px;
    }
}


/* ---------------------------------------------
    faq
--------------------------------------------- */
.parallax {
    position: relative;
    overflow: hidden;
}
.parallax > img {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    object-fit: cover;
    height: 100vh;
}
.bg-faq-img {
    height: 300px;
}
.faq .accordion-container {
    border-bottom: 1px solid #999;
}
.faq .ac {
    border-top: 1px solid #999;
}
.faq .ac > .ac-q {
    font-size: 15px;
    font-weight: bold;
    color: #0068B7;
    line-height: 1.6;
    padding: 30px 30px 30px 10px;
    display: block;
    cursor: pointer;
    position: relative;
}
.faq .ac > .ac-q:focus {outline:none;}
.faq .ac > .ac-q::after {
    content: '+';
    text-align: center;
    width: 15px;
    right: 10px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    color: #0068B7;
}
.faq .ac > .ac-a {
    overflow: hidden;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}
.faq .ac > .ac-a p {
    font-size: 15px;
    padding: 0 10px 30px;
}
.faq .ac.js-enabled > .ac-a {visibility: hidden;}
.faq .ac.is-active > .ac-a {visibility: visible; margin-top: -10px;}
.faq .ac.is-active > .ac-q::after {content: '-';}

.regulations {
}
.regulations h3 {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    background-color: #0068B7;
    margin-bottom: 20px;
    padding: 10px;
}
.regulations3,
.regulations4 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.regulations3 li {
    width: calc((100% - 4%) / 3);
    margin-right: 2%;
    margin-bottom: 20px;
}
.regulations4 li {
    width: calc((100% - 6%) / 4);
    margin-right: 2%;
    margin-bottom: 20px;
}
.regulations3 li:nth-child(3n),
.regulations4 li:nth-child(4n),
.regulations3 li:last-child,
.regulations4 li:last-child {
    margin-right: 0;
}
.regulations3 img,
.regulations4 img {
    margin: 0 auto;
}
.regulations sup {
    font-size: 8px !important;
}
.regulations .indent {
    text-indent: -1em;
    margin: 0 10px -20px;
    padding-left: 1em !important;
}
.regulations-title {
    font-size: 14px !important;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    background-color: #F47458;
    margin-bottom: 20px !important;
    padding: 10px !important;
}
.mark-giteki {
    border: 1px dashed #999;
    margin: 0 0 30px;
    padding: 20px;
}
.mark-giteki ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mark-giteki ul li:first-child {
    width: 100px;
}
.mark-giteki ul li:last-child {
    flex: 1;
    margin-left: 20px;
}
.mark-giteki dl dt {
    font-size: 14px;
    font-weight: bold;
    color: #0068B7;
    margin-bottom: 0.5em;
}
.mark-giteki dl dd {
    font-size: 14px;
    line-height: 1.8;
}
@media only screen and (max-width: 768px) {
    .parallax > img {
        display: none;
    }
    .bg-faq-img {
        height: 170px;
        background-image: url(../img/bg-faq-img1.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .regulations4 li {
        width: calc((100% - 4%) / 3);
    }
    .regulations4 li:nth-child(4n) {
        margin-right: 2%;
    }
    .regulations4 li:nth-child(3n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 640px) {
    .faq .ac > .ac-q {
        font-size: 14px;
    }
    .faq .ac > .ac-a p {
        font-size: 14px;
    }
    .regulations h3 {
        font-size: 14px;
    }
    .regulations3 li {
        width: calc((100% - 2%) / 2);
    }
    .regulations4 li {
        width: calc((100% - 2%) / 2);
    }
    .regulations3 li:nth-child(3n),
    .regulations4 li:nth-child(3n) {
        margin-right: 2%;
    }
    .regulations3 li:nth-child(2n),
    .regulations4 li:nth-child(2n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 480px) {
    .regulations3 li {
        width: 100%;
        margin-right: 0;
    }
    .regulations4 li {
        width: 100%;
        margin-right: 0;
    }
    .regulations3 li:nth-child(3n),
    .regulations4 li:nth-child(3n) {
        margin-right: 0%;
    }
    .mark-giteki ul li:first-child {
        margin: 0 auto 20px;
    }
    .mark-giteki ul li:last-child {
        width: 100%;
        flex: 100%;
        margin-left: 0px;
    }

}

/* ---------------------------------------------
    contact
--------------------------------------------- */
.bg-contact-form {
    background-image: url(../img/bg-contact-form.png);
    background-size: cover;
    background-position: bottom center;
    margin-top: 80px;
}
.contact-form-txt1 {
    font-size: 15px;
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
}
.contact-form-txt-wrap {
    background-color: #f6f6f6;
    margin-bottom: 30px;
    padding: 20px 20px 5px;
}
.contact-form-txt-wrap dl dt {
    font-size: 13px;
    font-weight: bold;
    color: #0068B7;
    margin-bottom: 5px;
}
.contact-form-txt-wrap dl dd {
    font-size: 13px;
    margin-bottom: 15px;
}
.contact-form-tel {
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    color: #0068B7;
    text-align: center;
    line-height: 1.2;
}
.contact-form-tel span {
    font-size: 40px;
}
.contact-form-time {
    font-size: 14px;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    margin-bottom: 40px;
}
.contact-list {
    background-color: #E5F2FF;
    margin-bottom: 40px;
    padding: 30px;
}
.contact-list li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 15px;
    font-size: 14px;
}
.contact-list li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background-color: #F47458;
    left: 0;
    top: 8px;
}
.contact-form {
    max-width: 880px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid #0068B7;
    background-color: #fff;
}
.contact-form table {
    width: 100%;
    margin-bottom: 20px;
}
.contact-form table th,
.contact-form table td {
    font-size: 15px;
    padding: 10px 0;
}
.contact-form table th {
    width: 150px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    vertical-align: top;
}
.contact-form .input01,
.contact-form .input02 {
    width: 100%;
    padding: 4px 8px;
    font-size: 15px;
    font-family: '游ゴシック Medium','Yu Gothic Medium','YuGothic M','游ゴシック','Yu Gothic','游ゴシック体',YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "M+ 1p", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    border: 1px solid #999;
}
.contact-form .input01:focus,
.contact-form .input02:focus {
    border: 1px solid #0068B7;
    outline: none;
}
.contact-form-button ul {
    max-width: 180px;
    margin: 0 auto;
}
.contact-form-button ul li:nth-child(1) {width: 100%;}
.contact-form-button ul li:nth-child(2) {
    width: 80px;
    margin: 10px auto 0;
}
.contact-form-button button {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    background: #fff;
}
.contact-form-button button.contact-form-button1 {
    width: 100%;
    margin: 0 auto;
    display: block;
    background-color: #0068B7;
    text-align: center;
    color: #fff;
    line-height: 1;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    font-family: '游ゴシック Medium','Yu Gothic Medium','YuGothic M','游ゴシック','Yu Gothic','游ゴシック体',YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "M+ 1p", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.contact-form-button button.contact-form-button1:hover {
    background-color: #F47458;
    -webkit-transition: all .3s; transition: all .3s;
}
.contact-form-button button.contact-form-button2 {
    width: 100%;
    margin: 0 auto;
    display: block;
    background-color: rgba(220,220,220,1);
    text-align: center;
    color: #333;
    line-height: 1;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    font-family: '游ゴシック Medium','Yu Gothic Medium','YuGothic M','游ゴシック','Yu Gothic','游ゴシック体',YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "M+ 1p", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.contact-form-button button.contact-form-button2:hover {
    background-color: #eee;
    -webkit-transition: all .3s; transition: all .3s;
}
@media only screen and (max-width: 960px) {
    .bg-contact-form {
        margin-top: 60px;
    }
}
@media only screen and (max-width: 768px) {
    .contact-form-txt1 {
        font-size: 14px;
    }
    .contact-form-tel {
        font-size: 17px;
    }
    .contact-form-tel span {
        font-size: 34px;
    }
}
@media only screen and (max-width: 640px) {
    .contact-list {
        padding: 20px;
    }
    .contact-form {
        padding: 40px 20px;
    }
    .contact-form table th,
    .contact-form table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    .contact-form table td {
        padding: 0 0 10px;
    }
}


/* ---------------------------------------------
    sns
--------------------------------------------- */
.sns {
    background-image: url(../img/bg-ods-txt2.svg);
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: top 30px right 10px;
}
.sns-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.sns-inner > div {
    width: 48%;
}
.sns-txt1 {
    font-size: 20px;
    font-weight: bold;
    color: #0068B7;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
}
.sns-image1 {
    max-width: 150px;
    margin: 0 auto 30px;
}
.sns-link-btn {
    max-width: 400px;
    margin: 0 auto;
}
.sns-link-btn li {
    background-color: #fff;
}
.sns-link-btn li a {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 30px 20px 30px 80px;
    background-repeat: no-repeat;
    background-size: 40px auto;
    background-position: left 20px center;
}
.sns-link-btn li a:hover {
    text-decoration: none;
    opacity: 0.8;
}
.sns-instagram a {
    background-image: url(../img/icon-instagram.svg);
    background-color: #F00075;
    margin-bottom: 15px;
}
.sns-twitter a {
    background-image: url(../img/icon-x.png);
    background-color: #1D9BF0;
}
@media only screen and (max-width: 768px) {
    .sns-inner {
        flex-direction: column-reverse;
    }
    .sns-inner > div {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .sns-inner > div:last-child {
        margin-bottom: 40px;
    }
    .sns-txt1 {
        font-size: 18px;
    }
    .sns-image1 {
        max-width: 120px;
    }
}
@media only screen and (max-width: 640px) {
    .sns-txt1 {
        font-size: 16px;
    }
    .sns-link-btn li a {
        font-size: 16px;
        padding: 20px 20px 20px 70px;
        background-size: 30px auto;
    }

}

/* ---------------------------------------------
    map
--------------------------------------------- */
.map {
    padding: 20px;
    background-color: #fff;
}
@media only screen and (max-width: 768px) {
}

