@charset "UTF-8";


:root {
    --rate: 60rem / 390;
    --lightpink_1-color:#FFF2F1;
    --lightpink_2-color:#FFE9E6;
    --lightpink-line-color: rgba(237 , 170 , 158 , .6);
    --lightgreen-line-color: rgba(131 , 207 , 191 , .6);
    --green-color:#83CFBF;
    --pink-font-color:#EDAA9E;
    --btn-color: #F18383;
    --font-color:#8E8E8E;
    --white-color:#ffffff;
    --font-ja:"ads-showwa70", sans-serif;
    --font-ja_2:"fot-chiaro-std", sans-serif;
    --font-en: "aquavit", sans-serif;
    --font-text: "hiragino-kaku-gothic-pron", 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;
}
	
}


/* #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: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.05em;
    line-height: 1.8;
    z-index: 0;
    width: 100%;
    background: var(--lightblue_1-color);
}
.lp-page img,
.lp-page svg {
    display: block;
    opacity: 1;
    width: 100%;
    height: auto;
}
.lp-page picture {
    display: block;
}
.lp-page a {
    position: relative;
    display: block;
    color: inherit;
    z-index: 1;
}
.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;
    }

    .row-reverse {
        flex-direction: row-reverse;
    }

    /*----------アニメーション----------*/

    .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.is-animated {
        animation: zoomIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    
    @keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
    }
    
    .fadein {
    opacity: 0;
    filter: blur(3px);
    transition: opacity 2s ease 0s, filter 2s ease 0s;
    }

    .fadein.fade-active {
    opacity: 1;
    filter: blur(0px);
    transition: opacity 2s ease 0s, filter 2s ease 0s;
    }


    .fadeup {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(2rem);
    transition: opacity 1s 0s, transform 1s 0s;
    }

    .fadeup.fade-active {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
    }

    .fadein-load {
    opacity: 0;
    transition: opacity 1s;
    }

    .fadein-load.fade-active {
    opacity: 1;
    transition: opacity 1s;
    }

    .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 {
        padding-bottom: calc(60 * (var(--rate)));
        overflow: hidden;
    }

    /* --------- lead --------- */
    .lp-page .lead {
        text-align: center;
        margin: calc(50 * (var(--rate))) auto 0;
        font-size: calc(14 * (var(--rate)));
        line-height: 2;
    }

    .lp-page .nav {
        margin: calc(50 * (var(--rate))) auto 0;
        width: calc(350 * (var(--rate)));
    }

    .lp-page .nav p {
        position: relative;
        font-size: calc(20 * (var(--rate)));
        font-weight: 400;
        font-family: var(--font-en);
        color: var(--green-color);
        line-height: 1;
        z-index: 0;
    }

    .lp-page .nav p::before {
        position: absolute;
        content: "";
        width: 100%;
        height: calc(1 * (var(--rate)));
        border-top: dashed calc(1 * (var(--rate))) var(--lightpink-line-color);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: -1;
    }

    .lp-page .nav .menu {
        background-color: var(--white-color);
        padding: 0 calc(10 * (var(--rate)));
    }

    .lp-page .nav .nav_list {
        padding: 0 0 calc(50 * (var(--rate))) 0;
    }

    .lp-page .nav .nav_list .text_img {
        width: calc(34 * (var(--rate)));
    }

    .lp-page .nav ul li {
        position: relative;
        width: inherit;
        height: calc(50 * (var(--rate)));
        margin: calc(15 * (var(--rate))) auto 0;
        line-height: 1;
        font-size: calc(11 * (var(--rate)));
        font-weight: 500;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 0 0 calc(30 * (var(--rate)));
        background: var(--lightpink_1-color);
        border-radius: calc(5 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .nav ul a:nth-of-type(n+2) li {
        margin: calc(8 * (var(--rate))) auto 0;
    }

    .lp-page .nav ul li::before {
        position: absolute;
        content: "";
        width: calc(340 * (var(--rate)));
        height: calc(40 * (var(--rate)));
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: calc(5 * (var(--rate)));
        border: dashed calc(1 * (var(--rate))) var(--lightpink-line-color);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .lp-page .nav_list .ttl {
        position: relative;
        font-size: calc(17 * (var(--rate)));
        font-family: var(--font-ja);
        letter-spacing: 0;
        color: var(--green-color);
        z-index: 0;
    }

    .lp-page .nav_list .ttl::before {
        position: absolute;
        content: "";
        width: calc(4 * (var(--rate)));
        height: calc(4 * (var(--rate)));
        background: var(--lightpink-line-color);
        top: calc(6 * (var(--rate)));
        left: calc(-10 * (var(--rate)));
        transform: rotate(45deg);
        z-index: 1;
    }

    .lp-page .nav_list .ttl::after {
        position: absolute;
        content: "";
        width: calc(4 * (var(--rate)));
        height: calc(4 * (var(--rate)));
        background: var(--lightpink-line-color);
        top: calc(6 * (var(--rate)));
        right: calc(-10 * (var(--rate)));
        transform: rotate(45deg);
        z-index: 1;
    }

    .lp-page .nav_list .ttl span {
        font-size: calc(16 * (var(--rate)));
        font-family: var(--font-ja_2);
    }

    .lp-page .nav_list .ja {
        display: inline-block;
        padding-left: calc(20 * (var(--rate)));
    }


    /* --------- content --------- */
    .lp-page .content {
        padding: calc(20 * (var(--rate))) 0 0;
    }

    .lp-page .content_ttl .ttl {
        position: relative;
        font-size: calc(30 * (var(--rate)));
        font-weight: 400;
        font-family: var(--font-ja);
        letter-spacing: 0;
        color: var(--green-color);
        z-index: 0;
    }

    .lp-page .content_ttl .text_img {
        display: inline;
        width: calc(60 * (var(--rate)));
    }

    .lp-page .content_ttl .ttl::before {
        position: absolute;
        content: "";
        width: calc(6 * (var(--rate)));
        height: calc(6 * (var(--rate)));
        background: var(--lightpink-line-color);
        top: calc(12 * (var(--rate)));
        left: calc(-15 * (var(--rate)));
        transform: rotate(45deg);
        z-index: 1;
    }

    .lp-page .content_ttl .ttl::after {
        position: absolute;
        content: "";
        width: calc(6 * (var(--rate)));
        height: calc(6 * (var(--rate)));
        background: var(--lightpink-line-color);
        top: calc(12 * (var(--rate)));
        right: calc(-15 * (var(--rate)));
        transform: rotate(45deg);
        z-index: 1;
    }

    .lp-page .content_ttl .ttl span {
        font-size: calc(28 * (var(--rate)));
        font-family: var(--font-ja_2);
    }

    .lp-page .arc-background {
        position: relative;
        background-color: var(--lightpink_2-color);
        border-top-left-radius: calc(120 * (var(--rate)));
        border-top-right-radius: calc(120 * (var(--rate)));
        padding-bottom: calc(60 * (var(--rate)));
        z-index: 0;
    }


    .lp-page .arc-background::before {
        position: absolute;
        content: "";
        width: 103%;
        height: 100%;
        border: var(--lightpink_2-color) dashed calc(1 * (var(--rate)));
        border-top-left-radius: calc(120 * (var(--rate)));
        border-top-right-radius: calc(120 * (var(--rate)));
        top: calc(-15 * (var(--rate)));
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }


    .lp-page .content_inner {
        width: calc(310 * (var(--rate)));
        margin: auto;
        padding: calc(75 * (var(--rate))) calc(20 * (var(--rate))) calc(35 * (var(--rate)));
        background-color: var(--white-color);
        border: 1px solid var(--lightpink-line-color);
        border-bottom-left-radius: calc(30 * (var(--rate)));
        border-bottom-right-radius: calc(30 * (var(--rate)));
        border-top-left-radius: calc(110 * (var(--rate)));
        border-top-right-radius: calc(110 * (var(--rate)));
    }

    .lp-page .content_subttl {
        margin-top: calc(25 * (var(--rate)));
        border: dashed calc(1 * (var(--rate))) var(--lightpink-line-color);
        border-left: none;
        border-right: none;
        display: inline-block;
        font-family: var(--font-ja_2);
        font-size: calc(18 * (var(--rate)));
        padding: calc(12 * (var(--rate))) 0;
        color: var(--pink-font-color);
    }

    .lp-page .content_wrap {
        margin-top: calc(35 * (var(--rate)));
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .lp-page .content_item {
        position: relative;
        width: calc(130 * (var(--rate)));
        z-index: 0;
    }

    .lp-page .content_item::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;
        animation: round_anime 10s linear infinite;
        background-color: #FFF2F1;
        top: 0;
        left: 0;
        z-index: -1;
    }
    @keyframes round_anime {
        0% { border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;}
        25% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;}
        50% { border-radius: 70% 30% 30% 70% / 50% 70% 30% 50%;}
        75% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;}
        100% { border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;}
    }

    .lp-page .content_info {
        text-align: left;
        width: calc(150 * (var(--rate)));
    }

    .lp-page .content_info .brand {
        font-family: var(--font-en);
        font-size: calc(16 * (var(--rate)));
        color: var(--green-color);
        line-height: 1;
    }

    .lp-page .content_info .name {
        margin-top: calc(12 * (var(--rate)));
        font-size: calc(12 * (var(--rate)));
        line-height: 1.6;
    }

    .lp-page .price_wrap {
        margin-top: calc(15 * (var(--rate)));
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .lp-page .price_wrap .price {
        font-family: var(--font-en);
        font-size: calc(14 * (var(--rate)));
    }

    .lp-page .price_wrap .price .tax {
        font-size: calc(11 * (var(--rate)));
    }

    .lp-page .price_wrap .btn {
        font-family: var(--font-en);
        font-weight: 600;
        font-size: calc(13 * (var(--rate)));
        width: calc(50 * (var(--rate)));
        height: calc(24 * (var(--rate)));
        padding-top: calc(1 * (var(--rate)));
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--btn-color);
        border-radius: calc(25 * (var(--rate)));
        color: var(--white-color);
    }

    .lp-page .package_wrap {
        margin-top: calc(15 * (var(--rate)));
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: calc(18 * (var(--rate)));
        border-radius: calc(20 * (var(--rate)));
        background: #FFF2F1;
    }

    .lp-page .package_wrap .content_item {
        width: calc(110 * (var(--rate)));
    }

    .lp-page .package_wrap .content_item::before {
        display: none;
    }

    .lp-page .content_inner .content_wrap:nth-of-type(n+2) {
        margin-top: calc(35 * (var(--rate)));
        padding-top: calc(35 * (var(--rate)));
        border-top: dashed calc(1 * (var(--rate))) var(--lightgreen-line-color);
    }

    .lp-page .border {
        display: block;
        margin-top: calc(30 * (var(--rate)));
        padding-top: calc(30 * (var(--rate)));
        width: 100%;
        border-top: dashed calc(1 * (var(--rate))) var(--white-color);
    }


    .lp-page .page_btn {
        margin: calc(60 * (var(--rate))) auto 0;
        font-family: var(--font-en);
        font-weight: 600;
        font-size: calc(14 * (var(--rate)));
        width: calc(310 * (var(--rate)));
        height: calc(50 * (var(--rate)));
        padding-top: calc(1 * (var(--rate)));
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--btn-color);
        border-radius: calc(25 * (var(--rate)));
        color: var(--white-color);
    }



    .lp-page .fixed-nav {
        background: var(--lightpink_1-color);
        padding: calc(15 * (var(--rate))) 0 calc(10 * (var(--rate)));
        border-top: solid 1px var(--lightpink-line-color);
        box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.2);
        border-radius: calc(30 * (var(--rate))) calc(30 * (var(--rate))) 0 0;
        transition: all 0.2s ease;
        transform: translateY(100%);
    }

    .lp-page .fixed-nav_wrap {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: calc(25 * (var(--rate)));
    }
    
    .lp-page .fixed-nav_blk {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: calc(17 * (var(--rate)));
        font-weight: 700;
        font-family: var(--font-ja_2);
        line-height: 1;
        color: var(--green-color);
        z-index: 0;
    }

    .lp-page .fixed-nav_blk:nth-of-type(n+2)::before {
        position: absolute;
        content: "";
        width: calc(1 * (var(--rate)));
        height: calc(20 * (var(--rate)));
        background: var(--lightpink-line-color);
        top: calc(-1 * (var(--rate)));
        left: calc(-15 * (var(--rate)));
        z-index: 1;
    }

    .lp-page .fixed-nav_blk .text_img {
        width: calc(36 * (var(--rate)));
        margin-left: calc(-2 * (var(--rate)));
    }
    
    .lp-page .fixed-nav.m_fixed {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        transition: all 0.6s ease;
        transform: translateY(0);
    }



@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%;
    max-width: 160rem;
    height: 100%;
    margin: 0 auto;
    top: 50%;
    background: url(../img/bg_pc.jpg) no-repeat;
    background-size: cover;
}

.lp-page .lp_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: url(../img/bg.jpg) center center / cover no-repeat;
}

.lp-page .page-inner {
    width: 45rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: #fff;
    padding-bottom: 8rem;
    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: 38rem;
    margin-left: -5rem;
}

.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 .menu {
    background-color: #EEF8F7;
}

.lp-page {
    background: #EEF8F7;
}

.lp-page .follow_banner.m_fixed {
    display: block;
    position: fixed;
    bottom: calc(10 * (var(--rate)));
    right: calc(20 * (var(--rate)));
    width: calc(120 * (var(--rate)));
    transition: all 0.6s ease;
    transform: translateX(0);
}


.lp-page .page-inner {
    padding-bottom: 0;
}

#footer {
    position: relative;
    z-index: 0;
}

}