@charset "UTF-8";
.sp_disp {
    display: none !important;
}
.pc_disp {
    display: block !important;
}
@media screen and (max-width: 767px) {
    .sp_disp {
        display: block !important;
    }
    .pc_disp {
        display: none !important;
    }
}
html, body {
    font-family: var(--jp-font);
    font-size: var(--font-size);
    font-weight: 400;
    font-style: normal;
    color: var(--main-color);
    background: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
}
body{
    position: relative;
}
._inner{
    width: calc(100% - 140px);
    max-width: 1300px;
    margin: 0 auto;
}
@media screen and (max-width: 1242px) {
    ._inner{
        width: 100%;
        margin: 0 2.5%;
        max-width: 95%;
    }
}
@media screen and (max-width: 1024px) {
    ._inner{
        width: 100%;
        margin: 0 2.5%;
        max-width: 95%;
    }
}
._in_inner{
    width: calc(100% - 280px);
    max-width: 1160px;
    margin: 0 auto;
}
._en{
    font-family: var(--en-font);
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}
@media screen and (max-width: 1024px) {
    ._en{
        font-weight: 500;
    }
}
._index_head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 5px 0 rgba(163, 163, 163, .149);
    background: #FFFFFF;
    z-index: 5;
}
._index_head ._inner{
    width: calc(100% - 70px);
}
@media screen and (max-width: 1024px) {
    ._index_head ._inner{
        width: 100%;
        margin: 0 2.5%;
        max-width: 95%;
    }
}
._index_head ._header{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
._index_head ._header_logo_h1{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
._index_head ._company_name {
    height: 40px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    ._index_head ._company_name {
        height: 30px;
    }
}
._index_head ._company_name a{
    max-width: 150px;
    max-height: 40px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1024px) {
._index_head ._company_name a {
    height: 40px;
}
}
._index_head ._company_name img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._index_head ._h1_inner{
    display: flex;
    flex-direction: column;
}
._index_head h1{
    font-size: 14px;
    font-weight: bold;
}
._index_head h2 span{
    display: inline-block;
    border: 1px solid #979191;
    border-radius: 5px;
    font-size: 14px;
    padding: 0.1rem 1rem;
}
._index_head ._link_inner{
    display: flex;
    gap: 1rem;
}
._list_link{
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 0.5rem 3rem;
    border-radius: 30px;
}
@media screen and (max-width: 1024px) {
    ._list_link{
        background: var(--accent-color);
        color: #FFFFFF;
        padding: 0.3rem 1rem;
        border-radius: 30px;
    }
}
._index_head ._h1_inner_sp{
    display: none;
}
@media screen and (max-width: 1024px) {
    ._index_head ._h1_inner_sp{
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
._h1_inner_sp h1{
    font-size: 12px;
    font-weight: normal;
}
._h1_inner_sp h2 span{
    display: inline-block;
    border: 1px solid #979191;
    border-radius: 5px;
    font-size: 12px;
    padding: 0.1rem 0.5rem;
}

/*
hamburger(ハンバーガーアイコン)
-----------------------------------*/
.hamburger {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
}
.hamburger.open {
    border: unset;
}
.hamburger__line {
    position: absolute;
    width: 20px;
    height: 2px;
    right: 0;
    background-color: #FFF;
    transition: all 0.5s;
}
.hamburger__line--1 {
    top: 12px;
    right: 10px;
}
.hamburger__line--2 {
    top: 20px;
    right: 10px;
}
.hamburger__line--3 {
    top: 28px;
    right: 10px;
}
/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 20px;
}
.open .hamburger__line--2 {
    opacity: 0;
}
.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 20px;
}
/* navigation
-----------------------------------*/
.nav_overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity .5s;
}
.nav_overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 6;
}
.inner_navi {
    width: 300px;
    height: 100%;
    padding: 1rem;
    background-color: #FFFFFF;
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 7;
    transform: translate(300px);
    transition: all .5s;
}
.inner_navi.open {
    transform: translateZ(0);
}
@media screen and (max-width: 1024px) {
    .inner_navi {
        width: 200px;
        transform: translate(200px);
    }
}
.inner_navi ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.inner_navi ul li a{
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #E6E4E4;
    padding-bottom: 0.5rem;
}
.inner_navi li a ._en{
    font-size: 0.9rem;
    font-weight: 200;
}
.inner_navi li a ._jp{
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .inner_navi li a ._jp{
        font-size: 1rem;
    }
}
.inner_navi ._i_link{
    width: 30px;
    height: 30px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .inner_navi ._i_link{
        width: 20px;
        height: 20px;
    }
}
.inner_navi ._i_link i{
    font-size: 12px;
    color: var(--accent-color);
}

._firstview{
    margin-top: 90px;
    width:  100%;
    padding: 3rem 0;
}
._firstview ._firstview_inner{
    width: 100%;
    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 1024px) {
    ._firstview ._firstview_inner{
        flex-direction: column;
    }
}
._firstview_inner ._firstview_main{
    width: 47%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._firstview_inner ._firstview_main{
        width: 100%;
        margin: 0 0 2rem 0;
        gap: 1rem;
    }
}
._firstview_inner h2 span{
    display: inline-block;
    border: 1px solid #979191;
    border-radius: 5px;
    font-size: 14px;
    padding: 0.1rem 1rem;
}

._firstview_inner h3{
    font-size: clamp(2.8rem, 2.059rem + 1.16vw, 3.1rem);
    font-weight: bold;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._firstview_inner h3{
        font-size: 2rem;
        font-weight: 500;
    }
}
._firstview_inner h3 ._en{
    font-family: var(--en-font);
    font-size:  1.5rem;
    font-weight: 300;
}
@media screen and (max-width: 1024px) {
    ._firstview_inner h3 ._en{
        font-size:  1.1rem;
    }
}
._firstview_inner ._firstview_img{
    width: 53%;
    height: 530px;
    border-radius: 24px;
}
@media screen and (max-width: 1024px) {
    ._firstview_inner ._firstview_img{
        width: 100%;
        height: 70vw;
    }
}
._firstview_inner ._firstview_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}
._firstview_inner ._firstview_link{
    width: 60%;
    background: var(--accent-color);
    color: #FFFFFF;
    border-radius: 30px;
    display: inline-block;
    padding: 0.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    ._firstview_inner ._firstview_link{
        width: 80%;
    }
}
._aboutus{
    width: 100%;
    padding: 5rem 0;
}
@media screen and (max-width: 1024px) {
    ._aboutus{
        padding: 3rem 0;
    }
}
._aboutus_inner{
    width: 100%;
    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 1024px) {
    ._aboutus_inner{
        flex-direction: column-reverse;
        gap: 1rem;
    }
}
._aboutus_inner ._aboutus_img_wrap{
    width: 50%;
    padding: 2rem;
    position: relative;
}
@media screen and (max-width: 1024px) {
    ._aboutus_inner ._aboutus_img_wrap{
        width: 100%;
        padding: unset;
    }
}
._aboutus_inner ._aboutus_img{
    width: 100%;
}
._aboutus_inner ._aboutus_img:nth-child(2){
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    top: unset;
    left: unset;
}
@media screen and (max-width: 1024px) {
    ._aboutus_inner ._aboutus_img:nth-child(2){
        bottom: 1rem;
        right: 1rem;
    }
}
._aboutus_inner ._aboutus_img img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
._aboutus_inner ._aboutus_main{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._aboutus_inner ._aboutus_main{
        width: 100%;
    }
}
._aboutus_inner  ._aboutus_main h3{
    display: flex;
    flex-direction: column;
    font-size: 2.75rem;
    font-weight: bold;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._aboutus_inner  ._aboutus_main h3{
        font-size: 1.75rem;
        font-weight: 500;
    }
}
._aboutus_inner  ._aboutus_main ._aboutus_txt{
    line-height: 2;
    width: 90%;
}
@media screen and (max-width: 1024px) {
    ._aboutus_inner  ._aboutus_main ._aboutus_txt{
        width: 100%;
    }
}

._jobinfo{
    width: 100%;
    position: relative;
    padding-bottom: 10rem;
}
._jobinfo ._inner{
    position: relative;
    z-index: 1;
}
._jobinfo ._jobinfo_wrap{
    background: var(--sub2-color);
    padding: 4rem 3rem;
    border-radius: 64px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
@media screen and (max-width: 1024px) {
    ._jobinfo ._jobinfo_wrap{
        border-radius: 40px;
        padding: 3rem 1rem;
    }
}
._jobinfo ._jobinfo_wrap h3{
    display: flex;
    flex-direction: column;
    font-size: 2.75rem;
    font-weight: bold;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._jobinfo ._jobinfo_wrap h3{
        font-size: 1.75rem;
        font-weight: 500;
    }
}
._jobinfo_wrap ._jobinfo_inner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
}
@media screen and (max-width: 1024px) {
    ._jobinfo_wrap ._jobinfo_inner{
        flex-direction: column;
    }
}
._jobinfo_inner article{
    width: calc((100% - 3rem) / 2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._jobinfo_inner article{
        width: 100%;
    }
}
._jobinfo_inner article ._jobinfo_img{
    width: 100%;
    height: 330px;
}
._jobinfo_inner article ._jobinfo_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
._jobinfo_inner article h4{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
}
._jobinfo:after{
    content: '';
    height: 50rem;
    background: var(--accent-color);
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 0;
}
._jobinfo_txt{
    flex-grow: 1;
}

._interview{
    width: 100%;
    background :var(--sub-color);
    position: relative;
    margin-top: -5rem;
    border-radius: 64px 0 0 0;
    padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
    ._interview{
        border-radius: 40px 0 0 0;
    }
}
._interview ._interview_wrap{
    width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}
@media screen and (max-width: 1024px) {
    ._interview ._interview_wrap{
        padding: 3rem 1rem 1rem 1rem;
    }
}
._interview ._interview_wrap h3{
    display: flex;
    flex-direction: column;
    font-size: 2.75rem;
    font-weight: bold;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._interview ._interview_wrap h3{
        font-size: 1.75rem;
        font-weight: 500;
    }
}
._interview_wrap ._interview_inner{
    width: 100%;
    overflow: hidden;
}
._interview_inner .swiper-wrapper{
    width: 100%;
    height: auto;
}
._interview_inner ._interview_item{
    width: 376px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
._interview_item ._interview_img{
    width: 100%;
    height: 400px;
}
._interview_item ._interview_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
._interview_item h4{
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.25rem;
}
._interview_item ._interview_txt{
    line-height: 1.6;
}
._interview .swiper-button-next {
    top: 60%;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    color: var(--accent-color);
    z-index: 2;
    border-radius: 50%;
}
.swiper-button-next::after{
    font-size: 1rem;
}
@media screen and (max-width: 1024px) {
    ._interview .swiper-button-next{
        right: -0.3rem;
    }
}
._interview .swiper-button-prev{
    top: 60%;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    color: var(--accent-color);
    z-index: 2;
    border-radius: 50%;
}
.swiper-button-prev::after{
    font-size: 1rem;
}
@media screen and (max-width: 1024px) {
    ._interview .swiper-button-prev{
        left: -0.3rem;
    }
}

._workplace{
    width: 100%;
    background :#FFFFFF;
    position: relative;
    border-radius: 64px 0 0 0;
    margin-top: -5rem;
    padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
    ._workplace{
        border-radius: 40px 0 0 0;
    }
}
._workplace ._workplace_wrap{
    width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._workplace ._workplace_wrap{
        padding: 3rem 1rem 1rem 1rem;
    }
}
._workplace_wrap ._workplace_inner{
    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 1024px) {
    ._workplace_wrap ._workplace_inner{
        flex-direction: column;
        gap: 2rem;
    }
}
._workplace_inner ._workplace_main{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._workplace_inner ._workplace_main{
        width: 100%;
    }
}
._workplace_main h3{
    display: flex;
    flex-direction: column;
    font-size: 2.75rem;
    font-weight: bold;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._workplace_main h3{
        font-size: 1.75rem;
        font-weight: 500;
    }
}
._workplace_main ._workplace_txt{
    width: 90%;
    line-height: 2;
}
@media screen and (max-width: 1024px) {
    ._workplace_main ._workplace_txt{
        width: 100%;
    }
}
._workplace_inner ._workplace_img{
    width: 50%;
    height: 435px;
}
@media screen and (max-width: 1024px) {
    ._workplace_inner ._workplace_img{
        width: 100%;
        height: 70vw;
    }
}
._workplace_inner ._workplace_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}
._workplace_wrap ._workplace_numbers{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
._workplace_numbers h4{
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    ._workplace_numbers h4{
        font-weight: 500;
        font-size: 1.2rem;
    }
}
._workplace_numbers h4 span{
    color: var(--accent-color);
    font-size: 1rem;
}
._workplace_numbers ._workplace_nember_inner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}
@media screen and (max-width: 767px) {
    ._workplace_numbers ._workplace_nember_inner{
        gap: 1rem;
    }
}
._workplace_nember_inner ._workplace_nember_item{
    width: calc((100% - 6rem) / 4);
    background: var(--sub-color);
    border-radius: 12px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media screen and (max-width: 1024px) {
    ._workplace_nember_inner ._workplace_nember_item{
        width: calc((100% - 4rem) / 3);
    }
}
@media screen and (max-width: 767px) {
    ._workplace_nember_inner ._workplace_nember_item{
        width: calc((100% - 1rem) / 2);
    }
}
._workplace_nember_item h5{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
}
._workplace_nember_item ._workplace_nember_value{
    font-family: "Outfit", sans-serif;
    font-size: 4rem;
}
._workplace_nember_value span{
    font-family: var(--jp-font);
    font-size: 1rem;
    font-weight: bold;
}
._workplace_wrap ._workplace_systems{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
._workplace_systems h4{
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    ._workplace_systems h4{
        font-weight: 500;
        font-size: 1.2rem;
    }
}
._workplace_systems h4 span{
    color: var(--accent-color);
    font-size: 1rem;
}
._workplace_systems ._workplace_system_inner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._workplace_systems ._workplace_system_inner{
        flex-direction: column;
    }
}
._workplace_system_inner ._workplace_system_icon{
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
._workplace_system_icon img{
    width: auto;
    height: 48px;
}
._workplace_system_inner ._workplace_system_item{
    width: calc((100% - 2rem) / 3);
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._workplace_system_inner ._workplace_system_item{
        width: 100%;
    }
}
._workplace_system_item ._workplace_system_value{
    width: calc(100% - 90px - 1rem);
    display: flex;
    flex-direction: column;
}
._workplace_system_value h5{
    font-weight: bold;
    font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
    ._workplace_system_value h5{
        font-weight: 600;
        font-size: 1rem;
    }
}
._workplace_system_value ._workplace_system_txt{
    font-size: 0.9rem;
    line-height: 1.2;
}

._flow{
    width: 100%;
    background :var(--sub-color);
    position: relative;
    margin-top: -5rem;
    border-radius: 64px 0 0 0;
    padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
    ._flow{
        border-radius: 40px 0 0 0;
    }
}
._flow ._flow_wrap{
    width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._flow ._flow_wrap{
        flex-direction: column;
        padding: 3rem 1rem 1rem 1rem;
    }
}
._flow_wrap ._flow_left{
    widtH: 35%;
}
@media screen and (max-width: 1024px) {
    ._flow_wrap ._flow_left{
        widtH: 100%;
    }
}
._flow_wrap ._flow_left h3{
    display: flex;
    flex-direction: column;
    font-size: 2.75rem;
    font-weight: bold;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._flow_wrap ._flow_left h3{
        font-size: 1.75rem;
        font-weight: 500;
    }
}
._flow_wrap ._flow_right{
    widtH: 65%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._flow_wrap ._flow_right{
        widtH: 100%;
    }
}
._flow_right ._flow_step{
    width: 100%;
    display: flex;
    flex-direction: row;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1rem;
}
._flow_step dt{
    width: 20%;
    font-weight: bold;
    font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
    ._flow_step dt{
        width: 30%;
    }
}
._flow_step dd{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._flow_step dd{
        width: 70%;
    }
}
._flow_step dd ._flow_step_title{
    font-weight: bold;
    font-size: 1.25rem;
}
._flow_step dd ._flow_step_txt{
    line-height: 1.2;
}

._faq{
    width: 100%;
    background :var(--sub3-color);
    position: relative;
    margin-top: -5rem;
    border-radius: 64px 0 0 0;
    padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
    ._faq{
        border-radius: 40px 0 0 0;
    }
}
._faq ._faq_wrap{
    width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._faq ._faq_wrap{
        padding: 3rem 1rem 1rem 1rem;
        flex-direction: column;
    }
}
._faq_wrap ._faq_left{
    widtH: 35%;
}
@media screen and (max-width: 1024px) {
    ._faq_wrap ._faq_left{
        widtH: 100%;
    }
}
._faq_wrap ._faq_left h3{
    display: flex;
    flex-direction: column;
    font-size: clamp(2.5rem, 1.883rem + 0.96vw, 2.75rem);
    font-weight: bold;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._faq_wrap ._faq_left h3{
        font-size: 1.75rem;
        font-weight: 500;
    }
}
._faq_wrap ._faq_right{
    widtH: 65%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
    ._faq_wrap ._faq_right{
        widtH: 100%;
    }
}
._faq_right ._faq_item{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
}
@media screen and (max-width: 1024px) {
    ._faq_right ._faq_item{
        padding: 1rem;
    }
}
._faq_item ._faq_item_q{
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 2rem;
}
._faq_item_q:before{
    content: 'Q.';
    font-size: 2rem;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 0.5rem;
}
._faq_item_q::after {
    transform: translateY(-25%) rotate(45deg);
    width: 1rem;
    height: 1rem;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    content: '';
    transition: transform .3s;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
._faq_item_q.open::after {
    transform: translateY(50%) rotate(-135deg);
}
._faq_item dd{
    display: none;
}
._faq_item dd span{
    display: flex;
    align-items: center;
}
._faq_item dd span:before{
    content: 'A.';
    font-size: 2rem;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 0.5rem;
}

._company{
    width: 100%;
    background :#FFFFFF;
    position: relative;
    margin-top: -5rem;
    border-radius: 64px 0 0 0;
    padding-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
    ._company{
        border-radius: 40px 0 0 0;
        padding-bottom: 5rem;
    }
}
._company ._company_wrap{
    width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._company ._company_wrap{
        padding: 3rem 1rem 3rem 1rem;
        flex-direction: column;
    }
}
._company_wrap ._company_left{
    widtH: 35%;
}
@media screen and (max-width: 1024px) {
    ._company_wrap ._company_left{
        widtH: 100%;
    }
}
._company_wrap ._company_left h3{
    display: flex;
    flex-direction: column;
    font-size: 2.75rem;
    font-weight: bold;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._company_wrap ._company_left h3{
        font-size: 1.75rem;
        font-weight: 500;
    }
}
._company_wrap ._company_right{
    widtH: 65%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
    ._company_wrap ._company_right{
        widtH: 100%;
    }
}
._company_right ._company_item{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-bottom: 0.5px dotted #878484;
    padding-bottom: 1rem;
}
._company_item dt{
    width: 25%;
}
._company_item dd{
    width: 75%;
}
._sns_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._sns_wrap{
        flex-direction: column;
    }
}
._sns_wrap ._youtube{
    width: calc((100% - 1rem) / 2);
    min-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._sns_wrap ._youtube{
        width: 100%;
    }
}
._sns_wrap ._youtube iframe{
    width: 100%;
}
._sns_wrap ._facebook{
    width: calc((100% - 1rem) / 2);
    min-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._sns_wrap ._facebook{
        width: 100%;
        height: 400px;
    }
}
._sns_wrap ._facebook iframe{
    width: 100%;
}
._sns_wrap ._instagram{
    width: calc((100% - 1rem) / 2);
    min-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._sns_wrap ._instagram{
        width: 100%;
    }
}
._sns_wrap ._tiktok{
    width: calc((100% - 1rem) / 2);
    min-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 1024px) {
    ._sns_wrap ._tiktok{
        width: 100%;
    }
}
._sns_wrap ._tiktok blockquote{
    width: 100% !important;
    max-width: 100% !important;
}
._sns_wrap ._sns_logo{
    height: 35px;
}
._sns_wrap ._sns_logo img{
    object-fit: contain;
    height: 100%;
}

._entry{
    width: 100%;
    border-radius: 64px 0 0 0;
    background: var(--accent-color);
    color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
    ._entry{
        border-radius: 40px 0 0 0;
    }
}
._entry ._entry_wrap{
    width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._entry ._entry_wrap{
        padding: 3rem 1rem;
        flex-direction: column;
    }
}
._entry_inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
._entry_wrap h3{
    font-size: 3rem;
    font-weight: bold;
}
@media screen and (max-width: 1024px) {
    ._entry_wrap h3{
        font-size: 2rem;
    }
}
._entry_txt{
    font-size: 1.2rem;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    ._entry_txt{
        font-size: 0.9rem;
    }
}
._entry_icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}
@media screen and (max-width: 1024px) {
    ._entry_icon{
        width: 50px;
        height: 50px;
    }
}

footer{
    margin-top: 3rem;
}
._footer_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
}
._footer_inner{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._footer_inner{
        flex-direction: column;
    }
}
._footer_left{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media screen and (max-width: 1024px) {
    ._footer_left{
        width: 100%;
        padding: 3rem 0;
    }
}
._footer_logo{
    width: 140px;
}
@media screen and (max-width: 1024px) {
._footer_logo{
    width: 60%;
}
}
._footer_logo img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._footer_sns{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
._footer_sns li{
    width: 30px;
    height: 30px;
}
._footer_sns li img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
._footer_right{
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5rem;
}
@media screen and (max-width: 1024px) {
    ._footer_right{
        width: 100%;
        gap: 1rem;
        padding: 1rem 0 3rem;
    }
}
._footer_right_top{
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._footer_right_top{
        width: 100%;
        gap: 1rem;
    }
}
._footer_right_top li{
    width: calc((100% - 4rem) / 3);
}
@media screen and (max-width: 1024px) {
    ._footer_right_top li{
        width: calc((100% - 1rem) / 2);
    }
}
._footer_right_top li a{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid #E6E4E4;
    padding-bottom: 1rem;
}
._footer_right_top li a ._en{
    font-size: 0.9rem;
    font-weight: 200;
}
._footer_right_top li a ._jp{
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    ._footer_right_top li a ._jp{
        font-size: 1rem;
    }
}
._i_link{
    width: 30px;
    height: 30px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    ._i_link{
        width: 20px;
        height: 20px;
    }
}
._i_link i{
    font-size: 12px;
    color: var(--accent-color);
}
._footer_right_bottom{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 2rem;
}
@media screen and (max-width: 1024px) {
    ._footer_right_bottom{
        width: 100%;
    }
}
._footer_right_bottom li{
    width: calc((100% - 4rem) / 3);
}
@media screen and (max-width: 1024px) {
    ._footer_right_bottom li{
        width: calc((100% - 1rem) / 2);
    }
}
._copyright{
    width: 100%;
    border-top: 1px solid #968F8F;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}
@media screen and (max-width: 1024px) {
    ._copyright{
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}



