@charset "utf-8";
/* CSS Document */

* {
    line-height: 1;
}


html {
    scroll-padding-top: 100px;
    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;
    transition: .5s;
}

/* basefont */
:root {
    --base-font: "Zen Kaku Gothic New", sans-serif;
    --title-font: "Jost", sans-serif;

    --base-font-size: 16px;
    --base-font-size2: 20px;
    --base-font-size3: 24px;
    --base-font-size4: 30px;

    --base-font-weight: 400;
    --base-font-weight2: 500;
    --base-font-weight3: 600;

    --color-base: #252729;
    --color-main: #0058A2;
    --color-sub: #FF0000;
    --color-sub2: #00249B;
    --color-back01: #EBEEF4;
    --color-back02: #E5F5FF;
}


.c-layout {
    font-family: var(--base-font);
    font-weight: var(--base-font-weight);
    clear: both;
    margin-right: auto;
    margin-left: auto;
    font-size: var(--base-font-size);
    color: var(--color-base);
    line-height: 1;
}

.c-layout p {
    font-family: var(--base-font);
    font-weight: var(--base-font-weight);
    font-size: var(--base-font-size);
    color: var(--color-base);
    line-height: 2;
    letter-spacing: 0.05em;
}

.c-layout a {
    color: var(--color-base);
    font-weight: var(--base-font-weight);
}

.c-layout p a {
    color: var(--color-base);
    font-weight: var(--base-font-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*/

.l-header {
    z-index: 99;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
}

.l-header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 15px;
    background-color: #FFF;
}

.c-header__logo img {
    height: 40px;
    width: auto;
}

.c-header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 0px 10px;
}

.c-header__nav--sites ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    position: relative;
    padding-top: 20px;
}

.c-header__nav--sites ul::before {
    content: "OTHER RECRUITMENT SITES";
    position: absolute;
    left: 0px;
    top: 0px;
    font-family: var(--title-font);
    font-weight: var(--base-font-weight2);
    line-height: 1.2;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.c-header__nav--sites img {
    height: 38px;
    width: auto;
}

.c-header__nav h5 a {
    font-family: var(--title-font);
    font-weight: var(--base-font-weight2);
    color: #FFF;
    line-height: 1.2;
    letter-spacing: 0.05em;
    min-width: 180px;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: -moz-linear-gradient(119.17% -25.86% -156.9deg, rgba(41, 186, 229, 1) 0%, rgba(10, 62, 134, 1) 100%);
    background: -webkit-linear-gradient(-156.9deg, rgba(41, 186, 229, 1) 0%, rgba(10, 62, 134, 1) 100%);
    background: -webkit-gradient(linear, 119.17% -25.86%, 22.67% 79.98%, color-stop(0, rgba(41, 186, 229, 1)), color-stop(1, rgba(10, 62, 134, 1)));
    background: -o-linear-gradient(-156.9deg, rgba(41, 186, 229, 1) 0%, rgba(10, 62, 134, 1) 100%);
    background: -ms-linear-gradient(-156.9deg, rgba(41, 186, 229, 1) 0%, rgba(10, 62, 134, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#29BAE5', endColorstr='#0A3E86' ,GradientType=0)";
    background: linear-gradient(-156.9deg, rgba(41, 186, 229, 1) 0%, rgba(10, 62, 134, 1) 100%);
}


/* スマホメニュー */

.c-spheader {
    width: 50px;
    z-index: 99999999;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
}

.c-spheader .hn {
    width: 50px;
}

.drawer-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0px;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 99;
    background-color: #FFF;
}

@media screen and (max-width: 767px) {
    .drawer-nav {
        width: 100%;
    }
}

.drawer-menu {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

@media screen and (max-width: 767px) {
    .drawer-menu {
        align-items: flex-start;
    }
}


.drawer-menu .c-header__logo {
    position: absolute;
    left: 15px;
    top: 19px;
}

.drawer-menu-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.d-itembox-wrap {
    width: 770px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
}

.d-itembox .d-item:not(:last-child) {
    margin-bottom: 50px;
}


@media screen and (max-width: 767px) {

    .d-itembox-wrap {
        width: 100%;
        padding-top: 60px;
    }

    .c-spheader .d-itembox {
        border-bottom-style: solid;
        border-color: rgba(204, 204, 204, 0.5);
        border-width: 1px;
    }

    .c-spheader .d-item {
        position: relative;
    }

    .d-itembox .d-item:not(:last-child) {
        margin-bottom: 0px;
    }

    .c-spheader .d-itembox,
    .c-spheader .d-item {
        width: 100%;
    }

    .c-spheader .d-item:not(:last-child) {
        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-family: var(--title-font);
    color: var(--color-main);
    font-weight: var(--base-font-weight2);
    font-size: var(--base-font-size2);
    line-height: 1.2;
    letter-spacing: 0.05em;
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
}


@media screen and (max-width: 767px) {
    .c-spheader .d-item-in a, .c-spheader .d-item-in span {
        padding: 20px 5px;
    }
}


/* 子階層 */


.c-spheader .d-sublist {
    padding-top: 30px;
}

.c-spheader .sublist:not(:last-child) {
    margin-bottom: 20px;
}

.c-spheader .sublist a {
    display: inline-block;
    text-decoration: none;
    font-weight: var(--base-font-weight2);
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
}

.c-spheader a:hover {
    opacity: 1;
    text-decoration: underline;
}


@media screen and (max-width: 767px) {

    .c-spheader .d-sublist {
        border-top-style: solid;
        border-color: rgba(204, 204, 204, 0.5);
        border-width: 1px;
        display: none;
        padding: 0px;
        background-color: #f2f2f2;
    }

    .c-spheader .sublist:not(:last-child) {
        margin-bottom: 0px;
    }

    .c-spheader .sublist a {
        padding: 15px 20px;
        padding-left: 30px;
        display: block;
    }

    .c-spheader .sublist:not(:last-child) a {
        border-bottom-style: solid;
        border-color: rgba(204, 204, 204, 0.5);
        border-width: 1px;
    }

    .c-spheader .sublist a::before {
        content: "";
        position: absolute;
        left: 17px;
        top: 20px;
        width: 5px;
        height: 5px;
        display: block;
        background-color: #333;
        border-radius: 50%;
    }

    .c-spheader a:hover {
        text-decoration: none;
    }

}


/* 子階層トグルボタン */

.c-spheader .d-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: none;
}


@media screen and (max-width: 767px) {
    .c-spheader .d-btn {
        display: block;
    }
}

.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: 50px;
    height: 50px;
    padding: 20px 15px;
    position: relative;
    top: 0px;
    right: 0px;
    z-index: 1000000;
    cursor: pointer;
    background-color: #454D53;

}

#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: 2px;
}

#nav_toggle span:nth-child(2) {
    top: 8px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span {
    background: #FFF;
}

.open #nav_toggle span:nth-child(1) {
    top: 5px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
    top: 5px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}



/* l-mainimg */

.l-mainimg {
    width: 100%;
    position: relative;
}

.l-mainimg::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 75%;
    display: block;
    background: -moz-linear-gradient(124.07% 60.81% 177.9deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 255, 186, 1) 100%);
    background: -webkit-linear-gradient(177.9deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 255, 186, 1) 100%);
    background: -webkit-gradient(linear, 124.07% 60.81%, 10.98% 44.31%, color-stop(0, rgba(0, 40, 161, 1)), color-stop(0.389, rgba(0, 93, 227, 1)), color-stop(0.727, rgba(0, 183, 204, 1)), color-stop(1, rgba(0, 255, 186, 1)));
    background: -o-linear-gradient(177.9deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 255, 186, 1) 100%);
    background: -ms-linear-gradient(177.9deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 255, 186, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0028A1', endColorstr='#00FFBA' ,GradientType=0)";
    background: linear-gradient(-87.9deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 255, 186, 1) 100%);
}


.l-mainimg .item__img {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    position: relative;
    padding-top: 60px;
}

.l-mainimg .item__img::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url("../img/common/back_contents.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 75%;
    z-index: 0;
    opacity: 0.3;
}

.l-mainimg .item__img img {
    width: 47%;
    height: 360px;
    z-index: 1;
}

.l-mainimg .item__txt {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 4px;
    z-index: 1;
}

.l-mainimg h2 {
    font-family: var(--title-font);
    font-weight: var(--base-font-weight2);
    color: var(--color-sub);
    font-size: 110px;
    line-height: 1.2;
    letter-spacing: 0em;
    background: linear-gradient(0deg, #FF0000 50%, #FFF 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.l-mainimg h3 {
    font-weight: var(--base-font-weight2);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.15em;
    padding-top: 10px;
}

/* l-container--page */

.l-container--page {
    width: 100%;
    position: relative;
    padding-top: 85px;
    background-color: #FAFAFA;
}

.l-container--page img {
    width: 100%;
    height: auto;
}

.l-wrapper--page {
    width: 100%;
    padding-top: 80px;
}

.l-wrapper--page section {
    position: relative;
    padding-bottom: 160px;
}


/* layout */

.c-layout {
    margin-left: auto;
    margin-right: auto;
}

.l-container--1200 {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.l-container--1400 {
    width: 80%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.l-container--1600 {
    width: 90%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.l-container--90 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.l-container--96 {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

/* layout-whiteback */

.layout-whiteback {
    background-color: #FFF;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1);
}

/* layout-imglink */

.layout-imglink .box-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 25px 25px 10px rgba(0, 0, 0, 0.05);
}

.layout-imglink .box-img 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;
}


/* c-page__ttl */

.c-page__ttl--ttl01 {
    margin-bottom: 20px;
    position: relative;
    padding: 5px 0px;
    padding-left: 22px;
}

.c-page__ttl--ttl01::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 6px;
    height: 100%;
    display: block;
    background: -moz-linear-gradient(57.55% -16.58% -92.1deg, rgba(0, 93, 227, 1) 0%, rgba(0, 183, 204, 1) 50%, rgba(0, 255, 186, 1) 100%);
    background: -webkit-linear-gradient(-92.1deg, rgba(0, 93, 227, 1) 0%, rgba(0, 183, 204, 1) 50%, rgba(0, 255, 186, 1) 100%);
    background: -webkit-gradient(linear, 57.55% -16.58%, 44.75% 96.33%, color-stop(0, rgba(0, 93, 227, 1)), color-stop(0.5, rgba(0, 183, 204, 1)), color-stop(1, rgba(0, 255, 186, 1)));
    background: -o-linear-gradient(-92.1deg, rgba(0, 93, 227, 1) 0%, rgba(0, 183, 204, 1) 50%, rgba(0, 255, 186, 1) 100%);
    background: -ms-linear-gradient(-92.1deg, rgba(0, 93, 227, 1) 0%, rgba(0, 183, 204, 1) 50%, rgba(0, 255, 186, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#005DE3', endColorstr='#00FFBA' ,GradientType=0)";
    background: linear-gradient(182.1deg, rgba(0, 93, 227, 1) 0%, rgba(0, 183, 204, 1) 50%, rgba(0, 255, 186, 1) 100%);
}

.c-page__ttl--ttl01 h3 {
    font-family: var(--base-font);
    font-weight: var(--base-font-weight3);
    font-size: var(--base-font-size4);
    line-height: 1.4;
    letter-spacing: 0.15em;
}

/* c-item__link */

.c-item__link {
    text-align: center;
}

.c-item__link h6 a {
    font-size: var(--base-font-size2);
    font-weight: var(--base-font-weight2);
    line-height: 1.2;
    letter-spacing: 0em;
    display: inline-block;
    padding: 17px 30px;
    border-style: solid;
    border-color: var(--color-sub);
    border-width: 3px;
    border-radius: 60px;
    min-width: 660px;
    position: relative;
}

.c-item__link h6 a::before {
    content: "";
    position: absolute;
    right: 25px;
    top: 0px;
    background-image: url("../img/common/link-arrow03.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 24px;
    width: 24px;
    height: 100%;
}

.c-item__link h6 a:hover {
    letter-spacing: 0.05em;
    opacity: 1;
}


/* c-Recommend */

.c-Recommend {
    width: 100%;
    min-height: 550px;
    position: relative;
    background: -moz-linear-gradient(-2.8% 74% 9.6deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 212, 186, 1) 100%);
    background: -webkit-linear-gradient(9.6deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 212, 186, 1) 100%);
    background: -webkit-gradient(linear, -2.8% 74%, 119.81% 18.26%, color-stop(0, rgba(0, 40, 161, 1)), color-stop(0.389, rgba(0, 93, 227, 1)), color-stop(0.727, rgba(0, 183, 204, 1)), color-stop(1, rgba(0, 212, 186, 1)));
    background: -o-linear-gradient(9.6deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 212, 186, 1) 100%);
    background: -ms-linear-gradient(9.6deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 212, 186, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0028A1', endColorstr='#00D4BA' ,GradientType=0)";
    background: linear-gradient(80.4deg, rgba(0, 40, 161, 1) 0%, rgba(0, 93, 227, 1) 38.9%, rgba(0, 183, 204, 1) 72.7%, rgba(0, 212, 186, 1) 100%);
    padding: 90px 0px 100px;
}

.c-Recommend::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 18px;
    background-image: url("../img/common/text-recommend.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 62px;
    height: 520px;
}

.c-Recommend-contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 80px;
}

.c-Recommend .item {
    width: 560px;
}

.c-Recommend .item img {
    width: 100%;
    height: auto;
    transition: .5s all;
}

.c-Recommend .item:hover img {
    transform: scale(1.05, 1.05);
    transition: .5s all;
}

.c-Recommend .item__img {
    overflow: hidden;
    position: relative;
}

.c-Recommend h3 {
    font-family: var(--title-font);
    font-weight: var(--base-font-weight2);
    font-size: 30px;
    color: #FFF;
    line-height: 0.9;
    margin-bottom: 20px;
}

.c-Recommend h6 {
    font-size: var(--base-font-size4);
    font-weight: var(--base-font-weight2);
    color: #FFF;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-top: 20px;
    display: inline-block;
    position: relative;
}

.c-Recommend h6::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 6px;
    background-image: url("../img/common/link-arrow01.svg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 24px;
    height: 24px;
    margin-right: -40px;
}

.c-Recommend a,
.c-Recommend span {
    display: block;
}

.c-Recommend a:hover {
    opacity: 1;
}

.c-Recommend span .item__img::before {
    content: "COMONG SOON";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: var(--base-font-size3);
    font-weight: var(--base-font-weight2);
    color: #FFF;
    line-height: 1.2;
    letter-spacing: 0.1em;
    z-index: 10;
}



/*l-footer*/

.l-footer {
    width: 100%;
    text-align: center;
}

/* c-footer__btn--recruit */

.c-footer__btn--recruit {
    width: 100%;
}

.c-footer__btn--recruit a {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--color-base);
}

.c-footer__btn--recruit a:hover {
    opacity: 1;
    background-color: #000;
}

.c-footer__btn--recruit h6 {
    font-weight: var(--base-font-weight2);
    font-size: var(--base-font-size3);
    color: #FFF;
    line-height: 1.2;
    letter-spacing: 0.15em;
    position: relative;
}

.c-footer__btn--recruit h6::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    background-image: url("../img/common/link-arrow01.svg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 24px;
    height: 24px;
    margin-right: -30px;
}


/* c-footer__nav--menu */

.c-footer__nav--menu {
    width: 100%;
    padding: 60px 0px;
    text-align: left;
}

.c-footer__nav--menu .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.c-footer__logo {
    flex: 1;
}

.c-footer__logo img {
    height: 75px;
    width: auto;
}

.c-footer__nav--list {
    width: 770px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
}

.c-footer__nav--list .item--inner:not(:last-child) {
    margin-bottom: 50px;
}

.c-footer__nav--list h5 a, .c-footer__nav--list h5 span {
    font-family: var(--title-font);
    font-weight: var(--base-font-weight2);
    font-size: var(--base-font-size2);
    color: var(--color-main);
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.c-footer__nav--list ul {
    padding-top: 30px;
}

.c-footer__nav--list ul li:not(:last-child) {
    margin-bottom: 20px;
}

.c-footer__nav--list ul li a {
    font-weight: var(--base-font-weight2);
    line-height: 1.2;
    letter-spacing: 0.05em;
    position: relative;
}

.c-footer__copy {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.c-footer__copy h6 a {
    font-weight: var(--base-font-weight2);
    line-height: 1.2;
    letter-spacing: 0.05em;
    position: relative;
}

.c-footer__copy p {
    font-weight: var(--base-font-weight2);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0em;
    padding-top: 15px;
}

.c-footer__nav--list .item:last-child ul li a::before,
.c-footer__copy h6 a::before,
.d-itembox:last-child .sublist a::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 7px;
    background-image: url("../img/common/icon-link.svg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 10px;
    height: 10px;
    margin-right: -15px;
}


.c-footer__nav--menu a:hover {
    opacity: 1;
    text-decoration: underline;
}



/* c-footer__nav--sites */

.c-footer__nav--sites {
    width: 100%;
    padding: 30px 0px;
    border-top-style: solid;
    border-color: #D3D3D3;
    border-width: 1px;
}

.c-footer__nav--sites ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px 40px;
    padding-top: 40px;
}

.c-footer__nav--sites ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.c-footer__nav--sites img {
    width: auto;
    max-height: 30px;
}

.c-footer__nav--sites ul::before {
    content: "SBI新生銀行グループ　採用サイト";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    font-weight: var(--base-font-weight2);
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0em;
    text-align: center;
}


/**
 * 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: 60px;
    }

    body {}

    /* basefont */

    :root {
        --base-font-size: 14px;
        --base-font-size2: 16px;
        --base-font-size3: 18px;
        --base-font-size4: 20px;
    }

    .c-layout p {
        line-height: 1.8;
    }


    /* l-header */

    .l-header .inner {
        padding: 0px;
    }

    .c-header__logo {
        padding-left: 7px;
    }

    .c-header__logo img {
        height: 30px;
    }

    .c-header__nav--sites {
        display: none;
    }

    .c-header__nav--joblist {
        display: none;
    }


    /* スマホメニュー */

    .c-spheader {
        display: block;
    }

    .drawer-menu .c-header__logo {
        position: absolute;
        left: 0px;
        top: 10px;
    }


    /* l-mainimg */

    .l-mainimg {
        padding-bottom: 57px;
    }

    .l-mainimg::before {
        height: 150px;
    }

    .l-mainimg .item__img {
        padding-top: 25px;
    }

    .l-mainimg .item__img::before {
        height: 150px;
    }

    .l-mainimg .item__img img {
        width: 95%;
        height: 200px;
    }

    .l-mainimg .item__txt {
        padding-bottom: 0px;
        z-index: 1;
    }

    .l-mainimg .item__txt .inner {
        width: 82%;
    }

    .l-mainimg h2 {
        font-size: 50px;
        background: linear-gradient(0deg, #FF0000 50%, #FFF 50%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .l-mainimg h3 {
        font-size: 16px;
        padding-top: 8px;
    }

    /* l-container--page */

    .l-container--page {
        padding-top: 50px;
    }

    .l-wrapper--page {
        padding-top: 50px;
    }

    .l-wrapper--page section {
        padding-bottom: 80px;
    }


    /* layout */

    .l-container--1200,
    .l-container--1400,
    .l-container--1600 {
        width: 88%;
    }

    .l-container--96 {
        width: 88%;
    }


    /* layout-imglink */

    .layout-imglink .box-img {
        box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.1);
    }

    .layout-imglink .box-img img {
        max-width: 100%;
    }


    /* c-page__ttl */

    .c-page__ttl--ttl01 {
        margin-bottom: 20px;
        padding: 3px 0px;
        padding-left: 20px;
    }

    .c-page__ttl--ttl01::before {
        width: 4px;
    }

    .c-page__ttl--ttl01 h3 {
        letter-spacing: 0.1em;
    }

    /* c-item__link */

    .c-item__link h6 a {
        padding: 15px 20px;
        border-width: 2px;
        width: 88%;
        min-width: 280px;
        max-width: 600px;
        font-size: 14px;
    }

    .c-item__link h6 a::before {
        right: 15px;
        background-size: auto 16px;
        width: 16px;
    }


    /* c-Recommend */

    .c-Recommend {
        min-height: auto;
        padding: 40px 0px;
    }

    .c-Recommend::before {
        display: none;
    }

    .c-Recommend__inner {
        width: 88%;
    }

    .c-Recommend-contents {
        gap: 30px 20px;
    }

    .c-Recommend .item {
        width: 400px;
    }

    .c-Recommend h3 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .c-Recommend h6 {
        margin-top: 15px;
    }

    .c-Recommend h6::before {
        height: 16px;
        margin-right: -25px;
    }



    .l-footer {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
    }

    /* c-footer__btn--recruit */

    .c-footer__btn--recruit {
        order: 1;
    }

    .c-footer__btn--recruit a {
        height: 80px;
    }

    .c-footer__btn--recruit h6::before {
        width: 20px;
        height: 20px;
    }


    /* c-footer__nav--menu */

    .c-footer__nav--menu {
        padding: 30px 0px;
        order: 3;
        border-top-style: solid;
        border-color: #333;
        border-width: 1px;
    }

    .c-footer__nav--menu .inner {
        justify-content: center;
        gap: 0px;
        text-align: center;
    }

    .c-footer__logo {
        width: 100%;
        text-align: center;
    }

    .c-footer__logo img {
        height: 60px;
    }

    .drawer-menu .c-footer__logo {
        display: none;
    }

    .c-footer__nav--list {
        width: 100%;
        padding-top: 0px;
        gap: 40px;
        display: none;
    }

    .c-footer__nav--list .item--inner:not(:last-child) {
        margin-bottom: 40px;
    }

    .c-footer__nav--list ul {
        padding-top: 20px;
    }

    .c-footer__nav--list ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    .c-footer__copy {
        width: 100%;
        position: static;
        padding-top: 40px;
    }

    .c-footer__nav--list .item:last-child ul li br {
        display: none;
    }

    .c-footer__nav--list .item:last-child ul li:last-child a::before {
        right: 0px;
        top: 7px;
        margin-right: -15px;
    }


    /* c-footer__nav--sites */

    .c-footer__nav--sites {
        text-align: center;
        order: 2;
    }

    .c-footer__nav--sites ul {
        gap: 20px 40px;
        flex-direction: column;
    }

    .c-footer__nav--sites img {
        max-height: 25px;
    }


}
