@charset "utf-8";
/* ==========================
common
============================*/
:root{
    --main: #59322F;
    --white: #FFFFFF;
    --pink: #E71259;
    --mainpink: #FFEBED;
    --palepink: #E9B7D0;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body{
    font-family: "Shippori Mincho", "BIZ UDPGothic", "EB Garamond", "Cormorant Garamond",sans-serif;
    font-style: normal;
    color: var(--main, #59322F);
    background-color: var(--white, #ffffff);
    line-height: 1.5;
    font-weight: 400;
}

img{
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.txt__en{
    font-family: "EB Garamond";
}

.sp__only{
    display: none;
}

.title{
    color: var(--brown, #59322F);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 30px; /* 115.385% */
    letter-spacing: 1px;
    padding-top: 120px;
}

small{
    font-size: 100%;
}

/* ------- common SP 1024 start-------*/
@media screen and (max-width:1024px) {
    html{
        scroll-padding-top: 75px;
    }

    .sp__only{
        display: block;
    }

    .pc_only{
        display: none;
    }

    .title{
        font-size: 2.2rem;
        padding-top: 50px;
    }
}

/* ==========================
Loading Page
============================*/
.contents {
    position: fixed;   
    display: grid;  
    place-items: center;    
    width: 100vw;    
    height: 100vh;   
    box-sizing: border-box;
    background-color: var(--mainpink, #FFEBED);  
    overflow: hidden;
    z-index: 99999;
}

.loading-area{
    position: relative;
}

.loading-logo{
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translate(-55%, -50%);
    width: 210px;
    height: 63px;
    box-shadow: none;
}

.loading-area::after{
    display: block;
    position: absolute;
    content: "";
    left: 50%;    
    top: 50%;   
    width: 210px;
    height: 85px;
    transform: translate(-55%, -64%);
    background-image:url(../images/p2/logo.png);
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
    animation: textSlide 2s infinite linear;
}

@keyframes textSlide {

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

    50% {
        clip-path: polygon(0 0, 47% 0, 54% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
    
.loading-text{   
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 150%);
    color: #FFF;
    font-family: "EB Garamond";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 30px; /* 125% */
    /* text-transform: uppercase; */
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
    0% {
        transform: translate(-50%, 180%);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 150%);
    }
}


/* end of Loading */

.loaded{
    display: none;
}

.container.out{
    display: block;
}

/* ------- Loading Page SP 1024 start-------*/
@media screen and (max-width:1024px) {

    .loading-logo{
        top: -30%;
        left: 50%;
        transform: translate(-55%, -100%);
        width: 120px;
        height: 38px;
    }
    
    .loading-area::after{
        left: 50%;    
        top: 50%;   
        width: 122px;
        height: 64px;
        transform: translate(-55%, -95%);
    } 

    .loading-text{   
        left: 50%;
        top: 50%;
        transform: translate(-50%, 150%);
        font-size: 2rem;
    }

    @keyframes fadeup {
        0% {
            transform: translate(-50%, 50%);
            opacity: 0;
          }
          80% {
            opacity: 1;
          }
          100% {
            opacity: 1;
            transform: translate(-50%, 10%);
          }
    }

}


/* ==========================
fadeIn
============================*/

.fadeIn{
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated{
    transform: translate(0, 0);
    opacity: 1;
}

/* ==========================
header
============================*/

.pch{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 160px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    padding: 0 4.86%;
}

.header__topic img{
    width: 115px;
    box-shadow: none;
}

.header__right{
    display: flex;
    gap: 3vw;
}
.nav__list{
    display: flex;
    gap: 4vw;
    align-items: center;
}

.nav__item a{
    display: block;
    color: var(--white, #FFF);
    font-size: 1.6rem;
    line-height: 31px; /* 193.75% */
    letter-spacing: 0.112px;
    text-shadow: 1px 2px 2px #d8c9c8;
    position: relative;
}

.nav__item a::after { 
    position: absolute;
    left: 0;
    content: "";
    width: 100%; 
    height: 1px;
    background: var(--white, #FFFFFF);
    
    bottom: -2px;
    transform: scale(0, 1);
    transition: transform 0.3s;
    transform-origin: right top;
}

.nav__item a:hover{
    opacity: 0.8;
}

.nav__item a:hover::after { 
    transform: scale(1, 1); 
    transform-origin: left top;
}

.nav__item__cv a{
    background-color:#EC8698;
    width: 212px;
    height: 64.8px;
    border-radius: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--white, #FFF);
    font-family: "EB Garamond";
    font-size: 1.7rem;
    line-height: 37.881px; /* 222.83% */
    letter-spacing: 0.119px;
    transition: 0.5s all;
}

.nav__item__cv a:hover{
    background-color:#FFEBED;
    color: var(--main, #59322F);
}

.txt_ja{
    color: var(--white, #FFFFFF);
    font-size: 1.7rem;
    line-height: 37.881px;
    letter-spacing: 0.119px;
}

.sph{
    display: none;
}

/* ------- header SP 1024 start-------*/
@media screen and (max-width:1024px) {
    .pch{
        display: none;
    }
    .sph{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5%;
        height: 75px;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
    }

    .header__left img{
        width: 82px;
        box-shadow: none;
    }

    /* ハンバーガーメニュー */
    .hamburger_menu {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 120;
    }

    .hamburger_menu span {
        position: absolute;
        background-color: var(--main, #59322F);
        height: 2px;
        width: 100%;
        border-radius: 1px;
        transition: all 0.4s ease-in-out;
    }

    .hamburger_menu span:nth-of-type(1) {
        top: 10px;
    }

    .hamburger_menu span:nth-of-type(2) {
        bottom: 10px;
    }
    /* クリック時に横アイコンが斜めになる */
    .hamburger_menu.active span:nth-of-type(1) {
        transform: translateY(4px) rotate(-45deg);
        background-color: var(--main, #59322F);
    }

    .hamburger_menu.active span:nth-of-type(2) {
        transform: translateY(-4px) rotate(45deg);
        background-color: var(--main, #59322F);
    }

    /* nav */
    .nav{
        opacity: 0.97;
        background: var(--mainpink, #FFEBED);
        width: 100%;
        height: 100vh;
        padding: 24px 6.4%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        transform: translateX(-100%);
        transition: 0.4s;
        overflow-y: scroll;
        overscroll-behavior: contain;
    }

    .nav_wrapper{
        min-height: calc(100vh + 1px);
    }

    .nav.active{
        transform: translateX(0);
    }

    .nav__logo{
        width: 145px;
        display: block;
        margin: 0 auto;
        margin-top: 96px;
        box-shadow: none;
    }

    .nav__logotxt{
        font-size: 1.7rem;
        font-weight: 700;
        letter-spacing: -1.36px;
        text-align: center;
        margin-top: 10px;
    }

    .nav__list{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 45px;
        margin-top: 38px;
        margin-left: 30px;
    }

    .nav__item a{
        font-size: 2rem;
        font-weight: 700;
        line-height: 42px; /* 210% */
        color: var(--main, #59322F);
        text-shadow: none;
    }

    /* ボーダー部分 */
    .nav__item{
        position: relative;
    }

    .nav__ja{
        font-size: 2rem;
        font-weight: 700;
        line-height: 42px; /* 210% */
    }

    .nav__item::after{
        display: block;
        position: absolute;
        content: "";
        background-color: var(--white,#FFFFFF);
        width: 100%;
        height: 1px;
        bottom: -30px;
        left: -1%;
    }

    .header__cv{
        width: 96px;
        margin-left: 0px;
        cursor: pointer;
    }

    .header__btn{
        display: block;
        width: 45px;
    }

    .nav__en{
        font-family: "EB Garamond";
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 18px; /* 128.571% */
        letter-spacing: 0.28px;
        margin-top: -3px;
    }

    .nav__item a:hover::after { 
        display: none;
    }

    .nav__item__cv a{
        width: 130px;
        height: 35px;
        border-radius: 60px;
        font-size: 1.4rem;
        line-height: 20px; /* 142.857% */
        letter-spacing: 0.42px;
    }
}

/* ==========================
Top
============================*/
.Top__pic{
   position: relative;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   margin: 0 auto;
}

.Top__pic01{
   background-image: url(../images/p2/top.jpg);
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   position: absolute;
   top:0;
   left:0;
   background-position: center;
}

.Top__sp{
    display: none;
}

.Top__txt{
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.Top__title{
    position: absolute;
    color: var(--white, #FFFFFF);
    font-family: "EB Garamond";
    font-size: 7rem;
    line-height: 70px; /* 100% */
    top: -145px;
    left: 6%;
}

.Top__subtitle{
    position: absolute;
    color: var(--white, #FFFFFF);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 22px; /* 88% */
    letter-spacing: 4px;
    top: -63px;
    left: 6%;
}

/* ------- Top SP 1024 start-------*/
@media screen and (max-width:1024px) {

    .Top__sp{
        display: block;
    }
    
    .Top__title{
        top: -175px;
    } 
    
     .Top__subtitle{
        top: -25px;
        left: 6%;
    } 
}

/* =============================
About
================================ */

.about__individual, .about__studio{
    width: 100%;
    background-color: #E2739B;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
}

.individual__left, .studio__right{
    display: block;
    margin: 0 1%;
    padding: 93px 5% 95px;
}

.individual__title{
    color: var(--white, #FFF);
    text-align: center;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 132%; /* 59.4px */
    letter-spacing: 0.9px;
}

.individual__txt, .studio__txt{
    display: block;
    color: var(--white, #FFF);
    font-size: 23px;
    line-height: 42px; /* 182.609% */
    width: 460px;
    margin: 56px auto 0px;
}

.features, .features02{
    color: var(--white, #FFF);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 30px; /* 136.364% */
    letter-spacing: 1.1px;
    width: 166px;
    height: 45px;
    padding-top: 6px;
    text-align: center;
    border-radius: 90px;
    background-color: var(--palepink, #E9B7D0);
    margin-top: 50px;
}

.features02{
    background-color: var(--pink, #E71259);
    opacity: 0.5;
}

.features__list{
    display: flex;
    flex-direction: column;
    gap: 3px 15px;
    justify-content: center;
    align-items: flex-start;
    width: 585px;
    height: 228px;
    background-color: var(--white, #FFF);
    margin-top: 10px;
    padding: 5%;
    border-radius: 5px;
}

.features__item{
    display: flex;
    align-items: center;
    gap: 15px;
}

.features__details{
    display: flex;
    gap: 3px 15px;
    justify-content: center;
    align-items: center;
    width: 485px;
    height: 120px;
    background-color: var(--white, #FFF);
    margin-top: 10px;
    padding: 5%;
    border-radius: 5px;
}

.features__flower{
    width: 23px;
    height: 25px;
}

.features__txt{
    font-size: 2.4rem;
    line-height: 56px; /* 233.333% */
}

.individual__right{
    width: 700px;
    margin: 25px 0px;
}

.studio__left{
    width: 700px;
    margin: 25px 0px; 
}

.about__studio{
    background-color: var(--palepink, #E9B7D0);
}

.studio__right{
    padding: 120px 5% 90px;
}

.studio__title{
    color: var(--white, #FFF);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 132%; /* 59.4px */
    text-align: center;
}

/* ------- About SP 1024 start-------*/
@media screen and (max-width:1024px) {

    .about__individual, .about__studio{
        padding: 0 2%;
        flex-direction: column;
    }
    
    .individual__left{
        padding: 40px 2% 15px;
        width: 100%;
    }
    
    .studio__right{
        margin: 0 auto;
    }
    
    .individual__title{
        font-size: 2.4rem;
        line-height: 132%; /* 33px */
        letter-spacing: 0px;
    }
    
    .individual__txt, .studio__txt{
        font-size: 1.5rem;
        line-height: 28px; /* 200% */
        width: 89%;
        margin: 25px auto 0px;
        text-align: start;
    }
    
    .features, .features02{
        font-size: 1.4rem;
        line-height: 19.265px; /* 137.604% */
        letter-spacing: 0.7px;
        width: 110px;
        height: 29px;
        padding-top: 4px;
        border-radius: 60px;
        margin-top: 35px;
    }
    
    .features__list{
        gap: 8px 10px;
        width: 100%;
        margin-top: 10px;
        padding: 5% 2.5%;
        height: auto;
    }
    
    .features__item{
        gap: 10px;
        margin-left: 2%;
    }
    
    .features__details{
        display: flex;
        width: 100%;
        height: auto;
        margin: 10px auto 0px;
        padding: 7% 1%;
    }
    
    .features__flower{
        width: 15px;
        height: 16px;
    }
    
    .features__txt{
        font-size: 1.4rem;
        line-height: 28px; /* 186.667% */
    }

    .individual__right{
        width: 96%;
        margin: 15px 0px;
    }
    
    .studio__left{
        width: 96%;
        margin: 0px auto 15px;
    }
    
    .about__studio{
        background-color: var(--palepink, #E9B7D0);
        flex-direction: column-reverse;
    }
    
    .studio__right{
        padding: 40px 2% 15px;
    }
    
    .studio__title{
        font-size: 2.5rem;
    }
}

/* =============================
Plan
================================ */

#section--Price{
    background-color: var(--mainpink, #FFEBED);
    padding: 0px 7% 40px;
    position: relative;
    overflow: hidden;
}

#section--Price .title{
    padding-top: 81px;
    margin-bottom: 75px;
    margin-left: 15%;
}

#section--Price .title::after{
    display: block;
    content: "Price";
    position: absolute;
    color: var(--pink, #E71259);
    font-family: "MonteCarlo";
    font-size: 13rem;
    font-weight: 400;
    line-height: 70px; /* 53.846% */
    opacity: 0.12;
    left: 22%;
    top: 56px;
}

.price__plan{
    display: block;
    margin: 50px auto 0px;
    width: 1192px;
    background-color: var(--white, #FFFFFF);
    border-radius: 5px;
    padding: 50px 60px;
    position: relative;
}

.subtitle{
    font-family: "EB Garamond";
    font-size: 5rem;
    line-height: 70px; /* 140% */
    text-align: center;
}

.price__plan .subtitle::after{
    display: block;
    content: "";
    position: absolute;
    background-image: url(../images/p2/price_flower01.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 180px;
    height: 205px;
    top: -178px;
    left: 91%;
}

.plan__top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    gap: 30%;
    padding: 0 3%;
}

.plan__top h4{
    font-size: 4rem;
    font-weight: 700;
    line-height: 132%; /* 52.8px */
    letter-spacing: 0.4px;
}

.plan__top__list{
    display: block;
}

.plan__top__item01{
    font-size: 4rem;
    font-weight: 700;
    line-height: 132%; /* 52.8px */
    letter-spacing: 0.8px;
}

.plan__top__item02{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 182%; /* 29.12px */
}

.plan__bottom{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15%;
}

.plan__txt{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan__txt__item01, .plan__txt__item02{
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 200%; /* 36px */
    letter-spacing: 0.18px;
    width: fit-content;
    height: 60px;
    background-color: var(--mainpink, #FFEBED);
    border-radius: 5px;
    padding: 10px 15px;
}

.plan__txt__item02{
    background-color: #FAD6DA;
}

.plan__attention{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 182%; /* 29.12px */
    max-width: 441px;
    margin-top: 30px;
}

.plan__pic{
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 40px;
}

.plan__pic01, .plan__pic02{
    width: 200px;
}

.plan__pic01{
    margin-top: 75px;
}

.plan__pic02{
    margin-top: -38px;
}

/* ------- Plan SP 1024 start-------*/
@media screen and (max-width:1024px) {
    #section--Price{
        padding: 0px 4% 45px;
    }
    
    #section--Price .title{
        padding-top: 45px;
        margin-bottom: 35px;
        margin-left: 2%;
    }
    
    #section--Price .title::after{
        font-size: 8rem;
        left: 27%;
        top: 25px;
        width: 160px;
    }
    
    .price__plan{
        margin: 35px auto 0px;
        width: 100%;
        padding: 40px 6.7%;
    }
    
    .subtitle{
        font-size: 4rem;
        line-height: 50px; /* 125% */
    }
    
    .price__plan .subtitle::after{
        width: 96px;
        height: 127px;
        top: -25vw;
        left: 77%;
    }
    
    .plan__top{
        display: block;
        margin: 25px auto 0px;
        text-align: center;
    }
    
    .plan__top h4, .plan__top__item01{
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .plan__top__item01{
        letter-spacing: 0.8px;
        margin-top: 12px;
    }
    
    .plan__top__item02{
        font-size: 1.2rem;
        margin-top: 15px;
    }
    
    .plan__bottom{
        display: block;
        margin: 20px auto 0px;
    }
    
    .plan__txt{
        gap: 13px;
    }
    
    .plan__txt__item01, .plan__txt__item02{
        font-size: 1.5rem;
        letter-spacing: 0.15px;
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .plan__attention{
        font-size: 1.3rem;
        max-width: 243px;
        margin: 15px auto;
    }
    
    .plan__pic{
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        margin-top: -15px;
    }
    
    .plan__pic01, .plan__pic02{
        width: 100%;
    }
    
    .plan__pic01{
        margin-top: 50px;
    }
    
    .plan__pic02{
        margin-top: 0px;
    }
}

/* =============================
option
================================ */

/* 動画 */

#section--option{
    background-color: var(--mainpink, #FFEBED);
    padding: 0px 4% 75px;
    position: relative;
}

.others__list::after{
    display: block;
    content: "";
    position: absolute;
    background-image: url(../images/p2/price_flower02.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 135px;
    height: 189px;
    bottom: -15%;
    left: -8%;
}

.price__details{
    display: block;
    margin: 0 auto;
    width: 1192px;
    background-color: var(--white, #FFFFFF);
    border-radius: 5px 5px 0px 0px;
    padding: 40px 5%;
}

.option__movie{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 65px;
    position: relative;
}

.option__right{
    width: 100%;
    z-index: 2;
}

.option__right__title::after{
    display: block;
    position: absolute;
    content: "";
    background-color: var(--mainpink, #FFEBED);
    width: 100%;
    height: 1px;
    top: 72px;
    left: 0%;
}

.option__right__title::after{
    display: block;
    position: absolute;
    content: "";
    background-color: var(--mainpink, #FFEBED);
    width: 275%;
    height: 1px;
    top: 72px;
    left: 0%;
    z-index: 10;
}

.option__right__title{
    font-size: 2.5rem;
    line-height: 132%; /* 33px */
    letter-spacing: 0.5px;
    margin-top: 10px;
    margin-left: 2%;
}

.between{
    display: flex;
    gap: 25px;
}

.movie__ind, .movie__stu{
    color: #FFF;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 132%; /* 34.32px */
    letter-spacing: 2.6px;
    width: 300px;
    height: 73px;
    border-radius: 5px 5px 0px 0px;
    background-color: #E2739B;
    padding-top: 18px;
}

.movie__stu{
    background-color: var(--palepink, #E9B7D0);
}

.option__details{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
}

.option__details__left{
    display: block;
    margin-left: 5%;
    margin-top: 50px;
}

.option__title01, .option__title02, .option__title03{
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 132%; /* 36.96px */
    letter-spacing: -0.56px;
}

.option__title01{
    position: relative;
}

.option__title01::after{
    display: block;
    position: absolute;
    content: "";
    background-color: var(--mainpink, #FFEBED);
    width: 275%;
    height: 1px;
    top: 72px;
    left: -2%;
    z-index: 10;
}

.option__title02{
    margin-top: 55px;
    position: relative;
}

.option__title02::after{
    display: block;
    position: absolute;
    content: "";
    background-color: var(--mainpink, #FFEBED);
    width: 275%;
    height: 1px;
    top: 72px;
    left: -2%;
    z-index: 10;
}

.option__title03{
    margin-top: 60px;
}

.movie__small{
    font-size: 1.8rem;
    line-height: 132%; /* 23.76px */
    margin-left: 15px;
}

.option__details__center, .option__details__right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 57px;
    width: 300px;
    height: 287px;
    padding: 3%;
    border-radius: 0px 0px 5px 5px;
    background-color: #FFF4FA;
}

.movie__item{
    font-size: 2.8rem;
    line-height: 132%; /* 36.96px */
    letter-spacing: 1.4px;
}

/* オプション */

.option__others{
    width: 1192px;
    margin: 0 auto;
    padding: 55px 4%;
    background-color: var(--white, #FFF);
    border-radius: 0px 0px 5px 5px;
}

.others__title{
    font-size: 2.5rem;
    line-height: 132%; /* 33px */
    letter-spacing: 0.5px;
    margin-left: 2%;
}

.others__list{
    margin-top: 30px;
    padding: 0 3%;
}

.others__item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
    position: relative;
}

.others__item::after{
    display: block;
    position: absolute;
    content: "";
    background-color: var(--mainpink, #FFEBED);
    width: 100%;
    height: 1px;
    top: -19px;
    left: -2%;
}

.others__item__txttop, .others__item__price{
    font-size: 2.8rem;
    line-height: 200%; /* 56px */
}

.others__item__price{
    margin-right: 2%;
}

.others__item__txtbottom{
    font-size: 1.8rem;
    line-height: 175%;
}

.others__item__line{
    font-size: 2.4rem;
    line-height: 40px; /* 166.667% */
    margin-right: 2%;
}

.option__sp{
    display: none;
}

/* ------- option SP 1024 start-------*/
@media screen and (max-width:1024px) {

    #section--option{
        padding: 0 4% 12%;
    }

    .others__list::after{
        width: 84px;
        height: 95px;
        left: -5%;
        bottom: -10%;
    }

    .option__pc{
        display: none;
    }
    
    .option__sp{
        display: block;
    }

    .price__details, .option__others{
        width: 100%;
    }
    
    .option__movie{
        display: block;
        margin: 15px auto 0px;
    }

    .option__movie h4{
        font-size: 2.5rem;
        line-height: 70px; /* 175% */
        margin-left: 1%;
        position: relative;
        bottom: -10px;
    }

    .option__movie h4::after{
        display: block;
        position: absolute;
        content: "";
        background-color: var(--mainpink, #FFEBED);
        width: 80.7vw;
        height: 1px;
        bottom: 0px;
        left: -1%;
    }
    
    .movie__details{
        display: block;
    }

    .movie__details__title{
        display: flex;
        align-items: center;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 132%; /* 33px */
        letter-spacing: -0.5px;
        margin-top: 35px;
    }

    .movie__small{
        font-size: 1.6rem;
        line-height: 132%; /* 21.12px */
    }

    .movie__details__figure{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .movie__figure__ind, .movie__figure__stu{
        color: #FFF;
        text-align: center;
        font-size: 1.7rem;
        font-weight: 700;
        line-height: 132%; /* 18.48px */
        letter-spacing: 1.4px;
        width: 100%;
        border-radius: 5px 5px 0px 0px;
        background: #E2739B;
        padding: 3%;
    }

    .movie__figure__stu{
        background: #E9B7D0;
        padding: 3% 2%;
    }

    .movie__details__price{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .movie__price__ind,.movie__price__stu{
        font-size: 2.2rem;
        line-height: 132%; /* 23.76px */
        letter-spacing: 0.9px;
        width: 100%;
        border-radius: 0px 0px 5px 5px;
        background: #FFF4FA;
        text-align: center;
        padding: 7% 0;
        font-weight: 700;
    }

    .price__small{
        font-size: 1.2rem;
        line-height: 132%;
        letter-spacing: 0.7px;
        margin-left: 2%;
        font-weight: 400;
    }
    
    .movie__price__attention{
        font-size: 1.3rem;
        line-height: 140%; /* 18.2px */
        margin-top: 5px;
        text-align: right;
    }

    /* オプション */
    
    .others__list{
        margin-top: 25px;
        padding: 0%;
    }
    
    .others__item{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-top: 30px;
        margin-left: 2%;
    }

    .others__item::after{
        left: 0%;
    }
    
    .others__item__txttop{
        font-size: 2rem;
        font-weight: 700;
    line-height: 130%; /* 26px */
    }
    
    .others__item__txtbottom{
        font-size: 1.3rem;
        line-height: 160%;
    }
    
    .others__item__price{
    font-size: 1.9rem;
    line-height: 200%; /* 36px */
    text-align: right;
    margin-left: auto;
    margin-top: 3px;
    margin-right: 1%;
    font-weight: 700;
    }
    
    .others__item__line{
        font-size: 1.8rem;
        line-height: 200%; /* 36px */
        margin-left: auto;
        font-weight: 700;
    }
}

/* =============================
set
================================ */

#section--set{
    background-image: url(../images/p2/set_background.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
}

.set__white{
    background-color: #FFFFFFbf;
    padding: 50px 2%;
    border-radius: 5px;
    width: 1192px;
    margin: 0 auto;
}

.set__txt{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 87px;
}

.set__txt__title{
    font-size: 4rem;
    font-weight: 700;
    line-height: 132%; /* 52.8px */
    letter-spacing: -0.8px;
    margin-left: 3%;
}

.set__txt__ind, .set__txt__stu{
    color: #FFF;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 132%; /* 34.32px */
    letter-spacing: 2.6px;
    width: 300px;
    height: 73px;
    border-radius: 5px 5px 0px 0px;
    background-color: #E2739B;
    padding-top: 18px;
}

.set__txt__stu{
    background-color: var(--palepink, #E9B7D0);
}


.set__price{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.set__price__ind, .set__price__stu{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 300px;
    border-radius: 0px 0px 5px 5px;
    background-color: var(--mainpink, #FFF4FA);
    padding: 3%;
}

.set__price__total{
    font-size: 1.7rem;
    line-height: 132%; /* 22.44px */
    letter-spacing: 0.85px;
}

.set__price__price{
    font-size: 3rem;
    font-weight: 700;
    line-height: 132%; /* 39.6px */
    letter-spacing: 1.5px;
}

.set__small{
    font-size: 1.8rem;
    line-height: 132%; /* 23.76px */
    letter-spacing: 0.9px;
    margin-left: 6px;
}

.set__attention{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 182%; /* 29.12px */
    margin-top: 12px;
    margin-left: auto;
    text-align: right;
}

.set__bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 75px;
}

.set__pic{
    display: flex;
    gap: 20px;
    margin-top: -45px;
}

.set__pic img{
    width: 231px;
    height: 320px;
    border-radius: 5px;
}

.set__pic01{
    margin-top: -20px;
}

.set__pic02{
    margin-top: 170px;
}

.set__details__title{
    font-size: 2rem;
    font-weight: 700;
    line-height: 132%; /* 26.4px */
    letter-spacing: -0.4px;
    margin-top: 37px;
}

.set__details__list{
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    gap: 15px;
}

.set__details__item01, .set__details__item02{
    color: var(--white, #FFFFFF);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 200%; /* 36px */
    letter-spacing: 0.18px;
    width: fit-content;
    height: 60px;
    background-color: #F06D9C;
    border-radius: 5px;
    padding: 10px 15px;
}

.set__details__item02{
    background-color: #CB7393;
}

.set__details__item__last{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 182%; /* 29.12px */
    max-width: 555px;
}

/* ------- set SP 1024 start-------*/
@media screen and (max-width:1024px) {

    #section--set{
        padding: 35px 0px;
    }
    
    .set__white{
        padding: 40px 3%;
        width: 93%;
    }
    
    .set__txt{
    flex-direction: column;
        justify-content: center;
        margin-top: 25px;
    }
    
    .set__txt__title{
        font-size: 2.8rem;
        letter-spacing: -0.56px;
        margin-left: 0%;
    }
    
    .between{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
    }
    
    .set__txt__ind, .set__txt__stu{
        font-size: 1.7rem;
        letter-spacing: 1.4px;
        width: 100%;
        height: auto;
        padding: 3%;
    }
    
    .set__price{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }
    
    .set__price__ind, .set__price__stu{
        width:100%;
        padding: 7% 3%;
    }
    
    .set__price__total{
        font-size: 1.4rem;
        letter-spacing: 0.7px;
    }
    
    .set__price__price{
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 0.9px;
    }
    
    .set__small{
        font-size: 1.2rem;
        letter-spacing: 0.7px;
        margin-left: 2%;
    }
    
    .set__attention{
        font-size: 1.3rem;
        margin-top: 10px;
        margin-left: 0px;
        text-align: center;
    }
    
    .set__bottom{
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .set__pic{
        display: flex;
        gap: 10px;
        margin-top: 25px;
        justify-content: flex-start;
    }
    
    .set__pic img{
        width: 150px;
        height: 210px;
    }
    
    .set__pic01{
        margin-top: 0px;
    }
    
    .set__pic02{
        margin-top: 50px;
    }
    
    .set__details__title{
        font-size: 1.8rem;
        letter-spacing: -0.32px;
        margin-top: 50px;
        text-align: center;
    }
    
    .set__details__list{
        margin-top: 12px;
        gap: 10px;
    }
    
    .set__details__item01, .set__details__item02{
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0px;
        width: 100%;
        height: auto;
        border-radius: 5px;
        padding: 4% 3% 4% 10%;
    }
    
    .set__details__item__last{
        font-size: 1.3rem;
        width: 83%;
        margin: 10px auto;
    }
}

/* =============================
Contact
================================ */

#section--Contact{
    background-color: var(--white, #FFFFFF);
    padding: 65px 19.3% 100px;
    position: relative;
}

#section--Contact .title{
    text-align: center;
    translate: -17% 0;
    margin-bottom: 80px;
}

#section--Contact::after{
    display: block;
    content: "Contact";
    position: absolute;
    font-family: "MonteCarlo";
    color: var(--pink, #E71259);
    font-weight: 400;
    font-size: 150px;
    line-height: 160px; /* 106.667% */
    opacity: 0.12;
    top: 111px;
    left: 43%;
}

.Contact__details{
    display: flex;
    justify-content: center;
    gap: 2.08%;
}

.Contact__details__txt{
    color: var(--main, #59322F);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 30px; /* 187.5% */
}

.Contact__details__button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #EC8698;
    width: 350px;
    height: 60.1px;
    flex-shrink: 0;
    border-radius: 175px;
    transition: 0.5s all;
}

.Contact__details__button:hover{
    opacity: 0.8;
}

.Contact__button__icon{
    width: 20px;
    height: 20px;
}

.Contact__button__txt{
    color: var(--white, #FFF);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 30px; /* 187.5% */
    letter-spacing: 2px;
    margin-top: -3px;
    margin-left: 2px;
}

/* ------- Contact SP 1024 start-------*/
@media screen and (max-width:1024px) {
    #section--Contact{
        padding: 50px 3% 50px;
    }
    
    #section--Contact .title{
        text-align: center;
        translate: -19% 0;
        margin-bottom: 45px;
    }
    
    #section--Contact::after{
        font-size: 8rem;
        line-height: 36px; /* 45% */
        top: 95px;
        left: 36%;
        width: 205px;
    }
    
    .Contact__details{
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .Contact__details__button{
        width: 290px;
        height: 53px;
        margin: 8px auto 0px;
    }
    
    .Contact__button__icon{
        width: 17.7px;
        height: 17.7px;
    }
    
    .Contact__button__txt{
        font-size: 1.4rem;
        line-height: 26.511px; /* 191.614% */
        letter-spacing: 1.767px;
        margin-top: -3px;
        margin-left: 2px;
    }
}

/* =============================
fooder
================================ */
.footer{
    background-color: var(--mainpink, #FFEBED);
    padding: 0px 4.72% 35px;
}

.footer__main{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 55px;
}

.footer__logo{
    max-width: 115px;
}

.footer__sns{
    display: flex;
}

.sns__title{
    font-family: "EB Garamond";
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
}

.sns__details{
    display: flex;
    gap: 40px;
    margin-left: 73px;
    align-items: center;
}

.sns__details__isg{
    width: 25px;
}
.sns__details__x{
    width: 20px;
}

.sns__details__tt{
    width: 24px;
}

.sns__details__isg img:hover, .sns__details__x img:hover, .sns__details__tt img:hover{
    opacity: 0.8;
}

.sns__details__txt{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 30px; /* 214.286% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: under;
}

.footer__cancel a:hover, .sns__details__txt a:hover, .sns__site__web a:hover, .sns__site__shop a:hover, .sns__details__cancel a:hover{
    opacity: 0.8;
}

.footer__cancel{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 30px; /* 214.286% */
    padding-left: 80px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: under;
}

.footer__top{
    display: inline-block;
    padding-top: 35px;
    padding-left: 2px;
    text-align: center;
    font-family: "EB Garamond";
    font-size: 1.8rem;
    line-height: 30px; /* 166.667% */
    letter-spacing: 1.3px;
    width: 100px;
    height: 100px;
    background-color: var(--white, #ffffff);
    border-radius: 50%;
    box-shadow: 1px 1px 1px 1px rgba(231, 18, 89, 0.08);
}

.footer__top:hover{
    opacity: 0.8;
}

.copy__txt{
    font-family: "EB Garamond";
    font-size: 1.3rem;
    line-height: 30px; /* 230.769% */
    margin-top: 55px;
    text-align: center;
}

.copy{
    font-family: "EB Garamond";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 30px; /* 230.769% */
    text-align: center;
    margin-top: 55px;
}

.footer__sp{
    display: none;
}

/* ------- fooder SP 1024 start-------*/
@media screen and (max-width:1024px) {

    .footer__pc{
        display: none;
    }
    
    .footer__sp{
        display: block;
    }
    
    .footer{
        padding: 0px 3% 10px;
    }
    
    .footersp__sns{
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 50px;
    }
    
    .spsns__title{
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 20px; /* 111.111% */
    }
    
    .spsns__details{
        display: flex;
        margin-left: 14%;
        gap: 60px;
    }
    
    .spsns__details__isg img{
        width: 22px;
    }
    
    .spsns__details__x img{
        width: 20px;
        height: 18.2px;
    }
    
    .spsns__details__tt img{
        width: 22px;
    }

    .spsns__details__isg img:hover, .spsns__details__x img:hover, .spsns__details__tt img:hover{
        opacity: 0.8;
    }

    .spsns__site{
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        margin-left: 41%;
    }
    
    .spsns__site__web a, .spsns__site__shop a, .spsns__details__cancel a{
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 15px; /* 107.143% */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        margin-top: 30px;
    }

    .spsns__site__web a:hover, .spsns__site__shop a:hover, .spsns__details__cancel a:hover{
        opacity: 0.8;
    }
    
    .spsns__details__cancel{
        font-size: 0.9rem;
        font-weight: 400;
        line-height: 30px; /* 272.727% */
        margin-top: 50px;
        margin-left: 41%;
    }
    
    .footersp__under{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 50px;
    }
    
    .footer__logo{
        width: 105px;
        height: 31px;
        margin-left: 5%;
    }
    
    .footer__top{
        font-size: 1.2rem;
        font-family: "EB Garamond";
        line-height: 21px; /* 230.769% */
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        padding-top: 26px;
        margin-right: 5%;
        background-color: var(--white, #ffffff);
        border-radius: 50%;
        box-shadow: 1px 1px 1px 1px rgba(231, 18, 89, 0.08);
    }
    
    .copy{
        font-family: "EB Garamond";
        font-size: 1.3rem;
        line-height: 30px; /* 230.769% */
        text-align: center;
        margin-top: 45px;
    }
}