@charset "UTF-8";

* {
    letter-spacing: .05em;
}

p.text {
    letter-spacing: normal
}

body {
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

.wrapper {
    margin: 0 auto;
    max-width: calc(100vw - 30px);
    position: relative;
    width: 1240px;
}

.wrap_inner {
    margin: 0 auto;
    max-width: calc(100vw - 50px);
    position: relative;
    width: 1000px;
}

a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: .2s;
}

a:before,
a:after {
    transition: .2s;
}

p>a {
    display: inline-block;
    text-decoration: underline;
    color: #3f84e2;
}


/* header
***************************************/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0 2rem clamp(3rem, 4.2vw, 7rem);
    display: flex;
    align-items: center;
    justify-content: start;
    z-index: 9999;
}

#header .h_logo {
    width: 18rem;
}

#header .h_wrap {
    margin: 0 0 0 auto;
    height: 8rem;
    border-radius: 100px 0 0 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 6rem 0 clamp(4rem, 5.5vw, 10rem);
    column-gap: clamp(4rem, 4vw, 10rem);
    font-size: clamp(1.6rem, 1.2vw, 2rem);
}

#header .h_nav {
    margin: 0 0 0 auto;
    height: 8rem;
    display: flex;
    align-items: center;
    column-gap: clamp(2rem, 1.8vw, 4rem);
}

#header .h_nav>li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#header .h_nav_link {
    color: #445c7d;
    position: relative;
}

#header .h_nav_link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 0px;
    height: 2px;
    background-color: #3f84e2;
}

#header .h_nav_btns {
    display: flex;
    column-gap: 2rem;
}

#header .h_nav_btn {
    width: 20rem;
    padding: 1rem 0 1rem 2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 100px;
    background-repeat: no-repeat;
    background-size: 2.8rem auto;
    background-position: 1.6rem center;
}

#header .h_nav_btn._recruit {
    background-color: #f99d25;
    border: 1px solid #f99d25;
    background-image: url(../img/common/recruit_1.svg);
}

#header .h_nav_btn._contact {
    background-color: #3f84e2;
    border: 1px solid #3f84e2;
    background-image: url(../img/common/mail_1.svg);
}

@media (min-width: 768px) {
    #header .h_nav_link:hover {
        color: #3f84e2;
    }

    #header .h_nav_link:hover:before {
        width: 100%;
    }

    #header .h_nav_btn._recruit:hover {
        background-color: #fff;
        color: #f99d25;
        background-image: url(../img/common/recruit_2.svg);
    }

    #header .h_nav_btn._contact:hover {
        background-color: #fff;
        color: #3f84e2;
        background-image: url(../img/common/mail_2.svg);
    }

    #header .h_nav_child {
        position: absolute;
        top: 100%;
        right: calc(50% - 18rem);
        left: calc(50% - 18rem);
        font-size: 1.8rem;
        opacity: 0;
        visibility: hidden;
        padding: 4rem 3rem 3rem;
        border-radius: 20px;
        transition: .3s;
    }

    #header .h_nav_child:before {
        content: "";
        position: absolute;
        top: 1rem;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 20px;
        background-color: #fff;
        z-index: -1;
        box-shadow: 0 0 6px rgba(0, 0, 0, .2);
    }

    #header .h_nav>li:hover .h_nav_child {
        opacity: 1;
        visibility: visible;
    }

    #header .h_nav_child {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
    }

    #header .h_nav_child_link {
        padding-bottom: 1rem;
        letter-spacing: 0;
        border-bottom: 1px solid #445c7d;
    }

    #header .h_nav_child_link:hover {
        color: #3f84e2;
    }
}

@media (max-width: 767px) {
    #header {
        padding: 0;
        height: 6rem;
        background-color: #fff;
    }

    #header .h_logo {
        width: 13rem;
        padding: 0 0 0 1rem;
    }

    #header .h_wrap {
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        column-gap: 0;
        height: auto;
    }

    #header .h_nav_btns {
        column-gap: 0;
    }

    #header .h_nav_btn {
        border-radius: 0;
        height: 6rem;
        width: 6rem;
        font-size: 1rem;
        padding: .5rem 0;
        display: flex;
        align-items: end;
        justify-content: center;
        background-position: center .5rem;
    }

    #header .h_btn {
        width: 6rem;
        height: 6rem;
        position: relative;
        border: 1px solid #445c7d;
        cursor: pointer;
    }

    #header .h_btn span {
        position: absolute;
        background-color: #445c7d;
        right: 1.5rem;
        left: 1.5rem;
        height: 3px;
        display: inline-block;
        transition: .3s;
    }

    #header .h_btn span:nth-of-type(1) {
        top: 1.9rem;
    }

    #header .h_btn span:nth-of-type(2) {
        top: 2.8rem;
    }

    #header .h_btn span:nth-of-type(3) {
        top: 3.7rem;
    }

    #header .h_btn.active span:nth-of-type(1) {
        transform: rotate(225deg);
        top: 2.8rem;
    }

    #header .h_btn.active span:nth-of-type(2) {
        opacity: 0;
    }

    #header .h_btn.active span:nth-of-type(3) {
        transform: rotate(-225deg);
        top: 2.8rem;
    }

    #header .h_nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background-color: rgba(68, 92, 125, .9);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        visibility: hidden;
        opacity: 0;
        transition: .2s;
        max-height: calc(100svh - 6rem);
        overflow: auto;
    }

    #header .h_nav>li {
        width: 100%;
    }

    #header .h_nav_link {
        color: #fff;
        width: 100%;
        text-align: center;
        padding: 1.3em 0;
        border-bottom: 1px solid #fff;
    }

    #header .h_nav.active {
        visibility: visible;
        opacity: 1;
    }

    #header .h_nav_child {
        width: 100%;
        overflow: hidden;
        background-color: rgba(255,255,255,.8);
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    #header .h_nav_child_link {
        text-align: center;
        padding: 1.5rem 0;
        border-bottom: 1px solid #445c7d;
    }

    #header .h_nav_child_open {
        width: 4.1em;
        height: 4.1em;
        position: absolute;
        right: 0;
        top: 0;
    }

    #header .h_nav_child_open:before,
    #header .h_nav_child_open:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 30%;
        height: 3px;
        border-radius: 10px;
        background-color: #fff;
        transition: .3s;
    }

    #header .h_nav_child_open:after {
        transform: rotate(90deg);
    }

    #header .h_nav.active .h_nav_child_open.active + .h_nav_child {
        height: auto;
        opacity: 1;
        visibility: visible;
    }

    #header .h_nav_child_open.active:after {
        transform: rotate(0deg);
    }
}


/* template
***************************************/
.style_btn {
    display: flex;
    flex-wrap: wrap;
}

.style_btn a {
    min-width: 28rem;
    background-color: #445c7d;
    border: 1px solid #445c7d;
    border-radius: 1000px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 1.5rem 6rem 1.5rem 7rem;
    background-image: url(../img/common/arrow_1.svg);
    background-repeat: no-repeat;
    background-size: 3rem;
    background-position: 2rem center;
}

.style_btn.back a {
    background-image: url(../img/common/arrow_3.svg);
}

@media (min-width: 768px) {
    .style_btn a:hover {
        background-image: url(../img/common/arrow_2.svg);
        background-color: #fff;
        color: #445c7d;
    }

    .style_btn.back a:hover {
        background-image: url(../img/common/arrow_4.svg);
    }
}

@media (max-width: 767px) {
    .style_btn a {
        width: 100%;
        font-size: 1.8rem;
    }
}


/* footer
***************************************/
.footer {
    padding: 7rem 0 8rem;
    background-color: #445c7d;
}

.footer .wrapper {
    display: flex;
    align-items: start;
    column-gap: 5rem;
}

.footer .f_l {
    width: 40rem;
}

.footer .f_logo {
    width: 24rem;
    margin-bottom: 2.8rem;
}

.footer .f_address {
    line-height: 2;
    letter-spacing: normal;
    color: #fff;
    margin-bottom: 4rem;
}

.footer .f_recruit_btn {
    width: 100%;
    border: 3px solid #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 1.5rem;
    color: #fff;
    background-color: #445c7d;
    margin-bottom: 2rem;
}

.footer .f_contact_btn {
    width: 100%;
    border: 3px solid #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 1.5rem;
    color: #445c7d;
    background-color: #fff;
}

.footer .f_r {
    width: calc(100% - 45rem);
    display: flex;
    column-gap: 5rem;
    flex-wrap: wrap;
}

.footer .f_nav {
    display: flex;
    flex-direction: column;
    width: calc(50% - 2.5rem);
}

.footer .f_nav .f_parent {
    font-size: 2rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.footer .f_nav .f_parent+.f_parent,
.footer .f_nav ul+.f_parent {
    margin-top: 3rem;
}

.footer .f_nav ul {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 1.2rem;
}

.footer .f_nav ul a {
    font-size: 1.8rem;
    color: #fff;
    padding-left: 1em;
    position: relative;
}

.footer .f_nav ul a:before {
    content: "";
    position: absolute;
    left: 0;
    top: .5em;
    width: .5em;
    height: .5em;
    border-radius: 50%;
    background-color: #fff;
}

.copyright {
    padding: 1rem 0 2rem;
    color: #445c7d;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
}

.copyright a:hover {
    opacity: .7;
}

.copyright img {
    width: 8rem;
}

#page-top {
    width: 6rem;
    height: 6rem;
    border-radius: 5px;
    position: fixed;
    right: 4rem;
    bottom: 12rem;
    z-index: 800;
    background-color: #445c7d;
    transition: 0s;
}

#page-top:before {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 20%;
    height: 20%;
    transform: rotate(-45deg);
}

#page-top:hover {
    opacity: .8;
}

@media (min-width: 768px) {
    .footer .f_nav .f_parent:hover {
        opacity: .6;
    }

    .footer .f_nav ul a:hover {
        opacity: .6;
    }

    .footer .f_recruit_btn:hover {
        background-color: #fff;
        color: #445c7d;
    }

    .footer .f_contact_btn:hover {
        background-color: #445c7d;
        color: #fff;
    }
}

@media (max-width: 767px) {
    .footer .wrapper {
        flex-wrap: wrap;
    }

    .footer .f_l {
        width: 100%;
        margin-bottom: 6rem;
    }

    .footer .f_r {
        width: 100%;
        row-gap: 3rem;
    }

    .footer .f_recruit_btn {
        font-size: 1.6rem;
    }

    .footer .f_contact_btn {
        font-size: 1.6rem;
    }

    .footer .f_logo {
        margin: 0 auto 2.8rem;
    }

    .footer .f_nav {
        width: 100%;
    }

    .footer .f_nav ul {
        margin-top: 2rem;
    }

    .footer .f_nav .f_parent {
        font-size: 1.6rem;
    }

    .footer .f_nav ul a {
        font-size: 1.6rem;
    }

    .copyright {
        font-size: 1.2rem;
        flex-direction: column-reverse;
        row-gap: 2rem;
        padding: 2rem 0 3rem;
    }

    .copyright img {
        width: 10rem;
    }

    #page-top {
        right: 2rem;
        bottom: 4rem;
        width: 5rem;
        height: 5rem;
    }
}


/* 汎用
***************************************/
#key {
    background-image: url(../img/common/key_default.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

#key:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: +1;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0) 75%);
}

#key .wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 40rem;
    padding: 8rem 0 0;
    position: relative;
    z-index: +2;
}

#key .main {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #445c7d;
}

#key .sub {
    font-size: 2rem;
    font-weight: 700;
    color: #3f84e2;
    text-transform: uppercase;
}

#key .main span {
    display: inline-block;
}

@media (max-width: 767px) {
    #key .wrapper {
        padding: 8rem 0 2rem;
        min-height: 28rem;
    }

    #key .main {
        font-size: 3rem;
    }

    #key .sub {
        font-size: 1.8rem;
    }
}

#breadcrumbs {
    padding: .6rem 0;
    border-bottom: 1px solid #bbb;
}

#breadcrumbs .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    column-gap: 1.5rem;
}

#breadcrumbs .bc_home {
    height: 1.5em;
    width: 1.8rem;
    background-image: url(../img/common/home_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#breadcrumbs li {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

#breadcrumbs li:not(:last-child):after {
    content: "";
    display: block;
    width: .6rem;
    height: .6rem;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}

@media (max-width: 767px) {
    #breadcrumbs .wrapper {
        font-size: 1.4rem;
    }
}