@charset "utf-8";

:root {
    /* --cv-line: linear-gradient(90deg, #54c979, #76d281, #92db8b, #abe497, #abe497, #92db8b, #76d281, #54c979); */
    --cv-line: linear-gradient(90deg, #abe497, #92db8b, #76d281, #54c979, #54c979, #76d281, #92db8b, #abe497);
    /* --cv-mail: linear-gradient(90deg, #f9b136, #fab953, #fac06c, #fac884, #fac884, #fac06c, #fab953, #f9b136); */
    --cv-mail: linear-gradient(90deg, #fac884, #fac06c, #fab953, #f9b136, #f9b136, #fab953, #fac06c, #fac884);

    --coral: #D6796F;
    --green: #74A89E;
    --orange: #D49D73;
    --beige: #F3F1EB;
    --brown: #B29183;
    --pale-pink: #F6EDED;
    --pink-beige: #DDBDB4;
    --coral02: #D6796F;
    --gold: #C9A267;

    --green-grad: linear-gradient(90deg, #83c1a6, #80bfaa, #7ebcad, #7cbab0, #7cb7b2, #7db4b4, #7eb1b5, #80aeb5);
    --brown-grad: linear-gradient(-90deg, #E1B299, #E1AE96, #E1AB94, #E1A891, #E1A48E, #E19F8A, #E19B87, #E19683);

    --footer-fixed-btn: #D6796F;

}

.coral02 {
    color: var(--coral02) !important;
}

.gold {
    color: var(--gold) !important;
}

/* -----------------------------------------------------------
    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(90deg, #ecd7bb, #ebd9bf, #ebdbc2, #ebdcc6, #eadeca, #eae0cd, #eae1d1, #eae3d5, #eae1d1, #eae0cd, #eadeca, #ebdcc6, #ebdbc2, #ebd9bf, #ecd7bb);
    background-size: 200%;
    z-index: 0;
    animation: gradientMove 4s linear infinite;
}

.page-title-area::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: -5px;
    right: -5px;
    width: 110%;
    height: auto;
    aspect-ratio: 1600/108;
    background: url(../../img/section-wave01.svg) no-repeat center/contain;
}

.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;
    text-transform: uppercase;
}

.page-title-area .page-title-inner .en::first-letter,
.page-title-area .page-title-inner .en span:first-child {
    font-family: var(--pinyon);
    font-size: 140%;
    margin-right: 10px;
}

.page-title-area .page-title-inner .ja {
    font-size: clamp(2.1rem, 5cqw, 3.0rem);
    /* color: #fff; */
    letter-spacing: .08em;
    font-weight: 500;
    color: #917A4B;
    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); */
    }
}

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

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

.section-title .en {
    color: #DDBDB4;
    font-size: clamp(6.0rem, 4.8cqw, 8.0rem);
    font-family: var(--en);
    display: inline-block;
    letter-spacing: .05em;
    line-height: 1.2;
    position: relative;
    text-transform: uppercase;
}


.section-title .en.is-small {
    font-size: clamp(4.5rem, 4cqw, 6.8rem);
}

.section-title .en::first-letter,
.section-title .en span:first-child {
    font-family: var(--pinyon);
    font-size: 140%;
    margin-right: 10px;
}

.section-title .kira::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -17px;
    /* width: 34px の半分 */
    top: -10px;
    background: url(../../img/cast/deco-kira-pink-beige.svg) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 34px;
    height: auto;
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-delay: 1.4s;
}

.section-title .kira-gold::after {
    background: url(../../img/cast/deco-kira-gold.svg) no-repeat center/contain;
}

.section-title .kira-coral::after {
    background: url(../../img/cast/deco-kira-coral.svg) no-repeat center/contain;
}

.section-title.center .kira::after {
    top: -40px;
}

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

.section-title .jp {
    line-height: 1.5;
    font-weight: 500;
    font-size: clamp(2.4rem, 1.5vw, 3.0rem);
    font-family: var(--serif);
}

.section-title:not(:has(>.en)) .jp {
    font-size: clamp(2.8rem, 1.7vw, 3.6rem);
}


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

    .section-title .en {
        font-size: clamp(3.2rem, 9cqw, 7.0rem);
        line-height: 1;
    }

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

    .section-title .en.sp-min02 {
        font-size: clamp(2.2rem, 7cqw, 4.0rem);
    }

    /* .section-title.center .en.appeartext::after {
        left: 33%;
        top: -30px;
        width: 25px;
    } */

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

    .section-title:not(:has(>.en)) .jp {
        font-size: clamp(2.0rem, 5.8cqw, 2.4rem);
    }

    .section-title .en::first-letter,
    .section-title .en span:first-child {
        margin-right: 5px;
    }
}

/* -----------------------------------------------------------
    h4-title
-------------------------------------------------------------- */
.h4-title {
    font-size: clamp(2.4rem, 1.5cqw, 2.8rem);
    color: var(--navy);
    line-height: 1.5;
    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: #DDBDB4;
}

@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);
    line-height: 1.5;
    letter-spacing: .08em;
    position: relative;
    margin: 0 0 25px;
    padding-left: 20px;
}

.h5-title::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 15px;
    height: 15px;
    background: url(../../img/cast/deco-kira02-yellow.svg) no-repeat center/contain;
    aspect-ratio: 1/1;
}

@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);
    line-height: 1.5;
    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;
    }
}

/* -----------------------------------------------------------
   cmn-marquee-wrap
-------------------------------------------------------------- */

*:has(> .cmn-marquee-wrap) {
    position: relative;
    z-index: 1;
}

.cmn-marquee-wrap {
    position: absolute;
    top: 70px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    width: max-content;
    animation: cmn-marquee-loop 30s linear infinite;
    z-index: -1;
}

.cmn-marquee-wrap .cmn-marquee-txt {
    display: inline-block;
    flex-shrink: 0;
    font-size: 14.0rem;
    color: #fff;
    line-height: 1;
    font-weight: 400;
    letter-spacing: .15em;
    padding-right: .4em;
    font-family: var(--en);
}

.cmn-marquee-wrap.gray .cmn-marquee-txt {
    color: #F8F8F8;
}

@keyframes cmn-marquee-loop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

@media screen and (max-width: 768px) {
    .cmn-marquee-wrap {
        top: 5vw;
        animation-duration: 25s;
    }

    .cmn-marquee-wrap .cmn-marquee-txt {
        font-size: 7.0rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cmn-marquee-wrap {
        animation: none;
    }
}

/* -----------------------------------------------------------
    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: #F9F5F1;
    transform: scaleX(0);
    transition: all 0.3s;
    transition-property: transform;
    z-index: -1;
}

.btn-more>*::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../../img/cast/deco-kira02-coral.svg) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 15px;
    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;
}

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

    .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;
    }
}


/* -----------------------------------------------------------
    catch
-------------------------------------------------------------- */
.catch {
    font-size: clamp(3.4rem, 2.7cqw, 5.0rem);
    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(--coral);
}

@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: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #D49D73;
}

.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: #D49D73;
    font-weight: 600;
    line-height: 1.4;
}

.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: 0px;
    color: var(--green);
    font-family: var(--webicon);
    font-weight: bold;
}

.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 #D6796F;
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
}

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

.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 .cmn-box-ttl+ul {
    margin-top: 10px;
}

/*ベージュ背景*/
.cmn-txt-box.is-beige {
    background-color: #F9F5F1;
    border: none;
}

.cmn-txt-box.is-beige .cmn-box-ttl {
    color: #B29183;
}

/*ゴールド系*/
.cmn-txt-box.is-gold {
    background-color: #fff;
    border-color: var(--gold);
}

.cmn-txt-box.is-gold .cmn-box-ttl {
    color: var(--gold);
}

@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;
        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;
    }
}

/*-------------------------------------
    cmn-btn-circle
-------------------------------------*/
.cmn-btn-circle {
    aspect-ratio: 1/1;
    width: 50px;
    height: auto;
    background: url(../../img/cast/deco-btn-circle-white.svg) no-repeat center/contain;
    /*ゆっくり回転する*/
    animation: rotate 10s linear infinite;
}

.cmn-btn-circle.coral {
    background: url(../../img/cast/deco-btn-circle-coral.svg) no-repeat center/contain;
}

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


/*-------------------------------------
    ft-contact-area
-------------------------------------*/
.contents section:last-child {
    padding-bottom: 15vw;
}

.ft-contact-area {
    position: relative;
    -webkit-mask-image: url("../../img/footer-cv-mask.svg");
    mask-image: url("../../img/footer-cv-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background-color: #1d191a;
    margin-top: -10vw;
    aspect-ratio: 1600/1112;
}

.ft-contact-area .inner {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ft-contact-area video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    z-index: -10;
    transform: scale(-1, 1);
}

.ft-contact-area .footer-cv-block {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: clamp(50px, 5vw, 100px);
    display: inline-block;
}

.ft-contact-area .section-title .en,
.ft-contact-area .section-title .jp {
    color: #fff;
}

.ft-contact-area .footer-cv-catch {
    font-size: clamp(3.0rem, 2.2vw, 4.0rem);
    color: #fff;
}

.ft-contact-area .footer-cv-btn-wrap {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.ft-contact-area .footer-cv-btn.line a {
    background: var(--cv-line);
}

.ft-contact-area .footer-cv-btn.mail a {
    background: var(--cv-mail);
}

.ft-contact-area .footer-cv-btn a {
    padding: 18px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    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;
    border-radius: 10px;
}

.ft-contact-area .footer-cv-btn a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url(../../img/cast/deco-kira02-white.svg) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 20px;
    height: auto;
    right: 20px;
}

.ft-contact-area .footer-cv-btn-txt-wrap {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.ft-contact-area .footer-cv-btn-icon-wrap {
    width: 50px;
    height: auto;
    text-align: center;
}

.ft-contact-area .footer-cv-btn-catch {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 600;
}

.ft-contact-area .footer-cv-btn-txt {
    font-size: 2.0rem;
    font-weight: 600;
}

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

    .ft-contact-area .footer-cv-btn a:hover::after {
        transform: translate(5px, -50%);
    }
}

@media screen and (max-width: 768px) {
    .contents section:last-child {
        padding-bottom: 100px;
    }

    .ft-contact-area {
        -webkit-mask-image: url("../../img/footer-cv-mask-sp.svg");
        mask-image: url("../../img/footer-cv-mask-sp.svg");
        margin-top: -60px;
        /* aspect-ratio: 375/785;
        padding: 0 0 clamp(60px, 20vw, 100px); */

        height: clamp(785px, 218vw, 1000px);
        aspect-ratio: auto;
        padding-bottom: 60px;
        -webkit-mask-size: auto 100%;
        mask-size: auto 100%;
    }

    .ft-contact-area video {
        height: 65%;
        object-position: center;
    }

    .ft-contact-area .inner {
        align-items: flex-end;
    }

    .ft-contact-area .footer-cv-block {
        border-radius: 10px;
        padding: 5vw;
        display: inline-block;
        text-align: center;
    }

    .ft-contact-area .footer-cv-catch {
        font-size: clamp(2.0rem, 5.2cqw, 3.0rem);
        color: #fff;
        letter-spacing: 0;
    }

    .ft-contact-area .footer-cv-btn a {
        padding: 5vw;
        gap: 3vw;
        border-radius: 2vw;
    }

    .ft-contact-area .footer-cv-btn-icon-wrap {
        width: 8vw;
        flex-shrink: 0;
    }

    .ft-contact-area .footer-cv-btn-catch {
        font-size: 1.3rem;
        text-align: left;
    }

    .ft-contact-area .footer-cv-btn-txt {
        font-size: 1.7rem;
        text-align: left;
        line-height: 1.5;
    }

    .ft-contact-area .footer-cv-btn a::after {
        width: 4vw;
        right: 2vw;
    }
}