@charset "utf-8";
/* CSS Document */

* {
    line-height: 1;
}


html {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}

img {
    border: 0;
    vertical-align: top;
    object-fit: cover;
}


/*clearfix*/
.clearfix:after {
    content: " ";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
}

* html .clearfix {
    display: inline-block;
}

/* no ie mac \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.clearfix {
    overflow: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    word-wrap: break-word;
}

/*body*/

body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    opacity: 0.75;
}

/* basefont */
:root {
    --base-font: 'Noto Sans JP', sans-serif;
    --title-font: "Zen Old Mincho", serif;
    --subtitle-font: "Open Sans", sans-serif;
    --subtitle2-font: "Open Sans Condensed", sans-serif;

    --base-font-size: 16px;
    --base-font-size2: 20px;
    --base-font-size3: 24px;
    --base-font-size4: 30px;

    --base-weight: 400;
    --base-weight2: 500;
    --base-weight3: 600;

    --color-base: #000;
    --color-main: #EF8337;
    --color-sub: #009B73;
    --color-sub2: #778F98;
    --color-sub3: #2A8798;
    --color-back01: #F4F2EC;
}



.contents-box {
    font-family: var(--base-font);
    font-weight: var(--base-weight);
    clear: both;
    margin-right: auto;
    margin-left: auto;
    font-size: var(--base-font-size);
    color: var(--color-base);
    line-height: 1;
}

.contents-box p {
    font-family: var(--base-font);
    font-weight: var(--base-weight);
    font-size: var(--base-font-size);
    color: var(--color-base);
    line-height: 2;
    letter-spacing: 0.05em;
}

.contents-box a {
    color: var(--color-base);
    font-weight: var(--base-weight);
}

.contents-box p a {
    color: var(--color-base);
    font-weight: var(--base-weight);
}

/* animation_box */

.animation_box {
    transition: 1s ease;
    opacity: 0;
    transition-delay: .5s;
    transform: translate(0px, 0px);
}

.animation_box2 {
    transition-delay: 1s;
}

.animation_box3 {
    transition-delay: 1.5s;
}

.animation_box4 {
    transition-delay: 2s;
}

.animation_box-top {
    transform: translateY(50px);
}

.animation_box-bottom {
    transform: translateY(-50px);
}

.animation_box-left {
    transform: translateX(-50px);
}

.animation_box-right {
    transform: translateX(50px);
}

.animation_box.effect {
    opacity: 1;
    transform: translate(0px, 0px);
}


/*header*/

#header {
    width: 100%;
}

.header {
    z-index: 99;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
}

.header-in {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
}

.header .header-left {
    padding-left: 25px;
}

.header h1,
.drawer-nav h2 {
    position: relative;
}

.header h1::after,
.drawer-nav h2::after {
    content: "RECRUITING SITE";
    font-family: var(--subtitle-font);
    font-weight: var(--base-weight2);
    color: var(--color-sub);
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
    padding-left: 15px;
}

.header .header-left img,
.drawer-nav h2 img {
    height: 25px;
    width: auto;
}

/* PCメニュー */

.header .pc-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0px 25px;
}

.pc-nav-menu ul {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 60px;
}

.pc-nav > .pc-nav-menu ul {
    width: 300px;
}

.c-spheader .pc-nav-menu {
    padding: 45px 0px;
}

.pc-nav-menu ul li {
    width: 50%;
}

.pc-nav-menu ul li a {
    display: block;
    padding: 18px 0px;
    text-align: center;
    font-family: var(--subtitle-font);
    font-weight: var(--base-weight2);
    color: #FFF;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0em;
}

.pc-nav-menu ul li:nth-child(1) a {
    background-color: var(--color-sub);
}

.pc-nav-menu ul li:nth-child(2) a {
    background-color: var(--color-main);
}


/* スマホメニュー */

.c-spheader {
    width: 90px;
    z-index: 99999999;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
}

.c-spheader .hn {
    width: 90px;
}

.drawer-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0px;
    width: 40%;
    max-width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 99;
    background-color: #FFF;
}

@media screen and (max-width: 767px) {

    .c-spheader {
        width: 60px;
    }

    .c-spheader .hn {
        width: 60px;
    }

    .drawer-nav {
        width: 100%;
    }
}

.drawer-menu {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.drawer-menu-item {
    width: 88%;
    padding-top: 90px;
}

.c-spheader .d-itembox {
    width: 100%;
    border-top-style: solid;
    border-color: rgba(204, 204, 204, 0.5);
    border-width: 1px;
}

.c-spheader .d-item {
    position: relative;
    width: 100%;
}

.c-spheader .d-item {
    border-bottom-style: solid;
    border-color: rgba(204, 204, 204, 0.5);
    border-width: 1px;
}

.c-spheader .d-item-in a,
.c-spheader .d-item-in span {
    font-size: 18px;
    line-height: 1.2;
    display: block;
    text-decoration: none;
    color: var(--color-sub);
    font-weight: 500;
    position: relative;
    width: 100%;
    padding: 20px 5px;
}

/* 子階層 */

.c-spheader .d-sublist {
    border-top-style: solid;
    border-color: rgba(204, 204, 204, 0.5);
    border-width: 1px;
    display: none;
    padding: 5px 0px;
    background-color: var(--color-back01);
}

.c-spheader .sublist a {
    font-size: 14px;
    display: block;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 15px 0px;
    padding-left: 30px;
}

.c-spheader .sublist a::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 20px;
    width: 5px;
    height: 5px;
    display: block;
    background-color: #666;
    border-radius: 50%;
}

.c-spheader .sublist:not(:last-child) a {
    border-bottom-style: solid;
    border-color: rgba(204, 204, 204, 0.5);
    border-width: 1px;
}

.c-spheader .d-item a:hover {
    opacity: 0.75;
}

/* 子階層トグルボタン */

.c-spheader .d-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.c-spheader .d-btn span {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    transition: all .5s ease;
}

.c-spheader .d-btn::before,
.c-spheader .d-btn::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    background-color: #666;
    transition: all .5s ease;

}

.c-spheader .d-btn::before {
    top: 30px;
    right: 13px;
    transform: rotate(0deg);

}

.c-spheader .d-btn::after {
    top: 30px;
    right: 13px;
    transform: rotate(90deg);

}

.c-spheader .d-btn.close::after {
    transform: rotate(180deg);
}

/*開閉ボタン*/
#nav_toggle {
    width: 90px;
    height: 90px;
    padding: 30px 25px;
    position: relative;
    top: 0px;
    right: 0px;
    z-index: 1000000;
    cursor: pointer;
    background-color: var(--color-back01);
}


#nav_toggle div {
    position: relative;
}

#nav_toggle span {
    display: block;
    height: 2px;
    background: var(--color-sub);
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#nav_toggle span:nth-child(1) {
    top: 0px;
}

#nav_toggle span:nth-child(2) {
    top: 12px;
}

#nav_toggle span:nth-child(3) {
    top: 24px;
}

/*開閉ボタンopen時*/

.open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media screen and (max-width: 767px) {
    #nav_toggle {
        width: 60px;
        height: 60px;
        padding: 20px 15px;
    }

    #nav_toggle span:nth-child(1) {
        top: 0px;
    }

    #nav_toggle span:nth-child(2) {
        top: 9px;
    }

    #nav_toggle span:nth-child(3) {
        top: 18px;
    }

    .open #nav_toggle span:nth-child(1),
    .open #nav_toggle span:nth-child(3) {
        top: 9px;
    }
}

/* title-page */

.title-page .box-inner {
    width: 100%;
    position: relative;
}

.title-page .box-img {
    width: 100%;
    position: relative;
}

.title-page .box-img img {
    width: 100%;
    height: auto;
    max-height: 530px;
}

.title-page .box-img::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url("../../common/images/common/back-title.png");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.title-page .box-text {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    padding-top: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
}

.title-page h2,
.title-page h3,
.title-page p {
    font-weight: var(--base-weight);
    color: #FFF;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.title-page h2 {
    font-family: var(--subtitle-font);
    font-size: 65px;
    line-height: 0.9;
}

.title-page h3 {
    font-family: var(--title-font);
    font-weight: var(--base-weight2);
    font-size: 17px;
    padding-top: 15px;
}

.title-page p {
    font-size: 14px;
    line-height: 2.2;
    padding-top: 30px;
}

/* contents */

.contents {
    width: 100%;
    position: relative;
    background-color: var(--color-back01);
}

.contents img {
    width: 100%;
    height: auto;
}

.container .box-img {
    text-align: center;
}

.contents .container {
    padding: 80px 0px 100px;
}

.contents .container section:not(:last-child) {
    margin-bottom: 80px;
}


/* layout */

.layout-c {
    margin-left: auto;
    margin-right: auto;
}

.layout-940 {
    width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.layout-1000 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.layout-1100 {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.layout-1200 {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* layout-whitebox */

.layout-whitebox {
    background-color: #FFF;
    position: relative;
    padding: 80px 0px 60px;
}

.layout-whitebox::before {
    content: "";
    position: absolute;
    left: 15%;
    top: 0px;
    display: block;
    width: 70%;
    height: 84px;
    margin-top: -42px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-weight: var(--base-weight2);
    color: #FFF;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    background: -moz-linear-gradient(50% 0% -90deg, rgba(42, 135, 152, 1) 0%, rgba(0, 155, 115, 1) 100%);
    background: -webkit-linear-gradient(-90deg, rgba(42, 135, 152, 1) 0%, rgba(0, 155, 115, 1) 100%);
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgba(42, 135, 152, 1)), color-stop(1, rgba(0, 155, 115, 1)));
    background: -o-linear-gradient(-90deg, rgba(42, 135, 152, 1) 0%, rgba(0, 155, 115, 1) 100%);
    background: -ms-linear-gradient(-90deg, rgba(42, 135, 152, 1) 0%, rgba(0, 155, 115, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#2A8798', endColorstr='#009B73' ,GradientType=0)";
    background: linear-gradient(180deg, rgba(42, 135, 152, 1) 0%, rgba(0, 155, 115, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2A8798', endColorstr='#009B73', GradientType=0);
}


/* layout-imglink */

.layout-imglink .box-img,
.layout-imglink picture {
    overflow: hidden;
    position: relative;
    display: block;
}

.layout-imglink a:hover {
    opacity: 1;
}

.layout-imglink .box-img img {
    transition: .5s all;
}

.layout-imglink .box-img:hover img {
    transform: scale(1.1, 1.1);
    transition: .5s all;
}


/* icon-circle */

.icon-circle {
    position: relative;
    display: inline-block;
}

.icon-circle::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-main);
    margin-right: -15px;
}



/* title_contents */

.title_contents01 {
    margin-bottom: 60px;
}

.title_contents01 h2,
.title_contents01 h3 {
    line-height: 1;
    letter-spacing: 0em;
}

.title_contents01 h2 {
    font-family: var(--subtitle-font);
    font-weight: var(--base-weight2);
    color: var(--color-sub2);
    font-size: 17px;
    margin-bottom: 10px;
}

.title_contents01 h3 {
    font-weight: var(--base-weight);
    font-size: 50px;
    text-indent: -5px;
}

.title_contents02 {
    font-weight: var(--base-weight2);
    color: var(--color-sub);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.title_contents02::after {
    content: "";
    display: block;
    margin: 0px auto;
    width: 40px;
    height: 1px;
    border-bottom-style: solid;
    border-color: var(--color-sub);
    border-width: 1px;
    margin-top: 15px;
}


/* link01 */

.link01 a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #FFF;
    line-height: 0.8;
    letter-spacing: 0.05em;
    font-weight: normal;
    position: relative;
    display: inline-block;
    text-align: left;
    padding: 22px 35px;
    min-width: 250px;
    background-color: #343B43;
    border-radius: 80px;
}

.link01 a:hover {
    opacity: 1;
    margin-right: -30px;
    min-width: 280px;
}

.link01 a::before,
.link01 a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0px;
    background-image: url("../../common/images/common/link-arrow03.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 28px;
    width: 28px;
    height: 100%;
    transition: .5s;
}

.link01 a::after {
    background-image: url("../../common/images/common/link-arrow02.svg");
}

.link01 a:hover::after {
    opacity: 0;
}

/* pagetop_btn */

.pagetop_btn {
    content: "";
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    display: none;
}


/*footer*/

footer {
    width: 100%;
    background-image: url("../../common/images/common/back-footer.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #277A88;
}

/* footer-guide */

.footer-guide {
    padding: 75px 0px 35px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
    position: relative;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0px 65px;
}

.footer-logo {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0px 65px;
    padding-bottom: 130px;
}

.footer-guide h2 {
    margin-bottom: 20px;
}

.footer-guide h3 {
    font-family: var(--subtitle-font);
    font-weight: var(--base-weight);
    color: #FFF;
    font-size: var(--base-font-size);
    line-height: 1.2;
}

.footer-guide ul li a,
.footer-guide ul li span,
.footer-guide h5 a {
    font-weight: var(--base-weight2);
    color: #FFF;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0em;
    display: block;
}

.footer-guide ul:not(:last-child) {
    margin-bottom: 30px;
}

.footer-guide ul li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-guide ul li:first-child span,
.footer-guide .box:first-child ul:first-child li a {
    font-size: var(--base-font-size);
    color: var(--color-main);
}

.footer-guide ul li a:hover,
.footer-guide h5 a:hover {
    opacity: 1;
}

.footer-guide ul li a:hover,
.footer-guide h5 a:hover {
    text-decoration: underline;
}

.footer-guide h6 img {
    height: 25px;
    width: auto;
}

.footer-guide p {
    font-weight: var(--base-weight);
    color: #ECF0F2;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0em;
    padding-top: 20px;
}

/**
 * for SmartPhone
 */
@media screen and (min-width: 768px) {

    body {
        min-width: 1280px;
    }

    a[href^="tel:"] {
        pointer-events: none;
    }


    .dropmenu {
        *zoom: 1;
        z-index: 1000000;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }


    .dropmenu:before,
    .dropmenu:after {
        content: "";
        display: table;
    }

    .dropmenu:after {
        clear: both;
    }

    .dropmenu .box-li,
    .dropmenu .box-in2 {
        line-height: 1.2;
    }

    .dropmenu .box-li {
        position: relative;
    }


    .dropmenu .box-li > .box-in {
        list-style: none;
        position: absolute;
        z-index: 1000000000;
        top: 100%;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .dropmenu .box-li:hover > .box-in {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .dropmenu .box-in2 {
        width: 100%;
        max-width: 100%;
        background-color: #50A0FE;
    }

    .dropmenu .box-in4 a {
        text-align: center;
        color: #FFF;
        font-size: 13px;
        letter-spacing: 0em;
        line-height: 1.2;
        display: block;
        font-weight: 500;
        padding: 10px 5px;
        border-top-style: solid;
        border-color: rgba(255, 255, 255, 0.5);
        border-width: 1px;
    }

    .dropmenu .box-li > .box-in a {
        opacity: 1;
    }

    .dropmenu .box-li > .box-in a:hover {
        opacity: 0.75;
    }


    #fade-in2 .box-li > .box-in {
        opacity: 0;
        top: 80%;
        visibility: hidden;
        transition: .5s;
    }

    #fade-in2 .box-li:hover > .box-in {
        top: 110%;
        visibility: visible;
        opacity: 1;
    }



}

@media screen and (max-width: 767px) {

    html {
        scroll-padding-top: 90px;
    }

    body {}

    /* basefont */
    :root {
        --base-font-size: 14px;
        --base-font-size2: 16px;
        --base-font-size3: 18px;
        --base-font-size4: 22px;
    }


    /* header */

    .header-in {
        height: 60px;
    }

    .header .header-left {
        padding-top: 6px;
        padding-left: 10px;
    }

    .header h1::after,
    .drawer-nav h2::after {
        font-size: 16px;
        display: block;
        padding-left: 0px;
        padding-top: 5px;
    }

    .header .header-left img,
    .drawer-nav h2 img {
        height: 22px;
    }

    .header .pc-nav > .pc-nav-menu {
        display: none;
    }

    .c-spheader .pc-nav-menu ul {
        flex-direction: column;
        border-radius: 0px;
    }

    .c-spheader .pc-nav-menu ul li {
        width: 100%;
    }

    .logo-sp {
        position: absolute;
        left: 10px;
        top: 12px;
        z-index: 1;
    }


    /* スマホメニュー */

    .c-spheader {
        display: block;
    }

    /* title-page */

    .title-page .box-img img {
        min-height: 250px;
    }

    .title-page .box-text {
        padding-top: 60px;
    }

    .title-page h2 {
        font-size: 42px;
    }

    .title-page h3 {
        font-size: 15px;
        padding-top: 12px;
    }

    .title-page p {
        line-height: 2;
        padding-top: 20px;
    }

    /* contents */

    .container .box-img img {
        max-width: 400px;
    }

    .contents .container {
        padding: 50px 0px 70px;
    }

    .contents .container section:not(:last-child) {
        margin-bottom: 80px;
    }



    /* layout */

    .layout-940,
    .layout-1000,
    .layout-1100,
    .layout-1200 {
        width: 88%;
    }

    /* layout-imglink */

    .layout-imglink .box-img img {
        max-width: 100%;
    }


    /* layout-whitebox */

    .layout-whitebox {
        padding: 60px 0px 40px;
    }

    .layout-whitebox::before {
        content: "";
        left: 7%;
        width: 86%;
        height: 64px;
        margin-top: -32px;
        font-size: 18px;
    }

    /* icon-circle */

    .icon-circle::before {
        width: 8px;
        height: 8px;
        margin-right: -12px;
    }



    /* title_contents */

    .title_contents01 {
        margin-bottom: 40px;
    }

    .title_contents01 h2 {
        font-size: 14px;
    }

    .title_contents01 h3 {
        font-size: 28px;
        text-indent: -3px;
    }

    .title_contents02 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .title_contents02::after {
        width: 30px;
        margin-top: 12px;
    }



    /* pagetop_btn */

    .pagetop_btn {
        right: 20px;
        bottom: 20px;
    }

    .pagetop_btn img {
        height: 50px;
        width: auto;
    }


    /*footer*/

    /* footer-guide */

    .footer-guide {
        padding: 40px 0px 30px;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-right {
        display: none;
    }

    .footer-logo {
        position: static;
        padding-top: 70px;
    }

    .footer-guide h2 img {
        width: 98%;
        max-width: 400px;
        height: auto;
    }

    .footer-guide h3 {
        font-size: 12px;
    }

    .footer-guide p {
        font-size: 8px;
    }



}
