@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --base-beige: #F6F1EF;
    --base-white: #FAF7F6;
    --accent-black: #3C3835;
    --accent-pink: rgba(209, 126, 102, 0.70);
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Zen Old Mincho",
        "Yu Mincho",
        "YuMincho",
        "ヒラギノ明朝 Pro",
        "Hiragino Mincho Pro",
        "MS P明朝",
        "MS PMincho",
        serif;
    font-style: normal;
    color: var(--accent-black);
    background-color: var(--base-beige);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.map {
    max-width: 100%;
    height: auto;
}

.pcBr {
    display: none;
}

.titleframe {
    margin-top: 98px;
    margin-left: 6.9vw;
    display: flex;
    align-items:flex-start;
    justify-content:flex-start;
}

.no__bra {
    font-family: Cormorant;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
}

.no__num {
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1px;
}

.title {
    font-family: Cormorant;
    font-size: 5.0rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.5px;
}

.moreframe {
    text-align: right;
}

.more {
    font-family: Cormorant;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
    display: inline-block;
}

.allframe {
    text-align: right;
    position: relative;
    z-index: 5;
}

.all {
    font-family: Cormorant;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
    display: inline-block;
}

.arrow {
    width: 31px;
    height: 21px;
    margin-left: 13px;
}

.backtxt {
    color: rgba(60, 56, 53, 0.03);
    font-family: Cormorant;
    font-size: 11.0rem;
    font-weight: 400;
    line-height: normal;
}

.backtxtpc {
    display: none;
}

.btn--fix {
    position: fixed;
    bottom: 4vh;
    right: 0px;
    left: 0px;
    z-index: 100;
    transition: 1s;
}

.btn--fix.active {
    opacity: 0;
    z-index: -100;
}

.btn--fixtop {
    position: fixed;
    bottom: 4vh;
    right: 0px;
    left: 0px;
    z-index: 100;
    transition: 1s;
}

.btn--fixtop.active {
    opacity: 0;
    z-index: -100;
}

.whbtn {
    display: inline-block;
    width: 242px;
    height: 59px;
    color: var(--accent-black);
    background-color: var(--base-white);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.16px;
    border-radius: 10px;
    transition: 0.6s;
    padding-top: 20px;
    margin-top: 20px;
    position: relative;
    padding-right: 15px;
}

.whbtn::before{
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url(../images/arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.6s;
}

.fadeIn {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
    transition: opacity 1s,transform 1s,filter 0.7s;
}

.fadeIn--img {
    filter: blur(1px);
}

.fadeIn.on {
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
}

.fadeIn--img.on {
    filter: blur(0px);
}
  
/* .common pc */
@media screen and (min-width:835px) {

    .pcBr {
        display: block;
    }

    .spBr {
        display: none;
    }

    .titleframe {
        margin-top: 182px;
        margin-left: 14.9vw;
        display: flex;
        align-items:flex-start;
        justify-content:flex-start;
    }
    
    .no__bra {
        font-size: 3.0rem;
        letter-spacing: 0.3px;
    }
    
    .no__num {
        font-size: 2.0rem;
        line-height: 1;
        letter-spacing: 0.2px;
    }
    
    .title {
        font-size: 10.0rem;
        line-height: 1;
        letter-spacing: 0.5px;
    }

    .moreframe {
        line-height: 1;
    }

    .more {
        font-size: 2.0rem;
        letter-spacing: 0.2px;
        overflow: hidden;
        color: transparent;
        text-shadow: 0 -1.5em 0 var(--accent-black), 0 0 0 var(--accent-black);
        transition: 0.3s;
    }

    .more:hover {
        text-shadow: 0 0 0 var(--accent-black), 0 1.5em 0 var(--accent-black);
    }

    .all {
        font-size: 2.0rem;
        display: inline-block;
        overflow: hidden;
        color: transparent;
        text-shadow: 0 -1.5em 0 var(--accent-black), 0 0 0 var(--accent-black);
        transition: 0.3s;
    }
    
    .all:hover {
        text-shadow: 0 0 0 var(--accent-black), 0 1.5em 0 var(--accent-black);
    }

    .arrow {
        width: 34px;
        height: 23px;
    }

    .backtxt {
        display: none;
    }

    .backtxtpc {
        display: block;
        color: rgba(60, 56, 53, 0.03);
        font-family: Cormorant;
        font-size: 18.0rem;
        font-weight: 400;
        line-height: normal;
        white-space: nowrap
    }

    .btn--fix {
        position: fixed;
        left: 6.75vw;
    }

    .btn--fixtop {
        position: fixed;
        left: 6.75vw;
    }

    .whbtn {
        width: 223px;
        height: 59px;
        font-size: 1.8rem;
        line-height: 1.11;
        letter-spacing: 0.18px;
        padding-top: 18px;
        position: relative;
        margin-right: 37px;
        border: 0.3px solid rgba(109,109,109,0);
        transition: 0.5s;
    }

    .whbtn:hover {
        border: 0.3px solid #6D6D6D;
    }

    .fadeIn {
        transition: opacity 1.5s,transform 1.5s,filter 1s;
    }
}

/*==========================
header
==========================*/

.logo__sp{
    width: 48px;
    height: auto;
    margin: 9px 0px 0px 3.2vw;
}

.logo__pc {
    display: none;
}

.nav {
    background-color: var(--base-beige);
    width: 100%;
    height: 100vh;
    padding-top: 93px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

.nav.active {
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
}

.nav__list {
    display: flex;
    align-items:flex-start;
    justify-content:center;
}

.nav__item {
    font-family: Cormorant;
    color: var(--accent-black);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.15;
    transition: 0.4s;
}

.nav__item--left {
    margin-top: 45px;
}

.nav__item--leftsub {
    color: #6D6D6D;
    font-size: 1.4rem;
    line-height: 1.0;
    margin-top: 12px;
    margin-left: 10px;
    position: relative;
}

.nav__item--leftsub::after {
    content: '';
    display: block;
    background-color: #6D6D6D;
    width: 5px;
    height: 0.3px;
    position: absolute;
    top: 7px;
    left: -12px;
}


.nav__item--leftsp {
    margin-top: 21px;
}

.nav__right {
    margin-left: 72px;
}

.nav__item--right {
    margin-top: 30px;
}

.insta__pc {
    display: none;
}

.insta__sp {
    position: absolute;
    top: 600px;
}

.nav__trial {
    position: relative;
    margin-top: 67px;
    color: var(--accent-black);
}

.nav__trial::before {
    content: '';
    display: block;
    width: 76vw;
    height: 0.3px;
    background-color: var(--accent-black);
    position: absolute;
    top: -25px;
    bottom: 0px;
    right: 0;
    left: 0;
    margin: 0px auto;
}

.nav__trialtitle {
    font-family: Cormorant;
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.nav__trialsub {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 0.72px;
    text-align: center;
}

.btn {
    display: block;
    width: 191px;
    height: 45px;
    color: #fff;
    background-color: var(--accent-pink);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.78;
    letter-spacing: 0.14px;
    text-align: center;
    border-radius: 8px;
    backdrop-filter: blur(2.5px);
    transition: 0.4s;
    padding: 9px 0px 0px 18px;
    margin: 20px auto 0px;
}

.btn::before{
    content: '';
    display: inline-block;
    width: 17px;
    height: 18px;
    background-image: url(../images/trial_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}


.header__btn {
    width: 40px;
    height: 15px;
    position: fixed;
    top: 25px;
    right: 5.3vw;
    z-index: 510;
}

.header__btn_line {
    display: block;
    width: 36px;
    height: 0.7px;
    background-color: #6D6D6D;
    transition: 0.5s;
}

.header__btn_line--1 {
    position: absolute;
    top: 12px;
}

.header__btn_line--2 {
    position: absolute;
    top: 18px;
}

.header__btn_line--1.active {
    transform: rotate(15deg);
    position: absolute;
    top: 12px;
}

.header__btn_line--2.active {
    transform: rotate(-15deg);
    top: 12px;
}

/* .header pc */

    @media screen and (min-width:744px) {

        .nav {
            padding:80px 11vw 0px;
        }

        .nav__list {
            justify-content:center;
        }

        .nav__item {
            font-size: 4.0rem;
            line-height: 1.52;
        }

        .nav__item:hover {
            opacity: 0.5;
        }

        .nav__item--left {
            margin-top: 56px;
        }

        .nav__item--leftsub {
            font-size: 1.6rem;
            line-height: 1.0;
            margin-top: 16px;
        }

        .nav__item--leftsp {
            margin-top: 46px;
        }

        .nav__right {
            margin-left: 124px;
        }

        .nav__item--right {
            margin-top: 36px;
        }

        .insta__pc {
            display: block;
            transition: 0.4s;
        }

        .insta__pc:hover {
            opacity: 0.5;
        }
        
        .insta__sp {
            display: none;
        }

        .nav__trial {
            display: flex;
            align-items:center;
            justify-content:center;
            position: relative;
            margin: 100px 0px 100px;
        }

        .nav__trial::before {
            content: '';
            display: block;
            width: auto;
            height: 0.5px;
            position: absolute;
            top: -45px;
            margin: 0px;
        }

        .nav__trialtitle {
            font-size: 4.5rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .nav__cvarea {
            margin-left: 35px;
        }

        .nav__trialsub {
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.81;
            letter-spacing: 1.32px;
        }

        .btn {
            display: block;
            width: 223px;
            height: 58px;
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.56;
            letter-spacing: 0.16px;
            border-radius: 10px;
            padding-top: 16px;
            margin-top: 17px;
        }

        .btn::before{
            width: 20px;
            height: 20px;
        }

        .btn:hover {
            background-color: rgba(214,169,156,0.7);
        }

    }


    @media screen and (min-width:835px) {

        .logo__sp {
            display: none;
        }

        .nav {
            padding:15vh 0px 0px 17vw;
        }

        .nav__list {
            justify-content:flex-start;
        }

        .nav__item {
            font-size: 4.0rem;
            line-height: 1.52;
        }

        .nav__item:hover {
            opacity: 0.5;
        }

        .nav__item--left {
            margin-top: 56px;
        }

        .nav__item--leftsub {
            font-size: 1.6rem;
            line-height: 1.0;
            margin-top: 16px;
        }

        .nav__right {
            margin-left: 124px;
        }

        .nav__item--right {
            margin-top: 36px;
        }

        .insta__pc {
            display: block;
            transition: 0.4s;
        }

        .insta__pc:hover {
            opacity: 0.5;
        }
        
        .insta__sp {
            display: none;
        }

        .nav__trial {
            display: flex;
            align-items:center;
            justify-content:flex-start;
            position: relative;
            margin: 100px 0px 100px;
        }

        .nav__trial::before {
            content: '';
            display: block;
            width: 525px;
            height: 0.5px;
            position: absolute;
            top: -45px;
            margin: 0px;
        }

        .nav__trialtitle {
            font-size: 4.5rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .nav__cvarea {
            margin-left: 35px;
        }

        .nav__trialsub {
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.81;
            letter-spacing: 1.32px;
        }

        .btn {
            display: block;
            width: 223px;
            height: 58px;
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.56;
            letter-spacing: 0.16px;
            border-radius: 10px;
            padding-top: 16px;
            margin-top: 17px;
        }

        .btn:hover {
            background-color: rgba(214,169,156,0.7);
        }

        .header__btn {
            top: 50vh;
            left: 3.8vw;
            height: 30px;
        }

    }


    @media screen and (min-width:2000px) {

        .nav {
            padding:15vh 0px 0px 12vw;
        }

        .nav__trial::before {
            width: 563px;
        }

        .nav__cvarea {
            margin-left: 92px;
        }

        .header__btn {
            width: 70px;
        }

        .header__btn_line--2 {
            top: 21px;
        }

        .header__btn_line {
            width: 67px;
        }

        .nav__right {
            margin-left: 200px;
        }

    }


/*==========================
trial
==========================*/

.trial {
    background-image: url(../images/trial.jpg);
    background-size: cover;
    background-position: 24% 50%;
    background-repeat: no-repeat;
}

.titleframe--trial {
    padding-top: 98px;
    margin-left: 10.8vw;
}

.trial__content {
    padding: 58px 12.5vw 110px;
}

.trial__title {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 1.44px;
}

.trial__txt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.78;
    margin-top: 30px;
}

.btn--cv {
    width: 242px;
    height: 58px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.56;
    letter-spacing: 0.16px;
    border-radius: 10px;
    margin-top: 64px;
    padding: 15px 0px 0px 6px;
    position: relative;
}

.btn--cv::before {
    width: 19px;
    height: 19px;
    left: 29px;
}

.btn--cv::after{
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url(../images/arrow_white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.6s;
}

/* .trial pc */
@media screen and (min-width:835px) {

    .trial {
        background-position: 24% 50%;
        display: flex;
        align-items:flex-start;
        justify-content:flex-end;
        padding: 170px 5vw 170px 11vw;
        gap: 94px;
    }

    .titleframe--trial {
        padding-top: 64px;
        margin: 0px;
    
    }
  
    .trial__content {
        text-align: center;
        padding: 0px;
    }

    .trial__title {
        font-size: 3.2rem;
        line-height: 1.62;
        letter-spacing: 1.92px;
    }

    .trial__txt {
        font-size: 1.6rem;
        line-height: 1.87;
        letter-spacing: 0.16px;
        margin-top: 32px;
        width: auto;
    }

    .btn--cv {
        width: 237px;
        height: 58px;
        margin-top: 55px;
        position: relative;
    }
}

@media screen and (min-width:1236px) {

    .trial {
        padding: 170px 7vw;
        gap: 107px;
    }

    .trial__txt {
        width: 35.2vw;
    }

}

@media screen and (min-width:1920px) {

    .trial {
        padding: 170px 11vw;
        gap: 212px;
    }

}

/*==========================
footer
==========================*/

.footer__group {
    position: relative;
    padding: 127px 0px 59px;
}

.footer__title {
    font-family: Cormorant;
    font-size: 5.0rem;
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: 0.5px;
    margin: 0px 0px 0px 7.7vw;
    position: relative;
}

.footer__title::after {
    content: '';
    display: block;
    width: 84vw;
    height: 0.3px;
    background-color: var(--accent-black);
    position: absolute;
    top: 171px;
    bottom: 0px;
    right: 0;
    left: 0; 
}

.footer__nav {
    display: none;
}

.topbtn {
    display: block;
    width: 70px;
    height: 47px;
    text-align: center;
    position: absolute;
    bottom: 59px;
    right: 10vw;
}

.topbtn__arrow {
    width: 36px;
    height: 24px;
}

.topbtn__txt {
    font-family: Cormorant;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
    margin-top: 6px;
}

/* .footer pc */
@media screen and (min-width:835px) {

    .footer__group {
        padding: 0px;
    }

    .footer__frame {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        /* gap: 37vw; */
    }

    .footer__title {
        font-size: 10.0rem;
        font-weight: 400;
        line-height: 1.02;
        letter-spacing: 1px;
        margin: 267px 0px 176px 16.5vw;
        position: relative;
    }

    .footer__title::after {
        width: 78vw;
        height: 0.5px;
        position: absolute;
        top: 351px;
    }
    
    .footer__nav {
        display: block;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 70px;
        margin-top: 325px;
        margin-right: 10.2vw;
    }

    .footer__navitem {
        text-align: right;
        font-family: Cormorant;
        font-size: 2.0rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 32px;
        transition: 0.4s;
    }

    .footer__navitem:hover {
        opacity: 0.5;
    }

    .instaicon {
        margin-top: 32px;
        text-align: right;
        transition: 0.4s;
    }

    .instaicon:hover {   
        opacity: 0.5;
    }

    .topbtn {
        display: block;
        width: 100px;
        height: 66px;
        bottom: 30px;
        right: 80px;
        transition: 0.4s;
    }

    .topbtn:hover {
        opacity: 0.5;
    }

    .topbtn__arrow {
        width: 46px;
        height: 31px;
    }

    .topbtn__txt {
        font-size: 2.0rem;
        margin-top: 11px;
    }

}


/*==========================
header(下層用)
==========================*/

/* .header pc */
@media screen and (min-width:835px) {

    /* .logo__sp--other {
        display: block;
        width: 89px;
        height: 95px;
        margin: 2.8vh 0px 0px 1.9vw;
    } */
    
    .logo__pc--other {
        display: block;
        width: 89px;
        height: 95px;
        margin: 2.8vh 0px 0px 1.9vw;
    }
}

@media screen and (min-width:2000px) {

    /* .logo__sp--other {
        width: 113px;
        margin: 2.8vh 0px 0px 2.8vw;
    } */

    .logo__pc--other {
        width: 113px;
        margin: 2.8vh 0px 0px 2.8vw;
    }

}
/*==========================
catch(下層FV)
==========================*/

.catch {
    margin: 59px 7.7vw 0px;
}

.catch__title {
    display: flex;
    align-items:flex-start;
    justify-content:flex-start;
    overflow: hidden;
}

.catch__no {
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 2.3s cubic-bezier(.165,.84,.44,1) forwards;
}

.catch__no--non {
    opacity: 1;
    animation: none;
    transform: none;
}

.no__bra--catch {
    font-size: 2.0rem;
    letter-spacing: 0.2px;
}

.no__num--catch{
    font-size: 1.5rem;
    letter-spacing: 0.15px;
}

.catch__txt {
    font-family: Cormorant;
    font-size: 6.5rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.65px;
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 2.3s cubic-bezier(.165,.84,.44,1) forwards;
}


.catch__txt--non {
    opacity: 1;
    animation: none;
    transform: none;
}


.catch__container {
    width: 84.5vw;
    height: 461px;
    overflow: hidden;
    position: relative;
}

.catch__img {
    width: 84.5vw;
    height: 461px;
    object-fit: cover;
    object-position: 91% 50%;
    transform: scale(1.05);
    opacity: 0;
    animation: zoomIn 2s cubic-bezier(.165, .84, .44, 1) forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* .catch pc */
@media screen and (min-width:835px) {

    .catch {
        margin: 52.4px 0px 0px 15.2vw;
    }
    
    .no__bra--catch {
        font-size: 3.2rem;
        letter-spacing: 0.32px;
    }
    
    .no__num--catch{
        font-size: 2.4rem;
        letter-spacing: 0.24px;
    }
    
    .catch__txt {
        font-size: 13.0rem;
        letter-spacing: 1.3px;
    }

    .catch__container {
        width: 79.6vw;
        height: 655px;
    }

    .catch__img {
        width: 79.6vw;
        height: 655px;
        object-fit: cover;
    }
}

@media screen and (min-width:1920px) {

    .catch__container {
        height: auto;
    }

    .catch__img {
        height: auto;
    }

}