  @charset "UTF-8";

/* ----------------------------------------

- html

---------------------------------------- */

html {font-size: 62.5%; width: 100%; height: 100%; background: #fff; overflow-y: scroll;}

/* ----------------------------------------

- body

---------------------------------------- */
body {
    color: #333;
    font-size: 1.6rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-style: normal;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: auto;
    width: 100%;
    height: 100%;
    position: relative;
}

/* ----------------------------------------

- .l-wrapper

---------------------------------------- */
.l-wrapper {
    position: relative;
    min-width: 1240px;
    height: 100%;
    z-index: 1;
}
@media screen and (max-width:960px){
    .l-wrapper {
        min-width: inherit;
    }
}

/* ----------------------------------------

- .l-header

---------------------------------------- */
.l-header {
    background: #5793d9;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width:960px){
	.l-header {
        height: 60px;
        width: calc(100% - 140px);
    }
    .p-header__logo img {
        width: 145px;
        height: 50px;
    }
}

/* ----------------------------------------

- .l-fixedNav

---------------------------------------- */
.l-fixedNav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
}
.p-fixedNav__list {
    display: flex;
}
.p-fixedNav__list a {
    position: relative;
    overflow: hidden;
}
.p-fixedNav__list a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #0f5098;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform .2s;
    z-index: 1;
}
.p-fixedNav__list a:hover:after {
    transform-origin: left top;
    transform: scaleX(1);
}
.p-fixedNav__entry {
    display: block;
    background: #222;
    width: 167px;
    height: 80px;
    text-align: center;
    line-height: 80px;
}
.p-fixedNav__entry span {
    display: inline-block;
    position: relative;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    z-index: 2;
}
.p-fixedNav__trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5793d9;
    width: 80px;
    height: 80px;
    position: relative;
}
.p-fixedNav__triggerIcon {
    position: relative;
    width: 30px;
    height: 12px;
    z-index: 2;
}
.p-fixedNav__triggerLine {
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: .3s;
} 
.p-fixedNav__triggerLine--top {
    top: 0;
}
.p-fixedNav__triggerLine--btm {
    bottom: 0;
}
.p-fixedNav__trigger.is-active {background: #fff;}
.p-fixedNav__trigger.is-active:after {display: none;}
.p-fixedNav__trigger.is-active .p-fixedNav__triggerLine {background: #5793d9;}
.p-fixedNav__trigger.is-active .p-fixedNav__triggerLine--top {transform: rotate(225deg); top: 5px; width: 29px;}
.p-fixedNav__trigger.is-active .p-fixedNav__triggerLine--btm {transform: rotate(135deg); bottom: 5px; width: 29px;}

@media screen and (max-width:960px){
    .p-fixedNav__entry {
        width: 80px;
        height: 60px;
        line-height: 60px;
    }
    .p-fixedNav__entry span {
        font-size: 1.6rem;
    }
    .p-fixedNav__trigger {
        width: 60px;
        height: 60px;
    }
}

/* ----------------------------------------

- .l-gNav

---------------------------------------- */
.l-gNav {
    width: 720px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -720px;
    background: #222;
    z-index: 2;
}
.p-gNav__scroll {
    padding: 80px;
} 
.p-gNav__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px 35px;
}
.p-gNav__list li {
    width: 50%;
    padding: 0 20px;
    margin: 0 0 40px;
}
.p-gNav__list li a {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    position: relative;
}
.p-gNav__list li a:hover {
    color: #5793d9;
}
.p-gNav__line {
    position: absolute;
    right: 0;
    top: 50%;
    height: 1px;
    width: 15px;
    z-index: 2;
    transform-origin: left center;
    transition: transform .2s;
    transform: scaleX(1);
    background: #5793d9;
}
.p-gNav__list li a:hover .p-gNav__line {
    transform-origin: right center;
    transform: scaleX(0);
}
.p-gNav__arrow {
    position: absolute;
    right: 4px;
    top: 50%;
    margin-top: -6px;
    height: 12px;
    width: 14px;
    z-index: 2;
    transform-origin: right center;
    transition: transform .2s;
    transform: scaleX(0);
    overflow: hidden;
}
.p-gNav__list li a:hover .p-gNav__arrow {
    transform: scaleX(1);
    transform-origin: left center;
}
.p-gNav__list li a .p-gNav__arrow:after {
    content: "";
    display: block;
    height: 12px;
    width: 14px;
    background: url("/recruit/graduate/wordpress/wp-content/themes/metawater/assets/images/common/icon_arrow-right_w.svg") no-repeat 0 0 / 14px 12px;
}

@media screen and (max-width:960px){
    .l-gNav {
        width: 300px;
        right: -300px;
    }
    .p-gNav__scroll {
        padding: 40px 20px;
    } 
    .p-gNav__list {
        display: block;
        margin: 0 0 45px;
    }
    .p-gNav__list li {
        width: 100%;
        padding: 0;
        margin: 0 0 25px;
    }
    .p-gNav__list li:last-of-type {
        margin-bottom: 0;
    }
}

/* ----------------------------------------

- .l-main

---------------------------------------- */
.l-main {
    width: 100%;
    position: relative;
    z-index: 3;
    background: #fff;
    overflow: hidden;
}

/* ----------------------------------------

- .l-entry

---------------------------------------- */
.l-entry {position: relative; z-index: 3; background: #eee; padding: 25px 0;}
@media screen and (max-width:960px){
    .l-entry {padding: 20px;}
}

/* ----------------------------------------

- .l-footer

---------------------------------------- */
.l-footer {
    width: 100%; padding: 50px 20px 260px;
    position: relative;
    background: #fff;
    background: url("/recruit/graduate/wordpress/wp-content/themes/metawater/assets/images/common/footer_wave.png") repeat-x center bottom / auto 200px #fff;
    z-index: 3;
}
.p-footer__in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.p-footer__header h2 {
    margin-bottom: 37px;
}
.p-footer__header ul {
    display: flex;
    margin-bottom: 20px;
}
.p-footer__header ul li {
    margin-right: 30px;
}
.p-footer__header ul li a {
    color: #5793d9;
    display: inline-block;
    position: relative;
}
.p-footer__header ul li a:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url("/recruit/graduate/wordpress/wp-content/themes/metawater/assets/images/common/icon_external_b.svg") no-repeat 0 0 / 14px 14px;
    margin-left: 3px;
    vertical-align: -1px;
}
.p-footer__header ul li a:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #5793d9;
    position: absolute;
    transform-origin: right bottom;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform .2s;
}
.p-footer__header ul li a:hover:before {
    transform: scaleX(1);
    transform-origin: left bottom;
}
.p-footer__header small {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.0rem;
}
.p-footer__nav {
    width: 660px;
    display: block;
}
.p-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
    padding-top: 28px;
}
.p-footer__nav ul li {
    width: 33.33%;
    padding: 0 30px;
    white-space: nowrap;
    margin: 0 0 38px;
}
.p-footer__nav ul li a {
    display: inline-block;
    position: relative;
}
.p-footer__nav ul li a:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    transform-origin: right bottom;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform .2s;
}
.p-footer__nav ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: left bottom;
}
@media screen and (max-width:960px){
    .l-footer {
        padding: 30px 20px 165px;
        background-size: auto 150px;
    }
    .p-footer__in {
        display: block;
        text-align: center;
    }
    .p-footer__header h2 {
        margin-bottom: 25px;
    }
    .p-footer__header h2 .is-spOnly {
        display: inline-block!important;
    }
    .p-footer__header ul {
        display: block;
        margin-bottom: 17px;
    }
    .p-footer__header ul li {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .p-footer__header ul li a {
        font-size: 1.4rem;
    }
    .p-footer__header ul li:last-of-type {
        margin-bottom: 0;
    }
    .p-footer__header small {
        line-height: 1.5;
    }
    .p-footer__nav {
        display: none;
    }

}














