@charset "utf-8";

/* -----------------------------------------------------------
    キャスト・スタッフで使わない部分の共通css
----------------------------------------------------------- */
:root {
    --cv-cast: linear-gradient(90deg, #e36457, #e46f63, #e57a6e, #e6857a, #e6857a, #e57a6e, #e46f63, #e36457);
    ;
    --cv-staff: linear-gradient(90deg, #56bca9, #5bc4b4, #5fccbe, #64d4c9, #64d4c9, #5fccbe, #5bc4b4, #56bca9);
}

/* -----------------------------------------------------------
    header
-------------------------------------------------------------- */
.header .header-btn-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
}

.header .header-cv-btn {
    width: 160px;
}

.header .header-cv-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    font-weight: 600;
    color: #fff;
    z-index: 1;
    background-position: 100% !important;
    background-size: 200% auto !important;
    transition: background 1s cubic-bezier(0.19, 1, 0.22, 1) !important;
    position: relative;
}

.header .header-cv-btn.cast a {
    background: var(--cv-cast);
    border-radius: 0 0 0 10px;
}

.header .header-cv-btn.staff a {
    background: var(--cv-staff);
}

.header .header-cv-btn-txt {
    font-size: 1.4rem;
    font-feature-settings: "palt";
}

.header .header-cv-btn-icon-wrap {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-cv-btn-icon-wrap img {
    display: block;
    object-fit: contain;
}

@media screen and (min-width: 769px) {
    .header .header-cv-btn a:hover {
        background-position: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .header .header-logo-wrap {
        flex: 0 0 130px;
        width: 130px;
        padding: 0;
        margin-left: 3vw;
    }

    .header .header-logo-wrap img {
        display: block;
        width: 100%;
        height: auto;
    }

    .header .header-cv-btn {
        width: 100px;
        display: block;
    }

    .header .header-cv-btn-icon-wrap {
        width: 24px;
        height: 24px;
        aspect-ratio: 1/1;
    }

    .header .header-cv-btn-icon-wrap img {
        height: 100%;
    }

    .header .header-cv-btn-txt {
        font-size: 1.0rem;
    }
}

/* -----------------------------------------------------------
    section-title
-------------------------------------------------------------- */
.section-title {
    margin: 0 0 40px;
    /* container-type: inline-size; */
}

.section-title.center {
    text-align: center;
}

.section-title .en {
    background: linear-gradient(90deg, #2d73ab, #307db5, #3487c0, #3792ca, #3b9cd4, #3fa7de, #43b2e8, #47bdf2, #43b2e8, #3fa7de, #3b9cd4, #3792ca, #3487c0, #307db5, #2d73ab);
    background-size: 200%;
    animation: gradientMove 4s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: clamp(6.0rem, 4.8cqw, 8.0rem);
    font-family: var(--en);
    display: inline-block;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;

}

@keyframes gradientMove {
    to {
        background-position: 200%;
    }
}

.section-title .jp {
    color: var(--navy);
    line-height: 1.5;
    font-weight: 500;
    font-size: clamp(2.4rem, 1.7cqw, 3.0rem);
}


/*採用*/
.section-title.recruit {
    margin-bottom: 30px;
}

.section-title.recruit .en {
    font-size: clamp(1.6rem, 1.2cqw, 2.0rem);
}

.section-title.recruit .jp {
    font-size: clamp(2.6rem, 2.1cqw, 2.8rem);
    margin-bottom: 5px;

}


@media screen and (max-width: 768px) {
    .section-title {
        margin: 0 0 5vw;
    }

    .section-title .en {
        font-size: clamp(3.2rem, 11cqw, 7.0rem);
    }

    .section-title .en.sp-min {
        font-size: clamp(2.4rem, 9cqw, 5.0rem);
    }

    .section-title .jp {
        font-size: clamp(1.7rem, 5.4cqw, 2.0rem);
        margin-top: 5px;
    }

    .section-title.recruit {
        margin-bottom: 5vw;
    }

    .section-title.recruit .en {
        font-size: clamp(1.4rem, 4cqw, 1.7rem);
    }

    .section-title.recruit .jp {
        font-size: clamp(2.0rem, 5.6cqw, 2.4rem);


    }
}

/* -----------------------------------------------------------
    h4-title
-------------------------------------------------------------- */
.h4-title {
    font-size: clamp(2.4rem, 1.5cqw, 2.8rem);
    color: var(--navy);
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .08em;
    padding-bottom: 15px;
    position: relative;
    margin: 0 0 30px;
}

.h4-title::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--yellow);
}

@media screen and (max-width: 768px) {
    .h4-title {
        font-size: clamp(2.2rem, 6.0cqw, 2.8rem);
        letter-spacing: .05em;
        padding-bottom: 15px;
        margin: 0 0 5vw;
    }
}

/* -----------------------------------------------------------
    h5-title
-------------------------------------------------------------- */
.h5-title {
    font-size: clamp(2.0rem, 1.2cqw, 2.4rem);
    color: var(--navy);
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .08em;
    position: relative;
    margin: 0 0 25px;
    padding-left: 15px;
}

.h5-title::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 30%;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 3px;
}

.h5-title::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 60%;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--yellow);
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .h5-title {
        font-size: clamp(2.0rem, 5.5cqw, 2.4rem);
        letter-spacing: .05em;
        position: relative;
        margin: 0 0 5vw;
        padding-left: 15px;
    }
}

/* -----------------------------------------------------------
    h6-title
-------------------------------------------------------------- */
.h6-title {
    font-size: clamp(1.8rem, 1.1cqw, 2.0rem);
    color: var(--navy);
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .08em;
    margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
    .h6-title {
        font-size: clamp(1.8rem, 5cqw, 2.0rem);
        letter-spacing: .05em;
        margin: 0 0 5vw;
    }
}

/* -----------------------------------------------------------
    catch
-------------------------------------------------------------- */
.catch {
    font-size: clamp(3.4rem, 2.7cqw, 5.0rem);
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 30px;
    font-family: var(--serif);
}

@media screen and (max-width: 768px) {
    .catch {
        font-size: clamp(2.4rem, 7cqw, 3.0rem);
        margin: 0 0 5vw;
    }

}


/* -----------------------------------------------------------
sub-catch
-------------------------------------------------------------- */
.sub-catch {
    font-size: clamp(2.4rem, 1.8cqw, 3.0rem);
    line-height: 1.5;
    margin: 0 0 15px;
    font-family: var(--serif);
    color: var(--gold);
}

@media screen and (max-width: 768px) {
    .sub-catch {
        font-size: clamp(1.7rem, 5cqw, 2.0rem);
        margin: 0 0 2vw;
    }

}



/* -----------------------------------------------------------
    disc-list
-------------------------------------------------------------- */
*+.disc-list {
    margin-top: 40px;
}

.disc-list .disc-item {
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.disc-list .disc-item::before {
    content: "";
    position: absolute;
    /* top: calc(.5lh + 2.5px); */
    top: 0.5lh;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.disc-list .disc-item+.disc-item {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    *+.disc-list {
        margin-top: 7vw;
    }

    .disc-list .disc-item+.disc-item {
        margin-top: 5px;
    }
}

/* -----------------------------------------------------------
    num-list
-------------------------------------------------------------- */
*+.num-list {
    margin-top: 40px;
}

.num-list {
    counter-reset: num;
}

.num-list .num-item {
    position: relative;
    padding-left: 15px;
}

.num-list .num-item::before {
    counter-increment: num;
    content: counter(num) ".";
    position: absolute;
    top: 5px;
    left: 0;
    color: var(--blue);
    font-weight: 600;
    line-height: 1.4;
    /* font-family: var(--en); */
}

.num-list .num-item+.num-item {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    *+.num-list {
        margin-top: 7vw;
    }

    .num-list .num-item+.num-item {
        margin-top: 5px;
    }
}

/* -----------------------------------------------------------
    check-list
-------------------------------------------------------------- */
*+.check-list {
    margin-top: 40px;
}

.check-list .check-item {
    position: relative;
    padding-left: 20px;
    line-height: 1.7;
}

.check-list .check-item::before {
    content: "\f00c";
    position: absolute;
    /* top: calc(.5lh + 2.5px); */
    left: 0;
    width: 15px;
    height: 15px;
    top: 2px;
    color: var(--blue);
}

.check-list .check-item+.check-item {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    *+.check-list {
        margin-top: 7vw;
    }

    .check-list .check-item+.check-item {
        margin-top: 10px;
    }
}

/* -----------------------------------------------------------
    cmn-txt-box
-------------------------------------------------------------- */
*+.cmn-txt-box {
    margin-top: 40px;
}

.cmn-txt-box {
    border: 1px solid var(--blue);
    padding: 30px;
    background-color: #fff;
}

.cmn-box-ttl {
    align-items: center;
    color: var(--blue);
    display: inline-flex;
    font-size: 2.4rem;
    font-weight: 600;
    gap: 8px;
    margin: 0 0 10px;
    line-height: 1.5;
}

.cmn-txt-box .cmn-box-ttl .icon-wrap {
    width: auto;
    height: auto;
    /* margin-right: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmn-txt-box .cmn-box-ttl .icon-wrap img {
    max-width: 36px;
    max-height: 36px;
}

.cmn-txt-box *+.cmn-box-ttl {
    margin-top: 30px;
}

/*青背景*/
.cmn-txt-box.blue {
    background-color: var(--pale-main);
    border: none;
}

@media screen and (max-width: 768px) {
    *+.cmn-txt-box {
        margin-top: 8vw;
    }

    .cmn-txt-box {
        padding: 5vw;
    }

    .cmn-box-ttl {
        align-items: center;
        display: inline-flex;
        font-size: 1.8rem;
        font-weight: 600;
        gap: 8px;
        margin: 0 0 10px;
        line-height: 1.5;
    }

    .cmn-txt-box *+.cmn-box-ttl {
        margin-top: 5vw;
    }

    .cmn-txt-box .cmn-box-ttl .icon-wrap img {
        max-width: 10vw;
        max-height: 8vw;
    }
}


@media screen and (max-width: 768px) {}


/* -----------------------------------------------------------
    btn-more
-------------------------------------------------------------- */
.btn-more-wrap {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    margin: 60px 0 0;
}

.btn-more-wrap .btn-more {
    margin: 0;
}

.btn-more {
    margin: 60px auto 0;
}

.btn-more>* {
    display: inline-flex;
    min-width: 260px;
    border: 1px solid var(--cmnblack);
    justify-content: center;
    align-items: center;
    padding: 17px 40px 17px 30px;
    border-radius: 40px;
    position: relative;
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.btn-more a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #F1F2F1;
    transform: scaleX(0);
    transition: all 0.3s;
    transition-property: transform;
    z-index: -1;
}

.btn-more>*::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 45%;
    transform: translateY(-50%);
    background: url(../img/arrow-black.svg) no-repeat center/contain;
    aspect-ratio: 22/4;
    width: 26px;
    height: auto;
}

.btn-more.external>*::after {
    content: "\f08e";
}

/*white-line*/
.btn-more.white-line>* {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-more.white-line>*::after {
    color: #fff;
    background: url(../img/arrow-white.svg) no-repeat center/contain;
}

@media screen and (min-width: 769px) {
    .btn-more a:hover {
        /* color: #fff; */
        color: var(--ash-gray);
        border-color: var(--ash-gray);
    }

    .btn-more a:hover::before {
        transform: scaleY(1);
    }

    .btn-more a:hover::after {
        /* color: #fff; */
    }
}

@media screen and (max-width: 768px) {
    .btn-more-wrap {
        gap: 3vw;
        margin: 10vw 0 0;
    }

    .btn-more-wrap .btn-more {
        width: calc((100% - 3vw) / 2);
    }

    .btn-more-wrap .btn-more>* {
        min-width: initial;
        width: 100%;
        padding: 10px;
        font-size: 1.4rem;
    }

    .btn-more-wrap .btn-more>*::after {
        right: 10px;
        font-size: 1.2rem;
    }

    .btn-more {
        margin: 10vw auto 0;
    }
}

/* -----------------------------------------------------------
    page-title-area
-------------------------------------------------------------- */
.page-title-area {
    position: relative;
    margin: 0 0 30px;
    height: var(--page-title-height);
    display: flex;
    align-items: center;
}

.page-title-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(237, 228, 202, 0) 0%, rgba(237, 228, 202, 1) 100%);
    z-index: 0;
}

.page-title-area .page-title-inner {
    width: var(--inner-wide);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
    /*見た目の位置調整*/
}

.page-title-area .page-title-inner .en {
    font-size: clamp(6.0rem, 10cqw, 10.0rem);
    color: #fff;
    font-weight: 500;
    font-family: var(--en);
    line-height: 1.3;
    letter-spacing: .08em;
}

.page-title-area .page-title-inner .ja {
    font-size: clamp(2.1rem, 5cqw, 3.0rem);
    /* color: #fff; */
    letter-spacing: .08em;
    font-weight: 500;
    font-family: var(--serif);
}

@media screen and (max-width: 768px) {
    .page-title-area {
        margin: 0;
    }

    .page-title-area .page-title-inner {
        padding: 0 5vw;
    }

    .page-title-area .page-title-inner .en {
        font-size: clamp(3.0rem, 10cqw, 7.0rem);
        /* text-shadow: 0 0 10px rgba(45, 115, 170, .5); */
    }

    .page-title-area .page-title-inner .en.sp-min {
        font-size: clamp(2.0rem, 8.2cqw, 5.0rem);
    }

    .page-title-area .page-title-inner .en.sp-min02 {
        font-size: clamp(2.0rem, 6.7cqw, 5.0rem);
    }

    .page-title-area .page-title-inner .ja {
        font-size: clamp(1.8rem, 5.0cqw, 2.6rem);
        /* color: #fff; */
        letter-spacing: .08em;
        /* text-shadow: 0 0 10px rgba(45, 115, 170, .5); */
    }
}