@charset "utf-8";

/* --------------------------------------
　　reset.css
-------------------------------------- */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Noto Sans JP', 'Arial', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: hidden;
}
.show_tab{
    display: none;
}
img {
    vertical-align: bottom;
}

a {
    text-decoration: none;
    transition: all .2s;
    color: var(--black);
}

a:hover {
    color: var(--red);
}

address {
    font-style: normal;
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin: 0px auto;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* --------------------------------------
　　全体の記述
-------------------------------------- */
:root {
    --black: #333;
    --white: #fff;
    --gray: #EFEDE9;
    --red: #C40018;
    --recruit_gray: #EAE4E4;
}

* {
    box-sizing: border-box;
}

html {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

body {
    background-color: var(--white)
}

h1 {
    font-size: 48px;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-style: normal;
    width: 100%;
    text-align: left;
    padding-top: 20px;
    text-shadow: 2px 2px 8px var(--white), 0px -1px 8px var(--white);
}

h1 span {
    display: block;
    font-family: "Noto serif", sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 8px var(--white), 0px -1px 8px var(--white);
}

h2 {
    font-size: 80px;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    text-align: left;
    margin-bottom: 50px;
}

h2 span {
    display: block;
    font-size: 24px;
    font-weight: bold;
}


/* ______________h3______________ */
.h3_leftgrayline {
    font-size: 20px;
    border-left: 10px solid #9D9D9D;
    padding-left: 10px;
    margin-bottom: 50px;
}

.h3_No-centerline {
    font-size: 36px;
    font-weight: normal;
}

.h3_No-centerline span {
    margin-left: 15px;
    border-left: 1px solid var(--black);
    padding-left: 15px;
}

.h3_center_shortline {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.h3_center_shortline:after {
    content: "";
    /*線の上下位置*/
    display: block;
    width: 80px;
    /*線の長さ*/
    height: 4px;
    /*位置調整*/
    background-color: var(--black);
    /*線の色*/
    margin: 20px auto 80px auto;
}

.h3_leftredcircle {
    font-size: 20px;
    padding-left: 30px;
    margin-bottom: 50px;
    position: relative;
}

.h3_leftredcircle::before {
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    content: '●';
    color: var(--red);
}


/* ______________h4______________ */
.h4_leftgrayline_underline {
    font-size: 20px;
    border-left: 10px solid #9D9D9D;
    border-bottom: 1px solid var(--black);
    padding-left: 10px;
    display: block;
    margin: 0 auto 30px auto;
    max-width: 800px;
    width: 100%;
}



.inner {
    width: 100%;
    max-width: 1080px;
    margin: auto;
}

.flex {
    display: flex;
}

.space-between {
    justify-content: space-between;
}
.space-center {
    justify-content: center;
}

.row-reverse {
    flex-direction: row-reverse;
}

.section_padding {
    padding: 80px 0 150px 0;
}

.bg_gray {
    background: var(--gray);
}

.recruit_bg_gray {
    background: var(--recruit_gray);
}

.btn {
    padding: 20px;
    display: inline-block;
}

.btn a {
    color: var(--red);
    font-size: 14px;
    font-weight: normal;
    border: 1px solid var(--red);
    max-width: 100%;
    padding: 15px;
    width: 245px;
    text-align: center;
    display: block;
}

.btn a:hover {
    background: var(--red);
    color: var(--white);
}

.pc_br {
    /* 768px以上で改行タグを有効に。 */
    display: block;
}

.sp_br {
    /* 768px以上では改行タグを無効に。*/
    display: none;
}


/* _____________HEADER_____________ */
#header {
    background-color: var(--white);
    z-index: 999999;
    width: 100%;
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
    position: relative;
}

#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
}

#header .logo {
    max-width: 364px;
    width: 100%;
}


#header img {
    width: 100%;
    max-height: 100%;
    padding-left: 40px;
    text-align: center;
    display: block;
    margin: auto 0;
}

nav ul li a {
    font-size: 14px;
    text-decoration: none;
    color: var(--black);
    display: block;
    line-height: 20px;
    padding: 30px 12px;
    text-align: center;
}

.nav_leftgroup a {
    position: relative;
    font-size: clamp(14px, 1vw, 16px);
}

/*ホバーエフェクト*/
.nav_leftgroup a::after {
    /*アンダーラインのスタイル*/
    position: absolute;
    content: "";
    display: block;
    height: 3px;
    background-color: var(--red);
    bottom: 15px;
    left: 0;
    /*幅を0に設定*/
    width: 0;
    /*アニメーションの速度設定*/
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.nav_leftgroup a:hover::after {
    /*幅を100%に設定*/
    width: 100%;
}

.nav_rightgroup {
    width: 160px;
    background-color: var(--black);
    border-left: 1px solid var(--white);
}

.nav_rightgroup a {
    color: var(--white);
    font-size: clamp(13px, 1vw, 16px);
    transition: background-color 0.4s;
}

.nav_rightgroup :hover {
    background-color: var(--red);
}

/* ハンバーガーメニューのボタンの為、PCでは非表示 */
.openbtn {
    display: none;
}

.sp_nav {
    display: none;
    max-height: 100vh;
    overflow: scroll;
}

/* _____________パンくずリスト_____________ */
.breadCrumb {
    padding-top: 200px;
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: flex;
}

.breadCrumb li {
    font-weight: 900;
    position: relative;
    margin-right: 30px;
    text-shadow: 2px 2px 2px var(--white), 0px -1px 2px var(--white);
}

.breadCrumb li::after {
    position: absolute;
    right: -20px;
    bottom: 1px;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 3px solid rgba(51, 51, 51, 0.8);
}

.breadCrumb li a {
    color: rgba(51, 51, 51, 0.8);
}

.breadCrumb li a:hover {
    color: var(--red);
}

.breadCrumb li:last-child:after {
    border-top: none;
}

/* _____________LOWER_PAGE_____________ */
#lowerpage_top {
    height: 660px;
}

.lowerpage_firstsection {
    position: relative;
    top: -150px
}

/* _________RECRUIT_________ */
/* _________RECRUIT_LOWER_PAGE_________ */
.recruitUnderlayer {
    height: 500px;
}

.recruitUnderlayer .breadCrumb {
    margin-bottom: 20px;
    justify-content: flex-end;
    padding: 150px 0 0;
}

.recruitUnderlayer h1 {
    font-size: 48px;
    font-weight: bold;
    padding: 0;
    margin: 0 auto 0 100px;
}

.recruitUnderlayer h1 span {
    color: var(--black);
}

.recruitUnderlayer .recruitUnderlayer_top_title {
    width: 100%;
}

.recruitUnderlayer .recruitUnderlayer_top_image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 200px;
    background-position: left center;
    width: calc(50vw + 50%);
    margin-right: calc(50% - 50vw);
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    overflow: hidden;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}

.recruit_lowerpage_firstsection {
    margin-bottom: 150px;
}

/* _____________RECRUIT_BANNER_UNDER_____________ */
#recruit_banner_under .inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

#recruit_banner_under .inner h2 {
    width: 100%;
}

#recruit_banner_under .inner .flex {
    box-shadow: 0px 5px 10px 0px rgb(0, 0, 0, 0.2);
}

#recruit_banner_under .inner .flex img {
    width: 220px;
    height: auto;
    object-fit: cover;
}

#recruit_banner_under .inner .new,
#recruit_banner_under .inner .career {
    background: var(--white);
    padding: 30px;
    max-width: 280px;
    width: 100%;
}

#recruit_banner_under .inner .new .title,
#recruit_banner_under .inner .career .title {
    font-size: 26px;
    color: var(--red);
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

#recruit_banner_under .inner .new .title::after,
#recruit_banner_under .inner .career .title::after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 15px;
    height: 15px;
    border-top: 5px solid var(--red);
    border-right: 5px solid var(--red);
    transform: rotate(45deg);
}

#recruit_banner_under .inner .flex:hover {
    opacity: 0.5;
}

/* _____________ENTRY_____________ */
#entry {
    position: relative;
    bottom: -70px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: var(--white);
    z-index: 2;
    max-width: 890px;
    text-align: center;
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.2);
    padding: 0 25px 45px 25px;
}

#entry h2 {
    margin-top: 0;
}

#entry p {
    font-size: 24px;
    font-weight: bold;
}

#entry .btn {
    margin-top: 40px;
}

/* ________________LAED________________ */
.lead {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 80px;
}

.lead_redflame {
    border: 1px solid var(--red);
    padding: 10px 30px;
    margin-bottom: 50px;
}

/* _____________FOOTER_____________ */

footer {
    background-color: #9D9D9D;
    padding-top: 20px;
}

.front-page footer{
    padding-top:100px;
}

footer a:hover {
    color: var(--red);
}

footer>.inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    font-size: 13px;
}

footer p {
    display: block;
    width: 100%;
    margin: 35px auto;
}

footer img {
    max-width: 364px;
}

.footerNav li {
    width: 190px;
    padding-top: 24px;
}

.footerNav li:first-child {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid var(--black);
    padding-top: 0;
}

.subNav {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 35px
}

.subNav li {
    border-right: 1px solid var(--black);
    margin-right: 15px;
    padding-right: 15px;
}

.subNav li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.copyright {
    color: var(--white);
    background: var(--black);
    text-align: center;
    padding: 17px 0;
    margin-bottom: 0;
}


@media screen and (min-width: 768px) and (max-width: 1170px) {
    .inner {
        width: auto;
        padding: 0 30px;
    }

    /* _____________HEADER_____________ */
    nav .pc_nav {
        display: none;
    }

    #header {
        height: 80px;
        position: fixed;
    }

    #header .flex {
        height: 100%;
    }

    #header p {
        flex-grow: 1;
        background-color: var(--white);
        height: 80px;
    }

    #header .logo {
        display: flex;
        margin: auto 0;
    }

    #header img {
        height: auto;
        padding: 15px;
    }

    /* _____________ハンバーガーメニュー_____________ */
    .openbtn {
        /*ボタン内側の基点となるためrelativeを指定。
      追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
        /* ↓fixedはスクロールしても位置は変わらない */
        position: fixed;
        top: 0;
        right: 0;
        background: var(--black);
        cursor: pointer;
        width: 80px;
        height: 80px;
        margin-top: 0;
        z-index: 100;
        /* ↓スマホ時はハンバーガーメニューが現れるように */
        display: block;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 20px;
        height: 3px;
        border-radius: 2px;
        background: var(--white);
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 30px;
    }

    .openbtn span:nth-of-type(2) {
        top: 40px;
    }

    .openbtn span:nth-of-type(3) {
        top: 50px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    /* アニメーションはjsで設定 */
    .openbtn.active span:nth-of-type(1) {
        top: 30px;
        left: 20px;
        transform: translateY(6px) rotate(-45deg);
        width: 45%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3) {
        top: 45px;
        left: 20px;
        transform: translateY(-9px) rotate(45deg);
        width: 45%;
    }

    nav .sp_nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--black);
        line-height: 1;
        z-index: 50;
    }

    nav .sp_nav a {
        display: flex;
        height: 100%;
    }

    nav .sp_nav img {
        background-color: var(--white);
        max-width: 364px;
        width: 100%;
        height: auto;
    }

    nav .sp_nav ul {
        margin: 30px;
    }

    nav .sp_nav ul li a {
        font-size: 16px;
        padding: 0;
        color: var(--white);
        text-decoration: none;
        text-align: left;
        line-height: 50px;
    }

    nav .sp_nav li:first-child {
        border-top: 1px solid var(--white);
        border-bottom: 1px solid var(--white);
        border-color: var(--white);
    }

    nav .sp_nav li:first-child a {
        font-size: 20px;
        font-weight: bold;
    }

    nav .sp_nav .sp_subNav li:first-child {
        border-top: none;
        border-bottom: none;
    }

    nav .sp_nav .sp_subNav li:first-child a {
        font-weight: normal;
    }

    nav .sp_nav .sp_subNav {
        display: block;
        margin-top: 50px;
    }

    nav .sp_nav .sp_subNav li {
        width: 100%;
        border-right: none;
        padding: 0;
        margin: 0 0;
    }

    nav .sp_nav .sp_subNav li a {
        line-height: 22px;
        font-size: 14px;
    }

    nav .sp_nav .sp_subNav li:last-child {
        margin: 0 0;
    }

    /* _____________パンくずリスト_____________ */
    .breadCrumb {
        padding-left: 30px;
    }

    /* _________RECRUIT_________ */
    /* _____________RECRUIT_BANNER_UNDER_____________ */
    #about_KNOX .inner {
        flex-wrap: wrap;
        gap: 0;
    }

    #recruit_banner_under .inner .new,
    #recruit_banner_under .inner .career {
        background: var(--white);
        padding: 30px;
        max-width: 380px;
        width: 100%;
    }

}


@media screen and (max-width: 768px) {
    .show_tab li:first-child{
        border-bottom: 0px solid #ccc;
    }
    .show_tab li:first-child a{
        font-size: 14px!important;
        font-weight: normal!important;
    }
    .show_tab{
        display: block!important;
    }
    .not_show_tab{
        display: none!important;
    }
    footer>.inner{
        gap:0px;
    }
    .pc_br {
        /* 768px以下では改行タグを無効に。*/
        display: none;
    }

    .sp_br {
        /* 768px未満で改行タグを有効に。 */
        display: block;
    }

    .inner {
        width: auto;
        padding: 0 10px;
    }

    .flex {
        display: block;
    }

    img {
        max-width: 100%;
    }

    p {
        font-size: 14px;
    }

    .section_padding {
        padding: 10px 0 80px 0;
    }

    h1 {
        font-size: 26px;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: bold;
        font-style: normal;
        width: 100%;
        text-align: left;
        padding-top: 20px;
    }

    h1 span {
        display: block;
        font-family: "Noto serif", sans-serif;
        font-size: 16px;
        font-weight: bold;
    }

    h2 {
        font-size: 32px;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 400;
        font-style: normal;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }

    h2 span {
        display: block;
        font-size: 12px;
        font-weight: bold;
    }

    /* ______________h3______________ */
    .h3_leftgrayline {
        font-size: 16px;
        border-left: 10px solid #9D9D9D;
        padding-left: 10px;
        margin-bottom: 20px;
    }

    .h3_No-centerline {
        font-size: 18px;
        font-weight: normal;
    }

    .h3_No-centerline span {
        margin-left: 10px;
        border-left: 1px solid var(--black);
        padding-left: 10px;
    }

    .h3_center_shortline {
        font-size: 18px;
    }

    .h3_center_shortline:after {
        width: 20%;
        /*線の長さ*/
        height: 3px;
        margin: 10px auto 20px auto;
    }

    .h3_leftredcircle {
        font-size: 16px;
        padding-left: 22px;
        margin-bottom: 20px;
        position: relative;
    }

    .h3_leftredcircle::before {
        font-size: 16px;
        position: absolute;
        top: 0;
        left: 0;
        content: '●';
        color: var(--red);
    }


    /* ______________h4______________ */
    .h4_leftgrayline_underline {
        font-size: 16px;
        border-left: 10px solid #9D9D9D;
        border-bottom: 1px solid var(--black);
        padding-left: 10px;
        display: block;
        margin: 0 auto 20px auto;
    }



    /* _____________HEADER_____________ */
    nav .pc_nav {
        display: none;
    }

    #header {
        height: 50px;
        box-shadow: none;
        position: fixed;
    }

    #header p {
        flex-grow: 1;
        background-color: var(--white);
        height: 49px;
    }

    #header img {
        max-width: 280px;
        max-height: 100%;
        padding: 5px 15px;
    }

    /* _____________ハンバーガーメニュー_____________ */
    .openbtn {
        /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
        /* ↓fixedはスクロールしても位置は変わらない */
        position: fixed;
        top: 0;
        right: 0;
        background: var(--black);
        cursor: pointer;
        width: 50px;
        height: 50px;
        margin-top: 0;
        z-index: 100;
        /* ↓スマホ時はハンバーガーメニューが現れるように */
        display: block;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: var(--white);
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    /* アニメーションはjsで設定 */
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    nav .sp_nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--black);
        line-height: 1;
        z-index: 50;
    }

    nav .sp_nav img {
        background-color: var(--white);
    }

    nav .sp_nav ul {
        margin: 30px;
    }

    nav .sp_nav ul li a {
        padding: 0;
        color: var(--white);
        text-decoration: none;
        text-align: left;
        line-height: 35px;
    }

    nav .sp_nav li:first-child {
        border-top: 1px solid var(--white);
        border-bottom: 1px solid var(--white);
        border-color: var(--white);
    }

    nav .sp_nav li:first-child a {
        font-size: 18px;
        font-weight: bold;
    }

    nav .sp_nav .sp_subNav li:first-child {
        border-top: none;
        border-bottom: none;
    }

    nav .sp_nav .sp_subNav li:first-child a {
        font-weight: normal;
    }

    nav .sp_nav .sp_subNav {
        display: block;
        margin-top: 50px;
    }

    nav .sp_nav .sp_subNav li {
        width: 315px;
        border-right: none;
        padding: 0;
        margin: 0 0;
    }

    nav .sp_nav .sp_subNav li a {
        line-height: 22px;
        font-size: 13px;
        margin-bottom: 10px
    }

    nav .sp_nav .sp_subNav li:last-child {
        margin: 0 0;
    }

    /* _____________FOOTER_____________ */

    .front-page footer{
        padding-top:100px;
    }

    footer p {
        display: block;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    footer img {
        max-width: 280px;
        max-height: 100%;
    }

    .footerNav {
        margin: 0 auto;
    }

    .footerNav li {
        width: 315px;
        padding: 0;
    }

    .footerNav a {
        font-size: 14px;
        line-height: 35px;
    }

    .footerNav li:first-child a {
        font-size: 18px;
        font-weight: bold;
    }

    .footerNav li:last-child {
        margin-bottom: 10px;
    }

    .subNav {
        display: block;
        margin-top: 15px;
    }

    .subNav li {
        width: 315px;
        border-right: none;
        padding: 0;
        margin: 0 auto;
        margin-bottom: 10px
    }

    .subNav li a {
        line-height: 22px;
    }

    .subNav li:last-child {
        margin: 0 auto;
    }

    .copyright {
        color: var(--white);
        background: var(--black);
        text-align: center;
        padding: 17px 0;
        margin-bottom: 0;
    }

    /* _____________パンくずリスト_____________ */
    .breadCrumb {
        font-size: 12px;
        padding-top: 70px;
        padding-left: 10px;
        width: 100%;
        margin: auto;
        display: flex;
    }

    .breadCrumb li::after {
        position: absolute;
        right: -20px;
        bottom: -1px;
        display: block;
        content: "";
        width: 10px;
        height: 10px;
        border-top: 1px solid var(--black);
    }

    /* _____________LOWER_PAGE_____________ */
    #lowerpage_top {
        height: 220px;
    }

    .lowerpage_firstsection {
        position: static;
        margin-bottom: 80px;
    }


    /* ________________LAED________________ */
    .lead {
        font-size: 16px;
        text-align: left;
        font-weight: bold;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .lead_redflame {
        border: 1px solid var(--red);
        padding: 10px 10px;
        margin-bottom: 30px;
    }

    /* _________RECRUIT_________ */
    /* _________RECRUIT_LOWER_PAGE_________ */
    .recruitUnderlayer {
        height: 200px;
        margin-bottom: 30px;
    }

    .recruitUnderlayer .breadCrumb {
        margin-bottom: 10px;
        justify-content: flex-start;
        padding: 60px 0 0;
    }

    .recruitUnderlayer h1 {
        font-size: 26px;
        font-weight: bold;
        padding: 0;
        margin: 0 auto 0 20px;
    }

    .recruitUnderlayer h1 span {
        color: var(--black);
    }

    .recruitUnderlayer .recruitUnderlayer_top_title {
        width: 100%;
    }

    .recruitUnderlayer .recruitUnderlayer_top_image {
        height: 120px;
        background-position: left center;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        border-top-left-radius: 0;
        box-shadow: none;
    }

    .recruit_lowerpage_firstsection {
        margin-bottom: 80px;
    }

    /* _____________RECRUIT_BANNER_UNDER_____________ */
    #recruit_banner_under .inner .flex {
        display: flex;
        flex-direction: column;
        box-shadow: none;
    }

    #recruit_banner_under .inner .flex img {
        height: 150px;
        width: auto;
        object-fit: cover;
    }

    #recruit_banner_under .inner .new,
    #recruit_banner_under .inner .career {
        background: var(--white);
        padding: 30px;
        max-width: none;
        width: 100%;
    }

    #recruit_banner_under .inner .career {
        margin-top: 80px;
    }

    #recruit_banner_under .inner .new .title,
    #recruit_banner_under .inner .career .title {
        font-size: 26px;
        color: var(--red);
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
    }

    #recruit_banner_under .inner .new .title::after,
    #recruit_banner_under .inner .career .title::after {
        content: "";
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        right: 10px;
        width: 15px;
        height: 15px;
        border-top: 5px solid var(--red);
        border-right: 5px solid var(--red);
        transform: rotate(45deg);
    }

    #recruit_banner_under .inner .flex:hover {
        opacity: 0.5;
    }

    /* _____________ENTRY_____________ */
    #entry {
        width: 90%;
        top: 50px;
        padding: 30px 15px 30px 15px;
    }

    #entry p {
        font-size: 16px;
        font-weight: bold;
    }

    #entry .btn {
        margin-top: 20px;
    }


}