@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lora&family=Noto+Serif+JP:wght@400;500;600;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
html {
    font-size: 62.5%;
}

body {
    width: 100%;
    margin: 0 auto;
    color: #000;
    font-size: 1.8rem;
    font-weight: 300;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
}

.body-wrapper {
    position: relative;
    overflow-x: hidden;
}

figure {
    line-height: 0;
}

.sp,
.tb {
    display: none;
}

@media screen and (max-width: 768px) {
    .tb {
        display: block;
    }
    .pc {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .sp {
        display: block;
    }
    .sp-hide {
        display: none;
    }
}

.inner {
    width: 100%;
    max-width: 1110px;
    padding: 0 15px;
    margin: 0 auto;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.position-relative {
    position: relative !important;
}

.flex-1,
.flex-sp {
    flex: 1;
}

.col-white {
    color: #fff !important;
}

.col-blue {
    color: #4369AE !important;
}

.col-gold {
    color: #BBAB78 !important;
}

.f-min {
    font-family: 'Noto Serif JP', sans-serif;
}

.en {
    font-family: 'Lora', serif;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.line2 {
    line-height: 2;
}

.f-12 {
    font-size: 1.2rem !important;
}

.f-14 {
    font-size: 1.4rem !important;
}

.f-16 {
    font-size: 1.6rem !important;
}

.f-20 {
    font-size: 2rem !important;
}

.f-22 {
    font-size: 2.2rem !important;
}

.f-25 {
    font-size: 2.5rem !important;
}

.f-30 {
    font-size: 3rem !important;
}

.f-33 {
    font-size: 3.3rem !important;
}

.f-40 {
    font-size: 4rem !important;
}

.f-50 {
    font-size: 5rem !important;
}

.f-60 {
    font-size: 6rem !important;
}

@media screen and (max-width: 768px) {
    .f-12 {
        font-size: 1.1rem !important;
    }
    .f-14 {
        font-size: 1.2rem !important;
    }
    .f-16 {
        font-size: 1.3rem !important;
    }
    body {
        font-size: 1.4rem !important;
    }
    .f-20 {
        font-size: 1.5rem !important;
    }
    .f-22 {
        font-size: 1.6rem !important;
    }
    .f-25 {
        font-size: 1.8rem !important;
    }
    .f-30,
    .f-33 {
        font-size: 2rem !important;
    }
    .f-40 {
        font-size: 2.2rem !important;
    }
    .f-50 {
        font-size: 2.4rem !important;
    }
    .f-60 {
        font-size: 2.6rem !important;
    }
}

@media screen and (max-width: 480px) {
    .flex-sp {
        flex: none;
        width: 100%;
    }
}


/********************************************************
************************ Header *************************
********************************************************/

.header_wrapper {
    width: 100%;
    max-width: calc(50% + 830px);
    margin-left: auto;
    padding-left: 15px;
}

.header nav ul li {
    margin-left: 100px;
}

.header nav ul li:last-child a {
    display: block;
    width: 240px;
    line-height: 100px;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right top, #7875D1, #7EB7E4);
}

.hamburger {
    display: none;
    position: relative;
    z-index: 999;
    cursor: pointer;
}

.menu-trigger {
    position: relative;
    width: 50px;
    height: 51px;
}

.menu-trigger span {
    position: absolute;
    left: 9px;
    width: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 3px;
    transition: all .4s;
}

.menu-trigger span:nth-of-type(1) {
    top: 14px;
}

.menu-trigger span:nth-of-type(2) {
    top: 23px;
}

.menu-trigger span:nth-of-type(3) {
    top: 33px;
}

.menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.hamburger.active .menu-trigger span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(10px) rotate(45deg);
    }
}

.hamburger.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.active .menu-trigger span:nth-of-type(3) {
    width: 30px;
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(-10px) rotate(-45deg);
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 10px;
    }
    .header nav {
        flex: none;
        position: fixed;
        left: 100vw;
        top: 0;
        display: flex;
        align-items: center;
        width: 100vw;
        height: 100vh;
        padding: 10vh 10vw;
        background: #fff;
        overflow-y: scroll;
        z-index: 100;
        transition: all .4s ease;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
        -o-transition: all .4s ease;
    }
    .header nav.active {
        left: 0;
    }
    .header nav ul {
        width: 100%;
    }
    .header nav ul li {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
        border-bottom: 1px solid #000;
    }
    .header nav ul li:last-child {
        border-bottom: none;
    }
    .header nav ul li a {
        display: block;
        padding: 20px 0;
        text-align: center;
    }
    .header nav ul li:last-child a {
        width: 100%;
        line-height: 23px;
    }
    .hamburger {
        display: block;
    }
}


/********************************************************
************************ Footer *************************
********************************************************/

.footer {
    background: #4A4949;
}

.footer nav ul li {
    margin-right: 80px;
}

@media screen and (max-width: 480px) {
    .footer nav {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer nav ul li {
        width: 50%;
        text-align: center;
        margin-right: 0;
    }
    .copyright {
        width: 100%;
        text-align: center;
    }
}


/********************************************************
************************ top *************************
********************************************************/

.top_mv-wrapper {
    position: absolute;
    left: calc(50% - 865px);
    top: 0;
    width: 1730px;
    margin: 0 auto;
    padding: 0 15px;
    letter-spacing: .06em;
}

.top_mv-wrapper .cm_sns {
    width: 21.5%;
    margin-left: 10%;
}

.top_mv-wrapper .mv_bnr {
    width: 50%;
}

.top_mv h1 {
    font-size: 4rem;
    line-height: 1.5;
    text-shadow: 10px 10px 20px #fff, -10px -10px 20px #fff;
}

.f-lg {
    font-size: 130%;
}

.top_mv h1 .col-blue {
    font-size: 145%;
}

.top_mv h2 {
    text-shadow: 5px -5px 8px #fff, 5px 5px 8px #fff, -5px 5px 8px #fff, -5px -5px 8px #fff;
}

@media screen and (max-width: 1730px) {
    .top_mv-wrapper {
        left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 1440px) {
    .top_mv--img {
        display: none;
    }
    .top_mv-wrapper {
        position: relative;
        background: url(../img/mv_bg.png) no-repeat center / cover;
    }
}

@media screen and (max-width: 1024px) {
    .top_mv h1 {
        font-size: 2.7vw;
    }
}

@media screen and (max-width: 480px) {
    .top_mv-wrapper {
        padding-top: 10px !important;
        background: url(../img/mv_bg.png) no-repeat top center / 100% auto;
    }
    .top_mv h1 {
        font-size: 3.5vw;
    }
    .top_mv-wrapper .cm_sns {
        width: 30%;
    }
    .top_mv-wrapper .mv_bnr {
        width: 100%;
    }
}

.shop_part {
    padding: 30px 3%;
    border: 3px solid #BBAB78;
}

.shop_img {
    width: 40%;
    margin-right: 10px;
}

.shop_price {
    line-height: 1;
}

.shop_price-tag {
    width: 135px;
    padding: 10px;
    margin-right: 20px;
    color: #D96487;
    border: 1px solid #D96487;
}

.shop_part a {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 360px;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to right, #5C81C4, #B492E1, #64B8DE, #5E89D5);
    border-radius: 85px;
    -webkit-border-radius: 85px;
    -moz-border-radius: 85px;
    -ms-border-radius: 85px;
    -o-border-radius: 85px;
}

.shop_part a::after {
    content: '\f054';
    position: absolute;
    right: 30px;
    top: 50%;
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.plus_part {
    padding: 50px 8%;
    background: #EDF4F8;
    border: 1px solid #9DB5C2;
}

.plus_part figure {
    margin-right: 7%;
}

@media screen and (max-width: 480px) {
    .shop_img {
        width: 100%;
        margin-right: 0;
    }
    .shop_price-value {
        margin-top: 10px;
    }
    .plus_part {
        padding: 30px 15px;
    }
    .plus_part figure {
        width: 100%;
        margin: 0 0 15px;
        text-align: center;
    }
}

.benefit {
    border: 1px solid #D96487;
}

.benefit::after {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 245px;
    height: 195px;
    background: url(../img/ribon.png) no-repeat left top / 100% auto;
}

.benefit h2 {
    line-height: 1;
    padding: 20px 10px;
    background: linear-gradient(to right, #D96487, #D83566);
}

.benefit h2 span {
    font-size: 170%;
}

.benefit ul li {
    padding: 40px 10px;
    border-top: 1px solid #D96487;
}

.benefit ul li:nth-child(2),
.benefit ul li:nth-child(3),
.benefit ul li:nth-child(4) {
    width: 33.33%;
}

.benefit ul li:nth-child(5),
.benefit ul li:nth-child(6) {
    width: 50%;
}

.benefit ul li:nth-child(2),
.benefit ul li:nth-child(3),
.benefit ul li:nth-child(5) {
    border-right: 1px solid #D96487;
}

.benefit_num {
    width: 42px;
    margin: 8px 15px 0 0;
    text-align: center;
    line-height: 42px;
    font-size: 3.7rem;
    color: #fff;
    background: #D96487;
}

.gift-list {
    max-width: 650px;
    margin: 0 auto;
}

.gift-list_item {
    width: 32%;
}

@media screen and (max-width: 768px) {
    .benefit::after {
        top: -7px;
        width: 160px;
    }
    .benefit_num {
        width: 30px;
        margin: 2px 10px 0 0;
        line-height: 30px;
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 480px) {
    .benefit::after {
        top: -5px;
        width: 120px;
    }
    .benefit ul li {
        width: 100% !important;
        border-right: none !important;
    }
    .benefit ul li.justify-content-center {
        justify-content: flex-start !important;
    }
    .gift-list {
        margin: 0 -1.5%;
        justify-content: center !important;
    }
    .gift-list_item {
        width: 47%;
        margin: 0 1.5%;
    }
}

.power {
    background: url(../img/power_bg.png) no-repeat center / cover;
}

.power .inner {
    max-width: 860px;
}

.power h2 {
    letter-spacing: .1em;
    line-height: 1.5;
}

.power h2::before {
    content: url(../img/power_tag.png);
    position: absolute;
    left: 55px;
    top: -75px;
    line-height: 0;
}

.youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.youtube-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .power h2::before {
        left: calc(50% - 220px);
        top: -87px;
        transform: scale(.7);
    }
}

.trouble h2 {
    position: absolute;
    left: 0;
    top: 8%;
    width: 100%;
    color: #4BB0B4;
    text-shadow: 5px -5px 8px #fff, 5px 5px 8px #fff, -5px 5px 8px #fff, -5px -5px 8px #fff;
}

.trouble_balloon {
    position: absolute;
    left: 47%;
    top: 22%;
    width: 40%;
    max-width: 708px;
}

.trouble_balloon-item {
    position: absolute;
    width: 48.5%;
    height: 44%;
}

.trouble_balloon-item:first-of-type {
    left: 0;
    top: 0;
}

.trouble_balloon-item:nth-of-type(2) {
    left: 51%;
    top: 16%;
}

.trouble_balloon-item:last-of-type {
    left: 15.5%;
    top: 56%;
}

@media screen and (max-width: 1024px) {
    .trouble {
        padding-bottom: 2em;
        background: url(../img/trouble_img.png) no-repeat center / cover;
    }
    .trouble_img {
        display: none;
    }
    .trouble h2 {
        position: relative;
        top: 0;
        padding: 1em 15px;
    }
    .trouble_balloon {
        position: relative;
        width: 53%;
        top: 0;
        left: 0;
        margin-left: auto;
    }
}

@media screen and (max-width: 480px) {
    .trouble_balloon {
        width: 60%;
        font-size: 3.25vw !important;
    }
}

.resolution::before {
    content: '';
    position: absolute;
    left: 0;
    top: -20%;
    right: 0;
    bottom: 0;
    background: url(../img/power_bg.png) no-repeat center / contain;
    z-index: -1;
}

.resolution_tag {
    height: 168px;
    background: url(../img/triangle.png) no-repeat center bottom / auto;
}

.resolution figure {
    width: 35%;
    margin-right: 5%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .resolution_tag {
        height: 120px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .resolution figure {
        width: 100%;
        margin-right: 0;
    }
}

.point {
    background: url(../img/water.png) repeat-y top center / 100% auto;
}

.point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right top, #7875D1, #678DD2, #7EB7E4, #C2E5F9, #7EB7E4);
    z-index: -1;
}

.point_header {
    padding: 0 15px;
    background: url(../img/point_bg.png) no-repeat bottom center / cover;
}

.point_header h2 {
    position: absolute;
    left: 0;
    top: 15%;
    width: 100%;
    line-height: 1;
}

.point_header h2 span {
    font-size: 160%;
}

.point_header h2 span .en {
    font-size: 173%;
}

.point-list_cont {
    width: 55%;
}

.point-list_img {
    width: 40%;
}

.point-list_cont--num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-right: 15px;
    line-height: 1.2;
    background: url(../img/point_num.png) no-repeat center / contain;
}

.point-list_chart {
    background: #fff;
    color: #4A4949;
}

.point-list_chart--ttl {
    padding: 20px 10px;
    letter-spacing: .1em;
    background: #E0E9EE;
}

.point-list_chart .d-flex {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.point-list_chart .d-flex figure {
    width: 47%;
    margin-right: 10px;
}

@media screen and (max-width: 480px) {
    .point-list_cont {
        width: 100%;
    }
    .point-list_cont--num {
        width: 60px;
        height: 60px;
    }
    .point-list_img {
        width: 100%;
        margin-top: 15px;
    }
    .point-list_chart .d-flex figure {
        width: 100%;
        margin-right: 0;
    }
}

.stick {
    padding: 30px 6%;
    background: url(../img/stick_bg.png);
    background-size: 100% 100%;
}

.stick figure {
    width: 40%;
    margin-right: -3%;
}

.use {
    padding: 40px 6%;
    letter-spacing: .05em;
    border: 1px solid #BBAB78;
}

.use::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55%;
    background: #F0EEE8;
    z-index: -1;
}

.use figure {
    width: 35%;
    margin-right: 3%;
}

.use .line2 {
    line-height: 2.2;
}

.use .en {
    font-style: italic;
}

@media screen and (max-width: 480px) {
    .stick figure {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .use figure {
        width: 100%;
        margin: 0 0 15px;
        text-align: center;
    }
}

.voice_header {
    background: linear-gradient(to right, #7875D1, #678DD2, #7EB7E4, #C2E5F9, #7EB7E4);
}

.voice_list li {
    padding: 0 5%;
    background: #E0E9EE;
}

.voice_list li figure {
    width: 35%;
    margin-right: 10px;
}

@media screen and (max-width: 480px) {
    .voice_list li figure {
        width: 100%;
        margin: 0 0 15px;
    }
}

.intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #7875D1, #678DD2, #7EB7E4, #C2E5F9, #7EB7E4);
    z-index: -1;
}

.intro {
    background: url(../img/intro_bg.png) no-repeat center bottom / contain;
}

.faq {
    background: #EFF4F6;
}

.faq ul li {
    border-bottom: 1px solid #fff;
}

.faq_question {
    position: relative;
    padding-left: 40px;
}

.faq_question::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    font-family: 'Lora', serif;
    background: #fff;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
}

@media screen and (max-width: 768px) {
    .faq_question::before {
        top: -3px;
    }
}

.pay-way ul {
    width: 48%;
}

.pay-way ul li {
    padding: 30px 0;
    border-bottom: 1px solid #E0E9EE;
}

.pay-way ul li p {
    width: 160px;
    color: #757B87;
}

.pay-way ul li:nth-child(4) p {
    width: 200px;
}

@media screen and (max-width: 768px) {
    .pay-way ul li p {
        width: 130px;
    }
    .pay-way ul li:nth-child(4) p {
        width: 170px;
    }
}

@media screen and (max-width: 480px) {
    .pay-way ul {
        width: 100%;
    }
}