@charset "UTF-8";


:root {
    --rate: 60rem / 390;
    --font-color:#2E2E2E;
    --red-color:#B9010F;
    --blue-color:#445BB3;
    --green-color:#B2C18A;
    --pink-color:#CC8CB3;
    --white-color:#ffffff;
    --font-en: "freight-neo-pro", sans-serif;
    --font-text_ttl: "source-han-serif-jp-subset", sans-serif;
    --font-text: "source-han-sans-japanese", 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.05em;
    line-height: 1.8;
    z-index: 0;
    width: 100%;
}
.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;
    }

    .lp-page small {
        text-align: justify;
        display: block;
        margin-top: calc(15 * (var(--rate)));
        font-size: calc(11 * (var(--rate)));
        letter-spacing: 0.05em;
        color: #6F6C6C;
        line-height: 1.5;
    }

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

    .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%{
            transform:translateY(-100%);
        }
        100%{
            transform:translateY(0);
        }
        } */

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

    /* アニメーション定義 */
@keyframes acc14-fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-5px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.container {
    width: 100%;
}

.container .btn-box button {
    width: auto;
    padding: calc(12 * (var(--rate))) 0 0;
    background: transparent;
    border: none;
    font-size: calc(16 * (var(--rate)));
    font-weight: 500;
    font-family: var(--font-en);
    cursor: pointer;
    transition: all 0.6s;
    text-align: left;
    position: relative;
    color: var(--red-color);
}

.container .btn-box button::before {
    content: '';
    position: absolute;
    border-top: var(--red-color) solid calc(1 * (var(--rate)));
    width: calc(10 * (var(--rate)));
    right: calc(-18 * (var(--rate)));
    top: calc(22 * (var(--rate)));
    transform: rotate(90deg);
    transition: all 0.6s;
}

.container .btn-box button::after {
    content: '';
    position: absolute;
    border-top: var(--red-color) solid calc(1 * (var(--rate)));
    width: calc(10 * (var(--rate)));
    right: calc(-18 * (var(--rate)));
    top: calc(22 * (var(--rate)));
    transition: all 0.6s;
}

.container .btn-box button:hover {
    color: var(--red-color);
}

.container .more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    background: transparent;
}

.container .more.appear {
    max-height: fit-content;
    animation: acc14-fadeIn 0.6s ease;
}

.container:has(.more.appear) .btn-box button::before {
    content: '';
    transform: rotate(0deg);
}

.container .more .inner {
    list-style: none;
    padding: calc(10 * (var(--rate))) 0 0;
    margin: 0;
}

.container .more .inner .text {
    font-size: calc(12 * (var(--rate)));
    letter-spacing: 0.05em;
    color: var(--font-color);
}

.container .more .inner .text span {
    font-size: calc(15 * (var(--rate)));
    font-weight: 700;
}


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


    #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/260717/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;
        background-image: linear-gradient(-180deg, #f5f7ff, #e5eafc);
    }

    .lp-page .leadText {
        font-family: var(--font-text_ttl);
        font-weight: 700;
        font-size: calc(20 * (var(--rate)));
        line-height: 1.8;
    }

    .lp-page .lead .leadText {
        font-size: calc(15 * (var(--rate)));
    }

    .lp-page .lead .mainText {
        font-family: var(--font-text_ttl);
        margin-top: calc(10 * (var(--rate)));
        font-size: calc(15 * (var(--rate)));
        font-weight: 700;
        line-height: 2;
    }

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

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

    /* ======= campaign_area ======= */
    .lp-page .campaign_area {
        padding: calc(40 * (var(--rate))) calc(20 * (var(--rate)));
        background: var(--red-color);
        color: var(--white-color);
    }

    .lp-page .campaign_area small {
        text-align: center;
    }

    .lp-page .campaign_inner {
        padding: calc(30 * (var(--rate))) calc(20 * (var(--rate)));
        border: var(--white-color) solid calc(1 * (var(--rate)));
    }

    .lp-page .webOnly {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--font-en);
        margin: auto;
        font-size: calc(16 * (var(--rate)));
        width: calc(155 * (var(--rate)));
        height: calc(25 * (var(--rate)));
        border: var(--white-color) solid calc(1 * (var(--rate)));
    }

    .lp-page .webOnly span {
        display: inline-block;
        font-size: calc(13 * (var(--rate)));
        padding-left: calc(5 * (var(--rate)));
    }

    .lp-page .campaign_inner h2 {
        font-family: var(--font-en);
        margin-top: calc(-5 * (var(--rate)));
        font-size: calc(31 * (var(--rate)));
    }

    .lp-page .campaign_date {
        width: 100%;
        margin-top: calc(10 * (var(--rate)));
    }
    
    .lp-page .campaign_blk {
        position: relative;
        margin-top: calc(5 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .campaign_blk::before {
        position: absolute;
        content: "";
        border-top: var(--white-color) solid calc(1 * (var(--rate)));
        top: calc(20 * (var(--rate)));
        left: calc(0 * (var(--rate)));
        width: 100%;
        z-index: 1;
    }

    .lp-page .campaign_blk .campaign_ttl {
        display: inline-block;
        position: relative;
        padding: calc(0 * (var(--rate))) calc(10 * (var(--rate)));
        font-family: var(--font-en);
        font-size: calc(17 * (var(--rate)));
        background: var(--red-color);
        z-index: 1;
    }

    .lp-page .campaign_blk .campaign_ttl span {
        display: inline-block;
        transform: translateY(calc(2 * (var(--rate))));
        padding-left: calc(5 * (var(--rate)));
        font-style: italic;
        font-size: calc(36 * (var(--rate)));
    }
    
    .lp-page .campaign_cont {
        margin-top: calc(5 * (var(--rate)));
        padding: calc(20 * (var(--rate)));
        background: var(--white-color);
        border-radius: calc(5 * (var(--rate)));
    }

    .lp-page .campaign_img {
        width: calc(135 * (var(--rate)));
        margin: auto;
    }
    
    .lp-page .campaign_blk.second .campaign_img {
        width: calc(270 * (var(--rate)));
        margin: auto;
    }

    .lp-page .campaign_item {
        margin-top: calc(10 * (var(--rate)));
        color: var(--font-color);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lp-page .campaign_item .campaign_item_img {
        width: calc(125 * (var(--rate)));
    }

    .lp-page .campaign_item .campaign_item_text {
        width: calc(150 * (var(--rate)));
        text-align: left;
    }

    .lp-page .campaign_item .campaign_item_name {
        font-size: calc(13 * (var(--rate)));
    }

    .lp-page .campaign_item .campaign_item_price {
        display: inline-block;
        position: relative;
        margin-top: calc(2 * (var(--rate)));
        font-family: var(--font-en);
        font-size: calc(21 * (var(--rate)));
        line-height: 1.2;
        z-index: 0;
    }
    .lp-page .campaign_item .campaign_item_price::before {
        position: absolute;
        content: "";
        border-top: calc(1 * (var(--rate))) var(--font-color) solid;
        width: 100%;
        top: calc(14 * (var(--rate)));
        left: 0;
        z-index: 1;
    }
    .lp-page .campaign_item .campaign_item_price .small {
        font-size: calc(14 * (var(--rate)));
    }
    .lp-page .campaign_item .campaign_item_price .tax {
        font-size: calc(12 * (var(--rate)));
        letter-spacing: 0.05em;
        padding-left: calc(4 * (var(--rate)));
    }

    .lp-page .campaign_item .campaign_item_price.sale {
        margin-top: calc(0 * (var(--rate)));
        font-size: calc(27 * (var(--rate)));
        color: var(--red-color);
    }
    .lp-page .campaign_item .campaign_item_price.sale .small {
        font-size: calc(18 * (var(--rate)));
    }
    .lp-page .campaign_item .campaign_item_price.sale::before {
        border-top: unset;
    }
    .lp-page .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: calc(10 * (var(--rate)));
        width: calc(106 * (var(--rate)));
        height: calc(26 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
        background: var(--font-color);
        color: var(--white-color);
    }
    
    .lp-page .btn.all_item {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: calc(15 * (var(--rate)));
        width: 100%;
        height: calc(40 * (var(--rate)));
        font-size: calc(13 * (var(--rate)));
        background: var(--font-color);
        color: var(--white-color);
    }

    .lp-page .campaign_cont .container .ttl {
        color: var(--font-color);
        font-size: calc(14 * (var(--rate)));
        letter-spacing: 0;
        line-height: 1.5;
    }

    .lp-page .campaign_cont .container .ttl .red {
        font-weight: 700;
        color: var(--red-color);
        text-decoration: underline;
    }

    .lp-page .campaign_cont .container .ttl .red .lrg {
        font-size: calc(20 * (var(--rate)));
        letter-spacing: 0;
    }

    .lp-page .campaign_cont .about_review_btn {
        margin-top: calc(15 * (var(--rate)));
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(260 * (var(--rate)));
        height: calc(40 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
        border: calc(1 * (var(--rate))) var(--red-color) solid;
        color: var(--red-color);
        border-radius: calc(50 * (var(--rate)));
        letter-spacing: 0.05em;
    }


    /* ======= content_1 ======= */
    .lp-page .content {
        position: relative;
        padding: calc(50 * (var(--rate))) calc(20 * (var(--rate)));
        background-image: linear-gradient(-180deg, #f5f7ff, #e5eafc);
        z-index: 0;
    }
    
    .lp-page .content_1 .mainText {
        margin-top: calc(0 * (var(--rate)));
        margin-bottom: calc(10 * (var(--rate)));
    }

    .lp-page .content_1 .leadText {
        font-family: var(--font-text);
    }

    .lp-page .content_1 .qa_inner {
        background: var(--white-color);
        margin: calc(20 * (var(--rate))) auto 0;
        border-radius: calc(5 * (var(--rate)));
        padding: calc(30 * (var(--rate))) calc(20 * (var(--rate)));
    }

    .lp-page .content_1 .container .btn-box button {
        width: calc(260 * (var(--rate)));
        font-family: var(--font-text_ttl);
        font-size: calc(18 * (var(--rate)));
        font-weight: 700;
        color: var(--blue-color);
        padding: calc(0 * (var(--rate))) 0 0 calc(5 * (var(--rate)));
    }

    .lp-page .content_1 .container .btn-box button:hover {
        color: var(--blue-color);
    }

    .lp-page .content_1 .container .more .inner .text {
        text-align: justify;
        font-size: calc(13 * (var(--rate)));
    }

    .lp-page .content_1 .container {
        position: relative;
        border-bottom: #EBEFFF calc(1 * (var(--rate))) solid;
        padding-bottom: calc(20 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .content_1 .container::before {
        position: absolute;
        content: "Q.";
        font-family: var(--font-en);
        font-style: italic;
        color: var(--blue-color);
        font-size: calc(26 * (var(--rate)));
        top: calc(3 * (var(--rate)));
        left: 0;
        z-index: 1;
    }

    .lp-page .content_1 .container .btn-box button::before {
        border-top: var(--blue-color) solid calc(1 * (var(--rate)));
        width: calc(20 * (var(--rate)));
        right: calc(-28 * (var(--rate)));
        top: calc(12 * (var(--rate)));
        transform: rotate(90deg);
    }
    .lp-page .content_1 .container .btn-box button::after {
        border-top: var(--blue-color) solid calc(1 * (var(--rate)));
        width: calc(20 * (var(--rate)));
        right: calc(-28 * (var(--rate)));
        top: calc(12 * (var(--rate)));
    }
    .lp-page .content_1 .container:has(.more.appear) .btn-box button::before {
        content: '';
        transform: rotate(0deg);
    }

    .lp-page .content_1 .container:nth-of-type(2) {
        padding-top: calc(20 * (var(--rate)));
    }
    .lp-page .content_1 .container:nth-of-type(2)::before {
        top: calc(33 * (var(--rate)));
    }

    .lp-page .content_1 .qa_inner_img {
        margin: calc(15 * (var(--rate))) 0;
    }
    .lp-page .content_1 .qa_inner_img.second {
        margin: 0;
    }

    .lp-page .content_1 .sub_text {
        text-align: center;
        font-size: calc(11 * (var(--rate)));
        line-height: 1.5;
    }

    .lp-page .content_1 .border {
        margin: calc(15 * (var(--rate))) 0;
        border-top: #EBEFFF solid calc(1 * (var(--rate)));
    }

    .lp-page .content_1 .container .leadText {
        margin: calc(5 * (var(--rate))) 0 0;
        font-size: calc(18 * (var(--rate)));
        color: var(--blue-color);
    }

    .lp-page .content_1 .container:nth-last-of-type(1) {
        border-bottom: unset;
        padding-bottom: calc(0 * (var(--rate)));
    }

    /* ======= content_2 ======= */
    .lp-page .content_2 {
        position: relative;
        background: #235AA6;
        color: var(--white-color);
        padding: calc(50 * (var(--rate))) calc(20 * (var(--rate))) calc(180 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .content_2 small {
        margin-top: calc(6 * (var(--rate)));
    }

    .lp-page .content_2 .purupuru {
        position: absolute;
        width: calc(350 * (var(--rate)));
        bottom: calc(0 * (var(--rate)));
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .lp-page .content_2 .purupuru.fadeup.fade-active {
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
        animation: purupuru 1.2s ease-in-out;
    }

    @keyframes purupuru {
        0%{
            bottom: calc(-200 * (var(--rate)));
        }
        100%{
            bottom: calc(0 * (var(--rate)));
        }
        } */

    .lp-page .content_2 .mainText {
        margin-top: calc(0 * (var(--rate)));
        margin-bottom: calc(10 * (var(--rate)));
    }

    .lp-page .content_2 small {
        color: var(--white-color);
    }

    .lp-page .green {
        color: var(--green-color);
    }
    .lp-page .pink {
        color: var(--pink-color);
    }

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

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

    .lp-page .abqa_inner .ttl_blk {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .lp-page .abqa_inner .ttl_blk .number {
        font-family: var(--font-en);
        font-style: italic;
        font-size: calc(26 * (var(--rate)));
        color: var(--white-color);
    }
    .lp-page .abqa_inner .ttl_blk .number span {
        font-size: calc(30 * (var(--rate)));
    }

    .lp-page .abqa_inner:nth-of-type(1) .ttl_blk .number span ,
    .lp-page .abqa_inner:nth-of-type(2) .ttl_blk .number span {
        font-size: calc(36 * (var(--rate)));
    }

    .lp-page .abqa_inner .ttl_blk .ttl {
        font-family: var(--font-text_ttl);
        font-size: calc(18 * (var(--rate)));
        font-weight: 700;
        margin-left: calc(5 * (var(--rate)));
    }

    .lp-page .abqa_inner .abqa_wrap {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin-top: calc(5 * (var(--rate)));
    }

    .lp-page .abqa_inner .abqa_wrap .abqa_blk {
        width: calc(170 * (var(--rate)));
        display: flex;
        flex-direction: column;
    }

    .lp-page .abqa_blk .qa_a {
        text-align: center;
        font-family: var(--font-en);
        font-size: calc(18 * (var(--rate)));
        padding: calc(1 * (var(--rate))) 0 calc(0 * (var(--rate)));
        color: var(--white-color);
        background: var(--green-color);
    }
    .lp-page .abqa_blk .qa_b {
        text-align: center;
        font-family: var(--font-en);
        font-size: calc(18 * (var(--rate)));
        padding: calc(1 * (var(--rate))) 0 calc(0 * (var(--rate)));
        color: var(--white-color);
        background: var(--pink-color);
    }

    .lp-page .abqa_blk .qa_text {
        text-align: left;
        font-size: calc(13 * (var(--rate)));
        padding: calc(10 * (var(--rate))) calc(10 * (var(--rate))) calc(8 * (var(--rate)));
        background: var(--white-color);
        line-height: 1.5;
        letter-spacing: 0;
        color: var(--font-color);
        flex: 1;
    }
    
    .lp-page .abqa_blk sup {
        font-size: calc(11 * (var(--rate)));
    }
    
    .lp-page .abqa_inner small {
        text-align: left;
    }



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

    .lp-page .content_2 .tab {
        margin-top: calc(25 * (var(--rate)));
        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)));
        width: calc(173 * (var(--rate)));
        height: calc(28 * (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(--green-color);
    }
    .lp-page .content_2 .tab-btn.b {
        background: var(--pink-color);
    }

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

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

    .lp-page .content_2 .tab-content small {
        color: #6F6C6C;
        text-align: center;
    }


    .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.a .ttl span {
        color: #728440;
        font-size: calc(25 * (var(--rate)));
    }
    .lp-page .content_2 .tab-content.b .ttl span {
        color: #984678;
        font-size: calc(25 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content_inner {
        margin-top: calc(20 * (var(--rate)));
        padding: calc(15 * (var(--rate)));
        background: #E6EDD3;
    }
    .lp-page .content_2 .tab-content.b .tab-content_inner {
        background: #F0E4EB;
    }

    .lp-page .content_2 .tab-content_inner .item_blk {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: calc(15 * (var(--rate))) calc(0 * (var(--rate))) calc(15 * (var(--rate))) 0;
        background: var(--white-color);
    }

    .lp-page .content_2 .tab-content_inner .text_blk {
        text-align: left;
    }

    .lp-page .content_2 .tab-content_inner .item_blk .item_img {
        width: calc(110 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content_inner .text_blk .ttl {
        font-size: calc(13 * (var(--rate)));
        font-weight: 700;
        color: #728440;
    }
    .lp-page .content_2 .tab-content.b .tab-content_inner .text_blk .ttl {
        color: #984678;
    }

    .lp-page .content_2 .tab-content_inner .text_blk .name {
        margin-top: calc(6 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
    }

    .lp-page .content_2 .tab-content_inner .plus {
        margin: calc(5 * (var(--rate))) auto;
        position: relative;
        width: calc(25 * (var(--rate)));
        height: calc(25 * (var(--rate)));
        z-index: 0;
    }
    .lp-page .content_2 .tab-content_inner .plus::before {
        position: absolute;
        content: "";
        border-top: var(--font-color) calc(1 * (var(--rate))) solid;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 1;
    }
    .lp-page .content_2 .tab-content_inner .plus::after {
        position: absolute;
        content: "";
        border-left: var(--font-color) calc(1 * (var(--rate))) solid;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 1;
    }

    .lp-page .content_2 .tab-content .text {
        margin-top: calc(20 * (var(--rate)));
        font-size: calc(13 * (var(--rate)));
        line-height: 1.5;
        letter-spacing: 0.02em;
    }


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

    .lp-page .tab-btn_bottom::before {
        position: absolute;
        content: "";
        background: url(../img/260717/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-image: linear-gradient(-180deg, #f5f7ff, #e5eafc);
    }

    .lp-page .content_3 small {
        text-align: left;
        width: calc(310 * (var(--rate)));
        margin: calc(10 * (var(--rate))) 0 0;
    }

    .lp-page .content_item_img {
        position: relative;
        width: calc(220 * (var(--rate)));
        margin: calc(20 * (var(--rate))) auto 0;
        z-index: 0;
    }
    .lp-page .content_item_img::before {
        position: absolute;
        content: "";
        background: url(../img/260717/new_icon.png) no-repeat;
        background-size: 100%;
        width: calc(85 * (var(--rate)));
        height: calc(85 * (var(--rate)));
        top: 0;
        left: 0;
        z-index: 1;
        animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
    }

      @keyframes floating-y {
        0% {
          transform: translateY(-10%);
        }
        100% {
          transform: translateY(10%);
        }
      }

    .lp-page .content_item_text {
        position: relative;
        margin-top: calc(10 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .content_item_text::before {
        position: absolute;
        content: "";
        background: url(../img/260717/sale_icon.png) no-repeat;
        background-size: 100%;
        width: calc(80 * (var(--rate)));
        height: calc(80 * (var(--rate)));
        top: calc(15 * (var(--rate)));
        right: calc(22 * (var(--rate)));
        z-index: 1;
        animation: saleicon 2.5s ease-in-out infinite alternate-reverse;
    }

  @keyframes saleicon {
    0% {
      transform: rotate(0);
    }
    50% {
        transform: rotate(0);
      }
      55% {
        transform: rotate(5deg);
      }
      60% {
        transform: rotate(5deg);
      }
      60% {
        transform: rotate(0);
      }
    100% {
      transform: translateY(0);
    }
  }

    .lp-page .content_name {
        font-size: calc(18 * (var(--rate)));
        font-weight: 700;
        color: var(--blue-color);
    }

    .lp-page .content_item_price {
        display: inline-block;
        position: relative;
        margin-top: calc(5 * (var(--rate)));
        font-family: var(--font-en);
        font-size: calc(28 * (var(--rate)));
        line-height: 1.2;
        z-index: 0;
    }
    .lp-page .content_item_price::before {
        position: absolute;
        content: "";
        border-top: calc(1 * (var(--rate))) var(--font-color) solid;
        width: 100%;
        top: calc(22 * (var(--rate)));
        left: 0;
        z-index: 1;
    }
    .lp-page .content_item_price .small {
        font-size: calc(25 * (var(--rate)));
    }
    .lp-page .content_item_price .tax {
        font-size: calc(15 * (var(--rate)));
        letter-spacing: 0.05em;
        padding-left: calc(4 * (var(--rate)));
    }

    .lp-page .content_item_price.sale {
        display: block;
        margin-top: calc(0 * (var(--rate)));
        font-size: calc(35 * (var(--rate)));
        color: var(--red-color);
    }
    .lp-page .content_item_price.sale .small {
        font-size: calc(30 * (var(--rate)));
    }
    .lp-page .content_item_price.sale::before {
        border-top: unset;
    }
    .lp-page .content_item_text .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: calc(15 * (var(--rate))) auto 0;
        width: calc(300 * (var(--rate)));
        height: calc(50 * (var(--rate)));
        font-size: calc(16 * (var(--rate)));
        background: var(--font-color);
        color: var(--white-color);
    }

    .lp-page .content_point {
        margin: calc(35 * (var(--rate))) auto 0;
        width: calc(350 * (var(--rate)));
    }

    .lp-page .content_point .ttl {
        font-family: var(--font-en);
        font-size: calc(25 * (var(--rate)));
        color: var(--blue-color);
    }

    .lp-page .content_point .ttl.jp {
        font-family: var(--font-text_ttl);
        font-size: calc(18 * (var(--rate)));
        font-weight: 700;
    }

    .lp-page .content_point .text {
        position: relative;
        text-align: left;
        margin-top: calc(8 * (var(--rate)));
        font-size: calc(13 * (var(--rate)));
        padding: calc(12 * (var(--rate))) calc(25 * (var(--rate))) calc(12 * (var(--rate))) calc(45 * (var(--rate)));
        border-radius: calc(50 * (var(--rate)));
        background: var(--white-color);
        letter-spacing: 0.02em;
        line-height: 1.5;
        z-index: 0;
    }

    .lp-page .content_point .text::before {
        position: absolute;
        content: "";
        background: url(../img/260717/check_blue_icon.png) no-repeat;
        background-size: 100%;
        width: calc(18 * (var(--rate)));
        height: calc(18 * (var(--rate)));
        top: 50%;
        left: calc(16 * (var(--rate)));
        transform: translateY(-50%);
        z-index: 1;
    }

    .lp-page .key_inner {
        margin: calc(20 * (var(--rate))) auto 0;
    }

    .lp-page .key_inner .key_img {
        width: calc(90 * (var(--rate)));
        margin: auto;
    }

    .lp-page .key_inner .key_ttl {
        margin-top: calc(12 * (var(--rate)));
        font-size: calc(15 * (var(--rate)));
        font-weight: 700;
    }

    .lp-page .key_inner .key_text {
        margin-top: calc(12 * (var(--rate)));
        text-align: justify;
        font-size: calc(13 * (var(--rate)));
    }

    .key_inner .btn-box button {
        color: var(--blue-color);
    }
    
    .key_inner .btn-box button::before {
        border-top: var(--blue-color) solid calc(1 * (var(--rate)));
    }
    
    .key_inner .btn-box button::after {
        border-top: var(--blue-color) solid calc(1 * (var(--rate)));
    }
    
    .key_inner .btn-box button:hover {
        color: var(--blue-color);
    }
    

   /* ======= content_4 ======= */
    .lp-page .content_4 {
    background-image: linear-gradient(-180deg, #FDF4F4, #FCEAEB);
    }

    .lp-page .content_4 .leadText {
        position: relative;
        z-index: 0;
    }

    .lp-page .content_4 .leadText::before {
        position: absolute;
        content: "";
        background: url(../img/260717/spf_icon.svg) no-repeat;
        background-size: 100%;
        width: calc(70 * (var(--rate)));
        height: calc(6 * (var(--rate)));
        bottom: calc(38 * (var(--rate)));
        left: calc(85 * (var(--rate)));
        z-index: 1;
    }
    .lp-page .content_4 .leadText::after {
        position: absolute;
        content: "";
        background: url(../img/260717/pa_icon.svg) no-repeat;
        background-size: 100%;
        width: calc(78 * (var(--rate)));
        height: calc(40 * (var(--rate)));
        bottom: calc(-5 * (var(--rate)));
        left: calc(77 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .content_4 .sub_text {
        margin-top: calc(18 * (var(--rate)));
        font-size: calc(15 * (var(--rate)));
        line-height: 2;
    }

    .lp-page .content_4 .item_mainText {
        margin-top: calc(30 * (var(--rate)));
        color: var(--red-color);
    }

    .lp-page .content_4 .item_mainText_ttl {
        position: relative;
        font-size: calc(22 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .content_4 .item_mainText_ttl::before {
        position: absolute;
        content: "";
        height: calc(18 * (var(--rate)));
        border-left: var(--red-color) solid calc(1 * (var(--rate)));
        top: calc(10 * (var(--rate)));
        left: calc(15 * (var(--rate)));
        transform: rotate(150deg);
        z-index: 1;
    }
    .lp-page .content_4 .item_mainText_ttl::after {
        position: absolute;
        content: "";
        height: calc(18 * (var(--rate)));
        border-left: var(--red-color) solid calc(1 * (var(--rate)));
        top: calc(10 * (var(--rate)));
        right: calc(15 * (var(--rate)));
        transform: rotate(-150deg);
        z-index: 1;
    }

    .lp-page .content_4 .item_mainText_text {
        margin-top: calc(10 * (var(--rate)));
        font-size: calc(15 * (var(--rate)));
        line-height: 1.5;
    }

    .lp-page .content_4 .content_item_img::before {
        display: none;
    }

    .lp-page .content_4 .content_item_img {
        width: calc(100 * (var(--rate)));
    }

    .lp-page .content_4 .content_name ,
    .lp-page .content_4 .content_point .ttl {
        color: var(--red-color);
    }

    .lp-page .content_4 .content_point .text::before {
        background: url(../img/260717/check_red_icon.png) no-repeat;
        background-size: 100%;
    }


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

    .lp-page .content_5 .step_inner {
        position: relative;
        width: calc(330 * (var(--rate)));
        margin: auto;
        padding: calc(40 * (var(--rate))) 0 calc(40 * (var(--rate))) calc(20 * (var(--rate)));
        background: var(--white-color);
        z-index: 0;
    }

    .lp-page .content_5 .step_inner::before {
        position: absolute;
        content: "";
        width: calc(350 * (var(--rate)));
        height: calc(492 * (var(--rate)));
        border: var(--red-color) solid calc(1 * (var(--rate)));
        top: calc(5 * (var(--rate)));
        left: calc(5 * (var(--rate)));
        z-index: -1;
    }

    .lp-page .content_5 .step_ttl {
        width: calc(135 * (var(--rate)));
        margin: auto;
    }

    .lp-page .content_5 .leadText {
        margin-top: calc(10 * (var(--rate)));
        font-size: calc(22 * (var(--rate)));
        font-weight: 700;
        line-height: 1.5;
        color: var(--red-color);
    }

    .lp-page .content_5 .simple-bar_wrap {
        width: 100%;
        margin-left: auto;
    }

    .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;
        text-align: center;
        z-index: 0;
    }


    /* simplebar
    ==================================*/
    .lp-page .simple-bar_wrap *{
        /*スクロールバー非表示（IE・Edge）*/
        -ms-overflow-style: none;
        /*スクロールバー非表示（Firefox）*/
        scrollbar-width: none;
    }
    
    .lp-page .simple-bar_wrap{
        width: calc(350 * (var(--rate)));
        margin: auto;
        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(15 * (var(--rate)));
        display: flex;
        width: fit-content;
        align-items: stretch;
    }
    
    .lp-page .simple-bar_wrap ul li {
        position: relative;
        width: calc(155 * (var(--rate)));
        background: #fff;
        margin-right: calc(20 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .simple-bar_wrap ul li::before {
        position: absolute;
        content: "";
        width: calc(20 * (var(--rate)));
        height: calc(45 * (var(--rate)));
        background: url(../img/260717/step_arrow.svg) no-repeat;
        background-size: 100%;
        top: calc(60 * (var(--rate)));
        right: calc(-20 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .simple-bar_wrap ul li:nth-last-of-type(1):before {
        display: none;
    }
    
    .lp-page .simplebar-track.simplebar-horizontal {
        height: calc(3 * (var(--rate)));
        width: calc(250 * (var(--rate)));
        background: #cecece;
        margin: auto;
    }
    
    .lp-page .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
        top: 0;
        height: calc(3 * (var(--rate)));
        background-color: var(--red-color);
    }
    
    .lp-page .simplebar-scrollbar:before{
        background: var(--red-color);
    }

    .step_img {
        width: 100%;
    }

    .step_blk {
        margin-top: calc(10 * (var(--rate)));
        display: inline-block;
        padding: calc(3 * (var(--rate))) calc(10 * (var(--rate)));
        font-size: calc(11 * (var(--rate)));
        font-family: var(--font-en);
        background: var(--font-color);
        color: var(--white-color);
    }

    .step_blk span {
        font-size: calc(15 * (var(--rate)));
    }

    .step_text {
        margin-top: calc(10 * (var(--rate)));
        text-align: center;
        font-size: calc(13 * (var(--rate)));
        letter-spacing: 0;
        line-height: 1.5;
    }

    .step_text span {
        display: inline;
        text-decoration: underline;
        color: var(--red-color);
    }

    .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(-85 * (var(--rate)));
        width: calc(85 * (var(--rate)));
        transition: all 1.6s ease;
    }

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

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


    /* ======= content_6 ======= */
    .lp-page .content_6 {
        background: var(--white-color);
        padding: calc(50 * (var(--rate))) calc(0 * (var(--rate)));
    }

    .lp-page .content_6 .leadText {
        font-family: var(--font-text_ttl);
        font-size: calc(22 * (var(--rate)));
        color: var(--red-color);
        line-height: 1.5;
    }

    .lp-page .content_6 .leadText span {
        font-size: calc(15 * (var(--rate)));
    }

    .lp-page .content_6 .item_wrap {
        margin-top: calc(20 * (var(--rate)));
        margin-bottom: 0;
    }

    .lp-page .content_6 .item_blk {
        background: #F4EDEE;
        margin: 0 calc(5 * (var(--rate)));
        padding-bottom: calc(20 * (var(--rate)));
    }

    .lp-page .content_6 .item_blk .name {
        font-size: calc(15 * (var(--rate)));
        background: var(--red-color);
        color: var(--white-color);
        padding: calc(10 * (var(--rate))) 0 calc(8 * (var(--rate)));
    }

    .lp-page .content_6 .item_blk .item_com {
        width: calc(188 * (var(--rate)));
        margin: calc(15 * (var(--rate))) auto 0;
    }

    .lp-page .content_6 .item_blk .item_com.__2 {
        width: calc(156 * (var(--rate)));
    }

    .lp-page .content_6 .item_blk .item_img {
        width: calc(200 * (var(--rate)));
        margin: calc(5 * (var(--rate))) auto 0;
    }

    .lp-page .content_6 .item_blk .item_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(13 * (var(--rate)));
        width: calc(200 * (var(--rate)));
        height: calc(40 * (var(--rate)));
        margin: calc(12 * (var(--rate))) auto 0;
        background: var(--font-color);
        color: var(--white-color);
    }


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

    .dots-wrap {
        margin-top: calc(20 * (var(--rate)));
        display: flex;
        justify-content: center;
    }
    
    .dots-wrap li {
        width: 50px;
        height: 3px;
        margin: 0 2.5px;
        background: #E5C6C8;
        cursor: pointer;
    }
    
    .dots-wrap li:hover,
    .dots-wrap li.slick-active {
        background: var(--red-color);
    }

    .dots-wrap li button {
        display: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        padding: 0;
        border: none;
        background-color: transparent;
    }

    /* ======= content_7 ======= */
    .lp-page .content_7 {
        background-image: linear-gradient(-180deg, #f5f7ff, #e5eafc);
        padding: calc(50 * (var(--rate))) 0 calc(60 * (var(--rate)));
    }

    .lp-page .content_7 .leadText {
        font-size: calc(35 * (var(--rate)));
        font-family: var(--font-en);
        font-weight: 500;
        color: var(--blue-color);
    }

    .lp-page .content_7 .staff_wrap {
        margin-top: calc(15 * (var(--rate)));
        margin-bottom: 0;
    }

    .lp-page .content_7 .staff_blk {
        background: #fff;
        margin: 0 calc(5 * (var(--rate)));
        padding-bottom: calc(20 * (var(--rate)));
        padding: calc(10 * (var(--rate))) calc(10 * (var(--rate))) calc(20 * (var(--rate)));
    }

    .lp-page .content_7 .staff_textarea {
        text-align: left;
    }

    .lp-page .content_7 .staff_blk .staff_main_img {
        width: 100%;
    }

    .lp-page .content_7 .staff_info_wrap {
        margin-top: calc(10 * (var(--rate)));
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: calc(10 * (var(--rate)));
    }

    .lp-page .content_7 .staff_img {
        width: calc(50 * (var(--rate)));
    }

    .lp-page .content_7 .staff_store {
        font-size: calc(12 * (var(--rate)));
        margin: calc(5 * (var(--rate))) auto 0;
        color: #6F6C6C;
    }

    .lp-page .content_7 .staff_name {
        font-size: calc(12 * (var(--rate)));
    }

    .lp-page .content_7 .staff_com {
        text-align: justify;
        margin-top: calc(10 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
        line-height: 1.5;
    }

    .lp-page .content_7 .staff_btn {
        display: block;
        margin-top: calc(15 * (var(--rate)));
        font-family: var(--font-en);
        font-size: calc(18 * (var(--rate)));
        color: var(--blue-color);
        text-decoration: underline;
    }

    .lp-page .content_7 .all_btn {
        display: block;
        margin: calc(50 * (var(--rate))) auto 0;
        width: calc(305 * (var(--rate)));
    }

    .share-txt {
        display: none;
    }

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

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



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

.lp-page .lp_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: url(../img/260717/bg.jpg) no-repeat;
    background-size: cover;
}

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

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

.lp-page .fixed_right .nav ul li {
    position: relative;
    height: 4rem;
    z-index: 0;
}

.lp-page .fixed_right .nav ul li::before {
    position: absolute;
    content: "";
    background: url(../img/260717/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-family: var(--font-text_ttl);
    font-size: 1.8rem;
    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: 2rem;
    right: -12rem;
    width: 12rem;
    transition: all 0.2 ease-in-out;
}

.lp-page .follow_banner:hover {
    transform: scale(1.1);
}

.lp-page .follow_banner.m_fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 12rem;
    transition: all 1s ease;
}

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

.loading__contents {
    position: relative;
    z-index: 0;
    background: url(../img/260717/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/260717/loadingimg_4_pc.png) no-repeat;
    background-size: 100%;
    animation:bloom 3s ease-in-out .6s;
}

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

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

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

}

