@charset "utf-8";

/* **************
RECRUIT-common PC
************** */
.spBr {
    display: none;
}

/* **************
RECRUIT-common sp
************** */
@media screen and (max-width: 768px){
    .spBr {
        display: block;
    }
}


/* **************
RECRUIT-MV PC
************** */
.recruit__mainVisual {
    display: flex;
    height: 600px;
    flex-direction: column;
    justify-content:  center;
    align-items: center;
    gap: 30px;
    background-image: url(../images/mainVisual__sliderItem--3.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    overflow: hidden;
    position: relative;
}
.recruit__mainCopy {
    padding: 0 3.7%;
    margin-right: auto;
}
.recruit__mainCopy span {
    display: inline-block;
    color: var(--base_white, #FFF);
    font-family: "Zen Kaku Gothic New";
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.025em;
    text-align:  center;
    text-shadow: -1.5px 1px 3px rgba(0, 0, 0, 0.5);
    clip-path: inset(0 100% 0 0);
    animation: textanimation 2s 2s forwards;
}

.recruit__mainCopy span:nth-child(-n+15){
    animation-delay: 1s
}

@keyframes textanimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0);
    }
}

.mvTitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: auto;
    padding-left: 3.7%;
    color: var(--base_white, #FFF);
    text-shadow: -1.5px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
}
.mvTitle span {
    font-family: "Hiragino Kaku Gothic StdN";
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

@media screen and (max-width: 768px){
    .recruit__mainVisual {
        height:  280px;
        gap: 30px;
        position: relative;
    }
    .recruit__mainCopy span{
        font-size: 1.8rem;
        animation: textanimation 1s 1s forwards;
    }
    .recruit__mainCopy span:nth-child(-n+15){
        animation-delay: 0.5s
    }
    
    .mvTitle {
        font-size: 2.4rem;
    }
    .mvTitle::after {
        position: absolute;
        content: "";
        top: 61%;
        left: 0;
        transform: translateX(-50%);
        width: 120vw;
        height: 1px;
        border-bottom: 1px solid #fff;
    }
    .mvTitle span {
        font-size: 1.6rem;
    }
    .mvTxt {
        font-size: 1.4rem;
        padding: 5px 20px;
        position: absolute;
        bottom: -30px;
    }
}/* RECRUIT-mv sp */


/* **************
RECRUIT-message PC
************** */
.recruit__message {
    padding: 120px 8.3% 120px;
    background-color: var(--base_blue, #1D3760);
}
.messageInner {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: -180px;
}
.messageBox {
    z-index: 2;
    width: 100%;
}
.messageTxt {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    width: 100%;
    background-color: #FFF;
    box-shadow: 8px -3px 4px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
    line-height: 2;
}
.messageImage {
    max-width: 440px;
    margin-left: -80px;
    margin-top: -180px;
    position: relative;
    z-index: 1;
}
.messageImage::after {
    position: absolute;
    content: "";
    background-image: url(../images/messageImage_after.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    top: 20%;
    left: 130px;
    width: 100%;
    height: auto;
    aspect-ratio: 324 / 384;
    z-index: -1;
    overflow-x: hidden;
}
.yellowLine {
    background: linear-gradient(transparent 50%, rgba(255, 212, 59, 0.7) 50%);
}

@media screen and (max-width: 768px){
    .recruit__message {
        padding: 0 8% 60px;
    }
    .messageInner {
        margin-top: -50px;
    }
    .recruit__message::after {
        display: none;
    }
    .messageTxt {
        font-size: 1.2rem;
        padding: 30px  4.7%;
        gap: 30px;
        width: 100%;
    }
    .messageImage {
        display: none;
    }
}/* RECRUIT-mv sp */


/* **************
RECRUIT-info PC
************** */
.infoList {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.infoItem {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid var(--font_black, #27210C);
    padding: 60px 0 30px;
    line-height: 2;
}
.infoList div:last-child {
    border-bottom: none;
}
.item__title {
    width: 15rem;
    min-width: 10rem;
    font-weight: 700;
}
.item__body {
    display: flex;
    flex-direction: column;
}
.item__detail a {
    text-decoration: underline;
}

@media screen and (max-width: 768px){
    .infoList {
        width: 100%;
        font-size: 1.2rem;
    }
    .infoItem {
        flex-direction: column;
        gap: 15px;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 0 15px;
    }
}/* RECRUIT-mv sp */

/* **************
RECRUIT-member PC
************** */
.recruit__member {
    padding: 120px 2%;
    position: relative;
}
.memberTitle {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-align: center;
    margin: 0 auto;
    padding: 15px 0;
}
.memberList {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    padding: 0;
    flex-wrap: nowrap;
}
.memberItem {
    width: 25%;
}
.memberItem img{
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
@media screen and (max-width: 768px){
    .recruit__member {
        padding: 60px 2%;
    }
    .memberTitle {
        font-size: 1.6rem;
        padding: 15px 0;
    }
    .memberList {
        gap: 10px;
    }
}/* RECRUIT-member sp */

/* **************
RECRUIT-contact PC
************** */
.contactList {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;    
}
.contactList p {
    text-align: center;
}
.contactBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.3%;
    width: 100%;
    font-size: 3.2rem;
    font-weight: 700;
    text-decoration: underline;
}
.tel, .mail {
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--accect_yellow, #FFD43B);
    box-shadow: 4px 4px 4px 0px rgba(74, 74, 74, 0.10);
}
.tel {
    width: 42%;
}
.mail {
    width: 52.6%;
}

@media screen and (max-width: 768px){
    .contacrtList {
        gap:  30px;
    }
    .contactBtn {
        flex-direction: column;
        gap: 15px;
        width: 80%;
        font-size: 1.6rem;
    }
    .contactBtn img {
        width: 30px;
    }
    .tel {
        width: 100%;
    }
    .mail {
        width: 100%;
    }
}/* RECRUIT-mv sp */

/* @media (min-width: 769px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
} */