@charset "utf-8";
/* ▼ FV ▼------------------------------------------ */
.fv {
    position: relative;
    height: 0;
    padding-bottom: 70%;
}

.catch {
    position: absolute;
    top: 28%;
    right: 11%;
    writing-mode: vertical-rl;
}
.catch h2 {
    color: #fff;
    font-size: clamp(22px, 2.5vw, 32px);
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    line-height: 1.95;
    letter-spacing: 0.48em;
    text-shadow: 0 0 50px #023b50;
    white-space: nowrap;
}
.catch h2 span {
    text-orientation: sideways;
    writing-mode: horizontal-tb;
    line-height: 1.5;
    letter-spacing: 0em;
    transform: translateY(-0.21em);
}
.mv__slider-item img {
    width: 100%;
}
.fv__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.fv__bg img {
    width: 100%;
}
.fv__wave {
    position: absolute;
    top: 80%;
}
@media screen and (max-width: 767px) {
    .fv {
        padding-bottom: 189%;
    }
    .catch {
        top: 50%;
        /* right: 15px; */
        right: 4%;
    }
    .catch h2 {
        font-size: clamp(22px, 3.8vw, 28px);
    }
    .mv__slider-item img {
        max-width: 100%;
        height: auto;
    }
    .fv__bg {
        max-width: 100%;
        width: 100%;
    }
    .fv__bg img {
        width: 100%;
    }
    .fv__wave {
        top: 95%;
    }
}

/* ▼ ABOUT ▼----------------------------------------- */
.about {
    display: flex;
    align-items: center;
    margin-top: 145px;
}
.about__column-message {
    margin: 0 auto;
    text-align: center;
}
.about__text p {
    font-family: "Noto Serif JP", "serif";
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 3;
}
.about__text span {
    display: inline-block;
}
.about-btn {
    margin-top: 60px;
    text-align: center;
}

.about__column-right {
    display: flex;
    flex-direction: column;
    gap: 67px;
}

@media screen and (max-width: 767px) {
    .about {
        flex-direction: column;
    }
    .about__column-message {
        margin-top: 50px;
        padding: 0 50px;
    }
    .about__column-left {
        padding: 0 30px;
    }
    .about__column-right {
        flex-direction: row;
        gap: 1.5%;
        margin-top: 80px;
    }
}

/* ▼ SERVICE ▼--------------------------------------- */
.services {
    position: relative;
}
.services__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    width: 77%;
    margin: 200px auto 0;
    gap: 30px;
}

.services__column-left {
    /* width: 325px; */
    width: 30%;
    margin-left: 11%;
}
.services__column-right {
    width: 50%;
}
.services-title {
    margin-top: 80px;
}
.services__text p {
    width: 100%;
    margin: 50px 0 90px;
}
.services-btn a {
    white-space: nowrap;
}
.services__image-box {
    margin: 40px 24% 0 0;
}
.services__image-box--reverse {
    margin: 42px 0 0 24%;
}
.services__bg {
    position: absolute;
    top: 0;
    left: 12%;
    width: 59%; /* 835px */
    height: 705px; /* 705px */
    background-image: url(../images/services_bg.png);
    z-index: -1;
}
.services__wave {
    margin-top: 120px;
    margin-bottom: 125px;
}

@media screen and (max-width: 767px) {
    .services__inner {
        flex-direction: column;
        width: 100%;
    }
    .services__column-left {
        width: 67%;
    }
    .services__column-right {
        width: 97%;
    }
    .services__image-box--reverse {
        margin-top: 3%;
    }
    .services__bg {
        left: 0;
        width: 100%;
        background-image: url(../images/sp-services_bg.png);
    }
    .services__wave {
        top: 300px;
    }
}

/* ▼ RECRUIT ▼--------------------------------------- */

.recruit {
    padding: 70px 5% 250px;
    background: #f3faff url("../images/top_recruit_bg.png") no-repeat
        center/cover;
}

.recruit-title {
    margin: 70px auto 50px;
}

.recruit-data {
    max-width: 1100px;
    margin: 0 auto;
}
.recruit-data__heading {
    margin: 0 0 40px 52px;
    font-size: 32px;
    font-weight: 700;
    color: #005271;
}
.recruit-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
}
/* .tab-content {
    flex-shrink: 1;
} */

/* タブ */
.recruit-tabs > label {
    /* flex: 1 1 auto; */
    flex: 0 0 200px;
    box-sizing: border-box;
    order: -1;
    text-align: center;
    padding: 0.4em 1.15em 0.2em;
    background: #97abb2;
    color: rgba(48, 48, 48, 0.5); /* 初期はグレーアウト */
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    border-bottom: none;
}

/* 選択されているタブ */
.recruit-tabs label:has(:checked) {
    background: #f3faff;
    color: #303030;
    font-weight: 600;
}

.recruit-tabs > label:hover:not(:has(:checked)) {
    color: rgba(48, 48, 48, 0.75);
}

.recruit-tabs input {
    display: none;
}

/* 表エリア */
.recruit-tabs .tab-content {
    display: none;
    width: 100%;
    background: #f3faff;
    padding: 55px 7% 0;
}

/* タブが選択されたら内容を表示 */
.recruit-tabs label:has(:checked) + .tab-content {
    display: block;
}

/* 表（dl）*/
.recruit-tabs dl {
    display: grid;
    /* grid-template-columns: 200px 1fr; */
    grid-template-columns: 22% 1fr;
    gap: 30px 0;
    line-height: 1.6;
}

.recruit-tabs dt,
.recruit-tabs dd {
    padding-bottom: 30px;
    border-bottom: 1px solid #97abb2;
}
.recruit-tabs dl dt:first-of-type,
.recruit-tabs dl dd:first-of-type {
    padding-top: 30px;
    border-top: 1px solid #97abb2;
}

.recruit-tabs dt {
    font-size: 1.25em;
    font-weight: 500;
}
.recruit-tabs dd {
    font-size: 1.1em;
}

/* 応募ボタン */
.recruit__btn-wrap {
    background: #f3faff;
    text-align: center;
}
.recruit-btn {
    margin: 80px auto;
}
@media screen and (max-width: 922px) {
    .recruit-tabs {
        gap: 0 5px;
    }
    .recruit-tabs > label {
        flex: 1 1 21%;
        font-size: clamp(14px, 2.5vw, 24px);
        /* white-space: nowrap; */
        padding: 0.35em 0.8em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .recruit-tabs > label span {
        display: inline-block;
    }
}
@media screen and (max-width: 767px) {
    .recruit-title {
        margin: 50px auto 20px;
    }
    .recruit-data__heading {
        margin: 0 0 30px 6%;
        font-size: 24px;
    }
    .recruit-tabs dl {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
    }
    .recruit-tabs dt {
        padding-top: 20px;
        padding-bottom: 5px;
        border-bottom: none;
        font-size: 16px;
    }
    .recruit-tabs dl dd:first-of-type {
        padding-top: 0;
        border-top: none;
    }
    .recruit-tabs dd {
        font-size: 15px;
    }
}
@media screen and (max-width: 489px) {
    .recruit-tabs > label {
        padding: 0.5em 0.4em;
        line-height: 1.1;
        text-align: start;
    }
}
