@charset "UTF-8";


:root {
    --rate: 60rem / 390;
    --font-color:#1A1A1A;
    --pink-color:#FF8AAD;
    --yellow-color:#FFFCCA;
    --blue-color: #0A64A6;
    --blue-key-color: #6EB7E2;
    --btn-color: #F2A07B;
    --bg-color:#F0F8FC;
    --font-en: "argent-pixel-cf", sans-serif;
    --font-en_2: "barlow", sans-serif;
    --font-text: "source-han-sans-jp-variable", 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-variation-settings: "wght" 500;
    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, #e3f3fb 0%, #c5e9fd);
}
.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;
}

.lp-page small {
    display: block;
    text-align: justify;
    margin-top: calc(8 * (var(--rate)));
    line-height: 1.5;
}

.lp-page sup {
    font-size: 85%;
}

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

    .lp-page a {
    cursor: pointer;
    }

    .font_en {
        font-family: var(--font-en);
        font-weight: 500;
    }

    .font_en_2 {
        font-family: var(--font-en_2);
        font-weight: 500;
    }


    .slick-track {
        display: flex !important;
    }
    .slick-slide {
        height: auto !important;
    }

    .dots-wrap {
        margin-top: calc(15 * (var(--rate)));
        display: flex;
        justify-content: center;
    }
    
    .dots-wrap li {
        width: 50px;
        height: 4px;
        margin: 0 5px;
        background: #fff;
        cursor: pointer;
    }
    
    .dots-wrap li:hover,
    .dots-wrap li.slick-active {
        background: #6EB7E2;
    }
    .dots-wrap li button {
        display: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        padding: 0;
        border: none;
        background-color: transparent;
    }

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

    .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;
    }
    
    /* .fadeout {
    opacity: 0;
    transition: opacity 2s 0s, transform 2s 0s;
    }

    .fadeout.fade-active {
    opacity: 1;
    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: 1s ease-in-out;
    }

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

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

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


    .wrapper {
        display: flex;
        width: 100%;
        overflow: hidden;
    }
    
    .loop_text {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: calc(14 * (var(--rate)));
        overflow: hidden;
        padding-left: calc(20 * (var(--rate)));
        color: var(--font-color);
    }
    
    .loop_text:nth-child(odd) {
    animation: loop 12s -6s linear infinite;
    }
    
    .loop_text:nth-child(even) {
    animation: loop2 12s linear infinite;
    }
    
    @keyframes loop {
        0% {
        transform: translateX(100%);
        }
        to {
        transform: translateX(-100%);
        }
    }
    
    @keyframes loop2 {
        0% {
        transform: translateX(0);
        }
        to {
        transform: translateX(-200%);
        }
    }
    

    #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(16 * (var(--rate)));
        font-variation-settings: "wght" 500;
        line-height: 1.8;
    }


    /* ======= campaign ======= */
    .lp-page .campaign {
        padding: calc(50 * (var(--rate))) 0;
        width: 100%;
        height: auto;
        background: url(../img/camapign_bg.jpg) no-repeat;
        background-size: cover;
    }

    .lp-page .campaign .webstore {
        text-align: center;
        width: calc(145 * (var(--rate)));
        margin: auto;
        font-size: calc(14 * (var(--rate)));
        padding: calc(4 * (var(--rate))) calc(12 * (var(--rate))) calc(5 * (var(--rate)));
        border: var(--yellow-color) solid calc(1 * (var(--rate)));
        color: var(--yellow-color);
    }

    .lp-page .campaign .ttl {
        text-align: center;
        font-family: var(--font-en_2);
        font-size: calc(35 * (var(--rate)));
        font-weight: 700;
        color: var(--yellow-color);
        line-height: 1.5;
    }

    .lp-page .campaign .camapign_img {
        margin: calc(0 * (var(--rate))) auto 0;
        width: calc(305 * (var(--rate)));
    }

    .lp-page .campaign .exclusive {
        text-align: center;
        font-weight: 700;
        margin: calc(12 * (var(--rate))) auto 0;
        font-size: calc(14 * (var(--rate)));
        color: var(--yellow-color);
    }

    .lp-page .campaign .camapign_area {
        position: relative;
        margin: calc(20 * (var(--rate))) auto 0;
        padding-bottom: calc(20 * (var(--rate)));
        width: calc(330 * (var(--rate)));
        border: var(--yellow-color) calc(1 * (var(--rate))) solid;
        z-index: 0;
    }

    .lp-page .campaign .camapign_01 ,
    .lp-page .campaign .camapign_02 {
        position: absolute;
        font-size: calc(14 * (var(--rate)));
        font-family: var(--font-en_2);
        color: var(--yellow-color);
        background-color: #0861a2;
        padding: calc(0 * (var(--rate))) calc(10 * (var(--rate)));
        top: calc(-14 * (var(--rate)));
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .lp-page .campaign .camapign_01 span ,
    .lp-page .campaign .camapign_02 span {
        font-size: calc(20 * (var(--rate)));
    }

    .lp-page .campaign .camapign_pointup {
        margin: calc(10 * (var(--rate))) auto 0;
        width: calc(168 * (var(--rate)));
    }

    .lp-page .campaign .exclusive span {
        display: inline-block;
        margin: calc(2 * (var(--rate))) auto 0;
        font-size: calc(19 * (var(--rate)));
    }

    .lp-page .campaign .camapign_text {
        text-align: center;
        margin: calc(8 * (var(--rate))) auto 0;
        font-size: calc(12 * (var(--rate)));
        line-height: 1.5;
        color: var(--yellow-color);
    }

    .lp-page .campaign .camapign_btn {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: calc(12 * (var(--rate))) auto 0;
        width: calc(250 * (var(--rate)));
        height: calc(40 * (var(--rate)));
        border-radius: calc(5 * (var(--rate)));
        font-size: calc(14 * (var(--rate)));
        font-variation-settings: "wght" 500;
        color: var(--blue-color);
        background: #fff;
        z-index: 0;
    }
    
    .lp-page .campaign .coupon_blk {
        margin: calc(-2 * (var(--rate))) auto 0;
        width: calc(180 * (var(--rate)));
    }

    .lp-page .campaign .coupon_blk .coupon_text {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(12 * (var(--rate)));
        width: 100%;
        height: calc(20 * (var(--rate)));
        background: #054F84;
        color: #fff;
    }

    .lp-page .campaign .coupon_blk .coupon_number {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--font-en_2);
        font-size: calc(20 * (var(--rate)));
        width: 100%;
        height: calc(35 * (var(--rate)));
        color: #054F84;
        background: #fffee9;
    }


     /* ======= 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)));
    }

    .lp-page h2 {
        color: var(--pink-color);
        font-size: calc(15 * (var(--rate)));
        line-height: 1.2;
    }

    .lp-page h2 .font_en {
        font-size: calc(45 * (var(--rate)));
    }

    .loop_blk {
        padding: calc(6 * (var(--rate))) 0;
        background: #fff;
        border: var(--font-color) solid calc(1 * (var(--rate)));
        border-left: unset;
        border-right: unset;
    }

    .border {
        display: block;
        border-top: #fff solid calc(1 * (var(--rate)));
    }

    /* ======= nav_area ======= */
    .lp-page .nav_area {
        background: var(--yellow-color);
        display: flex;
        justify-content: center;
        align-items: center;
        border: var(--font-color) solid calc(1 * (var(--rate)));
        border-left: unset;
        border-right: unset;
    }

    .lp-page .nav_area a {
        position: relative;
        display: block;
        text-align: center;
        width: calc(130 * (var(--rate)));
        padding: calc(26 * (var(--rate))) 0;
        font-size: calc(12 * (var(--rate)));
        line-height: 1.2;
        z-index: 0;
    }

    .lp-page .nav_area a::before {
        position: absolute;
        content: "";
        background: url(../img/nav_arrow.svg) no-repeat;
        background-size: 100%;
        width: calc(10 * (var(--rate)));
        height: calc(5 * (var(--rate)));
        bottom: calc(15 * (var(--rate)));
        left: 50%;
        transform: translateX(-50%);
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
        z-index: 1;
    }

    .lp-page .nav_area a:hover::before {
        bottom: calc(10 * (var(--rate)));
    }

    .lp-page .nav_area a:nth-of-type(2) {
        border: var(--font-color) solid calc(1 * (var(--rate)));
        border-top: unset;
        border-bottom: unset;
    }

    .lp-page .nav_area a .font_en {
        font-size: calc(20 * (var(--rate)));
    }


    /* ======= content_main ======= */
    .lp-page .content_main {
        margin: 0;
        padding: calc(50 * (var(--rate))) calc(20 * (var(--rate)));
        background: #DDF0FA;
    }

    .lp-page .content_main .content_ttl_blk {
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(20 * (var(--rate)));
    }

    .lp-page .content_main .content_ttl_blk p {
        position: relative;
        display: inline-block;
        padding: calc(5 * (var(--rate))) calc(15 * (var(--rate))) calc(7 * (var(--rate)));
        font-size: calc(20 * (var(--rate)));
        background: #fff;
        border: var(--font-color) calc(1 * (var(--rate))) solid;
        z-index: 0;
    }

    /* .lp-page .content_main .content_ttl_blk p::before {
        position: absolute;
        content: "";
        background: #DDF0FA;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .lp-page .content_main .content_ttl_blk .fadeout.fade-active::before {
        width: 0;
        height: 100%;
    } */

    .lp-page .content_main .content_ttl_blk p:nth-of-type(2) {
        margin-top: calc(6 * (var(--rate)));
    }

    .lp-page .content_main .content_img {
        margin-top: calc(15 * (var(--rate)));
    }

    .lp-page .content_main .content_key {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: calc(15 * (var(--rate)));
        gap: calc(5 * (var(--rate)));
    }

    .lp-page .content_main .content_key li {
        font-size: calc(14 * (var(--rate)));
        color: #fff;
        background: var(--blue-key-color);
        border-radius: calc(20 * (var(--rate)));
        padding: calc(5 * (var(--rate))) calc(15 * (var(--rate)));
    }

    .lp-page .content_main .content_info {
        margin-top: calc(15 * (var(--rate)));
    }

    .lp-page .content_main .item_name {
        text-align: justify;
        font-size: calc(15 * (var(--rate)));
        font-variation-settings: "wght" 700;
        line-height: 1.5;
    }

    .lp-page .content_main .item_text {
        margin-top: calc(6 * (var(--rate)));
        text-align: justify;
        font-size: calc(14 * (var(--rate)));
        line-height: 1.5;
    }

    .lp-page .content_main .price_blk {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: calc(15 * (var(--rate)));
    }

    .lp-page .content_main .price_blk .price {
        font-size: calc(30 * (var(--rate)));
    }

    .lp-page .content_main .price_blk .price .tax {
        font-size: calc(15 * (var(--rate)));
    }

    .lp-page .content_main .price_blk .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(18 * (var(--rate)));
        width: calc(180 * (var(--rate)));
        height: calc(45 * (var(--rate)));
        background: var(--btn-color);
        border-radius: calc(5 * (var(--rate)));
        color: #fff;
    }
    

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

    .lp-page .recommend h3 {
        font-size: calc(25 * (var(--rate)));
        color: var(--pink-color);
    }

    .lp-page .recommend_inner {
        margin-top: calc(25 * (var(--rate)));
    }

    .lp-page .recommend_inner .recommend_blk {
        width: calc(300 * (var(--rate)));
        background: #fff;
        padding: calc(25 * (var(--rate))) calc(20 * (var(--rate)));
        margin-left: calc(10 * (var(--rate)));
    }

    .lp-page .recommend .content_ttl_blk {
        display: flex;
        flex-wrap: wrap;
    }

    .lp-page .recommend .content_ttl_blk p {
        position: relative;
        display: inline-block;
        padding: calc(5 * (var(--rate))) calc(10 * (var(--rate))) calc(5 * (var(--rate)));
        font-size: calc(15 * (var(--rate)));
        background: #fff;
        border: var(--font-color) calc(1 * (var(--rate))) solid;
        z-index: 0;
    }

    .lp-page .recommend .content_ttl_blk p:nth-of-type(n+2) {
        margin-top: calc(5 * (var(--rate)));
    }

    .lp-page .recommend .content_img {
        margin-top: calc(15 * (var(--rate)));
    }

    .lp-page .recommend .content_info {
        margin-top: calc(15 * (var(--rate)));
    }

    .lp-page .recommend .item_name {
        text-align: justify;
        font-size: calc(14 * (var(--rate)));
        font-variation-settings: "wght" 500;
        line-height: 1.5;
    }

    .lp-page .recommend .price_blk {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: calc(10 * (var(--rate)));
    }

    .lp-page .recommend .price_blk .price {
        font-size: calc(22 * (var(--rate)));
    }

    .lp-page .recommend .price_blk .price .tax {
        font-size: calc(11 * (var(--rate)));
    }

    .lp-page .recommend .price_blk .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(15 * (var(--rate)));
        width: calc(138 * (var(--rate)));
        height: calc(35 * (var(--rate)));
        background: var(--btn-color);
        border-radius: calc(5 * (var(--rate)));
        color: #fff;
    }

    .lp-page .recommend .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    /* ========= content_2 ========= */
    .lp-page .content_2 .content_main:nth-of-type(1) {
        padding: calc(50 * (var(--rate))) calc(20 * (var(--rate))) calc(40 * (var(--rate)));
    }
    .lp-page .content_2 .content_main:nth-of-type(2) {
        padding: calc(20 * (var(--rate))) calc(20 * (var(--rate))) calc(50 * (var(--rate)));
    }








    .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: ease-in-out 1s;
        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: ease-in-out 1s;
        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(350 * (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(30 * (var(--rate)));
        height: calc(30 * (var(--rate)));
        top: calc(15 * (var(--rate)));
        background: #fff;
        border-radius: 100%;
        right: calc(10 * (var(--rate)));
        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(20 * (var(--rate)));
        height: 1px;
        background-color: #0A64A6;
        transform: rotate(45deg);
        position: absolute;
        top: calc(1 * (var(--rate)));
        right: calc(5 * (var(--rate)));
        bottom: calc(9 * (var(--rate)));
        margin: auto;
    }
    .close-btn span:after{
    transform: rotate(-45deg);
    }


    .point_modal_inner {
        overflow: scroll;
        height: calc(520 * (var(--rate)));
    }

    .point_modal_inner .campaign {
        padding: calc(50 * (var(--rate))) 0;
        width: 100%;
        height: auto;
        background: url(../img/camapign_bg.jpg) no-repeat;
        background-size: cover;
    }

    .point_modal_inner .campaign .webstore {
        text-align: center;
        width: calc(145 * (var(--rate)));
        margin: auto;
        font-size: calc(14 * (var(--rate)));
        padding: calc(4 * (var(--rate))) calc(12 * (var(--rate))) calc(2 * (var(--rate)));
        border: var(--yellow-color) solid calc(1 * (var(--rate)));
        color: var(--yellow-color);
    }

    .point_modal_inner .campaign .ttl {
        text-align: center;
        font-family: var(--font-en_2);
        font-size: calc(36 * (var(--rate)));
        font-weight: 700;
        color: var(--yellow-color);
    }

    .point_modal_inner .campaign .camapign_img {
        margin: calc(0 * (var(--rate))) auto 0;
        width: calc(305 * (var(--rate)));
    }

    .point_modal_inner .campaign .exclusive {
        text-align: center;
        font-weight: 700;
        margin: calc(12 * (var(--rate))) auto 0;
        font-size: calc(14 * (var(--rate)));
        color: var(--yellow-color);
    }

    .point_modal_inner .campaign .camapign_area {
        position: relative;
        margin: calc(20 * (var(--rate))) auto 0;
        padding-bottom: calc(20 * (var(--rate)));
        width: calc(330 * (var(--rate)));
        border: var(--yellow-color) calc(1 * (var(--rate))) solid;
        z-index: 0;
    }

    .point_modal_inner .campaign .camapign_01 ,
    .point_modal_inner .campaign .camapign_02 {
        position: absolute;
        font-size: calc(14 * (var(--rate)));
        font-family: var(--font-en_2);
        color: var(--yellow-color);
        background-color: #0861a2;
        padding: calc(0 * (var(--rate))) calc(10 * (var(--rate)));
        top: calc(-14 * (var(--rate)));
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .point_modal_inner .campaign .camapign_01 span ,
    .point_modal_inner .campaign .camapign_02 span {
        font-size: calc(20 * (var(--rate)));
    }

    .point_modal_inner .campaign .camapign_pointup {
        margin: calc(5 * (var(--rate))) auto 0;
        width: calc(168 * (var(--rate)));
    }

    .point_modal_inner .campaign .exclusive span {
        display: inline-block;
        margin: calc(2 * (var(--rate))) auto 0;
        font-size: calc(19 * (var(--rate)));
    }

    .point_modal_inner .campaign .camapign_text {
        text-align: center;
        margin: calc(8 * (var(--rate))) auto 0;
        font-size: calc(12 * (var(--rate)));
        line-height: 1.5;
        color: var(--yellow-color);
    }

    .point_modal_inner .campaign .camapign_btn {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: calc(12 * (var(--rate))) auto 0;
        width: calc(250 * (var(--rate)));
        height: calc(40 * (var(--rate)));
        border-radius: calc(5 * (var(--rate)));
        font-size: calc(14 * (var(--rate)));
        font-variation-settings: "wght" 500;
        color: var(--blue-color);
        background: #fff;
        z-index: 0;
    }
    
    .point_modal_inner .campaign .coupon_blk {
        margin: calc(-2 * (var(--rate))) auto 0;
        width: calc(180 * (var(--rate)));
    }

    .point_modal_inner .campaign .coupon_blk .coupon_text {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(12 * (var(--rate)));
        width: 100%;
        height: calc(20 * (var(--rate)));
        background: #054F84;
        color: #fff;
    }

    .point_modal_inner .campaign .coupon_blk .coupon_number {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--font-en_2);
        font-size: calc(20 * (var(--rate)));
        width: 100%;
        height: calc(35 * (var(--rate)));
        color: #054F84;
        background: var(--yellow-color);
    }





    .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, #e3f3fb 0%, #c5e9fd);
}

.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: 20rem;
}

.lp-page .fixed_right .nav ul li {
    position: relative;
    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: 4rem;
}

.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.5rem;
    font-weight: 500;
    line-height: 1;
}

.lp-page .fixed_right .text .font_en {
    font-size: 2.5rem;
}

.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;
    transition: ease-in-out 1s;
    width: 9rem;
}


.lp-page .follow_banner.m_fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 9rem;
    transition: ease-in-out 1s;
    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: 1s ease-in-out;
    }

}

