@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=Vujahday+Script&family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap');

.lato{
    font-family: 'Lato', sans-serif;
}
.vuja{
  font-family: 'Vujahday Script', cursive;
  font-weight: 400;
  font-style: normal;
}
.oswald{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
:root {
    --main: #FF5E00;
    --main-rgb: 255, 94, 0;
    --black: #141414;
    --gray: #ccc;
    --link: #FF5E00;
    --ls: -0.03em;
}
/* 検証用
* {
	outline: 1px solid magenta;
}
*/
/*---------------------------------

  追加リセット

---------------------------------*/

html, body {
    min-width: 375px;
    min-height: 100vh;
}
html{
    scroll-behavior: smooth;
}
body{
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New',/* 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo,*/ sans-serif;
}
a{
/*    color: var(--link);*/
    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: 1120px;
    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_orange{
    margin: 0 0 56px;
    color: var(--main);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
}

.title_black{
    width: 100%;
    margin: 0 0 40px;
    color: var(--black);
    font-size: 48px;
    line-height: 1.3;
}

.beige_box{
    padding: 48px 56px;
    background: #FFFBEC;
    border-radius: 20px;
}

.white_box{
    padding: 40px;
    background: #fff;
    border-radius: 20px;
}

.gray_box{
    padding: 80px 60px;
    background: #F6F6F6;
}
.gray_box + .gray_box{
    margin: 40px 0 0;
}

@media screen and (max-width: 767px) {

    .title_orange{
        margin: 0 0 56px;
        font-size: 48px;
    }
    .title_black{
        margin: 0 0 40px;
        font-size: 36px;
    }
    
    .beige_box{
        padding: 6vw 7vw;
    }
    .white_box{
        padding: 6vw;
        border-radius: 20px 20px 0 20px;
    }
    
}

/*---------------------------------

  ボタン類

---------------------------------*/
.button{
    display: block;
    width: fit-content;
    min-width: 230px;
    height: 60px;
    padding: 14px 50px 0 24px;
    background: var(--black);
    border: 1px solid var(--black);
    border-radius: 90px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
    transition: .3s;
}
.button:hover,
.button_transparent:hover{
    background: var(--main);
    border: 1px solid var(--main);
    color: #fff;
}

.button_transparent{
    display: block;
    width: fit-content;
    min-width: 230px;
    height: 60px;
    padding: 14px 50px 0 24px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 90px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
    transition: .3s;
}

.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::before{
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}
.arrow_r::after{
    content: '';
    position: absolute;
    top: 25px;
    right: 26px;
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(-45deg);
    transition: .3s;
}
.arrow_r:hover::after,
.arrow_l:hover::after,
.arrow_b:hover::after{
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
}

.button_w.arrow_r::before{
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: linear-gradient(86.23deg, #FF8C00 7.17%, #FF4000 100.81%);
    border-radius: 50%;
}
.button_w.arrow_r::after{
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.button_w.arrow_r:hover::after{
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.navlink{
    padding: 0 24px 0 0;
}
.navlink.arrow_r::before{
    content: '';
    position: absolute;
    top: 2px;
    right: 0px;
    display: block;
    width: 16px;
    height: 16px;
    background: var(--black);
    border-radius: 50%;
    transition: .3s;
}
.navlink.arrow_r::after{
    content: '';
    position: absolute;
    top: 6.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_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;
}

.button.arrow_l{
    padding: 14px 24px 0 44px;
    text-align: center;
}

.arrow_l::before{
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}
.arrow_l::after{
    content: '';
    position: absolute;
    top: 25px;
    left: 26px;
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(135deg);
    transition: .3s;
}
.button_w.arrow_l::after{
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    left: 30px;
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #3C45A5;
    border-bottom: 2px solid #3C45A5;
    transform: rotate(135deg);
}

.arrow_b::before{
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}
.arrow_b::after{
    content: '';
    position: absolute;
    top: 24px;
    right: 25px;
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    transform: rotate(45deg);
    transition: .3s;
}

input.button{
    display: block;
    width: fit-content;
    min-width: 230px;
    height: 60px;
    padding: 0 50px 0 24px;
    background: var(--black);
    border: 1px solid var(--black);
    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){

/*
    .gray_box{
        padding: 4vw;
    }    
    
    .button{
        width: 100%;
        max-width: 350px;
        height: 60px;
        padding: 20px 0 0 30px;
        font-size: 16px;
    }
    .button_w{
        width: 100%;
        max-width: 350px;
        height: 60px;
        padding: 20px 0 0 30px;
        font-size: 16px;
    }
  */  
}

/*---------------------------------

  中身

---------------------------------*/
.main{
    margin: 8px 0 0;
    width: 100%;
    background: #fff;
}
.page_header{
    position: relative;
    height: 620px;
    padding: 222px 0 0;
    background: url(../img/common/header_bg.png) no-repeat;
    background-size: cover;
}
.page_header::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,.3);
    z-index: 1;
}
.page_header::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 440px;
    background: url(../img/common/header_border.png) no-repeat bottom;
    background-size: 100%;
    z-index: 2;
}

.page_header .title{
    position: relative;
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    z-index: 1;
}
.page_header .title_en{
    position: absolute;
    top: 70%;
    right: 10%;
    padding: 0 20px;
    background: linear-gradient(86.23deg, #FF8C00 7.17%, #FF4000 100.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 85px;
    line-height: .8;
    transform: rotate(-15deg);
    z-index: 3;
}

.breadcrumb{
    position: absolute;
    bottom: -20px;
    width: 100%;
    padding: 0px 0;
}
.breadcrumb li{
    display: inline-block;
    color: var(--black);
    font-size: 11px;
    font-weight: 500;
}
.breadcrumb li::before{
    content: '＞';
    display: inline-block;
    padding: 0 10px;
    color: var(--black);
}
.breadcrumb li:first-child::before{
    content: '';
    padding: 0 0;
}
.breadcrumb li a{
    color: var(--black);
}
.breadcrumb li a:hover{
    color: var(--main);
}

.contents{
    padding: 90px 0;
}



.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){

    .page_header{
        height: 370px;
        padding: 170px 0 0;
    }
    .page_header .title{
        font-size: 32px;
    }
    .page_header .title_en{
        top: 77%;
        right: 0;
        margin: 0 20px 0 0;
        padding: 0;
        font-size: 48px;
    }

    .breadcrumb{
        display: none;
    }
    
    .page_nav{
        padding: 60px 4% 0;
    }
    .page_nav .flex{
        justify-content: flex-start;
        gap: 12px;
    }
    .page_nav .flex .button{
        min-width: 100px;
    }
    
}

/*---------------------------------

  ヘッダー

---------------------------------*/

.header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 0;
    background: #fff;
    border-top: 8px solid var(--main); 
    z-index: 2000/*10*/;
}
.header .logo{
    position: fixed;
    top: 8px;
    left: 0;
    display: block;
    width: 253px;
    height: 256px;
    padding: 50px 0 0;
    background: #fff;
    border-radius: 0 0 10px 0;
    text-align: center;
    z-index: 10;
    transition: .3s;
}
.header .logo.scrolled{
    background: none;
}

.header .entry_nav{
    position: fixed;
    right: 150px;
    top: 50px;

}
.header .entry_nav dt{
    display: block;
    width: fit-content;
    min-width: 245px;
    height: 60px;
    padding: 14px 50px 0 30px;
    background: linear-gradient(86.23deg, #FF8C00 7.17%, #FF4000 100.81%);
    border-radius: 90px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
    transition: .3s;
    cursor: pointer;
}
.header .entry_nav dd{
    position: relative;
    top: -30px;
    display: none;
    padding: 30px 24px 20px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 20px 0px #FF620080;
    z-index: -1;
}
.header .entry_nav dd a{
    display: block;
    height: 60px;
    padding: 12px 32px 0 0;
    border-radius: 0;
    color: var(--main);
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
}
.header .entry_nav dd a + a{
    border-top: 1px solid #EFEFEF;
}
.header .entry_nav dd a img{
    height: 32px;
    object-fit: contain;
}
.header .entry_nav dd a.arrow_r::before{
    content: '';
    position: absolute;
    top: 18px;
    right: 0px;
    display: block;
    width: 24px;
    height: 24px;
    background: linear-gradient(86.23deg, #FF8C00 7.17%, #FF4000 100.81%);
    border-radius: 50%;
}
.header .entry_nav dd a.arrow_r::after{
    right: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

@media screen and (max-width: 1024px){

    .header .logo{
        position: fixed;
        top: 8px;
        left: 0;
        display: block;
        width: 176px;
        height: 152px;
        padding: 30px 0 0;
        background: #fff;
        border-radius: 0 0 10px 0;
        text-align: center;
        z-index: 2000/*10*/;
        transition: .3s;
    }

    .header .logo img{
        width: 122px;
        transition: .3s;
    }

    
}
@media screen and (max-width: 767px){

    .header .logo.scrolled{
        width: 150px;
        padding: 10px 0 0;
    }
    .header .logo.scrolled img{
        width: 100px;
    }
    .header .entry_nav{
        display: none;
    }
    
}

/*---------------------------------

  ハンバーガー（ボタン）

---------------------------------*/

.header .nav_trigger {
    position: fixed;
    right: 80px;
    top: 50px;
    display: block;
    width: 56px;
    height: 56px;
    background: #191D1C;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2000/*10*/;
    transition: all .4s;
}
.header .nav_trigger:hover{
    background: var(--main);
}
.nav_trigger.active{
    right: 90px;
    
}
.header .nav_trigger span{
    position: absolute;
    top: 32px;
    right: 15px;
    display: block;
    width: 25px;
    height: 3px;
    background: rgba(255,255,255,0);
    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: 3px;
    margin: auto;
    background: #fff;
    border-radius: 0;
    transition: all .4s;
}
.header .nav_trigger span::before {
    content: '';
    top: -1px;
    width: 25px;
}
.header .nav_trigger span::after {
    content: '';
    top: -10px;
    width: 25px;
}


.nav_trigger.active span::before {
    width: 25px;
    height: 3px;
    -webkit-transform: translateY(-3px) rotate(-45deg);
    transform: translateY(-3px) rotate(-45deg);
}
.nav_trigger.active span {
    background: rgba( 0, 0, 0, 0);
}
.nav_trigger.active span::after {
    width: 25px;
    height: 3px;
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

@media screen and (max-width: 767px){

    .header .nav_trigger {
        right: 16px;
        top: 24px;
    }
    .header .nav_trigger:hover{
        background: #191D1C;
    }
    
}

/*---------------------------------

  ハンバーガー（メニュー）

---------------------------------*/

.header_nav_sp{
    justify-content: space-evenly;
    position: fixed;
    top: 8px;
    right: -100vw;
    width: 100vw;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, #FFF7D5 0%, #FFF7EF 100%);
    z-index: 2000/*10*/;
    -webkit-transition: all .9s ease;
    transition: all .9s ease;
    overflow-y: auto;
}
.header_nav_sp .nav_logo{
    position: absolute;
    top: 40px;
    left: 3%;
    display: block;
    width: 212px;
}
.header_nav_sp .pic{
    width: calc(100% - 900px);
    min-width: 300px;
    height: 500px;
    margin: 150px 0 50px;
    
}
.header_nav_sp .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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,.7);
}
.side_open .overlay{
    z-index: 5;
}
/* サイドメニューオープン */
.side_open .header_nav_sp{
    -webkit-transform: translate3d(-100vw, 0, 0);
    transform: translate3d(-100vw, 0, 0);
}

/* サイドメニューオープン 
.side_open .overlay,
.side_open .header_nav_sp {
    -webkit-transform: translate3d(-375px, 0, 0);
    transform: translate3d(-375px, 0, 0);
}*/

.header_nav_sp > .flex.col{
    flex-direction: column;
    justify-content: space-between;
    justify-self: flex-end;
    gap: 48px 75px;
    width: 600px;
    height: 650px;
    padding: 144px 0 0px;
}

.header_nav_sp dt{
    margin: 0 0 15px;
    font-weight: 900;
}
.header_nav_sp dt .en{
    display: block;
    color: var(--main);
    font-size: 40px;
    line-height: 123%;
}
.header_nav_sp dd{
    height: 27px;
}
.header_nav_sp dd a{
    transition: .3s;
}
.header_nav_sp dd a:hover{
    color: var(--main);
}
.header_nav_sp .entry_list li{
    margin: 16px 0 0;
}
.header_nav_sp .entry_list li a{
    box-shadow: 0px 0px 40px 0px #FF62001A;
}
.header_nav_sp .entry_list li a img{
    height: 32px;
    object-fit: contain;
}

.header_nav_sp .sns_list{
    gap: 16px;
    padding: 38px 0 0;
}
.header_nav_sp .sns_list li{
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

@media screen and (max-width: 1024px){

    .header_nav_sp{
        -webkit-transition: all .7s ease;
        transition: all .7s ease;
    }
    .header_nav_sp .pic{
        width: 90%;
        margin: 100px auto 50px;
    }
    
}

@media screen and (max-width: 767px){

    .header_nav_sp{
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }
    .header_nav_sp .pic{
        width: 90%;
        height: 225px;
        margin: 32px auto 50px;
    }
    .header_nav_sp .pic img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }  
    .header_nav_sp > .flex.col{
        display: grid;
        justify-content: space-evenly;
        gap: 48px 15px;
        width: 90%;
        height: auto;
    }
  
    .header_nav_sp > .flex.col > dl:nth-child(2){
        grid-column: 1;
        grid-row: 2;
    }
    .header_nav_sp > .flex.col > div{
        grid-column: 1/3;
    }
    
    .header_nav_sp dt .en{
        font-size: 32px;
    }

    .header_nav_sp .entry_list li a{
        width: 100%;
    }

}

/*---------------------------------

  フッダー

---------------------------------*/

.footer{
    position: sticky;
    top: 100vh;
    width: 100%;
    padding: 80px 0 30px;
    background: linear-gradient(180deg, #FFF7D5 0%, #FFF7EF 100%);
}
.footer .inner{
    justify-content: space-between;

}
.footer .footer_jts{
    width: 300px;
    margin:  0 0 56px;
    color: #A9A6A5;
    letter-spacing: -.03em;
}
.footer .footer_jts dt{
    margin: 0 0 5px;
    line-height: 1.4;
}
.footer .footer_jts dt a{
    display: block;
    margin: 0 0 36px;
}
.footer .footer_jts dd{
    font-size: 12px;
    line-height: 1.4;
}
.footer .sns_list{
    gap: 16px;
    margin: 0 0 45px;
}
.footer .sns_list li a{
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.footer .footer_nav .flex{
    gap: 64px;
}
.footer .footer_nav dt{
    margin: 0 0 15px;
    font-weight: 900;
}
.footer .footer_nav dt .en{
    display: block;
    color: var(--main);
    font-size: 40px;
    line-height: 123%;
}
.footer .footer_nav dd{
    height: 27px;
}
.footer .footer_nav dd a{
    transition: .3s;
}
.footer .footer_nav dd a:hover{
    color: var(--main);
}

.footer .entry_list{
    gap: 16px;
    margin: 0 0 45px;
}
.footer .entry_list li a{
    box-shadow: 0px 0px 40px 0px #FF62001A;
}
.footer .entry_list li a img{
    height: 32px;
    object-fit: contain;
}
.footer .copy{
    display: block;
    width: 100%;
    font-size: 10px;
    text-align: right;
}

@media screen and (max-width: 1024px){

    .footer .copy{
        width: 90%;
        text-align: inherit;
    }
    
}

@media screen and (max-width: 767px){

    .footer{
        padding: 72px 0 30px;
    }
    .footer .footer_jts{
        order: 2;
        width: 100%;
        margin:  0 0 18px;
    }
    .footer .footer_jts dt a{
        width: 150px;
        margin: 72px 0 18px;
    }
    .footer .footer_nav .flex{
        gap: 48px 28px;
    }
    .footer .footer_nav .flex dl{
        width: 
    }
    .footer .footer_nav .flex dl:nth-of-type(2){
        order: 3;
    }
    .footer .footer_nav .flex dl:nth-of-type(3){
        order: 2;
    }
    .footer .footer_nav .flex dl:nth-of-type(4){
        order: 4;
    }
    .footer .footer_nav dt .en{
        font-size: 32px;
    }
    
    .footer .entry_list{
        display: none;
    }
}

/*---------------------------------

  bloc_sitemap

---------------------------------*/

.bloc_sitemap{
    min-height: 800px;
    width: 100%;
    padding: 100px 0 300px;
    margin: 0 0 100px;
    background: url(../img/common/sitemap_bg.png) no-repeat;
    background-size: cover;
    color: #fff;
}
.bloc_sitemap .sitemap_nav .flex{
    gap: 20px;
}
.bloc_sitemap .sitemap_nav dl{
    width: calc((100% - 60px)/4);
    min-width: 210px;
}
.bloc_sitemap .sitemap_nav dt{
    padding: 0 0 32px;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 900;
}
.bloc_sitemap .sitemap_nav dt .en{
    display: block;
    color: #fff;
    font-size: 40px;
    line-height: 123%;
}
.bloc_sitemap .sitemap_nav dd{
    border-bottom: 1px solid #D9D9D9;
}
.bloc_sitemap .sitemap_nav dd a{
    display: block;
    padding: 32px 0;
    transition: .3s;
}
.bloc_sitemap .sitemap_nav dd a:hover{
    color: var(--main);
}
.bloc_sitemap .sitemap_nav .navlink.arrow_r::before{
    content: '';
    position: absolute;
    top: 32px;
    right: 0px;
    display: block;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}
.bloc_sitemap .sitemap_nav .navlink.arrow_r::after{
    content: '';
    position: absolute;
    top: 36.5px;
    right: 6px;
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(-45deg);
}
.bloc_sitemap .sitemap_nav .navlink.arrow_r:hover::before{
    background: var(--main);
}
.bloc_sitemap .sitemap_nav .navlink.arrow_r:hover::after{
    border-right: 2px solid #d9d9d9;
    border-bottom: 2px solid #d9d9d9;
}

@media screen and (max-width: 1440px){

    .bloc_sitemap{
        margin: 0;
    }

}

@media screen and (max-width: 767px){
    
    .bloc_sitemap{
        height: inherit;
        padding: 80px 0 48vw;
        margin: 0;
    }
    .bloc_sitemap .sitemap_nav .flex{
        justify-content: space-between;
    }
    .bloc_sitemap .sitemap_nav dl{
        width: 52%;
    }
    .bloc_sitemap .sitemap_nav dl:nth-of-type(2){
        order: 3;
        width: 52%;
    }
    .bloc_sitemap .sitemap_nav dl:nth-of-type(3){
        order: 2;
        width: 40%;
    }
    .bloc_sitemap .sitemap_nav dl:nth-of-type(4){
        order: 4;
        width: 40%;
    }
    .bloc_sitemap .sitemap_nav dt .en{
        font-size: 32px;
    }
    .bloc_sitemap .sitemap_nav dd a{
        padding: 24px 0;
    }
    .bloc_sitemap .sitemap_nav .navlink.arrow_r::before{
        top: 25px;
        right: 0px;
    }
    .bloc_sitemap .sitemap_nav .navlink.arrow_r::after{
        top: 29.5px;
        right: 6px;
    }
    
}

/*---------------------------------

  bloc_entry

---------------------------------*/

.bloc_entry{
    position: relative;
    padding: 120px 0 200px;
    z-index: 1;
}
.bloc_entry::before{
    content: '';
    position: absolute;
    top: -440px;
    display: block;
    width: 100%;
    height: 440px;
    background: url(../img/common/border_01.png) no-repeat;
    background-size: cover;
}
.bloc_entry .deco_en{
    position: absolute;
    top: -220px;
    left: 10%;
    padding: 0 0 0 85px;
    color: var(--main);
    font-size: 100px;
    line-height: .8;
    transform: rotate(-15deg);
    text-indent: -85px;
}

.bloc_entry .cv{
    padding: 85px 0 124px;
    background: url(../img/common/cv_bg.png) no-repeat center;
    background-size: cover;
}
.bloc_entry .cv .ttl{
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}
.bloc_entry .cv_list{
    gap: 24px;
    justify-content: center;
    margin: 45px 0 0;
}
.bloc_entry .cv_list li a{
    
}
.bloc_entry .cv_list li a img{
    height: 32px;
    object-fit: contain;
}

@media screen and (max-width:1440px){
    
    .bloc_entry::before{
        top: -30vw;
        height: 30vw;
        background: url(../img/common/border_01_1440.png) no-repeat;
        background-size: 100%;
    }
    .bloc_entry .deco_en{
        left: 5%;
    }
    
    
}

@media screen and (max-width: 767px){
    
    .bloc_entry{
        padding: 84px 0 112px;
    }
    .bloc_entry::before{
        top: -30vw;
        height: 30vw;
    }
    
    .bloc_entry .deco_en{
        top: -35px;
        left: 3%;
        padding: 0 0 0 45px;
        font-size: 48px;
        text-indent: -45px;
    }
    
    .bloc_entry .cv{
        padding: 56px 0 124px;
    }
    .bloc_entry .cv .ttl{
        font-size: 28px;
    }
    .bloc_entry .cv_list{
        gap: 16px;
        margin: 45px 0 0;
    }
    .bloc_entry .cv_list .button_w{
        width: 260px;
    }
    
}

/*---------------------------------

  bloc_interview

---------------------------------*/

.bloc_interview{
    position: relative;
    padding: 0 0 140px;
    background: linear-gradient(180deg, #32323B 0%, #51505E 100%);
    z-index: 1;
}
#home .bloc_interview{
    padding: 0 0 440px;
}
.bloc_interview .inner{
    max-width: 1140px;
}
.bloc_interview::before{
    content: '';
    position: absolute;
    top: -278px;
    display: block;
    width: 100%;
    height: 278px;
    background: url(../img/common/border_04.png) no-repeat;
    background-size: cover;
    z-index: -1;
}

.bloc_interview .title{
    margin: 0 0 56px;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}
.bloc_interview .title .en{
    display: block;
    color: var(--main);
    font-size: 104px;
}
.bloc_interview .flex{
    justify-content: center;
}
.bloc_interview .slide{
    position: relative;
    display: block;
    max-width: 250px;
    min-width: 250px;
    margin: 0 20px;
    overflow: hidden;
}
.bloc_interview .slide a{
    display: block;
    width: 100%;
    height: 100%;
}
.bloc_interview .slide a::before{
    top: inherit;
    bottom: 28px;
    right: 13px;
    width: 32px;
    height: 32px;
}
.bloc_interview .slide a::after{
    top: inherit;
    bottom: 39px;
    right: 24px;
    width: 10px;
    height: 10px;
}
.bloc_interview .slide img{
    aspect-ratio: 250 / 444;
    object-fit: cover;
    transition: .4s;
}
.bloc_interview .slide a:hover img{
    transform: scale(1.05);
}
.bloc_interview .slide .arrow_r::before{
    z-index: 1;
}
.bloc_interview .slide .arrow_r::after{
    z-index: 1;
}
.bloc_interview .slide .txt{
    position: absolute;
    bottom: 22px;
    left: 13px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}
.bloc_interview .slide .txt span{
    display: block;
    margin: 0 0 20px;
    font-size: 20px;
}
.bloc_interview .button_transparent{
    position: relative;
    margin: 70px auto 0;
    z-index: 1;
}

.interview_slide{
    position: relative;
}
.interview_slide .slide-arrow{
    position: absolute;
    top: calc(50% - 28px);
    display: block;
    width: 56px;
    height: 56px;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 1;
}
.interview_slide .prev-arrow{
    left: -80px;
}
.interview_slide .next-arrow{
    right: -80px;
}
.interview_slide .slide-arrow::after{
    content: '';
    position: absolute;
    top: 20px;
    display: block;
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.interview_slide .prev-arrow::after{
    left: 20px;
    transform: rotate(135deg);
}
.interview_slide .next-arrow::after{
    right: 20px;
    transform: rotate(-45deg);
}

@media screen and (max-width:1440px){
    
    .bloc_interview::before{
        top: -19vw;
        height: 19vw;
        background: url(../img/common/border_04_1440.png) no-repeat;
        background-size: 100%;
    }
    .bloc_interview .title .en{
        font-size: 90px;
    }
    .interview_slide .prev-arrow{
        left: -20px;
    }
    .interview_slide .next-arrow{
        right: -20px;
    }
    
}

@media screen and (max-width: 767px){
 
    #home .bloc_interview{
        padding: 0 0 200px;
    }
    .bloc_interview .title .en{
        font-size: 48px;
    }
    
}

/*---------------------------------

  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%;
    }
    
}

/*---------------------------------

  フォーム

---------------------------------*/
.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 #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: -60px auto 200px;
}
.paging > *{
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px 0 0;
    background: #ccc;
    border-radius: 4px;
    font-size: 24px;
    text-align: center;
}
.paging > .current{
    background: var(--main);
    color: #fff;
}

/*---------------------------------

  その他

---------------------------------*/

#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; 
}
.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;
}
