@charset "UTF-8";


:root {
    --rate: 60rem / 390;
    --font-color:#2C2C2C;
    --purple-color:#AD87AC;
    --yellow-color:#DECD49;
    --bg-color:#F6F2FC;
    --font-en: "futura-pt", sans-serif;
    --font-text: "noto-sans-cjk-jp", sans-serif;
    --pc-width: 1400;
    --tb-width: 750;
    --sp-width: 750;
}


@media screen and (max-width: 1400px){
html {
  font-size: calc(10 * (100vw / 1400));
}

}

@media only screen and (max-width: 768px) {
html {
	font-size: calc(10 * (100vw / 600));
}	
	
.lp-page .sp_only {
    display: block;
}
.lp-page .pc_only {
    display: none;
}
	
}

html {
    scroll-behavior: smooth;
}
/* #share {
    bottom: 10% !important;
    left: 3% !important;
    margin: 0 !important;!i;!;
    z-index: 50 !important;!i;!;
} */


#share img {
    margin: 0 auto;
}
.share-txt {
    padding: calc(40* (100vw / 450)) 0;
    margin: 0 !important;
}
.lp-page {
    text-align: center;
    margin: 0 auto;
    position: relative;
    /* overflow-y: hidden; */
    color: var(--font-color);
    font-family: var(--font-text);
    font-style: normal;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.08em;
    line-height: 1.8;
    z-index: 0;
    width: 100%;
    background-image: linear-gradient(120deg, #ffffff, #e8dbfc 0%, #faf5d4);
}
.lp-page img,
.lp-page svg {
    display: block;
    opacity: 1;
    width: 100%;
    height: auto;
}
.lp-page picture {
    display: block;
}
.lp-page a:hover {
    opacity: 0.8;
}
.lp-page *:focus {
    outline: none;
}
.lp-page a,
.lp-page label {
  /* -webkit-tap-highlight-color: rgba(240, 164, 149, 0.6); */
}
.lp-page input {
    display: none;
}
.lp-page li,
.lp-page ol {
    list-style-type: none;
}


    main {
    max-width: 100vw;
    }
    #Wrap {
    width: auto;
    }
    .wrapTop,
    .wrapBottom {
    width: 100%;
    }

    .lp-page a {
    cursor: pointer;
    }

    /*----------アニメーション----------*/

    .popup.is-animated {
        animation: popup 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    
    @keyframes popup {
    0% {
        transform: translateY(40px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1.0);
    }
    80%, 100% {
        opacity: 1;
    }
    }

        
    .zoomin.fade-active {
        animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    
    @keyframes zoomIn {
    0% {
        transform: scale(1.2);
        filter: blur(10px);
    }
    100% {
        transform: scale(1);
        filter: blur(0);
    }
    }
    
    .fadein {
    opacity: 0;
    transform: translateY(4rem) translateZ(0);
    transition: opacity 2s 0s, transform 2s 0s;
    }

    .fadein.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 2s 0s, transform 2s 0s;
    }
    

    .fadeup {
    opacity: 0;
    }

    .fadeup.fade-active {
    opacity: 1;
    animation:bloom_2 1.6s ease-in-out;
    }

    @keyframes bloom_2 {
        0%{
            filter: blur(5px);
            transform:scale(1);
        }
        50%{
            transform:scale(1.05);
        }
        100%{
            filter: blur(0);
            transform:scale(1);
        }
        }

    .fadein-load {
    opacity: 0;
    transition: 2s ease-in-out;
    }

    .fadein-load.fade-active {
    opacity: 1;
    }

    .fadeup-load {
    opacity: 0;
    transform: translateY(4rem) translateZ(0);
    transition: opacity 2s 0s, transform 2s 0s;
    }

    .fadeup-load.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 2s 0s, transform 2s 0s;
    }


    #footer {
        background: #fff;
    }


    .lp-page .page-inner {
        position: relative;
        overflow: hidden;
        background: var(--bg-color);
        z-index: 0;
    }

    .lp-page .page-inner::before {
        position: absolute;
        content: "";
        background: url(../img/flower_bottom.png) no-repeat;
        background-size: 100%;
        width: calc(390 * (var(--rate)));
        height: calc(150 * (var(--rate)));
        bottom: 0;
        left: 0;
        z-index: -1;
    }


    /* ======= lead ======= */
    .lp-page .lead {
        padding: calc(50 * (var(--rate))) 0 0;
    }

    .lp-page .leadText {
        font-size: calc(14 * (var(--rate)));
        line-height: 2.3;
    }


    .lp-page .mainText {
        position: relative;
        width: calc(300 * (var(--rate)));
        margin: calc(50 * (var(--rate))) auto 0;
        padding: calc(40 * (var(--rate))) calc(20 * (var(--rate)));
        border: var(--purple-color) solid calc(1 * (var(--rate)));
        background: #fff;
        z-index: 0;
    }

    .lp-page .mainText::before {
        position: absolute;
        content: "";
        width: calc(55 * (var(--rate)));
        transform: rotate(-45deg);
        border-top: var(--purple-color) solid 1px;
        top: calc(10 * (var(--rate)));
        left: calc(-20 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .mainText::after {
        position: absolute;
        content: "";
        width: calc(55 * (var(--rate)));
        transform: rotate(-45deg);
        border-top: var(--purple-color) solid 1px;
        bottom: calc(10 * (var(--rate)));
        right: calc(-20 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .mainText .ttl {
        font-size: calc(16 * (var(--rate)));
        color: var(--purple-color);
    }

    .lp-page .mainText .text {
        margin-top: calc(15 * (var(--rate)));
        font-size: calc(13 * (var(--rate)));
        line-height: 1.8;
    }

     /* ======= content ======= */
    .lp-page .content {
        margin: calc(50 * (var(--rate))) 0 0;
    }

    .lp-page .content sup {
        display: inline-block;
        font-size: calc(11 * (var(--rate)));
        margin-top: calc(-4 * (var(--rate)));
    }


    /* ======= content_1 ======= */
    .lp-page .content_1 {
        position: relative;
        padding: calc(50 * (var(--rate))) 0 calc(40 * (var(--rate)));
        background: #fff;
        z-index: 0;
    }

    .lp-page .content_1 .con01_2 {
        position: absolute;
        content: "";
        width: calc(60 * (var(--rate)));
        height: calc(58 * (var(--rate)));
        top: calc(-25 * (var(--rate)));
        right: calc(90 * (var(--rate)));
        z-index: 0;
        border: #fff solid calc(8 * (var(--rate)));
        border-radius: calc(90 * (var(--rate)));
    }

    .lp-page .content_1::after {
        position: absolute;
        content: "";
        background: url(../img/con01_bg.svg) no-repeat;
        background-size: 100%;
        width: 100%;
        height: calc(25 * (var(--rate)));
        bottom: calc(-25 * (var(--rate)));
        left: 0;
        z-index: 1;
    }

    .lp-page .content_1 .inner {
        width: calc(350 * (var(--rate)));
        margin: auto;
    }



    /* ======= content_2 ======= */
    .lp-page .content_2 {
        margin: calc(75 * (var(--rate))) 0 0;
    }

    .lp-page .content_2 .tab-content {
        display: none;
    }
    
    .lp-page .content_2 .tab-content.active {
        display: block;
    }

    .lp-page .content_2 .tab {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: calc(5 * (var(--rate)));
    }
    
    .lp-page .content_2 .tab-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: calc(3 * (var(--rate)));
        border-radius: calc(4 * (var(--rate))) calc(4 * (var(--rate))) 0 0;
        width: calc(173 * (var(--rate)));
        height: calc(32 * (var(--rate)));
        font-size: calc(20 * (var(--rate)));
        font-family: var(--font-en);
        color: #fff;
        transition: ease-in-out .2s;
    }

    .lp-page .content_2 .tab-btn.a {
        background: var(--purple-color);
    }
    .lp-page .content_2 .tab-btn.b {
        background: var(--yellow-color);
    }

    .lp-page .content_2 .tab-btn.active {
        height: calc(38 * (var(--rate)));
        font-size: calc(22 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content {
        background: #fff;
        border: var(--purple-color) solid calc(1 * (var(--rate)));
        border-left: none;
        border-right: none;
        padding: calc(40 * (var(--rate))) 0 calc(40 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content.b {
        border: var(--yellow-color) solid calc(1 * (var(--rate)));
        border-left: none;
        border-right: none;
    }

    .lp-page .content_2 .tab-content .ttl ,
    .lp-page .content_4 .ttl {
        font-size: calc(16 * (var(--rate)));
        font-weight: 700;
    }

    .lp-page .content_2 .tab-content .ttl span {
        background: linear-gradient(transparent 50%, #E6D3E6 50%);
    }

    .lp-page .content_4 .ttl span {
        background: linear-gradient(transparent 50%, #EDCDC9 50%);
    }

    .lp-page .content_2 .tab-content .main_img ,
    .lp-page .content_4 .main_img {
        position: relative;
        width: 100%;
        margin-top: calc(40 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .content_2 .tab-content .com {
        position: absolute;
        width: calc(220 * (var(--rate)));
        top: calc(85 * (var(--rate)));
        left: calc(20 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .content_2 .tab-content .limited {
        display: inline-block;
        font-weight: 500;
        margin-top: calc(25 * (var(--rate)));
        font-size: calc(11 * (var(--rate)));
        padding: calc(1 * (var(--rate))) calc(10 * (var(--rate))) calc(1 * (var(--rate)));
        color: var(--purple-color);
        border: var(--purple-color) solid calc(1 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content.b .limited {
        color: var(--yellow-color);
        border: var(--yellow-color) solid calc(1 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .item_img {
        position: relative;
        margin: 0 auto calc(5 * (var(--rate)));
        width: calc(200 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .content_2 .tab-content .item_name ,
    .lp-page .content_4 .item_name {
        font-size: calc(13 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .price_wrap ,
    .lp-page .content_4 .price_wrap {
        margin-top: calc(8 * (var(--rate)));
        display: flex;
        justify-content: center;
        align-items: center;
        gap: calc(30 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .price ,
    .lp-page .content_4 .price {
        font-family: var(--font-en);
        font-size: calc(16 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .price .tax ,
    .lp-page .content_4 .price .tax {
        font-size: calc(13 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .btn ,
    .lp-page .content_4 .btn {
        font-family: var(--font-en);
        font-size: calc(13 * (var(--rate)));
        width: calc(100 * (var(--rate)));
        height: calc(22 * (var(--rate)));
        background: var(--font-color);
        color: #fff;
        padding-top: calc(3 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .item_blk:nth-of-type(n+3) {
        margin-top: calc(25 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .info ,
    .lp-page .content_4 .info {
        margin: calc(25 * (var(--rate))) auto 0;
        width: calc(280 * (var(--rate)));
        padding: calc(25 * (var(--rate))) calc(25 * (var(--rate))) calc(25 * (var(--rate))) calc(45 * (var(--rate)));
        background: #F8F8F8;
    }

    .lp-page .content_2 .tab-content .info p ,
    .lp-page .content_4 .info p {
        text-align: left;
        position: relative;
        font-size: calc(13 * (var(--rate)));
        font-weight: 400;
        z-index: 0;
    }

    .lp-page .content_2 .tab-content .info p::before ,
    .lp-page .content_4 .info p::before {
        position: absolute;
        content: "";
        background: url(../img/check.svg) no-repeat;
        background-size: 100%;
        width: calc(13 * (var(--rate)));
        height: calc(13 * (var(--rate)));
        top: calc(4 * (var(--rate)));
        left: calc(-20 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .content_2 .tab-content .info p:nth-of-type(n+2) ,
    .lp-page .content_4 .info p:nth-of-type(n+2) {
        margin-top: calc(10 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content .note ,
    .lp-page .content_4 .note {
        display: block;
        margin-top: calc(10 * (var(--rate)));
        font-size: calc(11 * (var(--rate)));
        font-weight: 400;
        text-align: right;
    }

    .lp-page .comment {
        position: relative;
        width: calc(300 * (var(--rate)));
        padding: calc(35 * (var(--rate))) calc(20 * (var(--rate))) calc(25 * (var(--rate)));
        border: var(--font-color) solid calc(1 * (var(--rate)));
        margin: calc(40 * (var(--rate))) auto 0;
        z-index: 0;
    }

    .lp-page .comment::before {
        position: absolute;
        content: "Buyer’s COMMENT";
        font-family: var(--font-en);
        font-size: calc(20 * (var(--rate)));
        width: 52%;
        padding: 0 calc(20 * (var(--rate))) 0;
        background: #fff;
        top: calc(-12 * (var(--rate)));
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    .lp-page .comment.key::before {
        content: "Key INGREDIENTS";
    }

    .lp-page .comment .wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: calc(15 * (var(--rate)));
    }

    .lp-page .comment .wrap .img {
        width: calc(75 * (var(--rate)));
    }

    .lp-page .comment .wrap .hammy {
        text-align: left;
        font-family: var(--font-en);
        font-size: calc(13 * (var(--rate)));
        line-height: 1.5;
    }

    .lp-page .comment .text {
        margin-top: calc(15 * (var(--rate)));
        text-align: justify;
        font-size: calc(12 * (var(--rate)));
        font-weight: 400;
        line-height: 1.8;
    }

    .lp-page .comment.key .key_text {
        width: calc(230 * (var(--rate)));
        text-align: left;
    }

    .lp-page .comment.key .img {
        width: calc(90 * (var(--rate)));
    }

    .lp-page .comment.key .key_text .ttl {
        font-size: calc(13 * (var(--rate)));
    }

    .lp-page .comment.key .key_text .text {
        margin-top: calc(5 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
        font-weight: 400;
        line-height: 1.5;
    }

    .lp-page .comment.key .key_text .note {
        text-align: left;
        display: block;
        margin-top: calc(5 * (var(--rate)));
        font-size: calc(11 * (var(--rate)));
        font-weight: 400;
    }

    .lp-page .comment.key .wrap:nth-of-type(n+2) {
        margin-top: calc(20 * (var(--rate)));
    }

    .lp-page .tab-btn_bottom {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(13 * (var(--rate)));
        width: calc(250 * (var(--rate)));
        height: calc(40 * (var(--rate)));
        border-radius: unset;
        background: var(--yellow-color);
        color: #fff;
        margin: calc(40 * (var(--rate))) auto 0;
        z-index: 0;
    }

    .lp-page .tab-btn_bottom.b {
        background: var(--purple-color);
    }

    .lp-page .tab-btn_bottom::before {
        position: absolute;
        content: "";
        background: url(../img/arrow.svg) no-repeat;
        background-size: 100%;
        width: calc(5 * (var(--rate)));
        height: calc(8 * (var(--rate)));
        top: calc(17 * (var(--rate)));
        right: calc(15 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .tab-btn_bottom span {
        font-size: calc(16 * (var(--rate)));
    }


    /* ======= content_3 ======= */
    .lp-page .content_3 {
        background: #FAF8E7;
        padding: calc(60 * (var(--rate))) 0;
        margin: 0;
    }

    .lp-page .content_3 .comparsion {
        width: calc(350 * (var(--rate)));
        margin: auto;
    }


    /* ======= content_4 ======= */
    .lp-page .content_4 {
        margin: 0;
        padding: calc(60 * (var(--rate))) 0;
        background: #fff;
    }

    .lp-page .content_4 .item_blk {
        margin-top: calc(20 * (var(--rate)));
    }

    /* ======= content_5 ======= */
    .lp-page .content_5 {
        margin: 0;
        padding: calc(60 * (var(--rate))) 0;
    }

    .lp-page .content_5 h2 {
        font-family: var(--font-en);
        font-size: calc(30 * (var(--rate)));
        font-weight: 500;
        line-height: 1;
    }

    .lp-page .content_5 .kit_ttl {
        font-family: var(--font-en);
        font-size: calc(18 * (var(--rate)));
        color: #fff;
        background: var(--font-color);
        padding: calc(6 * (var(--rate))) 0 calc(3 * (var(--rate)));
    }

    .lp-page .content_5 .kit_ttl span {
        font-size: calc(23 * (var(--rate)));
    }

    .lp-page .content_5 .kit_com {
        position: relative;
        width: calc(224 * (var(--rate)));
        margin: auto;
        z-index: 1;
    }

    .lp-page .content_5 .simple-bar_wrap .review_list.first {
        justify-content: center;
        width: auto;
    }
    
    .lp-page .content_5 .simple-bar_wrap .review_list.second {
        justify-content: center;
        width: fit-content;
    }

    /* スライダー幅 */
    .lp-page .product-swiper {
        overflow-x: auto;
        padding: 0 80px;
    }
    
    .lp-page .swiper-wrapper {
        display: flex;
    }
    
    /* 商品カード */
    .lp-page .product-card {
        position: relative;
        padding: calc(20 * (var(--rate)));
        text-align: center;
        z-index: 0;
    }
    
    .lp-page .product-card .kit_img {
        position: relative;
        margin-top: calc(-25 * (var(--rate)));
        width: calc(250 * (var(--rate)));
        z-index: 0;
    }
    
    .lp-page .product-card h4 {
        font-size: calc(12 * (var(--rate)));
        margin: calc(6 * (var(--rate))) auto 0;
    }
    
    .lp-page .kit_wrap {
        margin-top: calc(15 * (var(--rate)));
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .lp-page .price {
        font-family: var(--font-en);
        font-size: calc(15 * (var(--rate)));
    }
    
    .lp-page .price span {
        font-size: calc(12 * (var(--rate)));
    }
    
    .lp-page .kit_btn {
        font-family: var(--font-en);
        display: inline-block;
        background: var(--font-color);
        color: #fff;
        padding: calc(3 * (var(--rate))) calc(40 * (var(--rate))) calc(2 * (var(--rate)));
        text-decoration: none;
        font-size: calc(14 * (var(--rate)));
    }

    .lp-page .kit_inner {
        margin-top: calc(20 * (var(--rate)));
        background: #F8F8F8;
        padding: calc(20 * (var(--rate))) calc(20 * (var(--rate))) calc(20 * (var(--rate))) calc(30 * (var(--rate)));
    }
    
    .lp-page .kit_inner .ttl {
        font-size: calc(12 * (var(--rate)));
    }

    .lp-page .kit_inner .text {
        position: relative;
        text-align: justify;
        font-weight: 400;
        font-size: calc(12 * (var(--rate)));
        line-height: 1.5;
        letter-spacing: 0.05em;
        z-index: 0;
    }

    .lp-page .kit_inner .text:nth-of-type(n+2) {
        margin-top: calc(8 * (var(--rate)));
    }

    .lp-page .kit_inner .text::before {
        position: absolute;
        content: "";
        width: calc(4 * (var(--rate)));
        height: calc(4 * (var(--rate)));
        border-radius: calc(10 * (var(--rate)));
        top: calc(7 * (var(--rate)));
        left: calc(-10 * (var(--rate)));
        background: #9A9A9A;
        z-index: 1;
    }

    .lp-page .kit_inner .text.plum::before {
        background: var(--purple-color);
    }
    .lp-page .kit_inner .text.vitamin::before {
        background: var(--yellow-color);
    }


    /* simplebar
    ==================================*/
    .lp-page .simple-bar_wrap *{
        /*スクロールバー非表示（IE・Edge）*/
        -ms-overflow-style: none;
        /*スクロールバー非表示（Firefox）*/
        scrollbar-width: none;
    }
    
    .lp-page .simple-bar_wrap{
        overflow-x: scroll;
        padding-bottom: calc(23 * (var(--rate)));
        /*スクロールバー非表示（IE・Edge）*/
        -ms-overflow-style: none;
        /*スクロールバー非表示（Firefox）*/
        scrollbar-width: none;
    }
    
    .lp-page .simple-bar_wrap *::-webkit-scrollbar,
    .lp-page .simple-bar_wrap::-webkit-scrollbar{
        display:none;
    }
    
    .lp-page .simple-bar_wrap ul{
        margin-top: calc(30 * (var(--rate)));
        display: flex;
        width: fit-content;
        align-items: stretch;
        gap: calc(10 * (var(--rate)));
        padding: 0 calc(20 * (var(--rate)))
    }
    
    .lp-page .simple-bar_wrap ul li {
        border: var(--font-color) solid calc(1 * (var(--rate)));
        width: calc(290 * (var(--rate)));
        background: #fff;
        margin-top: 0;
    }
    
    .lp-page .simplebar-track.simplebar-horizontal {
        height: calc(3 * (var(--rate)));
        width: calc(200 * (var(--rate)));
        background: #f8f8f8;
        margin: auto;
    }
    
    .lp-page .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
        top: 0;
        height: calc(3 * (var(--rate)));
        background-color: #cecece;
    }
    
    .lp-page .simplebar-scrollbar:before{
        background: #cecece;
    }


    /* ======= content_6 ======= */
    .lp-page .content_6 {
        margin: 0;
        padding: calc(60 * (var(--rate))) 0;
        background: #E5DCEF;
    }

    .lp-page .content_6 h2 {
        font-family: var(--font-en);
        font-size: calc(30 * (var(--rate)));
        font-weight: 500;
        line-height: 1;
    }

    .staff_com {
        width: 100%;
    }

    .staff_wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: calc(12 * (var(--rate)));
    }

    .staff_img {
        width: calc(75 * (var(--rate)));
    }

    .staff_text {
        position: relative;
        margin-top: calc(15 * (var(--rate)));
        font-size: calc(13 * (var(--rate)));
        height: calc(110 * (var(--rate)));
        overflow: hidden;
        line-height: 1.8;
        z-index: 0;
    }

    .staff_text::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-image: linear-gradient(0deg, #ffffff, #ffffff 26%, transparent);
        z-index: 1;
    }

    .staff_modal {
        position: absolute;
        width: calc(90 * (var(--rate))) !important;
        height: auto;
        top: calc(464 * (var(--rate))) !important;
        right: calc(20 * (var(--rate))) !important;
        z-index: 1;
    }

    .staff_used {
        margin-top: calc(12 * (var(--rate)));
    }

    .staff_info {
        text-align: left;
        font-size: calc(13 * (var(--rate)));
        letter-spacing: 0;
        line-height: 1.5;
    }

    .staff_info span {
        display: inline-block;
        margin-bottom: calc(6 * (var(--rate)));
    }

    .lp-page .allItem_btn {
        margin: calc(50 * (var(--rate))) auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(270 * (var(--rate)));
        height: calc(50 * (var(--rate)));
        border-radius: calc(50 * (var(--rate)));
        color: #fff;
        background: var(--ttl_font-color);
        font-family: var(--font-en);
        font-size: calc(16 * (var(--rate)));
        font-weight: 700;
    }


    .lp-page .follow_banner {
        opacity: 0;
        position: fixed;
        bottom: calc(10 * (var(--rate)));
        right: calc(-70 * (var(--rate)));
        width: calc(70 * (var(--rate)));
        transition: all 1.6s ease;
        transform: translateX(0);
    }

    .lp-page .follow_banner.m_fixed {
        opacity: 1;
        position: fixed;
        bottom: calc(10 * (var(--rate)));
        right: calc(10 * (var(--rate)));
        width: calc(70 * (var(--rate)));
        transition: all 1.6s ease;
        transform: translateX(0);
    }

    .lp-page .content_6 .simple-bar_wrap ul li {
        border: unset;
    }


    /* ======= content_7 ======= */
    .lp-page .content_7 {
        margin: 0;
        padding: calc(60 * (var(--rate))) 0;
        background: #FAF8E7;
    }

    .campaign {
        position: relative;
        margin: auto;
        width: calc(350 * (var(--rate)));
        height: calc(880 * (var(--rate)));
        background: url(../img/campaign.jpg) no-repeat;
        background-size: 100%;
        z-index: 0;
    }

    .campaign_btn {
        position: absolute;
        content: "";
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(250 * (var(--rate)));
        height: calc(35 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
        background: var(--font-color);
        top: calc(355 * (var(--rate)));
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        z-index: 1;
    }

    .campaign_items {
        position: absolute;
        content: "";
        margin: auto;
        width: calc(310 * (var(--rate)));
        top: calc(570 * (var(--rate)));
        left: calc(155 * (var(--rate)));
        transform: translateX(-50%);
        z-index: 1;
    }

    .campaign_item_blk {
        width: calc(175 * (var(--rate)));
        padding: calc(15 * (var(--rate)));
        background: #F8F8F8;
        margin: 0 calc(5 * (var(--rate)));
    }

    .campaign_item_blk .ttl {
        width: 100%;
        padding: calc(2 * (var(--rate))) 0 calc(2 * (var(--rate)));
        background: var(--purple-color);
        color: #fff;
        font-size: calc(11 * (var(--rate)));
        margin-top: calc(6 * (var(--rate)));
        border-radius: calc(10 * (var(--rate)));
        letter-spacing: 0;
    }

    .campaign_item_blk .name {
        font-size: calc(12 * (var(--rate)));
        margin-top: calc(10 * (var(--rate)));
        letter-spacing: 0;
    }

    .campaign_item_blk .price {
        font-family: var(--font-en);
        font-size: calc(16 * (var(--rate)));
        margin-top: calc(5 * (var(--rate)));
    }

    .campaign_item_blk .price span {
        font-size: calc(13 * (var(--rate)));
    }

    .campaign_item_blk .campaign_kit_btn {
        margin-top: calc(5 * (var(--rate)));
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--font-en);
        font-size: calc(13 * (var(--rate)));
        width: 100%;
        height: calc(25 * (var(--rate)));
        color: #fff;
        background: var(--font-color);
    }

    /* ======= content_8 ======= */
    .lp-page .content_8 {
        margin: 0;
        background: #fff;
        padding-bottom: calc(60 * (var(--rate)));
    }

    .lp-page .content_8 .brand_text {
        text-align: justify;
        width: calc(350 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
        margin: calc(20 * (var(--rate))) auto 0;
    }

    .lp-page .content_8 .brand_btn {
        margin: calc(20 * (var(--rate))) auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(13 * (var(--rate)));
        width: calc(250 * (var(--rate)));
        height: calc(35 * (var(--rate)));
        color: #fff;
        background: var(--font-color);
    }

    /* modal
==================================*/
.modal img {
    width: 100%;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    }
    .modal__bg{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    }
    .modal__content{
    width: calc(300 * (var(--rate)));
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    background-color: var(--color-lp_white);
    }
    .modal_inner{
    max-height: 90svh;
    overflow-y: scroll;
    }
    .close-btn {
    position: fixed;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(40 * (var(--rate)));
    height: calc(40 * (var(--rate)));
    top: calc(-50 * (var(--rate)));
    right: 0;
    z-index: 5;
    }
    .close-btn span {
    position: absolute;
    display: block;
    width: calc(40 * (var(--rate)));
    aspect-ratio: 1 / 1;
    top: 0;
    right: 0;
    }
    .close-btn span:before,
    .close-btn span:after{
    content: '';
    width: calc(40 * (var(--rate)));
    height: 1px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: calc(-2 * (var(--rate)));
    bottom: 0;
    margin: auto;
    }
    .close-btn span:after{
    transform: rotate(-45deg);
    }


    .staff_modal_inner {
        background: #fff;
        overflow: scroll;
        height: calc(520 * (var(--rate)));
        padding: calc(20 * (var(--rate)));
    }

    .staff_modal_inner .staff_text::before {
        display: none;
    }

    .staff_modal_inner .staff_text {
        height: auto;
    }

    .staff_modal_inner .staff_text .text {
        text-align: justify;
        font-size: calc(12 * (var(--rate)));
        line-height: 1.8;
    }

    .staff_modal_inner .staff_text .text:nth-of-type(n+2) {
        margin-top: calc(10 * (var(--rate)));
    }

    .staff_modal_inner .staff_text .note {
        text-align: left;
        margin-top: calc(10 * (var(--rate)));
        font-weight: 400;
        font-size: calc(10 * (var(--rate)));
        line-height: 1.5;
    }

    .staff_modal_inner .staff_text h3 {
        text-align: center;
        margin-top: calc(20 * (var(--rate)));
        font-size: calc(16 * (var(--rate)));
        line-height: 1.5;
    }

    .staff_modal_inner .item_img {
        margin-top: calc(15 * (var(--rate)));
    }


    .lp-page .slick-dots li {
        margin: 0 0 !important;
    }



@media only screen and (min-width: 769px) {	
.lp-page .sp_only {
  display: none;
}
.lp-page .pc_only {
  display: block;
}
	
:root {
    --rate: 45rem / 390;
}

.lp-page .fixed_area {
    position: fixed;
    left: 50%;
    translate: -50% -45%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    top: 50%;
    background-image: linear-gradient(120deg, #ffffff, #e8dbfc 0%, #faf5d4);
}

.lp-page .lp_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}

.lp-page .page-inner {
    width: 45rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.lp-page .fixed_left {
    display: grid;
    place-items: center;
    width: calc((100% - 45rem) / 2);
    max-width: calc((160rem - 45rem) / 2);
    height: 110vh;
}

.lp-page .fixed_left .main_ttl {
    width: 40rem;
}

.lp-page .fixed_right {
    display: grid;
    place-items: center;
    width: calc((100% - 45rem) / 2);
    max-width: calc((168rem - 45rem) / 2);
    height: 110vh;
}

.lp-page .fixed_right .nav {
    margin-top: -5rem;
}

.lp-page .fixed_right .nav h3 {
    font-size: 3.2rem;
    font-family: var(--font-en);
    font-weight: 500;
    font-style: italic;
    color: var(--purple-color);
    margin-bottom: 1rem;
}

.lp-page .fixed_right .nav ul {
    width: 30rem;
}

.lp-page .fixed_right .nav ul li {
    position: relative;
    height: 3.5rem;
    border-bottom: #E5DCEE solid 0.1rem;
    z-index: 0;
}

.lp-page .fixed_right .nav ul li::before {
    position: absolute;
    content: "";
    background: url(../img/nav_arrow.svg) no-repeat;
    background-size: 100%;
    width: 1.2rem;
    height: .7rem;
    top: 1rem;
    right: 1rem;
    transition: ease-in-out .2s;
    z-index: 1;
}

.lp-page .fixed_right .nav ul li:hover::before {
    top: 1.5rem;
}

.lp-page .fixed_right .nav ul li:nth-of-type(n+2) {
    margin-top: 1.5rem;
}

.lp-page .fixed_right .number {
    font-family: var(--font-en);
    font-size: 4rem;
    font-style: italic;
}

.lp-page .fixed_right .text {
    display: block;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}

.lp-page .fixed_right .sub_text {
    font-weight: 700;
    font-family: var(--font-en);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.lp-page .fixed_right .fixed-nav_blk {
    justify-content: flex-start;
    text-align: left;
}

.lp-page .follow_banner {
    bottom: 1rem;
    right: -12rem;
    width: 7rem;
}


.lp-page .follow_banner.m_fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 9rem;
    transition: all 0.6s ease;
    transform: translateX(0);
}

#footer {
    position: relative;
    z-index: 0;
}

.loading__contents {
    position: relative;
    z-index: 0;
    background: url(../img/loadingBg_pc.jpg) no-repeat;
    width: 100vw;
    height: 100vh;
    background-size: cover;
}

.logo {
    width: 30rem;
    height: 6rem;
}

.loading__img_1 {
    width: 25rem;
    height: 38rem;
}

.loading__img_2 {
    width: 30rem;
    height: 50rem;
}

.loading__img_3 {
    width: 45rem;
    height: 32rem;
    right: 10rem;
}

.loading__img_4 {
    position: absolute;
    width: 34rem;
    height: 34rem;
    top: 0;
    left: 31rem;
    z-index: 1;
}

.loading__img_5 {
    position: absolute;
    width: 35rem;
    height: 30rem;
    top: 3rem;
    right: 30rem;
    z-index: 1;
}

.loading__img_6 {
    position: absolute;
    width: 50rem;
    height: 34rem;
    bottom: 0;
    left: 10rem;
    z-index: 1;
}

.petals .loading__img_1.flower {
    animation:bloom 3s ease-in-out 0s;
}

.petals .loading__img_2.flower {
    animation:bloom 3s ease-in-out .2s;
}

.petals .loading__img_3.flower {
    animation:bloom 3s ease-in-out .4s;
}

.petals .loading__img_4.flower {
    background: url(../img/loadingimg_4_pc.png) no-repeat;
    background-size: 100%;
    animation:bloom 3s ease-in-out .6s;
}

.petals .loading__img_5.flower {
    background: url(../img/loadingimg_5_pc.png) no-repeat;
    background-size: 100%;
    animation:bloom 3s ease-in-out .8s;
}

.petals .loading__img_6.flower {
    background: url(../img/loadingimg_6_pc.png) no-repeat;
    background-size: 100%;
    animation:bloom 3s ease-in-out 1s;
}

.fadein-load {
    opacity: 0;
    transition: 4.5s ease-in-out;
    }

}

