@import url('https://fonts.googleapis.com/css2?family=Arsenal+SC:ital,wght@1,700&family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.roboto{
    font-family: 'Roboto Condensed', sans-serif;
    font-optical-sizing: auto;
    letter-spacing: 0.01em;
}
.arsenal{
  font-family: 'Arsenal SC', sans-serif;
  font-weight: 700;
  font-style: italic;
}

:root {
    --main: #2AA781;
    --main-rgb: 42, 167, 129;
    --text: #303030;
    --btn: #262626;
    --gray: #F2F2F2;
    --link: #FF5E00;
    --ls: -0.03em;
}
/* 検証用
* {
	outline: 1px solid magenta;
}
*/
/*---------------------------------

  追加リセット

---------------------------------*/

html, body {
    min-width: 375px;
    min-height: 100vh;
}
html{
    scroll-behavior: smooth;
}
body{
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Noto Sans JP',/* 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo,*/ sans-serif;
}
a{
    position: relative;
    text-decoration: none;
}
a.textlink{
    color: var(--link);
    text-decoration: none;
}
a.textlink:hover{
    text-decoration: underline;
}
ul{
    list-style: none;
}
p, li{
    line-height: 1.5;
}
img {
    max-width: 100%;
}

/*---------------------------------

  基本設定

---------------------------------*/

.inner{
    width: 90%;
    max-width: 1072px;
    margin: auto;
}
.pc{
    display: inline-block !important;
}
.sp{
    display: none !important;
}

@media screen and (max-width: 767px) {
    .pc{
        display: none !important;
    }
    .sp{
        display: inline-block !important;
    } 
}

/* モーダル開時に背景のスクロールを防ぐ */
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_underline{
    position: relative;
    padding: 0 0 16px;
    color: var(--text);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
}
.title_underline .en{
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}
.title_underline::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(270deg, #2FEAAC 0%, #06222C 100%);
}
.title_underline.center::after{
    left: calc(50% - 30px);
}



.white_box{
    background: #fff;
    border-radius: 20px;
}
.gray_box{
    background: #F8F8F8;
    border-radius: 20px;
}
.green_box{
    background: #EEFCF9;
    border-radius: 20px;
}

@media screen and (max-width: 767px) {

    .title_underline{
        font-size: 28px;
    }
    .title_underline .en{
        font-size: 32px;
    }
    
}

/*---------------------------------

  ボタン類

---------------------------------*/
.button{
    display: block;
    width: fit-content;
    min-width: 224px;
    height: 64px;
    padding: 15px 50px 0 24px;
    background: var(--btn);
    border: 1px solid var(--btn);
    border-radius: 400px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    transition: .3s;
}

.view{
    display: block;
    width: fit-content;
    min-width: 81px;
    height: 40px;
    padding: 8px 50px 0 16px;
    background: var(--btn);
    border: 1px solid var(--btn);
    border-radius: 400px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
    transition: .3s;
}

.view.arrow_r::after{
    content: '';
    position: absolute;
    top: 11px;
    right: 16px;
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/common/arrow_r.png) no-repeat;
    background-size: 16px;
}

.button:hover{
    background: var(--main);
    border: 1px solid var(--main);
    color: #fff;
}


.button_w{
    display: block;
    width: fit-content;
    min-width: 230px;
    height: 60px;
    padding: 12px 50px 0 22px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 90px;
    color: var(--main);
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
    transition: .3s;
}
.button_w:hover{
    border: 2px solid var(--main);
}

.arrow_r,
.arrow_l,
.arrow_b,
.arrow_ex{
    position: relative;
}
.arrow_r_o::before{
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/common/arrow_r.png) no-repeat top 10px left 10px;
    background-size: 20px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
}



.arrow_r_o_g::before{
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/common/arrow_r_g.png) no-repeat top 10px left 10px;
    background-size: 20px;
    border: 1px solid rgba(42, 167, 129, .4);
    border-radius: 50%;
}
.arrow_ex::after{
    content: '';
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0 0 3px;
    background: url(../img/common/arrow_ex.png) no-repeat;
    background-size: 16px;
    vertical-align: text-bottom;
}
.arrow_ex_g::after{
    content: '';
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0 0 3px;
    background: url(../img/common/arrow_ex_g.png) no-repeat;
    background-size: 16px;
    vertical-align: text-bottom;
}
.arrow_ex_o::before{
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/common/arrow_ex.png) no-repeat top 11px left 11px;
    background-size: 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}
.arrow_ex_o_o::before{
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/common/arrow_ex_o.png) no-repeat top 12px left 12px;
    background-size: 16px;
    border: 1px solid rgba(255, 93, 0, .2);
    border-radius: 50%;
}
.arrow_ex_o_g::before{
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/common/arrow_ex_g.png) no-repeat top 11px left 11px;
    background-size: 16px;
    border: 1px solid rgba(42, 167, 129, .4);
    border-radius: 50%;
}

.button.arrow_l_o{
    padding: 15px 0 24px 70px;
}

.arrow_l_o::before{
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/common/arrow_r.png) no-repeat top 10px left 10px;
    background-size: 20px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    transform: rotate(180deg);
}
.navlink{
    padding: 0 24px 0 0;
}
.navlink.arrow_r::before{
    content: '';
    position: absolute;
    top: 10px;
    right: 0px;
    display: block;
    width: 16px;
    height: 16px;
    background: transparent;
    border-radius: 50%;
    transition: .3s;
}
.navlink.arrow_r::after{
    content: '';
    position: absolute;
    top: 15.5px;
    right: 6px;
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.navlink.arrow_ex::before{
    content: '';
    position: absolute;
    top: 2px;
    right: 0px;
    display: block;
    width: 16px;
    height: 16px;
    background: var(--black);
    border-radius: 50%;
    color: #fff;
    transition: .3s;
}
.navlink.arrow_r:hover::before,
.navlink.arrow_ex:hover::before{
/*    background: var(--main);*/

}
.navlink.arrow_r:hover::after{
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
}
.navlink.arrow_ex::after{
    content: '';
    position: absolute;
    top: 6px;
    right: 5px;
    display: block;
    width: 7px;
    height: 7px;
    background: url(../img/common/arrow_ex.png) no-repeat;
    background-size: 7px;
}

input.button{
    display: block;
    width: fit-content;
    min-width: 230px;
    height: 60px;
    padding: 0 50px 0 24px;
    background: var(--btn);
    border: 1px solid var(--btn);
    border-radius: 90px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
    transition: .3s;
}

@media screen and (max-width: 1024px){
    

}

@media screen and (max-width: 767px){

}

/*---------------------------------

  中身

---------------------------------*/
.main{
    margin: 0 0;
    width: calc(100% - 80px);
}
.page_header{
    position: relative;
    height: 400px;
}
.page_header::before{
    content: '';
    position: absolute;
    bottom: -70px;
    right: 0;
    width: 342px;
    height: 342px;
    background: url(../img/common/parts_02.png) no-repeat;
    background-size: 342px;
    z-index: 1;
}
.page_header .title_area{
    height: 400px;
    padding: 174px 0 0 10%;
    background: url(../img/common/header_bg.png) no-repeat;
    background-size: cover;
}
.page_header .title{
    position: relative;
    color: var(--main);
    font-size: 52px;
    font-weight: 800;
    z-index: 1;
}


.breadcrumb{
    position: absolute;
    bottom: -100px;
    width: 100%;
    height: 70px;
    padding: 0px 0;
    z-index: 1;
}
.breadcrumb li{
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
}
.breadcrumb li::before{
    content: '＞';
    display: inline-block;
    padding: 0 10px;
}
.breadcrumb li:first-child::before{
    content: '';
    padding: 0 0;
}
.breadcrumb li a{
    color: var(--text);
    transition: .3s;
}
.breadcrumb li a:hover{
    color: var(--main);
}

.contents{
    position: relative;
}
.contents:first-of-type{
    min-height: 720px;
    background: url(../img/common/contents_bg.png) no-repeat top right;
    background-size: 720px;
}
.deco::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 0;
    border-top: 340px solid transparent;
    border-right: 340px solid transparent;
    border-left: 340px solid #FAFAFA;
    border-bottom: 340px solid #FAFAFA;
    z-index: -1;
}


.page_nav{
    padding: 87px 0 0;
}
.page_nav .flex{
    justify-content: center;
    gap: 40px;
}

@media screen and (max-width:1440px){
    
    .page_header::after{
        background: url(../img/common/header_border_1440.png) no-repeat bottom;
        background-size: 100%;
    }
    .page_header .title_en{
        right: 5%;
    }
    
}
@media screen and (max-width: 1024px){
    
    
}

@media screen and (max-width: 767px){

    .main{
        width: 100%;
    }
    
    .page_header{
        height: 330px;
    }
    .page_header::before{
        bottom: -20px;
        width: 200px;
        height: 200px;
        background-size: 200px;
    }
    
    .page_header .title_area{
        height: 330px;
        padding: 150px 0% 0;
    }
    .page_header .title{
        font-size: clamp(2rem, 1.522rem + 2.04vw, 2.5rem);
        /*375 - 767 32px - 40px*/
        text-align: center;
    }

    .breadcrumb{
        display: none;
    }
    
    .contents:first-of-type{
        min-height: 480px;
        background-size: 480px;
    }
    
    .deco::before{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: none;
        width: 0;
        height: 0;
        border-top: 340px solid transparent;
        border-right: 340px solid transparent;
        border-left: 340px solid #FAFAFA;
        border-bottom: 340px solid #FAFAFA;
        z-index: -1;
    }

    
}

/*---------------------------------

  ヘッダー

---------------------------------*/

.header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: none;
    z-index: 1000/*10*/;
}
.header.scrolled{
    background: #fff;
}

.header .logo{
    display: block;
    width: 262px;
    height: 80px;
    padding: 15px 40px 0;
    margin-right: 30px;
}

.header .header_nav{
    padding: 18px 0;
    height: 44px;
}
.header .header_nav .flex{
    gap: 20px;
}
.header .header_nav li a{
    display: block;
    height: 44px;
    padding: 10px 8px 0;
    color: var(--text);
    font-weight: 700;
    transition: .3s;
}
.header .header_nav li a:hover{
    color: var(--main);
}

@media screen and (max-width: 1024px){
    
    
}
@media screen and (max-width: 767px){

    .header{
        height: 64px;
    }
    .header .logo{
        display: block;
        width: 182px;
        height: 46px;
        padding: 10px 10px 0;
        margin-right: 0px;
    }
    .header .header_nav{
        display: none;
    }
    
}

/*---------------------------------

  ハンバーガー（ボタン）

---------------------------------*/

.header .nav_trigger {
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    width: 80px;
    height: 80px;
    background: var(--btn);
    cursor: pointer;
    z-index: 2000/*10*/;
    transition: all .4s;
}
.header .nav_trigger:hover{
/*    background: rgba(var(--main-rgb),.5);*/
}
.nav_trigger.active{
    
}
.header .nav_trigger span{
    position: absolute;
    top: 40px;
    right: 28px;
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,1);
    border-radius: 2px;
    color: #fff;
    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: #fff;
    border-radius: 2px;
    transition: all .4s;
}
.header .nav_trigger span::before {
    content: '';
    top: -8px;
    left: 10px;
    width: 14px;
}
.header .nav_trigger span::after {
    content: '';
    top: 8px;
    right: 10px;
    width: 14px;
}


.nav_trigger.active span::before {
    left: 0px;
    width: 25px;
    height: 2px;
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
}
.nav_trigger.active span {
    background: rgba( 0, 0, 0, 0);
}
.nav_trigger.active span::after {
    right: 0px;
    width: 25px;
    height: 2px;
    -webkit-transform: translateY(-5px) rotate(45deg);
    transform: translateY(-5px) rotate(45deg);
}

@media screen and (max-width: 767px){

    .header .nav_trigger {
        width: 64px;
        height: 64px;
    }
    .header .nav_trigger span{
        top: 32px;
        right: 20px;
    }
    
    
    
}

/*---------------------------------

  ハンバーガー（メニュー）

---------------------------------*/

.header_nav_sp{
    justify-content: space-evenly;
    position: fixed;
    top: 0;
    right: -390px;
    width: 100%;
    max-width: 470px;
    height: 100%;
    padding: 25px 100px 0 20px;
    background: rgba(38, 38, 38, .95);
    color: #fff;
    z-index: 2000/*10*/;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
    overflow-y: auto;
    z-index: 1;
}

.header_nav_sp .nav_logo{
    display: none;
}

.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: 2000/*10*/;
}

.overlay.open{
    visibility: visible;
    cursor: pointer;
    background: rgba(0,0,0,.1);
}
.side_open .overlay{
    z-index: 5;
}
/* サイドメニューオープン */
.side_open .header_nav_sp{
    -webkit-transform: translate3d(-390px, 0, 0);
    transform: translate3d(-390px, 0, 0);
}

/* サイドメニューオープン 
.side_open .overlay,
.side_open .header_nav_sp {
    -webkit-transform: translate3d(-375px, 0, 0);
    transform: translate3d(-375px, 0, 0);
}*/

.header_nav_sp dl{
    margin: 66px 0 0;
}
.header_nav_sp dt{
    margin: 0 0 15px;
    font-size: 13px;
    font-weight: 600;
    line-height: 36px;
}
.header_nav_sp dt .en{
    display: inline-block;
    margin: 0 16px 0 0;
    font-size: 32px;
    line-height: 1;
    vertical-align: sub;
}
.header_nav_sp dd{
}
.header_nav_sp dd a{
    display: block;
    width: 100%;
    min-height: 36px;
    padding: 10px 0;
    transition: .3s;
}
.header_nav_sp dd a:hover{
    color: var(--main);
}



.header_nav_sp .contact_area{
    padding: 48px 0 0;
}

.header_nav_sp .contact_area .btn{
    display: block;
    width: 90%;
    max-width: 350px;
    height: 64px;
    margin: 0px auto 0;
    padding: 12px 0 0;
    background: var(--main);
    border-radius: 60px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    transition: .3s;
}
.header_nav_sp .contact_area .btn:hover{
    background: rgba(var(--main-rgb),.7);
}
.header_nav_sp .contact_area .btn::before{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 5px 0 0;
    background: url(../img/common/ico-mail.png) no-repeat;
    background-size: 40px;
    vertical-align: -14px;
}
.header_nav_sp .contact_area .recruit_btn{
    display: block;
    width: 90%;
    max-width: 350px;
    height: 64px;
    margin: 24px auto 0;
    padding: 20px 0 0;
    background: linear-gradient(91.38deg, #FFEFE9 2.11%, #FDEDDA 98.82%);
    border-radius: 32px;
    color: #FF5D00;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: .3s;
    opacity: 1;
}
.header_nav_sp .contact_area .recruit_btn:hover{
    opacity: .85;
}

.header_nav_sp .contact_area .tel{
    margin: 30px 0 0;
}
.header_nav_sp .contact_area .tel dt{
    margin:  0 0 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}
.header_nav_sp .contact_area .tel dd{
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
}

.header_nav_sp .sub_nav{
    justify-content: space-between;
    margin: 64px 0 0;
    font-size: 13px;
}
.header_nav_sp .sub_nav li a{
    transition: .3s;
}
.header_nav_sp .sub_nav li a:hover{
    color: var(--main);
}

.header_nav_sp address{
    padding: 30px 0 40px;
}
.header_nav_sp address dl{
    margin: 0 0;
}
.header_nav_sp address dl dt{
    font-size: 15px;
    font-weight: 700;
}
.header_nav_sp address dl dd{
    position: relative;
    margin: 10px 0 0;
    line-height: 1.6;
}
.header_nav_sp address dl dd.tel{
    line-height: 1.2;
}
.header_nav_sp address dl dd a{
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    display: block;
    width: 24px;
    height: 24px;
    min-height: inherit;
    padding: 4px 0 0;
    background: #D9D9D9;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    transition: .3s;
}
.header_nav_sp address dl dd a:hover{
    background: #fff;
}
.header_nav_sp address dl dd a img{
    width: 10px;
}

.header_nav_sp .sns_list{
    justify-content: center;
    gap: 30px;
    padding: 30px 0 66px;
    border-top: 1px solid #D7D7D7;
}
.header_nav_sp .sns_list li{
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

@media screen and (max-width: 1024px){


    
}

@media screen and (max-width: 767px){

    .header_nav_sp{
        justify-content: space-evenly;
        position: fixed;
        top: 0;
        right: -375px;
        width: 100%;
        max-width: 375px;
        height: 100%;
        padding: 25px 20px 0 20px;
        background: rgba(38, 38, 38, .95);
        z-index: 2000/*10*/;
        overflow-y: auto;
        z-index: 1;
    }

    .side_open .header_nav_sp{
        -webkit-transform: translate3d(-375px, 0, 0);
        transform: translate3d(-375px, 0, 0);
    }

    
    .header_nav_sp .nav_logo{
        display: block;
        width: 182px;
    }

}

/*---------------------------------

  フッダー

---------------------------------*/

.footer{
    position: sticky;
    top: 100vh;
    width: calc(100% - 80px);
    padding: 80px 0 56px;
    background: #393939;
    color: #fff;
}
.footer .logo{
    display: block;
    width: 277px;
    height: 70px;
    margin: 0 0 56px;
}

.footer .footer_nav .flex{
    gap: 64px;
}
.footer .footer_nav dt{
    margin: 0 0 20px;
    font-weight: 700;
}
.footer .footer_nav dt .en{
    display: inline-block;
    margin: 0 15px 0 0;
    font-size: 30px;
    line-height: 1;
}
.footer .footer_nav dd{
    height: 36px;
}
.footer .footer_nav dd:not(:first-of-type)::before{
    content: '-';
    display: inline-block;
    margin: 0 10px 0 0;
    color: rgba(255,255,255,.2);
}
.footer .footer_nav dd a{
    transition: .3s;
}
.footer .footer_nav dd a:hover{
    color: var(--main);
}

.footer .footer_jts.flex{
    justify-content: space-between;
    align-items: center;
    padding: 56px 0 35px;
    margin-top: 70px;
    border-top: 1px solid rgba(215,215,215,.2);
}
.footer .footer_jts .flex{
    gap: 32px;
    margin: 20px 0;
    font-size: 13px;
}
.footer .footer_jts .flex a{
    transition: .3s;
}
.footer .footer_jts .flex a:hover{
    color: var(--main);
}
.footer .footer_jts dl dt{
    font-size: 15px;
    font-weight: 700;
}
.footer .footer_jts dl dd{
    margin: 10px 0 0;
    line-height: 1.2;
}
.footer .footer_jts dl dd a.map{
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    padding: 5px 0 0;
    margin: 0 0 0 10px;
    background: #D9D9D9;
    border-radius: 50%;
    text-align: center;
    transition: .3s;
    line-height: 1;
}
.footer .footer_jts dl dd a.map:hover{
    background: #fff;
}
.footer .footer_jts dl dd a.map img{
    width: 10px;
}
.footer .copy{
    display: block;
    font-size: 11px;
    font-weight: 500;
}

@media screen and (max-width: 1024px){


    
}

@media screen and (max-width: 767px){

    .footer{
        width: 100%;
        padding: 80px 0 56px;
    }
    
    .footer .footer_nav{
        display: none;
    }
    
    .footer .footer_jts.flex{
        padding: 0 0 30px;
        margin-top: 0px;
        border-top: none;
    }
    .footer .footer_jts dl dd{
        line-height: 1.6;
    }
    .footer .footer_jts .flex{
        gap: 10px 20px;
        margin: 20px 0 0;
    }

}

/*---------------------------------

  aside

---------------------------------*/

.aside{
    position: fixed;
    top: 80px;
    right: 0;
    width: 80px;
    height: calc(100vh - 80px);
    min-height: 400px;
    background: var(--main);
    z-index: 1000/*3*/;
}

.aside .cv_list li{
    width: 100%;
    height: 80px;
}
.aside .cv_list li a{
    display: block;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    text-align: center;
}
.aside .cv_list li.contact_btn a{
    padding: 54px 0 0;
    background: url(../img/common/ico-mail.png) no-repeat center top 12px;
    background-size: 40px;
    background-color: var(--main);
    color: #fff;
    opacity: 1;
    transition: .3s;
}
.aside .cv_list li.contact_btn a:hover{
    opacity: .85;
}
.aside .cv_list li.recruit_btn a{
    position: relative;
    padding: 26px 0 0;
    background: url(../img/common/recruit_btn_bg.png) no-repeat;
    background-size: cover;
    color: #4A4A4A;
    opacity: 1;
    transition: .3s;
}
.aside .cv_list li.recruit_btn a:hover{
    opacity: .85;
}
.aside .cv_list li.recruit_btn a::after{
    content: '';
    position: absolute;
    top: calc(50% + 5px);
    left: calc(50% - 7px);
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/common/recruit_btn_arrow.png) no-repeat;
    background-size: 14px;
}

.aside .sns_list{
    position: absolute;
    
    bottom: 20px;
    width: 100%;
    height: fit-content;
}
.aside .sns_list li{
    display: block;
    width: 40px;
    height: 40px;
    margin: 20px auto;
}

@media screen and (max-width:1024px){
    
    
}

@media screen and (max-width:767px){
    
    .aside{
        display: none;
    }
    
}

/*---------------------------------

  bloc_contact

---------------------------------*/

.bloc_contact{
    padding: 90px 0 125px;
    background: url(../img/common/contact_bg.png) no-repeat;
    background-size: cover;
}
.bloc_contact .inner{
    position: relative;
    z-index: 1;
}
.bloc_contact .title{
    margin: 0 0 40px;
    color: var(--text);
    font-size: 20px;
    text-align: center;
}
.bloc_contact .title .en{
    display: block;
    margin: 20px 0 0;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
}

.bloc_contact .inner .white_box{
    padding: 52px 0;
}
.bloc_contact .inner .white_box li{
    width: 50%;
    padding: 20px 0 30px;
    text-align: center;
}
.bloc_contact .inner .white_box li:first-child{
    border-right: 1px solid rgba(0,0,0,.2);
}
.bloc_contact .inner .white_box li .ttl{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}
.bloc_contact .inner .white_box li .btn{
    display: block;
    width: 90%;
    max-width: 320px;
    height: 56px;
    margin: 20px auto 0;
    padding: 9px 0 0;
    background: var(--main);
    border-radius: 60px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    transition: .3s;
}
.bloc_contact .inner .white_box li .btn:hover{
    background: rgba(var(--main-rgb),.8);
}
.bloc_contact .inner .white_box li .btn::before{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 5px 0 0;
    background: url(../img/common/ico-mail.png) no-repeat;
    background-size: 40px;
    vertical-align: -14px;
}
.bloc_contact .inner .white_box li .tel{
    margin: 30px 0 0;
    color: var(--main);
    font-size: 37px;
    font-weight: 800;
    line-height: 1;
}

@media screen and (max-width:767px){
    
    .bloc_contact{
        padding: 60px 0 80px;
    }
    .bloc_contact .title{
        margin: 0 0 40px;
        font-size: 16px;
    }
    .bloc_contact .title .en{
        margin: 16px 0 0;
        font-size: 60px;
    }
    
    .bloc_contact .inner .white_box{
        padding: 6vw;
    }
    .bloc_contact .inner .white_box li{
        width: 100%;
        padding: 20px 0 30px;
        text-align: center;
    }
    .bloc_contact .inner .white_box li:first-child{
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,.2);
    }
    .bloc_contact .inner .white_box li .ttl{
        font-size: 18px;
    }
    
}

/*---------------------------------

  JS関連

---------------------------------*/

.js-tab_list li a{
    background: var(--gray);
    border: 1px solid var(--gray);
    cursor: pointer;
}
.js-tab_list li.active a{
    background: var(--black);
    cursor: inherit;
}
.js-tab_list li.active a:hover{
    border: 1px solid var(--black);
}
.js-tab_area{
    display: none;
}
.js-tab_area.active{
    display: block;
}

.modal{
    visibility: hidden;
    position: fixed;
    inset: 0;
    display: block;
    width: fit-content;
    max-width: 600px;
    height: fit-content;
    min-height: 200px;
    margin: auto;
    padding: 40px 50px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transform: .5s ease;
    z-index: 3000/*15*/;
}
.modal.active{
    visibility: visible;
}
.modal .ttl{
    margin: 0 0 30px;
    color: var(--main);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}
.modal .txt{
    font-size: 16px;
}

@media screen and (max-width: 767px){
 
    .modal{
        max-width: 90%;
    }
    
}

/*---------------------------------

  フォーム

---------------------------------*/

.form td input[type=text],
.form td input[type=tel],
.form td input[type=email],
.form td input[type=number],
.form td select{
    width: 100%;
    max-width: 300px;
    height: 40px;
    padding: 0 15px;
    margin: 10px 0;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
}
.form td textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px 15px;
    margin: 10px 0;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
}
.form td input[type=text]:focus-visible,
.form td input[type=tel]:focus-visible,
.form td input[type=email]:focus-visible,
.form td input[type=number]:focus-visible,
.form td select:focus-visible,
.form td textarea:focus-visible{
    outline: none;
    border: 1px solid var(--main);
}
.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;
    display: inline-block;
    padding: 5px 0 5px 45px;
    margin: 5px 0;
    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 #E6E6E6;
    border-radius: 4px;
}
.checkbox2 label input:focus + span::before,
.radio input:focus + span::before{
    border: 1px solid var(--main);
}
.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: 60px auto 0;
}
.paging > *{
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px 0 0;
    background: var(--gray);
    border-radius: 4px;
    font-size: 24px;
    text-align: center;
    transition: .3s;
}
.paging > *:hover{
    background:#EEFCF9;
}
.paging > .current{
    background: var(--main);
    color: #fff;
}
.paging > .dots{
    background: transparent;
    border: none;
}
.paging > .next{
    background: url(../img/common/arrow_r_g.png) no-repeat center center;
    background-size: 24px;
    border: none;
    text-indent: -9999px;
}
.paging > .prev{
    background: url(../img/common/arrow_r_g.png) no-repeat center center;
    background-size: 24px;
    border: none;
    transform: rotate(180deg);
    text-indent: -9999px;
}

/*---------------------------------

  archiveページネイト

---------------------------------*/
.nav-links{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 60px auto 0px;
}
.nav-links > *{
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px 0 0;
    background: var(--gray);
    border-radius: 4px;
    font-size: 24px;
    text-align: center;
    transition: .3s;
}
.nav-links > *:hover{
    background:#EEFCF9;
}
.nav-links > .current{
    background: var(--main);
    color: #fff;
}
.nav-links > .dots{
    background: transparent;
    border: none;
}
.nav-links > .next{
    background: url(../img/common/arrow_r_g.png) no-repeat center center;
    background-size: 24px;
    border: none;
    text-indent: -9999px;
}
.nav-links > .prev{
    background: url(../img/common/arrow_r_g.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;
}
.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; 
}
.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;
}
