@charset "utf-8";
/* top */
.top_inner{
    display: flex;
    justify-content: space-between;
}
.top_sec{
    padding: 5rem 5rem 10rem;
    position: relative;
}
.top_text{
    width: 50%;
    position: relative;

}
.top_catch{
    position: relative;
    z-index: 1;
    max-width: 54rem;
    margin-top: 4rem;
}
.top_catch_sub{
    text-align: right;
    position: relative;
    z-index: 1;
    line-height: 1.4;
    margin-right: 3rem;
    margin-top: -3rem;
}
.top_catch_back{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 0;
    width: 100%;
}
.top_slide{
    width: 45%;
    padding-right: 20rem;
}
.top_slide_container {
    transform: rotate(6deg);
    filter: drop-shadow(4px 3px 15px #b8c9b9cc);
}
.top_slide_item{
    overflow: hidden;
    border-radius: 5.5rem;
}
.swiper-slide-shadow-cards{
    background: transparent!important;
    display: none!important;
} 

.top_slide_item {
    visibility: hidden;
    z-index: 1!important;
}
.top_slide_item.swiper-slide-active {
    visibility: visible;
    z-index: 3!important;
}
.top_slide_item.swiper-slide-next {
    visibility: visible;
    z-index: 2!important;
}
.top_slide_item.swiper-slide-prev {
    visibility: visible;
    z-index: 1!important;
}


.top_slide_item:not(.swiper-slide-prev),
.top_slide_item:not(.swiper-slide-active){
    visibility: hidden;
}
.top_slide_item.swiper-slide-prev,
.top_slide_item.swiper-slide-active{
    visibility: visible;
}
.top_slide_item.swiper-slide-prev.is-hide img{
    filter: blur(8px);
}
.top_slide_item.swiper-slide-prev.is-hide::before{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .4;
    z-index: 1;
    background: #B5916F;
}

.top_scroll{
    position: absolute;
    width: 9rem;
    bottom: 8rem;
    right: 10rem;
    font-size: 1.5rem;
}
.top_scroll .scroll_text{
    display: block;
    margin-bottom: 4rem;
}
.top_scroll .scroll_bar{
    height: 20.5rem;
    width: 1px;
    background: var(--color-main);
    display: block;
    margin: auto;
    position: relative;
}
.top_scroll .scroll_bar::before{
    content: "";
    display: block;
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    background: var(--color-main);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    animation: circleAnimation 3s cubic-bezier(.075, .82, .165, 1) infinite;
}

@keyframes circleAnimation{
10% {
    opacity: 1;
    top: 0;
}
70% {
    top: 100%;
}
71% {
    opacity: 1;
    top: 100%;
}
90% {
    opacity: 0;
    top: 100%;
}
100% {
    opacity: 0;
    top: 100%;
}
}


@media (max-width: 767px) {
    .top_sec{
        padding: 2rem;
        position: relative;
        padding-bottom: 5rem;
    }
    .top_inner{
        display: block;
        padding-bottom: 7rem;
        position: relative;
    }
    .top_text{
        width: 100%;
        position: static;
    }
    .top_slide{
        width: 100%;
        padding-right: 1rem;
        padding-left: 7rem;
    }
    .top_catch{
        margin-top: 0;
        width: 80%;
    }
    .top_scroll{
        width: 5rem;
        bottom: 4rem;
        right: auto;
        left: 0;
    }
    .top_scroll .scroll_text{
        margin: 0 auto 2rem;    
        width: 50%;
        font-size: 1rem;
    }
    .top_catch_sub{
        position: absolute;
        bottom: 0;
        right: 2rem;
        margin-right: 0;
        font-size: 1rem;
    }
    .top_catch_back{
        top: 0;
        transform: translate(-50%,0);
    }
    .top_slide_item{
        border-radius: 4.5rem;
        isolation: isolate;
        clip-path: inset(0 round 4.5rem);
    }
}


/* message */
.messsage_sec{
    border-bottom: 1px solid var(--color-main);
}
.message_inner{
    margin-left: 7rem;
    border-left: 1px solid var(--color-main);
    padding: 8rem 7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.message_text {
    max-width: 52rem;
}
.message_text p{
    line-height: 2;
}
.message_text p + p{
    margin-bottom: 2em;
}
.message_head{
    font-size: 2.4rem;
    margin-bottom: 4rem;
}
.message_img{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
}
.message_img_item{
    width: 24rem;
    position: relative;
}
.message_img_item.is_01{
    z-index: 2;
}
.message_img_item.is_02{
    align-self: flex-end;
    z-index: 0;
}
.message_img_line{
    position: absolute;
    top: -2rem;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.message_img_line path{
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 2s ease;
}
.message_img_line.active path{
    stroke-dashoffset: 0;
}

@media (max-width: 767px) {
    .message_inner{
        margin-left: 0;
        border-left: none;
        padding: 3rem 2rem;
        position: relative;
        display: block;
    }
    .message_text p{
        font-size: 1.3rem;
    }
    .message_inner .message_head{
        font-size: 1.8rem;
    }
    .message_text_inner{
        padding-top: 45rem;
    }
    .message_img{
        height: 40rem;
        position: absolute;
        top: 13rem;
        left: 50%;
        width: 100%;
        padding: 0 4rem;
        transform: translateX(-50%);
    }
    .message_img_item{
        width: 47%;
    }
}

/* education */
.education_sec{
    padding-top: 14rem;
    margin-bottom: 14rem;
}
.education_sec .common_title_h2{
    flex-direction: column;
    gap: 0;
    margin-bottom: 5rem;
    border-top: none;
    border-bottom: none;
}
.education_sec h2 + p{
    text-align: center;
    color: var(--color-gray);
    line-height: 2;
}
.education_slide{
    margin-top: 9rem;
    border-top: 1px solid var(--color-brown);
    border-bottom: 1px solid var(--color-brown);
    position: relative;
    margin-bottom: 15rem;
}
.education_slide_item{
    padding: 2rem;
    border-right: 1px solid var(--color-main);
}
.education_slide_item:first-child{
    border-left: 1px solid var(--color-main);
}
.education_slide_inner{
    background: var(--color-brown);
    color: var(--color-white);
    border-radius: 5rem;
    display: flex;
}
.education_box{
    padding: 4rem 0 4rem 4rem;
    width: 50%;
}
.education_box_title{
    font-weight: normal;
    margin-bottom: 2.4rem;
}
.education_box_title_num{
    counter-increment: number;
    font-size: 10.7rem;
    font-family: var(--font-silkserif);
    display: block;
}
.education_box_title_ja{
    font-size: 2.5rem;
    background: var(--color-white);
    color: var(--color-brown);
    padding: .3rem;
    display: inline-block;
    letter-spacing:0.2rem;
}
.education_box_caption{
    font-size: 1.7rem;
    line-height: 2;
}
.education_img{
    width: 50%;
    padding: 1rem;
    transform: translateY(-4rem);
}
.education_slide_item{
    height: auto;
}
.education_slide_inner{
    height: 100%;
}
.education_slide_container {
    .swiper-pagination-bullets {
        display: flex;
        gap:2rem;
    }
    .swiper-pagination-bullet{
        width: .8rem;
        height: .8rem;
        margin: 0 !important;
        background: transparent;
        border: 1px solid var(--color-brown);
        opacity: 1;
    }
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination {
        position: static; 
        width: auto;
        height: auto;
        margin: 0;
    }
    .slide-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        position: absolute;
        bottom: -4rem;
        width: 100%;
    }
    .swiper-pagination-bullet.swiper-pagination-bullet-active{
        background: var(--color-brown);
    }
    .swiper-button-prev .swiper-navigation-icon,
    .swiper-button-next .swiper-navigation-icon {
        display: none;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 1rem;  /* アイコンの表示幅 */
        height: 1rem; /* アイコンの表示高さ */
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
        background-image: url('../img/education-arrow.svg');
    }
    .swiper-button-prev{
        transform: scaleX(-1);
    }
}

.education_contents{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-top: 1px solid var(--color-brown);
    border-bottom: 1px solid var(--color-brown);
}
.education_contents_box{
    padding: 8rem 7rem;
}
.education_contents_box_inner{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.education_contents_box:first-child{
    border-right: 1px solid var(--color-brown);
}
.education_contents_box_head{
    font-family: var(--font-silkserif);
    font-size: 2.2rem;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 1;
}
.education_contents_img{
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 4rem;
    overflow: hidden;
}
.education_contents_img:has(span)::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-gray);
    opacity: .8;
}
.education_contents_img span{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    color: #fff;
}
.education_contents_title{
    flex: 1;
}
.education_contents_btn{
    width: 11.2rem;
    height: 4.3rem;
    border-radius: 50%;
    border: 1px solid var(--color-brown);
    display: grid;
    place-content: center;
    position: relative;
    transition: all .3s ease;
}
.education_contents_btn span{
    position: relative;
    z-index: 1;
}
.education_contents_btn::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    outline: 1px solid var(--color-brown);
    background: var(--color-brown);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: all .3s ease;
    transform-origin: center;
    z-index: 0;
}
.education_contents_btn:hover{
    color: var(--color-white);
}
.education_contents_btn:hover::after{
    transform: translate(-50%,-50%) scale(1);

}


@media (max-width: 767px) {
    .education_sec .common_title_h2_ja{
        margin-right: auto;
    }
    .education_sec{
        padding-top: 5rem;
        margin-bottom: 10rem;
    }
    .education_sec h2 + p{
        font-size: 1.2rem;
    }
    .education_slide{
        margin-top: 4.5rem;
    }
    .education_slide_item{
        padding: 1.5rem 1rem;
    }
    .education_slide_inner{
        border-radius: 2.3rem;
    }
    .education_box{
        padding: 2rem 0 2rem 2rem;
    }
    .education_box_title_num{
        font-size: 5.2rem;
    }
    .education_box_title_ja{
        font-size: 1.6rem;
    }
    .education_box_caption{
        font-size: 1.1rem;
    }
    .education_img{
        transform: translateY(-2rem);
    }
    .education_contents_box{
        padding: 2rem;
    }
    .education_contents_box_head{
        font-size: 1.3rem;
    }
    .education_contents_img{
        aspect-ratio: 153/170;
        border-radius: 2rem;
    }
    .education_contents_img img{
        height: 100%;
        object-fit: cover;
    }
    .education_contents_title{
        font-size: 1.2rem;
        width: 100%;
        flex: none;
    }
    .education_contents_btn{
        margin: 2rem auto 0;
        font-size: 1.1rem;
        width: 6.3rem;
        height: 2.4rem;
    }
}

/* interview */
.interview_sec h2 {
    padding: 2rem 6rem;
    border-top: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
}
.interview_list{
    display: grid;
    gap: 7rem;
    padding: 7rem;
    grid-template-columns: repeat(3,1fr);
}
.interview_list_item{
    padding: 4rem 7rem;
    background: #fff;
    border-radius: 1rem;
    position: relative;
    transition: all .3s ease;
    border: 1px solid #fff;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.interview_list_item:hover{
    border: 1px solid var(--color-brown);
}
.interview_list_item a{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}
.interview_staff{
    position: relative;
    color: var(--color-gray);
    line-height: 2;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
}
.interview_staff_img{
    border-radius: .8rem;
    overflow: hidden;
    width: 90%;
    margin: 0 auto 2rem;
}
.interview_staff_img img{
    transition: scale .3s ease;
}
.interview_list_item:hover .interview_staff_img img{
    scale: 1.1;
}
.interview_staff_tag{
    position: absolute;
    font-size: 1.7rem;
    top: -1rem;
    left: -2rem;
    background: var(--color-brown);
    color: #fff;
    padding: .3rem 2rem;
}
.interview_staff_cap_name{
    margin-top: 1.5rem;
    font-size: 2rem;
}
.interview_list_item:hover .anchor_arrow svg.before{
    transform: translate(100%, 0%);
    transition: all .3s ease;
}
.interview_list_item:hover .anchor_arrow svg.after{
    transform: translate(0, 0);
    transition: all .3s ease .15s;
    stroke: #fff;
}
.interview_list_item:hover .anchor_arrow_wrap{
    background: var(--color-brown);
}
@media (max-width: 767px) {
    .interview_sec h2 {
        gap: 3rem;
        padding: 1rem 2rem;
    }
    .interview_list{
        grid-template-columns: repeat(2,1fr);
        padding: 3rem 2rem;
        gap: 3rem 1.3rem;
    }
    .interview_list_item{
        padding: 2.5rem 1.5rem;
    }
    .interview_staff{
        position: static;
    }
    .interview_list_item{
        position: relative;
    }
    .interview_staff_tag{
        font-size: 1rem;
        padding: 0 .5rem;
        left: 1rem;
    }
    .interview_staff_cap_text{
        font-size: 1.1rem;
    }
    .interview_staff_cap_name{
        font-size: 1.4rem;
    }
    .anchor_arrow_wrap{
        width: 2.5rem;
        height: 2.5rem;
        bottom: 2.5rem;
        right: 2rem;
    }
    .anchor_arrow{
        width: 0.933rem;
        height: 0.681rem;
    }
}

/* guideline */

.guideline_sec{
    padding: 17rem 7rem;
    background: url(../img/guid_back.jpg) center / cover no-repeat;
    position: relative;
    margin-bottom: 4rem;
}
.guideline_sec::before{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-main);
    opacity: .6;
    z-index: 1;
}
.guideline_inner{
    display: flex;
    gap: 5rem;
    position: relative;
    z-index: 1;
}
.guideline_head .common_title_h2{
    flex-direction: column;
    align-items: start;
    gap: 2rem;
    margin-bottom: 5rem;
    color: var(--color-white);
    padding: 0;
}
.guideline_head .common_title_h2{
    border-top: none;
    border-bottom: none;
}
.guideline_head .common_title_h2 .common_title_h2_en{
    font-size: 8rem;
}
.guideline_head .common_title_h2 .common_title_h2_ja{
    font-size: 2.1rem;
}
.guideline_entry{
    background: var(--color-brown);
    color: #fff;
    padding: 2rem 4rem 2rem 5.5rem;
    border-radius: 7rem;
    width: 40rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 1px 4px 11px #9A7D63;
    .anchor_arrow_wrap{
        position: relative;
        border: 1px solid #fff;
        width: 7.4rem;
        right: auto;
        bottom: auto;
    }
    .anchor_arrow svg{
        stroke: #fff;
    }
    .anchor_arrow svg.after{
        transform: translate(-100%, 0%);
    }
}
.guideline_entry_text_en{
    font-size: 4rem;
    font-family: var(--font-silkserif);
    display: block;
}
.guideline_entry_text_ja{
    font-size: 1.6rem;
}

.guideline_entry:hover .anchor_arrow svg.before{
    transform: translate(100%, 0%);
    transition: all .3s ease;
}
.guideline_entry:hover .anchor_arrow svg.after{
    transform: translate(0, 0);
    transition: all .3s ease .15s;
    stroke: var(--color-brown);
}
.guideline_entry:hover .anchor_arrow_wrap{
    background: #fff;
}
.guideline_list{
    display: flex;
    align-items: stretch;
    color: var(--color-gray);
    flex-wrap: wrap;
    line-height: 1.8;
    padding: 6rem 4rem;
    background: #fff;
    border-radius: 2.5rem;
    background-image: url(../img/noise.png);
    background-repeat: repeat;
    background-size: 32px;
}
.guideline_list_title{
    width: 15rem;
    padding: 3rem 1.5rem;
    border-bottom: 1px solid var(--color-brown);
    font-weight: 500;
}
.guideline_list_title:first-of-type{
    border-top: 1px solid var(--color-brown);
}
.guideline_list_container:first-of-type{
    border-top: 1px solid var(--color-brown);
}
.guideline_list_container{
    width: calc(100% - 15rem);
    padding: 3rem 1.5rem;
    border-bottom: 1px solid var(--color-brown);
}
.guideline_bg{
    display: none;
}

@media (max-width: 767px) {
    .guideline_sec{
        padding:10rem 2rem;
    }
    .guideline_head .common_title_h2{
        gap: 0;
    }
    .guideline_head .common_title_h2 .common_title_h2_en{
        font-size: 5.2rem;
    }
    .guideline_head .common_title_h2 .common_title_h2_ja{
        font-size: 1.2rem;
        margin-left: 0;
    }
    .guideline_inner{
        display: block;
    }
    .guideline_entry{
        width: 100%;
        padding: 2rem 2rem 2rem 3.5rem;
        height: auto;
        .anchor_arrow_wrap {
            width: 4.5rem;
        }
    }
    .guideline_entry_text_en{
        font-size: 2.5rem;
    }
    .guideline_entry_text_ja{
        font-size: 1.1rem;
    }
    .guideline_list{
        padding: 3rem 2rem;
        font-size: 1.3rem;
        flex-direction: column;
        padding-bottom: 14rem;
    }
    .guideline_list_title{
        padding: 1.5rem .5rem 0;
        width: auto;
        border-bottom: none;
    }
    .guideline_list_container{
        width: auto;
    }
    .guideline_list_container:first-of-type{
        border-top: none;
    }
    .guideline_list_container{
        padding: 0 .5rem 1.5rem;
    }
    .guideline_inner {
        position: relative;
        z-index: 2;
    }
    .guideline_bg {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }
    .guideline_bg img {
        position: sticky;
        top: 0;

        display: block;
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
    .guideline_sec{
        background: none;
    }
    .guideline_entry{
        position: absolute;
        bottom: 3rem;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: none;
    }
}


/* entry */
.entry_sec h2 {
    padding: 2rem 6rem;
    border-bottom: 1px solid var(--color-main);
    border-top: 1px solid var(--color-main);
}
.entry_inner{
    color: var(--color-gray);
    padding: 5rem 7rem;
}
.entry_inner p{
    line-height: 1.8;
}
.entry_head{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}
.entry_bunki a{
    width: 29rem;
    height: 6rem;
    line-height: 6rem;
    display: inline-block;
    text-align: center;
    border-radius: 6rem;
    margin: 0 1em;
}
.entry_bunki .entry_form_a{
    background: var(--color-main);
    color: var(--color-white);
}
.entry_bunki .entry_resume_a{
    border:1px solid var(--color-main);
    color: var(--color-main);
}
.entry_form_btn .guideline_entry_text{
    z-index: 1;
}
.entry_form_btn .guideline_entry_text_en{
    font-size: 8rem;
}
.entry_form_btn .guideline_entry_text_ja{
    font-size: 2rem;
}
#entry_form{
    text-align: center;
    border-bottom: 1px solid rgba(92, 73, 68, 0.3);
    padding-bottom: 8rem;
    margin-bottom: 8rem;
}

#entry_resume{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
}
.entry_resume_head .common_title_h3{
    color: var(--color-main);
    margin-bottom: 8rem;
}
#entry_resume p a{
    text-decoration: underline;
}
#entry_resume p a + svg{
    width: 1.1rem;
    stroke: var(--color-main);
    rotate: -45deg;
    vertical-align: baseline;
    margin: 0 .5rem;
}

.entry_resume_list{
    max-width: 62rem;
    width: 100%;
    background: #fff;
    padding: 6rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    counter-reset: number;
}
.entry_resume_list_item{
    padding-left: 6rem;
    position: relative;
}
.entry_resume_list_item::before{
    counter-increment: number;
    content: counter(number);
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 50%;
    background: var(--color-main);
    color: #fff;
    font-family: var(--font-silkserif);
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    padding-top: .5rem;
    font-size: 3rem;
}
.entry_resume_title{
    font-weight: 500;
    font-size: 1.7rem;
}
.guideline_entry.entry_form_btn{
    max-width: 110rem;
    height: 35rem;
    width: 100%;
    border-radius: 22rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    place-content: center;
    gap: 3rem;
    box-shadow: none;
    background: url(../img/form_back.jpg) center / cover no-repeat;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.guideline_entry.entry_form_btn::before{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: var(--color-main);
    opacity: .6;
}
@media (max-width: 767px) {
    .entry_sec h2 {
        gap: 3rem;
        padding: 1rem 2rem;
    }
    .entry_inner{
        padding: 3rem 0 10rem;
    }
    .entry_head{
        flex-direction: column;
        gap: 3rem;
    }
    .entry_inner p{
        font-size: 1.2rem;
        text-align: center;
    }
    .entry_bunki{
        font-size: 1.3rem;
        text-align: center;
        padding: 0 2rem;
    }
    .entry_bunki a{
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
    .guideline_entry.entry_form_btn{
        border-radius: 4rem;
        max-width: initial;
        height: 17rem;
        border-radius: 0;
        background-image: url(../img/form_back_sp.jpg);
    }
    .entry_form_btn .guideline_entry_text_en{
        font-size: 5.5rem;
    }
    .entry_form_btn .guideline_entry_text_ja{
        font-size: 1.5rem;
    }
    #entry_form{
        margin-bottom: 4rem;
    }
    #entry_resume{
        padding: 0 2rem;
        position: relative;
        padding-bottom: 10rem;
        .common_title_h3 + p{
            position: absolute;
            bottom: 0;
            text-align: left;
        }
    }
    .entry_resume_head .common_title_h3{
        margin-bottom: 0rem;
    }
    .entry_resume_list{
        padding: 3rem 1.5rem;
    }
    .entry_resume_list_item::before{
        width: 2.5rem;
        height: 2.5rem;
        font-size: 2rem;
    }
    .entry_resume_list_item{
        padding-left: 3.5rem;
    }
    .entry_resume_list_item p{
        text-align: left;
    }
}