@charset "utf-8";
/* ==================================================== */
/*  フォント
/* ==================================================== */
.serif {
    font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", 'Noto Serif JP', serif;
}
.sans-serif {
    font-family: "Arial", "メイリオ";
    letter-spacing: -0.01em;
}
.futura {
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
}


/* ==================================================== */
/*  基本
/* ==================================================== */
html, body {
    width: 100%;
    height: auto;
    /*height: 100%;*/
    font-size: 62.5%;
}
body {
    position: relative;
    color: #000;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.4em;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    letter-spacing: .06em;
}
body.active { /*ハンバーガーメニューを開いたら背景固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

main {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 1024px) {
    a a[href^="tel"] {
        pointer-events: none;
    }
    a:hover {
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
}

img {
    width: 100%;
    height: auto;
}
img[src$=".svg"] {
    /*IEでimgタグのsrcにsvgを指定した時に崩れる防止*/
    width: 100%;
    height: auto;
}
sup {
    font-size: 70%;
    vertical-align: top;
    position: relative;
    top: -0.1em;
}
sub {
    font-size: 70%;
    vertical-align: bottom;
    position: relative;
    bottom: -0.1em;
}

/* ==================================================== */
/*  全ページ共通（common）クラス
/* ==================================================== */

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    -js-display: flex;
    display: flex;
}
.c-pc-only {
    display: inline-block !important;
}
.c-tab-only {
    display: none !important;
}
.c-sp-only {
    display: none !important;
}
.c-tab-over {
    display: inline-block !important;
}
.c-tab-less {
    display: none !important;
}
.clear {
    clear: both !important;
}
.c-justify {
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .c-pc-only {
        display: none !important;
    }
    .c-tab-only {
        display: inline-block !important;
    }
    .c-sp-only {
        display: none !important;
    }
    .c-tab-over {
        display: inline-block !important;
    }
    .c-tab-less {
        display: inline-block !important;
    }
}
@media screen and (max-width: 767px) {
    .c-pc-only {
        display: none !important;
    }
    .c-tab-only {
        display: none !important;
    }
    .c-sp-only {
        display: inline-block !important;
    }
    .c-tab-over {
        display: none !important;
    }
    .c-tab-less {
        display: inline-block !important;
    }
}

/* ==================================================== */
/*  全ページ共通レイアウト
/* ==================================================== */

/*header*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    margin: 0 auto;
    /*background-color: #fff;*/
    z-index: 990;
}
header.show {
    background-color: #fff;
}
.home header {
    background-color: transparent;
}
.l-header-area {
    height: 95px;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5% 0 2.3%;
    align-items: center;
}
.l-header-area h1 {
    position: relative;
    width: 330px;
    z-index: 991;
}
.header-nav {
    display: flex;
    cursor: pointer;
}
.header-nav > ul {
    display: flex;
}
.header-nav > ul li {
    width: 100px;
    font-size: 1.9rem;
    font-weight: bold;
    text-align: center;
    color: #000;
    /*text-shadow: 1px 1px 2px #00000070;*/
}
.header-nav > ul li:last-child {
    width: 120px;
}
.header-nav > ul li a:hover {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
    opacity: 1;
    font-size: 1.5rem;
    border-bottom: solid 1px #000;
}

/*ハンバーガーメニュー 基本*/
.header-hamburger {
    display: none;
}
.header-slidemenu {
    display: none;
}

@media screen and (max-width: 767px) {
    .l-header-area {
        height: 70px;
        padding: 0 3% 20px;
    }
    .l-header-area h1 {
        max-width: 270px;
        width: 70vw;
        padding-top: 3vw;
    }
    .header-nav > ul {
        display: none;
    }
    .header-hamburger {
        position: relative;
        display: block;
        width: 35px;
        height: 20px;
        z-index: 3;
    }
    .header-hamburger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #0096DF;
        transition: .5s;
    }
    .header-hamburger span:first-of-type {
        top: 0;
    }
    .header-hamburger span:nth-of-type(2) {
        top: 50%;
    }
    .header-hamburger span:last-of-type {
        top: 100%;
    }
    /*ハンバーガーメニューの下の文字*/
    .header-hamburger:after {
        content: "MENU";
        position: absolute;
        bottom: -25px;
        right: -1.2px;
        font-size: 1.1rem;
        transition: .5s;
        color: #0096DF;
        font-weight: 700;
        font-style: normal;
    }
    .header-slidemenu {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        right: 0;
        padding: 100px 0;
        background-color: #fff;
        opacity: 0;
        transform: translateX(100%);
        transition: .5s;
        z-index: 2;
    }
    .header-slidemenu li {
        text-align: center;
    }

    /*ハンバーガーメニュー開いた後*/
    .header-slidemenu.active {
        display: block;
        transform: translateX(0);
        opacity: 1;
    }
    .header-hamburger.active span:first-of-type {
        top: 50%;
        transform: rotate(45deg);
    }
    .header-hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-hamburger.active span:last-of-type {
        top: 50%;
        transform: rotate(-45deg);
    }
    .header-slidemenu li {
        width: 200px;
        margin: auto;
        font-size: 2rem;
        font-weight: bold;
    }
    .header-slidemenu li.no-anchor .header-slidemenu__wrapper {
        width: 76.6%;
        margin: 0 auto;
        padding: .5em 5.3%;
    }
    .header-slidemenu .header-slidemenu__wrapper {
        position: relative;
        margin-top: 17px;
        transition: 0.2s all ease;
    }
    .header-slidemenu .header-slidemenu__wrapper a {
        display: block;
    }

    /*ハンバーガーメニューの下の文字*/
    .header-hamburger.active:after {
        content: "CLOSE";
        right: -3px;
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }

    /*矢印*/
    .header-slidemenu .header-slidemenu__wrapper:after {
        content: "";
        position: absolute;
        right: 25px;
        top: 43%;
        width: 7px;
        height: 7px;
        border: 0;
        border-top: solid 1px #0096DF;
        border-right: solid 1px #0096DF;
        transform: rotate(45deg);
    }
}

/*footer*/
footer {
    position: relative;
    width: 100%;
    padding: 5px 0;
    z-index: 989;
    color: #333333;
}
.home footer {
    position: absolute;
    bottom: 0;
}
footer .copyright {
    font-size: .9rem;
    text-align: center;
}
/*ページトップ*/
footer .pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
footer .pagetop a {
    display: inline-block;
    position: relative;
    padding: 110px 10px 20px;
    overflow: hidden;
    color: #000;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.001em;
    z-index: 3;
}
footer .pagetop a span {
    position: absolute;
    bottom: 30px;
    left: 48%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-animation: sdb 1.5s infinite;
    animation: sdb 1.5s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb {
    0% {
        -webkit-transform: rotate(135deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(135deg) translate(-20px, 20px);
        opacity: 0;
    }
}
@keyframes sdb {
    0% {
        transform: rotate(135deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(135deg) translate(-20px, 20px);
        opacity: 0;
    }
}
@media screen and (max-width: 767px) {
    footer .pagetop {
        display: none!important;
    }
}


/*university 閉*/
#university {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9790;
}

/*university 開*/
#university.active {
    display: block;
}
#university.active .university-close-area {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9791;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
}
#university.active  ul.university-list {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 280px;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: -6px 0px 12px 0px rgba(0, 0, 0, 0.12);
    -webkit-transition: all .2s;
       -moz-transition: all .2s;
         -o-transition: all .2s;
            transition: all .2s;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9999;
}
#university.active  ul.university-list li {
    border-bottom: 1px #a9a9a9 dotted;
}
#university.active  ul.university-list li a{
    display: block;
    padding: 14px 0 14px 20px;
}
#university.active  ul.university-list li a.active {
    right: 280px;
}
#university.active  ul.university-list li a:hover{
    background: #0096DF;
    color: #ffffff;
}
@media screen and (max-width: 767px) {
    #university.active  ul.university-list li {
        font-size: 1.3rem;
    }
}

/*その他*/
.inner {
    max-width: 1104px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
@media screen and (max-width: 767px) {
    .inner {
        padding: 0 3%;
    }
}

/* ==================================================== */
/*  アニメーション
/* ==================================================== */
/*フェードイン下から上*/
.fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
}
.fadein.active {
    transform: translateY(0);
    transition: opacity 1s, transform 1s;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-name: fadeUp;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* A4縦でPCレイアウトを印刷させる
==================================================== */
@media print {
    html,
    html body {
        *zoom: 0.65;
    }
    body {
        width: 960px;
    }
}