@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');

.lato{
    font-family: 'Lato', sans-serif;
    letter-spacing: .01em;
}
:root {
    --main: #214998;
    --main-rgb: 33, 73, 152;
    --sub: #FFD736;
    --sub-on: #EEB01F;
    --lblue: #D8ECF9;
    --text: #1E1E1E;
    --ls: 0.05em;
}

/* 検証用
* {
	outline: 1px solid magenta;
}
*/
/*---------------------------------

  追加リセット

---------------------------------*/

html, body {
    min-width: 375px;
    min-height: 100vh;
}
html{
    scroll-behavior: smooth;
}

body{
    background: #F6F6F6;
    color: var(--text);
    font-size: 15px;
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-weight: 700;
    letter-spacing: .05em;
}
a{
    position: relative;
    text-decoration: none;
}

ul{
    list-style: none;
}
p, li{
    line-height: 1.5;
}
img {
    max-width: 100%;
}

@media screen and (max-width:767px) {
    body{
        font-size: 14px;
    }
}

/*---------------------------------

  基本設定

---------------------------------*/

.inner{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.pc{
    display: inline-block;
}
.sp{
    display: none;
}

@media screen and (max-width:767px) {
    .pc{
        display: none;
    }
    .sp{
        display: inline-block;
    } 
}

/* モーダル開時に背景のスクロールを防ぐ 
body:has(.overlay.open){
  overflow: hidden;
}
body:has(.overlay.open) main{
  overflow: auto;
  scrollbar-gutter: stable;
}
*/
.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex.re{
    flex-direction: row-reverse;
}

/*---------------------------------

  共通

---------------------------------*/

.title_slash{
    padding: 54px 0 0;
    background: url(../img/recruit/common/ico_title.png) no-repeat top center;
    background-size: 40px;
    color: var(--text);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .02em;
    text-align: center;
}

.blue_text{
    color: var(--main);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.02em;
}


.white_box{
    padding: 64px 56px;
    background: #fff;
    border-radius: 20px;
}


.button_text{
    display: inline-block;
    min-width: 200px;
    padding: 25px 80px 0 0px;
    transition: .3s;
}
.button_text:hover{

}
.button_text_w{
    display: inline-block;
    min-width: 200px;
    padding: 25px 80px 0 0px;
    color: #fff;
    transition: .3s;
}

.button_transparent_w{
    display: block;
    width: 240px;
    height: 64px;
    padding: 20px 32px 0 52px;
    border: 1px solid #fff;
    border-radius: 400px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}


input.button{
    display: block;
    min-width: 320px;
    height: 64px;
    padding: 0;
    margin: 40px auto 0;
    background: var(--main);
    border-radius: 400px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}
input.button:disabled{
    background: #ccc;
}

.arrow_r_o::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 72px;
    height: 72px;
    background: url(../img/recruit/common/ico_arrow.png) no-repeat left 24px top 24px;
    background-size: 22px;
    border: 1px solid var(--main);
    border-radius: 50%;
    
    animation-fill-mode: forwards;
    animation-duration: 0.8s;  
}
.arrow_r_o:hover::before{
    animation-name: transformLeftRight; /* 修正: hover時のアニメーションを指定 */
    animation-delay: 0.2s;
}

.button_text_w.arrow_r_o::before{
    background: url(../img/recruit/common/ico_arrow_w.png) no-repeat left 24px top 24px;
    background-size: 22px;
    border: 1px solid #fff;
}

@keyframes transformLeftRight{
    0% {
      background-position: top 24px left 24px;
    }
    30% {
      background-position: top 24px left 60px;
    }
    50% {
      background-position: top 24px left 70px;
      background-image: none;
    }
    60% {
      background-position: top 24px left 0px;
    }
    100% {
      background-position: top 24px left 24px;
    }
}

.arrow_ex::after{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0 -2px 10px;
    background: url(../img/recruit/common/ico_link.png) no-repeat;
    background-size: 16px;
}
.arrow_ex_o::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 72px;
    height: 72px;
    background: url(../img/recruit/common/ico_link.png) no-repeat left 27px top 27px;
    background-size: 16px;
    border: 1px solid var(--main);
    border-radius: 50%;
    transition: .3s;
/*    animation-fill-mode: forwards;
    animation-duration: 0.8s;  */
}
/*
.arrow_ex_o:hover::before{
    animation-name: transformLeftRight3;
    animation-delay: 0.2s;
}
@keyframes transformLeftRight3{
    0% {
      background-position: top 27px left 27px;
    }
    30% {
      background-position: top 27px left 60px;
    }
    50% {
      background-position: top 27px left 70px;
      background-image: none;
    }
    60% {
      background-position: top 27px left 0px;
    }
    100% {
      background-position: top 27px left 27px;
    }
}
*/

.button_text_w.arrow_ex_o::before{
    background: url(../img/recruit/common/ico_link_w.png) no-repeat left 27px top 27px;
    background-size: 16px;
    border: 1px solid #fff;
}

.arrow_b::before{
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}
.arrow_b::after{
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    right: 26px;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    transform: rotate(45deg);
}
.arrow_b:hover::after{
    border-right: 2px solid #3C45A5;
    border-bottom: 2px solid #3C45A5;
}

.button_transparent_w.arrow_l_o::before{
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/recruit/common/ico_arrow_w.png) no-repeat left 11px top 11px;
    background-size: 16px;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: rotate(180deg);
    transition: .3s;
}
.button_transparent_w.arrow_l_o:hover::before{
    background-position: left 14px top 11px;
}

@media screen and (max-width:1024px){
    

}

@media screen and (max-width:767px){

    .title_slash{
        padding: 54px 0 0;
        background: url(../img/recruit/common/ico_title.png) no-repeat top center;
        background-size: 40px;
        font-size: 30px;
    }

    .blue_text{
        font-size: 24px;
    }

    .white_box{
        padding: 6vw;
        border-radius: 20px;
    }

}

/*---------------------------------

  中身

---------------------------------*/

.main{
    margin: 104px 0 0;
    width: 100%;
}
.page_header{
    height: 464px;

}
.page_header .title_area{
    height: 400px;
    padding: 100px 0 0;
    background: linear-gradient(-30deg, var(--lblue) 32%, var(--main) 32%);/*一旦*/
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: .02em;
}
.page_header .title{
    position: relative;
    z-index: 0;
}
.page_header .title::before{
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 710px;
    height: 433px;
    background: url(../img/recruit/common/page_header_img.png) no-repeat;
    background-size: 710px;
    z-index: -1;
}
.page_header .title span{
    display: block;
    margin: 0 0 10px;
    font-size: 24px;
}
.breadcrumb{
    min-height: 64px;
    padding: 20px 0;
}
.breadcrumb li{
    display: inline-block;
    color: var(--text);
    font-size: 11px;
}
.breadcrumb li:not(:first-child)::before{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 6px 1px 4px;
    border-right: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    transform: rotate(-45deg);
}
.breadcrumb li a{
    color: var(--text);
}
.breadcrumb li a:hover{
    color: var(--main);
}

@media screen and (max-width:1440px){
    
    .page_header .title::before{
        content: '';
        position: absolute;
        top: 0px;
        right: 0px;
        width: 450px;
        height: 400px;
        background: url(../img/recruit/common/page_header_img.png) no-repeat right;
        background-size: contain;
        z-index: -1;
    }
    
}

@media screen and (max-width:1200px){
    
    .main{
        margin: 70px 0 0;
    }
}

@media screen and (max-width:767px){

    .page_header{
        height: inherit;

    }
    .page_header .title_area{
        height: 400px;
        padding: 100px 0 0;
        font-size: 30px;
    }
    .page_header .title::before{
        top: 100px;
        right: 0px;
        width: 100%;
        height: 230px;
        background: url(../img/recruit/common/page_header_img.png) no-repeat right;
        background-size: contain;
    }
    .page_header .title span{
        font-size: 18px;
    }

    .breadcrumb{
        display: none;
    }
    
}

/*---------------------------------

  ヘッダー

---------------------------------*/

.header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 104px;
    background: var(--main);
    z-index: 2000/*10*/;
    
}
.header > .flex{
    justify-content: space-between;
}
.header .logo{
    display: block;
    width: 220px;
    height: 74px;
    margin: 15px 20px 0 40px;
}
.header .header_nav{
    margin: 26px 0 0;
}
.header .header_nav li.drop{
    position: relative;
}
.header .header_nav li.drop > a{
    display: block;
    height: 56px;
    padding: 18px 45px 0 20px;
    color: #fff;
    font-size: 16px;
    transition: .3s;
    cursor: pointer;
}
.header .header_nav li.drop > a:hover{
    opacity: .5;
}
.header .header_nav li.entry_btn{
    margin: 0 30px 0 20px;
}

.header .header_nav li.entry_btn a{
    display: block;
    width: 192px;
    height: 56px;
    padding: 20px 0 0;
    background: var(--sub);
    border-radius: 70px;
    color: #2A2A2A;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: .3s;
}
.header .header_nav li.entry_btn a:hover{
    background: var(--sub-on);
}

.header .header_nav .nav{
    position: absolute;
    left: -70px;
    top: 55px;
    gap: 12px;
    display: none;
    width: 285px;
    padding: 32px;
    background: #fff;
    border-radius: 10px;
}
.header .header_nav li.drop:hover .nav{
    display: flex;
}
.header .header_nav .nav li{
    width: 100%;
}
.header .header_nav .nav a{
    position: relative;
    display: block;
    width: 100%;
    color: var(--main);
    font-size: 15px;
    transition: .3s;
}
.header .header_nav .nav .arrow_r::after{
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/recruit/common/ico_arrow.png) no-repeat;
    background-size: 16px;
    transition: .3s;
}
.header .header_nav .nav .arrow_ex::after{
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/recruit/common/ico_link.png) no-repeat;
    background-size: 16px;
    transition: .3s;
}
.header .header_nav .nav a:hover{
    color: var(--sub-on);
}
.header .header_nav .nav a:hover::after{
    right: -3px;
}

@media screen and (max-width:1200px){

    .header .header_nav{
        display: none;
    }
    
}

@media screen and (max-width:1024px){

    .header{
        height: 94px;
    }
    .header .logo{
        display: block;
        width: 166px;
        height: 61px;
        margin: 15px 20px 0 20px;
    }

}

/*---------------------------------

  ハンバーガー周り

---------------------------------*/

.header_nav_sp{
    display: none;
}

.header .nav_trigger {
    display: none;
}

@media screen and (max-width:1200px){
    
    .header_nav_sp{
        display: block;
        position: fixed;
        top: 94px;
        right: -375px;
        width: 375px;
        max-height: calc(100% - 94px);
        padding: 13px 20px;
        background: var(--main);
        z-index: 5;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        overflow-y: scroll;
    }
    .overlay {
        content: '';
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0);
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        z-index: 4;
    }
    .side_open .overlay {
        visibility: visible;
        cursor: pointer;
        background: rgba(0,0,0,.7);
    }
    /* サイドメニューオープン */
    .side_open .header_nav_sp{
        -webkit-transform: translate3d(-375px, 0, 0);
        transform: translate3d(-375px, 0, 0);
    }

    /* サイドメニューオープン 
    .side_open .overlay,
    .side_open .header_nav_sp {
        -webkit-transform: translate3d(-375px, 0, 0);
        transform: translate3d(-375px, 0, 0);
    }*/
    .header_nav_sp > ul.nav_list{
        padding: 40px 30px;
        background: #fff;
        border-radius: 20px;
    }
    .header_nav_sp > ul.nav_list > li{
        margin: 0 0 60px;
        color: var(--main);
        font-size: 14px;
        line-height: 1.8;
    }
    .header_nav_sp > ul.nav_list li .en{
        display: inline-block;
        margin: 0 15px 0 0;
        font-size: 30px;
        font-weight: 900;
        vertical-align: -3px;
    }
    .header_nav_sp > ul.nav_list > li.entry_btn{
        margin: 0 0 40px;
    }
    .header_nav_sp > ul.nav_list > li.entry_btn a{
        display: block;
        width: 100%;
        height: 56px;
        padding: 20px 0 0;
        background: var(--sub);
        border-radius: 70px;
        color: #2A2A2A;
        font-size: 18px;
        font-weight: 900;
        line-height: 1;
        text-align: center;
        transition: .3s;
    }
    .header_nav_sp > ul.nav_list > li.entry_btn a:hover{
        background: var(--sub-on);
    }
    .header_nav_sp > ul.nav_list > li:last-child{
        margin: 0;
    }
    .header_nav_sp > ul.nav_list > li > ul{
        margin: 10px 0 0;
    }
    .header_nav_sp > ul.nav_list > li > ul > li{
        margin: 12px 0 0;
    }
    .header_nav_sp > ul.nav_list > li > ul > li a{
        position: relative;
        display: block;
        width: 100%;
    }
    .header_nav_sp > ul.nav_list > li > ul > li > .arrow_r::after{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 16px;
        height: 16px;
        margin: 0 0 -2px 10px;
        background: url(../img/recruit/common/ico_arrow.png) no-repeat;
        background-size: 16px;
    }
    .header_nav_sp > ul.nav_list > li > ul > li > .arrow_ex::after{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 16px;
        height: 16px;
        margin: 0 0 -2px 10px;
        background: url(../img/recruit/common/ico_link.png) no-repeat;
        background-size: 16px;
    }
    .header_nav_sp > ul.nav_list > li .button_text{
        min-width: inherit;
        padding: 6px 55px 0 0;
        font-size: 15px;
        font-weight: 900;
    }
    .header_nav_sp > ul.nav_list > li .button_text.arrow_ex_o::before{
        width: 40px;
        height: 40px;
        background: url(../img/recruit/common/ico_link.png) no-repeat left 12px top 12px;
        background-size: 16px;
    }
    
    .header_nav_sp .sns_list{
        justify-content: center;
        gap: 16px;
        padding: 34px 0;
    }
    .header_nav_sp .sns_list li{
        width: 48px;
        height: 48px;
    }
    
    .header .nav_trigger {
        position: fixed;
        right: 20px;
        top: 22px;
        display: block;
        width: 56px;
        height: 56px;
        background: #fff;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: all .4s;
    }

    .header .nav_trigger span{
        position: absolute;
        top: 35px;
        right: 15px;
        display: block;
        width: 25px;
        height: 2px;
        background: var(--main);
        border-radius: 2px;
        color: #73654F;
        font-size: 13px;
        letter-spacing: 0.01em;
        line-height: 28px;
        text-align: center;
        transition: all .4s;
    }
    .header .nav_trigger span::before,
    .header .nav_trigger span::after {
        position: absolute;
        display: block;    
        height: 2px;
        margin: auto;
        background: var(--main);
        border-radius: 0;
        transition: all .4s;
    }
    .header .nav_trigger span::before {
        content: '';
        top: -6px;
        width: 25px;
    }
    .header .nav_trigger span::after {
        content: '';
        top: -12px;
        width: 25px;
    }
    .nav_trigger.active{
        width: 56px;
        height: 56px;
    }
    .nav_trigger.active span::before {
        width: 25px;
        height: 2px;
        -webkit-transform: translateY(-1px) rotate(-45deg);
        transform: translateY(-1px) rotate(-45deg);
    }
    .nav_trigger.active span {
        background: rgba( 0, 0, 0, 0);
    }
    .nav_trigger.active span::after {
        width: 25px;
        height: 2px;
        -webkit-transform: translateY(5px) rotate(45deg);
        transform: translateY(5px) rotate(45deg);
    }
    
}

@media screen and (max-width:600px){

}



/*---------------------------------

  フッダー

---------------------------------*/

.footer{
    position: sticky;
    top: 100vh;
    width: 100%;
    padding: 75px 0 50px;
    background: var(--main);
    color: #fff;
}
.footer > .flex{
    justify-content: space-between;
}
.footer .footer_facom dd{
    margin: 23px 0 43px;
}
.footer .footer_facom .button_text_w{
    min-width: inherit;
    min-height: 40px;
    padding: 12px 56px 0 0;
    letter-spacing: .05em;
}
.footer .footer_facom .arrow_ex_o::before{
    width: 40px;
    height: 40px;
    background: url(../img/recruit/common/ico_link_w.png) no-repeat left 12px top 11px;
    background-size: 16px;
}
.footer .footer_facom .sns_list{
    margin: 54px 0 0;
}
.footer .footer_nav{
    gap: 40px;
}
.footer .footer_nav dt{
    margin: 0 0 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}
.footer .footer_nav dl:nth-of-type(2) dt:nth-of-type(2){
    margin: 30px 0 24px;
}
.footer .footer_nav dt .en{
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
}
.footer .footer_nav dd{
    margin: 0 0 3px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
}
.footer .footer_nav dd .arrow_ex::after{
    background: url(../img/recruit/common/ico_link_w.png) no-repeat;
    background-size: 16px;
}
.footer .footer_nav dd.entry_btn{
    margin: 46px 0 0;
} 
.footer .footer_nav dd.entry_btn a{
    display: block;
    width: 194px;
    height: 56px;
    padding: 20px 0 0;
    background: var(--sub);
    border-radius: 70px;
    color: #2A2A2A;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: .3s;
}
.footer .footer_nav dd.entry_btn a:hover{
    background: var(--sub-on);
}

.footer .sns_list{
    gap: 16px;
}
.footer .sns_list li a{
    display: block;
    width: 48px;
    height: 48px;
}

.footer .copy{
    display: block;
    width: 100%;
    padding: 36px 0 0;
    font-size: 10px;
    font-weight: 700;
    text-align: right;
    letter-spacing: .01em;
}

@media screen and (max-width:1200px){

    .footer .copy{
        width: 90%;
        margin: auto;
    }
    
}

@media screen and (max-width:1024px){

    .footer .footer_nav{
        display: none;
    }
    
}

@media screen and (max-width:767px){
    

    
}

/*---------------------------------

  interview_slide

---------------------------------*/

.interview_list{
    position: relative;
}
.interview_list li.slide{
    position: relative;
    max-width: 440px;
    height: 256px;
    padding: 0 0 63px;
    margin: 0 10px;
}
.interview_list li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 130px 30px 40px;
    background: #fff;
    border-radius: 10px;
}
.interview_list li .fig{
    position: absolute;
    right: 22px;
    bottom: 0;
    display: block;
    width: 108px;
    transition: .3s;
}
.interview_list li:hover .fig{
    bottom: 3px;
}
.interview_list li a .ttl{
    margin: 0 0 20px;
    color: var(--main);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: .02em;
    
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
}
.interview_list li a .data{
    font-size: 13px;
    line-height: 1.8;
}
.interview_list li a .data span{
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 20px;
}

.interview_slide .slide-dots{
    position: absolute;
    left: /*calc(50% - 600px)*/160px;
    bottom: -160px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.interview_slide .slide-dots li{
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 5px;
    transition: .3s;
    cursor: pointer;
}
.interview_slide .slide-dots li.slick-active{
    background: var(--sub);
}
.interview_slide .slide-dots li button{
    text-indent: -9999px;
}
.interview_slide .slide-arrow{
    position: absolute;
    bottom: -166px;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 1;
}
.interview_slide .prev-arrow{
    left: 80px;
}
.interview_slide .next-arrow{
    left: 116px;
}
.interview_slide .slide-arrow::after{
    content: '';
    position: absolute;
    top: 6px;
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.interview_slide .prev-arrow::after{
    left: 7px;
    transform: rotate(135deg);
}
.interview_slide .next-arrow::after{
    right: 7px;
    transform: rotate(-45deg);
}

@media screen and (max-width:767px){

    .interview_list li a{
        padding: 25px 125px 25px 25px;
    }
    .interview_list li.slide{
        position: relative;
        max-width: 360px;
        height: 256px;
        padding: 0 0 63px;
    }
    .interview_slide .slide-dots{
        left: /*calc(50% - 600px)*/160px;
        bottom: -80px;
    }
    .interview_slide .slide-arrow{
        bottom: -70px;
    }
    .interview_slide .prev-arrow{
        left: calc(50% - 30px);
    }
    .interview_slide .next-arrow{
        left: calc(50% + 10px);
    }
    
}



/*---------------------------------

  content_entry

---------------------------------*/

.content_entry{
    position: relative;
    padding: 145px 0 730px;
    background: linear-gradient(-30deg, var(--lblue) 55%, transparent 55%);/*一旦*/
}
#recruit .content_entry{
    padding-top: 115px; 
}
.content_entry::before{
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    height: 300px;
    width: 100%;
    background: linear-gradient(180deg, #D8ECF9 0%, #F6F6F6 100%);
}
.content_entry::after{
    content: '';
    position: absolute;
    bottom: 70px;
    left: 2%;
    display: block;
    width: 96%;
    height: 629px;
    background: url(../img/recruit/common/entry_img.png) no-repeat center;
    background-size: contain;
}
.content_entry .blue_text{
    font-size: 40px;
    text-align: center;
}

.content_entry .button{
    display: block;
    width: 90%;
    max-width: 832px;
    height: 160px;
    padding: 65px 0 0;
    margin: 70px auto 0;
    background: var(--sub);
    border-radius: 200px;
    color: #000;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: .3s;
}
.content_entry .button:hover{
    background: var(--sub-on);
}

.content_entry .arrow_r_o::before{
    content: '';
    position: absolute;
    top: 32px;
    right: 32px;
    display: block;
    width: 96px;
    height: 96px;
    background: url(../img/recruit/common/ico_arrow_entry.png) no-repeat left 32px top 32px;
    background-size: 29px;
    border: 1px solid var(--text);
    border-radius: 50%;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;    
}
.content_entry .arrow_r_o:hover::before{
    animation-name: transformLeftRight2; /* 修正: hover時のアニメーションを指定 */
    animation-delay: 0.2s;
}
@keyframes transformLeftRight2 {
    0% {
      background-position: top 32px left 32px;
    }
    30% {
      background-position: top 32px left 75px;
    }
    50% {
      background-position: top 32px left 90px;
      background-image: none;
    }
    60% {
      background-position: top 32px left 0px;
    }
    100% {
      background-position: top 32px left 32px;
    }
}

@media screen and (max-width:767px){
    
    .content_entry{
        padding: 145px 0 400px;
    }
    .content_entry::after{
        bottom: 70px;
        left: 2%;
        width: 96%;
        height: 300px;
        background: url(../img/recruit/common/entry_img.png) no-repeat center;
        background-size: contain;
    }
    .content_entry .blue_text{
        font-size: 30px;
    }
    
    .content_entry .button{
        max-width: 760px;
        height: 100px;
        padding: 35px 0 0;
        margin: 70px auto 0;
        font-size: 32px;
    }
    .content_entry .arrow_r_o::before{
        top: 15px;
        right: 15px;
        width: 70px;
        height: 70px;
        background: url(../img/recruit/common/ico_arrow_entry.png) no-repeat left 20px top 20px;
        background-size: 28px;
    }
    
}

/*---------------------------------

  フォーム

---------------------------------*/
.plus{
    position: relative;
}
.plus::before{
    content: '+';
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 20px;
    height: 20px;
    padding: 1px 0 0 1px;
    background: var(--main);
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

.checkbox2 label input{
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    line-height: 0;
}
.checkbox2 label input + span,
.radio input + span{
    position: relative;
    padding: 0 0 0 45px;
    cursor: pointer;
}
.checkbox2 label input + span::before,
.radio input + span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 28px;
    margin-top: -13px;
    border: 1px solid #EAE5DF;
    border-radius: 4px;
}
.checkbox2 label input + span::after{
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 7px;
    width: 15px;
    height: 8px;
    border-left: solid 3px var(--main);
    border-bottom: solid 3px var(--main);
    transform: rotate(-45deg) scale(1);
    opacity: 0;
}

.checkbox2 label input[type="checkbox"]:checked + span::after{
    opacity: 1;
}

.checkbox2 label input:disabled + span::before{
    background: #eee;
}
.checkbox2 label input:disabled + span{
    cursor: inherit;
}

.radio input + span::before {
    border-radius: 50%;
    cursor: pointer;
}
.radio input + span::after {
    content: '';
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 9px;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-radius: 50%;
    background: var(--main);
}
.radio input[type="radio"]:checked + span::after {
    opacity: 1;
}

/*---------------------------------

  ページネイト

---------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 90px auto 0px;
}
.paging > *{
    display: block;
    width: 48px;
    height: 48px;
    padding: 12px 0 0;
    background: #fff;
    border: 1px solid var(--main);
    border-radius: 50%;
    color: var(--main);
    font-size: 18px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    text-align: center;
}
.paging > .current{
    background: var(--main);
    color: #fff;
}
.paging > .dots{
    background: transparent;
    border: none;
}
.paging > .next{
    background: url(../img/recruit/common/ico_arrow.png) no-repeat center center;
    background-size: 24px;
    border: none;
    text-indent: -9999px;
}
.paging > .prev{
    background: url(../img/recruit/common/ico_arrow.png) no-repeat center center;
    background-size: 24px;
    border: none;
    transform: rotate(180deg);
    text-indent: 9999px;
}

/*---------------------------------

  その他

---------------------------------*/

#err404 .btn{
    margin: 50px auto 0;
}

/* utility
--------------------------------------------------------------*/

.bg-black {
    background: #333;
}

.bg-gray {
    background: #8D8D8D;
}
.bg-green {
    background: #0C7947;
}
.ta-center {
    text-align: center;
}
.px12 {
    font-size: 12px;
}
.px18 {
    font-size: 18px;
}
.fw-light {
   font-weight: 300; 
}
.fw-bold {
   font-weight: 700; 
}
.fw-black {
   font-weight: 900; 
}
.lh2{
    line-height: 2;
}
.mt10 {
    margin-top: 10px;
}
.mt50 {
    margin-top: 50px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb100 {
    margin-bottom: 100px;
}
.ml10 {
    margin-left: 10px;
}
.mr10 {
    margin-right: 10px;
}
