@charset "utf-8";

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #101010;
    line-height: 1.6;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: #fff;
}

@media (min-width: 768px) {
    body {
        min-width: 1200px;
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: #101010;
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .is_header_show .contents_wrap {
        padding-top: 140px;
    }
}

@media (max-width: 767px) {
    .is_header_show .contents_wrap {
        padding-top: 75px;
    }
}

/* ---------------------------------------------------- */
/* header */
/* ---------------------------------------------------- */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 140px;
    z-index: 200;
    transition: 0.3s ease-in-out;
}
header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

/* .is_header_show header,
.is_header_scr header {
    background-color: #fff;
} */
.is_page_scr header,
.is_header_show header {
    background-color: #fff;
}
.is_page_scr header:before,
.is_header_show header:before {
    opacity: 0;
}
header .header_inner {
    position: relative;
    width: 100%;
    min-width: 1200px;
    height: 100%;
}

header .site_ttl {
    position: absolute;
    left: 56px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
}

header .site_ttl a {
    display: block;
    width: 150px;
}

header .nav_h1_wrap {
    position: absolute;
    right: 520px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
}

header .nav_h1_wrap > ul {
    display: flex;
}
header .nav_h1_wrap > ul > li {
    position: relative;
    flex: initial;
    width: auto;
}

header .nav_h1_wrap > ul > li + li {
    margin-left: 50px;
}
header .nav_h1_wrap > ul > li.has_children::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 15px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0px 4px;
    border-color: #00287c transparent transparent transparent;
}
header .nav_h1_wrap .main > li > a {
    display: block;
    /* color: #fff; */
    color: #00287c;
    padding-top: 12px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}

header .nav_h1_wrap .main > li > a .en {
    display: block;
    font-family: "din-2014", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
}

header .nav_h1_wrap .main > li > a .ja {
    position: relative;
    display: block;
    margin-top: 12px;
    padding-bottom: 14px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}

header .nav_h1_wrap .main > li > a .ja::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 2px;
    background-color: #00287c;
    transition: 0.3s ease-in-out;
}
header .nav_h1_wrap .sub {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translate(-50%, 100%);
    background-color: #fff;
    border: 2px solid #00287c;
}
header .nav_h1_wrap .is_show .sub {
    opacity: 1;
    pointer-events: all;
}
header .nav_h1_wrap .sub > li + li {
    border-top: 2px solid #00287c;
}

header .nav_h1_wrap .sub > li > a {
    display: block;
    color: #00287c;
    padding: 10px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}

/* .is_header_show header .nav_h1_wrap a .ja::after,
.is_header_scr header .nav_h1_wrap a .ja::after {
    background-color: #00287c;
} */

header .nav_h4_wrap {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
}
header .nav_h4_wrap > ul {
    display: flex;
    align-items: center;
}
header .nav_h4_wrap > ul > li + li {
    margin-left: 10px;
}
header .nav_h4_wrap .btn_recruit_1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: #fff;
    border: 1px solid #fff;
}
.is_header_show header .nav_h4_wrap .btn_recruit_1,
.is_page_scr header .nav_h4_wrap .btn_recruit_1 {
    border-color: #00287c;
}
header .nav_h4_wrap .btn_recruit_1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0px 0px;
    border-color: #ffe634 transparent transparent transparent;
}
header .nav_h4_wrap .btn_recruit_1 img {
    width: auto;
    height: 100%;
}
header .nav_h4_wrap .btn_contact_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    background-color: #00287c;
    border: 1px solid #00287c;
}

header .btn_toggle_megamenu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    z-index: 110;
}

header .btn_toggle_megamenu div {
    position: relative;
    width: 24px;
    height: 20px;
}

header .btn_toggle_megamenu.is_show {
    background-color: #fafafa;
}

header .btn_toggle_megamenu div > span span,
header .btn_toggle_megamenu div > span:before,
header .btn_toggle_megamenu div > span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 100%;
    height: 2px;
    /* background-color: #fff; */
    background-color: #00287c;
    transform-origin: center center;
    transition: 0.3s ease-in-out;
}

.is_header_show header .btn_toggle_megamenu div > span span,
.is_header_show header .btn_toggle_megamenu div > span:before,
.is_header_show header .btn_toggle_megamenu div > span:after,
.is_header_scr header .btn_toggle_megamenu div > span span,
.is_header_scr header .btn_toggle_megamenu div > span:before,
.is_header_scr header .btn_toggle_megamenu div > span:after {
    background-color: #00287c;
}

header .btn_toggle_megamenu div > span span {
    transform: translateY(-1px);
}

header .btn_toggle_megamenu div > span:before {
    transform: translateY(-9px);
}

header .btn_toggle_megamenu div > span:after {
    transform: translateY(7px);
}

header .btn_toggle_megamenu.is_show div > span span,
header .btn_toggle_megamenu.is_show div > span:before,
header .btn_toggle_megamenu.is_show div > span:after {
    width: 100% !important;
    background-color: #00287c !important;
}

header .btn_toggle_megamenu.is_show div > span span {
    opacity: 0;
}

header .btn_toggle_megamenu.is_show div > span:before {
    transform: translateY(-50%) rotate(-45deg);
}

header .btn_toggle_megamenu.is_show div > span:after {
    bottom: 0;
    transform: translateY(-50%) rotate(45deg);
}

header .megamenu_wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #fafafa;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
}

header .megamenu_wrap .megamenu_inner {
    padding: 100px 0 10px;
    margin: 0 auto;
    width: 1168px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    header .nav_h1_wrap {
        right: 430px;
    }

    header .nav_h4_wrap .btn_recruit_1 {
        height: 36px;
    }
    header .nav_h4_wrap .btn_contact_1 {
        padding: 0 15px;
        height: 36px;
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    header .nav_h1_wrap .main > li.is_current > a .ja::after,
    header .nav_h1_wrap .main > li > a:hover .ja::after {
        width: 100%;
    }
    header .nav_h1_wrap .sub > li > a:hover {
        color: #fff;
        background-color: #00287c;
    }
    header .btn_recruit_1:hover {
        background-color: rgba(0, 40, 124, 0.2);
    }
    header .btn_contact_1:hover {
        background-color: #3a3a3a;
    }

    header .btn_toggle_megamenu:hover {
        background-color: #3a3a3a;
    }

    header .btn_toggle_megamenu:hover div > span span,
    header .btn_toggle_megamenu:hover div > span:before,
    header .btn_toggle_megamenu:hover div > span:after {
        background-color: #fff !important;
    }
}

@media (max-width: 767px) {
    header {
        height: 75px;
    }

    header .header_inner {
        min-width: auto;
    }

    header .site_ttl {
        left: 15px;
    }

    header .site_ttl a {
        width: 80px;
    }

    header .nav_h1_wrap {
        display: none;
    }

    header .nav_h4_wrap {
        right: 60px;
    }
    header .nav_h4_wrap > ul {
        display: block;
    }
    header .nav_h4_wrap > ul > li + li {
        margin-left: 0;
        margin-top: 5px;
    }
    header .nav_h4_wrap .btn_recruit_1 {
        height: 30px;
    }
    header .nav_h4_wrap .btn_contact_1 {
        padding: 0 10px;
        height: 30px;
        font-size: 1rem;
    }
    header .nav_h4_wrap .btn_contact_2 {
        margin-top: 2px;
    }

    header .btn_toggle_megamenu {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    header .megamenu_wrap {
        padding-top: 90px;
    }

    header .megamenu_wrap .megamenu_inner {
        padding: 0 15px 30px;
        width: auto;
    }
}

/* ---------------------------------------------------- */
/* footer */
/* ---------------------------------------------------- */
footer {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

footer .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1168px;
}

footer .nav_cv_wrap > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .nav_cv_wrap > ul > li {
    width: calc(50% - 5px);
}

footer .nav_cv_wrap a {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}
footer .nav_cv_wrap a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(58, 176, 233, 1) 5%, rgba(0, 40, 124, 1) 95%);
    mix-blend-mode: multiply;
    opacity: 0.5;
    z-index: 2;
}

footer .nav_cv_wrap .img > span {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 39%;
}

footer .nav_cv_wrap .recruit a {
    background-image: url(../img/cv/2.jpg);
}

footer .nav_cv_wrap .en {
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    font-size: 80px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    z-index: 2;
}

footer .nav_cv_wrap .ja {
    position: absolute;
    left: 50%;
    top: calc(50% - 30px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 300px;
    max-width: 100%;
    height: 60px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    border: 2px solid #fff;
    border-radius: 30px;
    z-index: 2;
    transition: 0.3s ease-in-out;
}

footer .nav_cv_wrap .ja::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(../../common/img/ico/arrow_2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

footer .menu_wrap {
    padding-top: 100px;
    padding-bottom: 70px;
    background-color: #fafafa;
}

footer .menu_wrap .btn_contact_1 {
    height: 90px;
}

footer .menu_wrap .btn_contact_2 {
    display: none;
}

footer .outline_wrap {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
    color: #00287c;
    text-align: center;
}

footer .outline_wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 200vw;
    height: 2px;
    background-color: #00287c;
}

footer .outline_wrap .logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 150px;
}

footer .outline_wrap .copy_1 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

footer .outline_wrap .copy_2 {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

footer .outline_wrap .copyright {
    font-size: 1.2rem;
}

footer .outline_wrap .privacy {
    /* position: absolute;
    left: calc(50% + 200px);
    bottom: 10px; */
    display: inline-block;
    margin-left: 50px;
    color: #00287c;
}

@media (min-width: 768px) {
    footer .nav_cv_wrap a:hover .ja {
        background-color: rgba(255, 255, 255, 0.3);
        border-color: transparent;
    }
}

@media (max-width: 767px) {
    footer .footer_inner {
        width: calc(100% - 30px);
    }

    footer .nav_cv_wrap > ul {
        margin-bottom: -20px;
    }

    footer .nav_cv_wrap > ul > li {
        margin-bottom: 20px;
        width: 100%;
    }

    footer .nav_cv_wrap .en {
        bottom: -12px;
        font-size: 50px;
    }

    footer .nav_cv_wrap .ja {
        top: calc(50% - 40px);
        width: 80%;
        height: 60px;
    }
    footer .menu_wrap {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    footer .outline_wrap .logo {
        position: static;
        transform: translate(0);
        margin: 0 auto 40px;
        width: 150px;
    }

    footer .outline_wrap .copy_1 {
        margin-bottom: 10px;
        font-size: 1.3rem;
        letter-spacing: 0.1em;
        font-weight: 700;
    }

    footer .outline_wrap .copy_2 {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    footer .outline_wrap .copyright {
        font-size: 1rem;
    }

    footer .outline_wrap .privacy {
        margin-left: 0;
        margin-top: 10px;
    }
}
