@charset "UTF-8";

html {
  font-size: 62.5%;
}


:root {
    --white: #ffffff;
    --black: #000000;
    --blue: #1264af;
    --bg1: #fffbf0;
    --bg2: #fff7e5;
    --gray: #c4c4c4;
    --yellow: #fed50b;
    --yellow_h: #ffea71;
    --yellow_l: #c9a800;
    --yellow_m: #ffe44d;
}



.o-wrapper {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 30px;
}

.o-wrapper.--md {
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
}

.o-wrapper.--sm {
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
	padding: 0;
}

@media screen and (max-width:740px) {

	.o-wrapper,
	.o-wrapper.--md {
		padding-right: 20px;
		padding-left: 20px;
	}

	.o-wrapper.--sm {
		padding: 0 0px !important;
	}
}

.o-grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
}

.o-grid[data-gap~="pc:40"] {
    gap: 40px 40px;
}

.o-grid-item-1 {
    grid-column: auto/span 1
}

.o-grid-item-2 {
    grid-column: auto/span 2
}

.o-grid-item-3 {
    grid-column: auto/span 3
}

.o-grid-item-4 {
    grid-column: auto/span 4
}

.o-grid-item-5 {
    grid-column: auto/span 5
}

.o-grid-item-6 {
    grid-column: auto/span 6
}

.o-grid-item-7 {
    grid-column: auto/span 7
}

.o-grid-item-8 {
    grid-column: auto/span 8
}

.o-grid-item-9 {
    grid-column: auto/span 9
}

.o-grid-item-10 {
    grid-column: auto/span 10
}

.o-grid-item-11 {
    grid-column: auto/span 11
}

.o-grid-item-12 {
    grid-column: auto/span 12
}

.o-order-1 {
    order: 1;
}

.o-order-2 {
    order: 2;
}


@media screen and (max-width: 740px) {
    .o-grid[data-gap~="sp:20"] {
    grid-row-gap: 20px;
    grid-column-gap: 20px
    }

    .o-grid-item-1-sp {
        grid-column:auto/span 1
    }

    .o-grid-item-2-sp {
        grid-column: auto/span 2
    }

    .o-grid-item-3-sp {
        grid-column: auto/span 3
    }

    .o-grid-item-4-sp {
        grid-column: auto/span 4
    }

    .o-grid-item-5-sp {
        grid-column: auto/span 5
    }

    .o-grid-item-6-sp {
        grid-column: auto/span 6
    }

    .o-grid-item-7-sp {
        grid-column: auto/span 7
    }

    .o-grid-item-8-sp {
        grid-column: auto/span 8
    }

    .o-grid-item-9-sp {
        grid-column: auto/span 9
    }

    .o-grid-item-10-sp {
        grid-column: auto/span 10
    }

    .o-grid-item-11-sp {
        grid-column: auto/span 11
    }

    .o-grid-item-12-sp {
        grid-column: auto/span 12
    }

    .o-order-1 {
        order: 2;
    }

    .o-order-2 {
        order: 1;
    }   

    .o-order-1-sp {
        order: 1;
    }

    .o-order-2-sp {
        order: 2;
    }
}

.o-spacer-mb-80 {
	margin-bottom: 80px !important;
}

.o-spacer-mb-60 {
	margin-bottom: 60px !important;
}

.o-spacer-mb-50 {
	margin-bottom: 50px !important;
}

.o-spacer-mb-40 {
	margin-bottom: 40px !important;
}

.o-spacer-mb-30 {
	margin-bottom: 30px !important;
}

.o-spacer-mb-20 {
	margin-bottom: 20px !important;
}

.o-spacer-mb-10 {
	margin-bottom: 10px !important;
}

.o-spacer-pb-80 {
	padding-bottom: 80px !important;
}

.o-spacer-pb-60 {
	padding-bottom: 60px !important;
}

.o-spacer-pb-50 {
	padding-bottom: 50px !important;
}

.o-spacer-pb-40 {
	padding-bottom: 40px !important;
}

.o-spacer-pb-30 {
	padding-bottom: 30px !important;
}

.o-spacer-pb-20 {
	padding-bottom: 20px !important;
}

.o-spacer-pb-10 {
	padding-bottom: 10px !important;
}

@media screen and (max-width: 740px){
    .o-spacer-mb-80-sp {
        margin-bottom: 80px !important;
    }

    .o-spacer-mb-60-sp {
        margin-bottom: 60px !important;
    }

    .o-spacer-mb-50-sp {
        margin-bottom: 50px !important;
    }

    .o-spacer-mb-40-sp {
        margin-bottom: 40px !important;
    }

    .o-spacer-mb-30-sp {
        margin-bottom: 30px !important;
    }

    .o-spacer-mb-20-sp {
        margin-bottom: 20px !important;
    }

    .o-spacer-mb-10-sp {
        margin-bottom: 10px !important;
    }
}

.u-text-center {
    text-align: center !important
}

.u-margin-0-auto {
    margin: 0 auto !important
}


@media screen and (max-width: 740px) {
    p {
        font-size: 1.6rem;
    }
}

.nowrap {
	white-space: nowrap;
}






/*container
---------------------------------------------------------- */
#container {
    min-width: 1100px;
    overflow: hidden;
    margin-bottom: 630px;
    padding-bottom: 280px;
    position: relative;
}


#container::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    aspect-ratio: 288 / 169;
    width: 100%;
    background: url("img/bg_05.webp") no-repeat bottom center;
    background-size: cover;
    bottom: 0px;
}

@media screen and (max-width: 740px) {
	#container {
		min-width: 100%;
        font-size: 1.4rem;
        text-align: left;    
        margin-bottom: 330px;
	}

    #container::after {
        bottom: 130px;
    }
}

.bg01 {
    background-color: var(--bg1);
}

.bg02 {
    background-color: var(--bg2);
}


/* 購入ボタン　横長
---------------------------------------------------------- */
.btn_purchase.--square {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 260px;
    margin: 0 auto;
    padding: 10px 20px;
    color: var(--black);
    font-weight: bold;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 5px 0 var(--yellow_l);
    transition: 0.2s;
    background: linear-gradient(var(--yellow_h), var(--yellow));
}

.btn_icon.--square {
    width: 30px;
    height: 30px;
    background: url("img/cart.svg") no-repeat center / contain;
    margin-right: 20px;
    }

.btn_text.--square {
    font-size: 2.3rem;
}

.btn_purchase.--square:hover {
    background: var(--yellow_m);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.btn_purchase.--square:active {
    transform: translateY(1px);
    box-shadow: 0 3px 0 var(--yellow_l);
}

@media screen and (max-width: 740px) {
    .btn_purchase.--square {
        padding: 10px 0;
        width: 60%;
        min-width: 270px;
    }
}

.fixed_logo {
    position: fixed;
    max-width: 200px;
    width: 36vw;
    top: calc(env(safe-area-inset-top) + 20px);
    left: 20px;
    z-index: 100;
}

.fixed_logo img {
    transition: 0.3s;
    width: 100%
}

.fixed_logo:hover img {
    opacity: 0.8;
}

.fixed_link {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 150px;
    z-index: 100;
    opacity: 0;
    transition: 0.4s;
}

.fixed_link.show{
    visibility: visible;
    opacity: 1;
}

.fixed_link img{
    width: 100%;
    height: auto;
}


/* 購入ボタン　丸
---------------------------------------------------------- */
.btn_circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 130px;
  height: 130px;
  background: var(--yellow);
  color: var(--black);
  font-weight: bold;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 5px 0 var(--yellow_l);
  transition: 0.2s;
  padding: 3px;
}

.btn_text.--circle {
  font-size: 2.0rem;
}

.btn_icon.--circle {
  width: 70px;
  height: 70px;
  background: url("img/cart.svg") no-repeat center / contain;
  margin-left: 6px;
}

.btn_circle.--circle:hover {
  background: var(--yellow_m);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.btn_circle.--circle:active {
  transform: translateY(1px);
  box-shadow: 0 3px 0 var(--yellow_l);
}


@media screen and (max-width: 740px){
    .fixed_link {
        right:0;
        width:100%;
        bottom: calc(env(safe-area-inset-bottom) + 0px);
    }

    .btn_circle {
        width: 100%;
        height: 64px;
        border-radius: 0;
        flex-direction: row-reverse;
    }

    .btn_text.--circle {
        font-size: 2.5rem;
    }

    .btn_icon.--circle {
        width: 20px;
        padding: 0 20px 0 0;
    }
}

.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 60 / 43;
  background: url("img/mv.webp") no-repeat top center;
  background-size: contain;
  /* height: 100vh; */
}

@media screen and (max-width: 740px) {
  .mv {
    aspect-ratio: 400 / 607;
    background: url("img/mv-sp.webp") no-repeat top center;
    background-size: contain;
  }
}

.total {
    background-color: var(--bg1);    
    position: relative;
    padding-bottom: 20px;
}

.total img {
    width: 50%;
    height: auto;
}

@media screen and (max-width: 740px) {
    .total {
        margin-top: -40px;
    }

    .total img {
        width: 80%;
    }
}

.total_txt img {    
    width: 50%;
    height: auto;
}

.c-bg {
    position: relative;
}

.lead.c-bg::before {
    content: "";
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    aspect-ratio: 120 / 17;
    background: url("img/bg_01.webp") no-repeat top center;
    background-size: 100% auto;
    top: -5px;
}

.lead.c-bg::after {
    content: "";
    position: absolute;
    z-index: 10;
    aspect-ratio: 925 / 492;
    background: url("img/about_03.webp") no-repeat;
    background-size: auto 100%;
    max-width: 925px;
    width: 67%;
    right: 0;
    bottom: -60px;
}

.lead {
    position: relative;
    width: 100%;
    background: url("img/bg_02.webp") no-repeat bottom center;
    background-size: cover;
    z-index: 1;
    margin-bottom: 90px;
    inset: 0;
    padding-bottom: clamp(260px, 30vw, 320px);
}

.lead_copy {        
    max-width: 1080px;
    margin: auto;
}

.lead_h2 {
    position: relative;
    z-index: 10;
    text-align: center;
}

.lead_h2 img {
    width: 75%;
    height: auto;
}

.lead_intro {
    position: relative;
}

.lead_name::before {
    content: "";
    position: absolute;
    z-index: 10;
    background: url("img/about_01.webp") no-repeat;
    background-size: auto 100%;
    max-width: 460px;
    width: 47vw;
    aspect-ratio: 30 / 23;
    right: -76px;
    top: -273px;
}

.lead_name::after {
    content: "";
    position: absolute;
    z-index: 10;
    background: url("img/about_02.webp") no-repeat;
    background-size: auto 100%;
    max-width: 428px;
    width: 47vw;
    aspect-ratio: 224 / 191;
    left: -60px;
    top: -106px;
}

.lead_name {
    text-align: center;
    position: relative;
    top: 80px;
    margin-bottom: 90px;
}

.lead_name img {
    height: auto;
    width: 630px;
}

.lead_txt {
    margin: auto;
}

.lead_txt p {
    color: var(--white);
    font-weight: bold;
    font-size: 2.0rem;
}

@media screen and (max-width: 740px) {
    .lead {
        padding-bottom: 40vw;   
    }

    .lead_intro {
        padding: 0 20px;
    }

    .lead.c-bg::after {
        right: -22vw;
        width: 96%;
        bottom: -30px;
    }

    .lead_h2 img {
        width: 100%;
    }

    .lead_name::before {
        top: -43vw;
        right: -10vw;
    }

    .lead_name::after {
        top: -38vw;
        left: -10vw;
    }

    .lead_name {
        margin-bottom: 23vw;
        top: 25vw;
    }

    .lead_name img {
        width: 100%;
    }

    .lead_txt p {
        width: 100%;
        font-size: 1.6rem;
    }

    .lead_img img {
        width: 35%;
    }
}

.points {
    margin-top: -470px;
    padding-top: 470px;
    margin-bottom: 40px;
    padding-bottom: 180px;
}

.points h2 {
    margin-bottom: 25px;
}

.points_h3 {
    margin-bottom: 10px;
    margin-left: -50px;
}

.points_txt,
.review_txt {
    font-size: 1.6rem;
    margin: auto;
    font-weight: 500;
}

.points_img.--right img {
    width: 100%;
    margin: 0 50px;
}

.points_img.--left img {
    width: 100%;
    margin-left: -50px;
}

.points_img.--cube {
    position: relative;
}

.points_img.--cube::before {
    content: "";
    position: absolute;
    z-index: 10;
    background: url("img/point01_img--cube.webp") no-repeat;
    background-size: auto 100%;
    max-width: 148px;
    width: 148px;
    aspect-ratio: 148 / 85;
    left: -70px;
    top: 180px;
}

@media screen and (max-width: 740px) {
    .points {
        margin-top: -510px;
    }

    .points h2 img {
        width: 70%;
        height: auto;
        max-width: 400px;
    }

    .points_block {
        padding-left: 20px;
        padding-right: 20px;
    }

    .points_h3 {
        margin: 0 10px 15px;
    }

    .points_h3 img {
        width: 90%;
        height: auto;
    }

    .points_h3.--02 {
        width: 82.9%;
    }

    .points_h3.--03 {
        width: 97.7%;
    }

    .points_txt {
        padding: 0 10px;
    }

    .points_img.--right img {
        margin: 0;
    }

    .points_img.--left img {
        margin: 0;
    }

    .points_img img {
        margin: 0 0 10px;
    }

    .points_img.--cube::before {
        left: auto;
        top: -35px;
        right: 0;
        max-width: 26vw;
    }

    .points_img.--cube {
        margin-top: 15px;
    }
        
}

.slider {
  overflow: hidden;
}

.slider_row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
}

.slider_track {
  display: flex;
  width: max-content;
}

.slider_track img {
  width: 197px;
  height: auto;
  margin-right: 37px;
}

/* 左に流れる */
.slider_row--left .slider_track {
  animation: slideLeft 20s linear infinite;
}

/* 右に流れる */
.slider_row--right .slider_track {
  animation: slideRight 20s linear infinite;
}

/* アニメーション */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 740px) {
    .slider_track img {
        width: 120px;
        margin-right: 9px;
    }

    .slider_row {
        margin-bottom: 12px;
    }
}

.review.c-bg::before {
    content: "";
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    aspect-ratio: 1440 / 847;
    background: url("img/bg_03.webp") no-repeat top center;
    background-size: 100% auto;
    top: 0px;
}

.review {
    background: url("img/bg_04.webp") no-repeat bottom center;
    background-size: cover;
    padding-top: 150px;
    margin-top: -190px;
    padding-bottom: 190px;
}

.review h2 {
    position: relative;
    z-index: 100;
}

.review h2 img {
    width: auto;
    height: 80px;
}

.review_item {
    text-align: center;
}

.review_item img {
    width: 700px;
}

.review_img img {
    width: 100%;
}

.review_block.--01 {
    margin-top: -30px;
}

.review_block.--02 {
    margin-top: -70px;
}

.review_block.--03 {
    margin-top: -50px;
}

@media screen and (max-width: 740px) {
    .review {
        background: url("img/bg_04-sp.webp") no-repeat bottom center;
        background-size: 100% auto;
        padding: 100px 20px 100px;
        margin-top: -170px;
    }

    .review_txt {
        padding: 0 10px;
    }

    .review h2 img {
        width: auto;
        height: 54px;
    }

    .review_item img {
        width: 100%;
    }
}

.faq {
    padding-top: 200px;
    margin-top: -180px;
    padding-bottom: 110px;
}

.faq h2 img {
    width: auto;
    height: 80px;
}

.faq_item {
    border: solid 6px var(--blue);
    background-color: var(--white);
    border-radius: 20px;
    width: 80%;
    margin: 0 auto;
}

.faq_question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.faq_icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.faq_icon::before {
    content: "+";
    font-size: 2.2rem;
    color: var(--white);
    background-color: var(--blue);
    padding: 5px 10px;
    border-radius: 30px;
}

.faq_item.active .faq_icon::before {
    content: "−";
    background-color: var(--gray);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq_answer p {
    padding: 0 40px 20px;
}

@media screen and (max-width: 740px) {
    .faq {
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 60px;
    }

    .faq h2 img {
        width: auto;
        height: 54px;
    }

    .faq_item {
        width: 100%;
        border: solid 5px var(--blue);
    }

    .faq_question {
        font-size: 1.6rem;
        padding: 16px;
    }

    .faq_icon::before {
        padding: 1px 7px;
    }
}

.summary {
    position: relative;
    padding-top: 30px;
    margin-top: -30px;
}

.summary_deco h2 img {
    width: auto;
    height: 80px;
}

.summary_deco::before {
    content: "";
    position: absolute;
    z-index: 10;
    background: url("img/bg_summary--left.webp") no-repeat top center;
    background-size: auto 100%;
    width: 26%;
    max-width: 356px;
    aspect-ratio: 89 / 205;
    left: 0;
    top: 70px;
}

.summary_deco::after {
    content: "";
    position: absolute;
    z-index: 10;
    background: url("img/bg_summary--right.webp") no-repeat top center;
    background-size: auto 100%;
    width: 26%;
    max-width: 356px;
    aspect-ratio: 419 / 833;
    right: 0;
    top: 70px;
}

.summary p {
    font-size: 2.0rem;
    text-align: center;
}

.summary_video {
    width: 500px;
    margin: 0 auto;
}

.summary_price img {
    width: 75%;
    height: auto;
}

@media screen and (max-width: 740px) {
    .summary_deco::before,
    .summary_deco::after {
        display: none;
    }

    .summary_deco {
        padding-left: 20px;
        padding-right: 20px;
    }

    .summary_deco h2 img {
        max-width: 100%;
        max-height: 54px;
        width: auto;
        height: auto;  
    }

    .summary_video {
        width: 100%;
        max-width: 560px;
    }

    .summary_video video {
        width: 100%;
    }
}

.purchase_img {
    margin: auto;
}

.purchase_img.--set1 img {
    width: 138px;
    height: auto;
    margin-left: 38px;
}

.purchase_img.--set3 img {
    width: 305px;
    height: auto;
}

@media screen and (max-width: 740px) {
    .purchase_img.--set1 img {
        margin-left: 0;
        width: 50%;
    }

    .purchase_img.--set3 img {
        width: 85%;
    }
}

.l-footer {
    background-image: url("img/bg_footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: calc(630px + 280px);
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -20;
    opacity: 0;
    visibility: hidden;
}

.l-footer.show {
    opacity: 1;
    visibility: visible;
}

.l-footer__inner {
    width: 505px;
    margin: 180px auto 0;
}

.l-footer__sns {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
}

.l-footer__logo {
    display: flex;
    justify-content: center;
}

.l-footer__logo img {
    width: 270px;
    height: auto;
}

.l-footer__copy {
    color: var(--white);
}

@media screen and (max-width: 740px) {
    .l-footer {
        background-image: url("img/bg_footer-sp.jpg");
        background-size: cover;
        height: calc(330px + 280px);
    }

    .l-footer__inner {
        margin-top: 130px;
    }

    .l-footer__logo img {
        max-width: 200px;
        width: 50vw;        
    }

    .l-footer__copy {
        font-size: 1.2rem;
    }
}