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

* {
    line-height: 1;
}

html {
    scroll-padding-top: 50px;
    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: .5s;
}

a:hover {
    opacity: 0.75;
    transition: .5s;
}

/* basefont */
:root {
    --base-font: "Noto Sans JP", sans-serif;
    --base-font2: "Noto Serif JP", serif;
    --title-font: "Oswald", sans-serif;
    --title-font2: "Zen Old Mincho", serif;
    --subtitle-font: "Roboto", sans-serif;

    --base-font-size: 16px;

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

    --color-base: #000;
    --color-main: #fbb30e;
    --color-sub: #1a1a1a;
    --color-sub2: #f05a24;
    --color-sub3: #ffff00;
}


.contents-box {
    font-family: var(--base-font);
    font-weight: var(--base-weight);
    font-size: var(--base-font-size);
    color: var(--color-base);
    clear: both;
    margin-right: auto;
    margin-left: auto;
    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: 1.8;
    letter-spacing: 0.05em;
}

.contents-box p br.sp-view {
    display: none;
}

.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_box-left {
    transform: translateX(-100px);
}

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

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

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

.animation_box2 {
    transition-delay: 1s;
}

.animation_box3 {
    transition-delay: 1.5s;
}

.animation_box4 {
    transition-delay: 2s;
}

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



/*header*/

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

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 30px;
    position: relative;
}

.header::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    transition: .5s;
}

.hidden .header::before {
    background-color: rgba(255, 255, 255, 0);
}

.header > div {
    position: relative;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px 20px;
}

.header-left img {
    width: auto;
    transition: .5s;
}

.header-left h1 img {
    height: 90px;
}

.header-left h2 img {
    height: 50px;
}

.hidden .header-left h1 img {
    height: 115px;
}

.hidden .header-left h2 img {
    height: 75px;
}

.header-right {
    padding-top: 12px;
}

.header h6 a {
    font-weight: var(--base-weight3);
    background-color: var(--color-sub);
    font-size: 18px;
    color: #FFF;
    line-height: 1.2;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 12px 35px;
    text-align: center;
    border-radius: 5px;
}

.header h6 a:hover {
    background-color: var(--color-sub2);
    opacity: 1;
}


/*メニュー部分*/
nav {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    overflow: auto;
    background-color: #FFF;
}

nav .box-menu {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

nav .box-menu > h2 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    text-align: center;
}

nav .box-menu > h2 img {
    height: 60px;
    width: auto;
}

/*開閉ボタン*/
#nav_toggle {
    display: inline-block;
    vertical-align: top;
    float: right;
    width: 70px;
    height: 70px;
    position: relative;
    top: 10px;
    right: 15px;
    z-index: 10000000000;
    background-color: #abd05f;
    padding: 24px 15px;
    margin-right: 0px;
    margin-top: 0px;
    border-radius: 8px;
    cursor: pointer;
}

#nav_toggle div {
    position: relative;
}

#nav_toggle span {
    display: block;
    height: 1px;
    background: #FFF;
    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: 10px;
}

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

/*開閉ボタン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);
}

/* contents */

.contents {
    width: 100%;
    background-image: url("../images/recruit/back01.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 120% auto;
    padding-top: 130px;
}

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

.contents p {
    line-height: 2;
}

.contents-wrap {
    width: 100%;
    padding-top: 100px;
}



/* lay */

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

.lay p {
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: var(--base-weight);
}

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

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

.lay1180 {
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.lay-85 {
    width: 85%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.lay-90 {
    width: 90%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

/* box-title-top */

.box-title-top {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
    background-image: url("../images/common/back-title01.svg");
    background-position: center top;
    background-repeat: repeat-x;
    background-size: auto 110px;
}

.box-title-top h2 {
    font-weight: var(--base-weight3);
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.box-title-top h3 {
    font-family: var(--title-font);
    font-weight: var(--base-weight);
    color: #FFF;
    font-size: 32px;
    line-height: 0.8;
    letter-spacing: 0em;
    display: inline-block;
    padding: 10px 20px 15px;
    background-color: #000;
    min-width: 340px;
}

/* box-link */

.box-link h6 a {
    font-weight: var(--base-weight3);
    color: #FFF;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 17px 0px;
    text-align: center;
    min-width: 240px;
    border-radius: 5px;
    background-color: #000;
}

.box-link h6 a:hover {
    opacity: 1;
    background-color: var(--color-sub2);
}

/* layout-joblink */

.layout-joblink {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 25px 3%;
}

.contents05 .layout-joblink {
    padding: 30px 0px 80px;
}

.layout-joblink .box {
    width: 31.3%;
    border-radius: 12px;
    overflow: hidden;
    border-style: solid;
    border-color: var(--color-base);
    border-width: 2px;
    transition: .5s;
}

.layout-joblink a {
    display: block;
    position: relative;
    background-color: #FFF;
}

.layout-joblink .box a:hover {
    background-color: var(--color-sub3);
}

.layout-joblink a::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: block;
    background-image: url("../images/common/link-arrow01.svg");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 100%;
    height: 40px;
    margin-right: -2px;
    margin-bottom: -2px;
}

.layout-joblink .box > span {
    display: block;
    position: relative;
    background-color: #FFF;
}

.layout-joblink .box > span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    mix-blend-mode: multiply;
}

.layout-joblink .box > span::after {
    content: "現在募集はございません";
    position: absolute;
    left: 10%;
    bottom: 12px;
    display: block;
    width: 80%;
    font-weight: var(--base-weight2);
    color: #FFF;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    background-color: red;
    padding: 4px 0px 6px;
    border-radius: 60px;
}

.layout-joblink .box-detail {
    min-height: 105px;
}

.layout-joblink h5 {
    font-weight: var(--base-weight3);
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding-top: 20px;
}

.layout-joblink h5 span {
    font-size: 16px;
    display: block;
}

.layout-joblink h5 span.pc-view {
    display: inline-block;
    font-size: 22px;
    padding: 0px 8px;
}

.layout-joblink h5 .sp-view {
    display: none;
}


/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.pagetop_btn a:hover {
    opacity: 0.75;
}

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

/*footer*/

footer {
    width: 100%;
    text-align: center;
    background-image: url(../../common/images/common/back-footer.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

footer h2 img {
    height: 220px;
    width: auto;
}

footer h2 {
    padding: 160px 0px 60px;
}

footer h3 img {
    height: 110px;
    width: auto;
}

footer .contents-box p {
    font-size: 11px;
    line-height: 1.2;
    color: #FFF;
    font-weight: var(--base-weight);
    padding: 100px 0px 40px;
}

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

    body {
        min-width: 1400px;
    }

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

    #header .sp-view {
        display: none;
    }


}

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

    /* basefont */
    :root {
        --base-font-size: 14px;
    }

    .contents-box p br.sp-view {
        display: inline-block;
    }


    /*header*/

    .header {}

    .header {
        padding: 5px 10px;
    }

    .header-left {
        gap: 0px 10px;
    }

    .header-left h1 img {
        height: 65px;
    }

    .header-left h2 img {
        height: 35px;
    }

    .hidden .header-left h1 img {
        height: 65px;
    }

    .hidden .header-left h2 img {
        height: 35px;
    }

    .header-right {
        padding-top: 10px;
    }

    .header h6 a {
        display: none;
    }


    /*開閉ボタン*/
    #nav_toggle {
        width: 55px;
        height: 55px;
        padding: 14px 10px 0px;
        margin-right: 0px;
        margin-top: 0px;
    }

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

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

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


    .nav-pc {
        display: none;
    }

    nav .box-menu {
        justify-content: center;
        padding-top: 50px;
    }

    nav .box-menu > h2 {
        top: 10px;
    }

    nav .box-menu > h2 img {
        height: 52px;
    }

    /* contents */

    .contents {
        background-size: 120% auto;
        padding-top: 80px;
    }

    .contents-wrap {
        padding-top: 50px;
    }


    /* lay */

    .lay1000,
    .lay1100,
    .lay1160,
    .lay-85 {
        width: 88%;
    }

    /* box-title-top */

    .box-title-top {
        margin-bottom: 40px;
        background-size: auto 60px;
    }

    .box-title-top h2 {
        font-size: 25px;
        letter-spacing: 0.05em;
        margin-bottom: 15px;
    }

    .box-title-top h3 {
        font-size: 18px;
        line-height: 1;
        padding: 8px 20px;
        min-width: 240px;
    }

    /* box-link */

    .box-link h6 a {
        font-size: 16px;
    }

    /* layout-joblink */

    .layout-joblink {
        gap: 20px 4%;
    }

    .contents05 .layout-joblink {
        padding: 20px 0px 50px;
    }

    .layout-joblink .box {
        width: 48%;
    }

    .layout-joblink a::before {
        height: 30px;
    }

    .layout-joblink .box > span::after {
        left: 4%;
        width: 92%;
        font-size: 11px;
        letter-spacing: 0em;
        padding: 4px 0px;
    }


    .layout-joblink .box-detail {
        min-height: 97px;
    }

    .layout-joblink h5 {
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: 0em;
    }

    .layout-joblink h5 span {
        font-size: 12px;
    }

    .layout-joblink h5 span.pc-view {
        display: none;
    }

    .layout-joblink h5 .sp-view {
        display: block;
    }


    /*btn-top*/

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

    .pagetop_btn img {
        height: 50px;
    }


    /*footer*/

    footer h2 img {
        width: 88%;
        max-width: 400px;
        height: auto;
    }

    footer h2 {
        padding: 90px 0px 30px;
    }

    footer h3 img {
        width: 70%;
        max-width: 300px;
        height: auto;
    }

    footer .contents-box p {
        font-size: 10px;
        letter-spacing: 0em;
        padding: 50px 0px 30px;
    }

    /* footer-link */

    .footer-link {
        position: fixed;
        left: 0px;
        bottom: 0px;
        width: 100%;
        z-index: 9999;
    }

    .footer-link h6 a {
        display: block;
        font-family: var(--base-font);
        font-weight: var(--base-weight3);
        background-color: var(--color-sub);
        font-size: 18px;
        color: #FFF;
        line-height: 1.2;
        letter-spacing: 0.1em;
        padding: 15px 35px;
        text-align: center;
    }

    .footer-link h6 a:hover {
        background-color: var(--color-sub2);
        opacity: 1;
    }


}
