@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

a {
    text-decoration: none;
}


body {
    /*font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    /*background-color: #e6e6e6;*/
    letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }
}

/*=============================

Header

=============================*/


header {
    z-index: 99;
    padding: 30px 4% 10px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    background-color: #fff;
    display: flex;
    align-items: center;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
}

h1 img {
    width: 20%;
}

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

nav {
    margin: 0 0 0 auto;
}

header ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

header ul li {
    margin: 0 0 0 30px;
    font-size: 14px;
}

.main-visual {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../img/main01.jpg') top center / cover no-repeat;
}

h2 {
    margin: 0;
    font-size: 56px;
    font-weight: normal;
    color: #000;
}

.sp-nav {
    display: none;
}

/*====================================================*/
@media screen and (max-width: 640px) {
    .pc-nav {
        display: none;
    }

    .sp-nav {
        z-index: 99;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
        width: 100%;
        /*background: rgba(0, 0, 0, .8);*/
        background-color: #fff;
        opacity: 0;
        transform: translateY(-100%);
        transition: all .2s ease-in-out;
    }

    #hamburger {
        position: relative;
        display: block;
        width: 60px;
        height: 25px;
        margin: 0 0 0 auto;
    }

    #hamburger span {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000;
        transform: translateY(-50%);
    }

    #hamburger::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
    }

    #hamburger::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70%;
        height: 2px;
        background-color: #000;
    }

    /*スマホメニュー*/
    .sp-nav ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 80%;
    }

    .sp-nav li {
        margin: 0;
        padding: 0;
    }

    .sp-nav li span {
        font-size: 15px;
        color: #000;
    }

    .sp-nav li a,
    .sp-nav li span {
        display: block;
        padding: 20px 0;
    }

    /*-閉じるアイコンー*/
    .sp-nav .close {
        position: relative;
        padding-left: 20px;
    }

    .sp-nav .close::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #000;
        transform: rotate(45deg);
    }

    .sp-nav .close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #000;
        transform: rotate(-45deg);
    }

    .toggle {
        transform: translateY(0);
        opacity: 1;
    }

    .main-visual {
        padding: 0 4%;
    }

    h2 {
        font-size: 38px;
        line-height: 1.6;
        text-align: center;
    }
}


/*===============================================*/

/* CSSアニメーションの指定　右から */
.Headline {
    animation: SlideIn01 2s;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn01 {
    0% {
        opacity: 0;
        /*初期状態では透明に*/
        transform: translateX(-100px);
    }

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



/* CSSアニメーションの指定 */
.Headline02 {
    animation: SlideIn02 2s;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn02 {
    0% {
        opacity: 0;
        /*初期状態では透明に*/
        transform: translateX(100px);
    }

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



/*=============================

専科コース

=============================*/


.cours {
    margin: 30px 0;
    text-align: center;
}

.cours img {
    width: 70%;
}

@media screen and (max-width: 600px) {
    .cours img {
        width: 90%;
    }
}






/*下からフェードイン*/
.fade-in-bottom {
    opacity: 0;
    animation-name: fadein-bottom;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes fadein-bottom {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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



/*=============================

見出し

=============================*/




.ttl {
    font-size: 34px;
    margin: 50px 0;
    padding: 1rem;
    border-left: 2px solid #000;
    font-weight: bold;
}

.midasi {
    font-size: 40px;
    color: #0068ee;
    /*background: linear-gradient(transparent 60%, #6cf 60%);*/
}

@media screen and (max-width:768px) {
    .ttl {
        font-size: 25px;
        margin: 50px 0;
        padding: 1rem;
        border-left: 2px solid #000;
    }

    .midasi {
        font-size: 34px;
    }

}

@media screen and (max-width:1000px) {
    .wrap {
        padding-bottom: 60px;
        /*margin-top: 60px;*/
    }
}

.lead-copy {
    font-size: 15px;
    line-height: 2;
}


.record-btn img {
    display: block;
    width: 60%;
    margin: 30px auto;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .record-btn img {
        width: 100%;
    }
}


/*=============================

学費について

=============================*/

#price {
    line-height: 1.25;
    /*background: #F0F4DC;*/
    margin-top: 60px;
    padding-bottom: 60px;
}

.fx-box {
    display: flex;
    flex-direction: row;
}

.txt {
    text-align: left;
    font-size: .75em;
}

@media screen and (max-width: 600px) {
    .fx-box {
        display: flex;
        flex-direction: column;
    }
}






/*=============================

アクセス

=============================*/


#access {}

.inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.inner {
    max-width: 960px;
}


.google_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 65%;
}

.google_map iframe {
    z-index: 1;
    opacity: 0.99;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



#access table {
    /*border-top: 1px solid #e9e9e9;*/
    width: 100%;
    margin-top: 40px;
    text-align: left;
    line-height: 1.6;
}

#access table tbody tr {
    display: flex;
    border-bottom: 1px solid #e9e9e9;
}

#access table th {
    width: 20%;
    vertical-align: top;
    padding: 20px 10px;
    text-align: left;
}

#access table td {
    padding: 20px 10px;
}

@media screen and (max-width:768px) {
    #access table {
        margin-top: 20px;
    }

    #access table tbody tr {
        display: block;
    }


    #access table th {
        width: 100%;
        display: block;
        padding: 15px 0 0;
    }

    #access table td {
        padding: 5px 0 15px;
        width: 100%;
        display: block;
    }
}




.head-copy {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 50px;
    text-align: center;
}

@media screen and (max-width:768px) {
    .head-copy {
        font-size: 50px;
        margin-bottom: 35px;
    }

    .inner ifrem {
        width: 90%;
    }
}




/*=================================

提携校・支援団体

=================================*/

.Alliance {}

.Alliance li {
    border: solid 1px #000;
    box-sizing: border-box;
    color: #3c3c3c;
    margin: 0 30px 30px 0;
    width: calc(33.3333333% - 34px);
    padding: 20px 20px 22px 20px;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    text-align: center;
}

.item:nth-child(3n) {
    margin-right: 0;
}

.name {
    margin: 30px 0;
    font-size: 21px;
    color: #000;
}

.sns-tw {
    padding-top: 10px;
    border-top: solid 1px #a9a9a9;
}

.sns-tw a {
    color: #1DA1F2;
}


@media screen and (max-width:768px) {
    .Alliance li {
        width: 100%;
        margin-bottom: 20px;
    }
}







/*=================================

お問い合わせ

=================================*/

#contact {
    margin: 60px 0;
    padding: 50px 0;
    background: #ddd;
    text-align: center;
}

#contact h3 {
    text-align: center;
    margin-bottom: 50px;
}

#contact p {
    margin-bottom: 50px;
}

.contact-btn {
    margin: 30px auto;
    text-align: center;
}

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

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

a.btn-c {
    font-size: 1.2rem;
    position: relative;
    padding: 1.5rem 2rem 1.5rem 2rem;
    border-radius: 100vh;
}

a.btn-c i.fa {
    margin-right: 1rem;
}

a.btn-c:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 1.6rem;
    line-height: 1;
    position: absolute;
    top: calc(50% - .8rem);
    right: 1rem;
    margin: 0;
    padding: 0;
    content: '\f054';
}


.sns {
    text-align: center;
}

.sns a,.tw a {
    color: #1DA1F2;
}



footer {
    text-align: center;
    background: #f6f6f6;
    padding: 25px 20px;
    font-size: 13px;
    margin-top: 40px;
}





/*=================================

お問い合わせ

=================================*/
/*

#contact {
    color: #fff;
    margin-top: 100px;
    padding: 100px 0;
    background: #4A4B4F;
}

#contact .contact-wrap {
    width: 87.923vw;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

#contact .contact-wrap .en-tit {
    letter-spacing: .3em;
    line-height: 1;
    font-family: din-2014, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.up {
    -webkit-animation-name: fadeUp;
    animation-name: fadeUp;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.fade-up {
    opacity: 0;
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
}

#contact .contact-wrap .en-tit span {
    padding-bottom: .5em;
    display: inline-block;
    position: relative;
}

#contact .contact-wrap h2 {
    padding-top: .75em;
    letter-spacing: .16em;
    line-height: 1.66;
    font-size: 34px;
    font-weight: 700;
}

#contact .contact-wrap h2 + p {
    padding-top: 1.5em;
}

#contact .contact-wrap .btn-contact {
    margin-top: 60px;
}

*/






/*
@media screen and (max-width: 768px) {
    #fix-contact {
        width: 100%;
        position: fixed;
        display: block;
        bottom: -80px;
        z-index: 90;
        opacity: 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        background: #fff;
    }

    #fix-contact ul {
        width: 100%;
        padding: 0 10px;
        font-size: 0;
        letter-spacing: 0;
    }

    #fix-contact ul li a .txt {
        display: block;
        letter-spacing: .1em;
        font-size: 12px;
        font-weight: 500;
    }

    #fix-contact * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

}
*/