@charset "UTF-8";
/* CSS Document */

body{
    margin: 0;
}

.sp{
    display: none;
}

.pc{
    display: inherit;
}


/*動き*/
.fadein_element {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein_element_is_fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 0;
    right: 0;
}

.fadein_element_naname {
  opacity: 0;
  transform: translate(50px, 50px); /* ← 右下方向からスタート */
  transition: all 0.8s ease-out;
}

.fadein_element_is_fadein_naname {
  opacity: 1;
  transform: translate(0, 0); /* ← 元の位置に戻る */
}

.shivering{
    animation: shivering 2s linear infinite;
}

@keyframes shivering{
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-10deg);
    }
    20% {
        transform: rotateZ(5deg);
    }
    25% {
        transform: rotateZ(-5deg);
    }
    30% {
        transform: rotateZ(3deg);
    }
    35% {
        transform: rotateZ(-2deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

/*buruburu-hover*/
.buruburu_hover:hover {
    display: block;
    animation: hurueru .1s  infinite;
}

@keyframes hurueru {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(1%, 0px) rotateZ(1deg)}
/*    50% {transform: translate(0px, 1px) rotateZ(0deg)}*/
/*    75% {transform: translate(1px, 0px) rotateZ(-1deg)}*/
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}


@keyframes fuwafuwa-random {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(3px, -8px) rotate(2deg); }
  50%  { transform: translate(-5px, 5px) rotate(-2deg); }
  75%  { transform: translate(4px, -4px) rotate(1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.fuwafuwa-random,
.wchance div::after,
.wchance div::before{
  animation: fuwafuwa-random 5s ease-in-out infinite;
}

.fuwafuwa-random,
.wchance div::after{
  animation-delay: 0s;
  animation-duration: 6s;
}
.fuwafuwa-random,
.wchance div::before{
  animation-delay: 1s;
  animation-duration: 7s;
}


/* fuwafuwa */
@keyframes fuwafuwa-uesita2 {
  0% { transform: translateY(13px); }  /* ← 最初から少し下に */
  50% { transform: translateY(0); }
  100% { transform: translateY(13px); }
}

.fuwafuwa-uesita2{
    animation: fuwafuwa-uesita2 3s linear infinite;
/*    animation-delay: 3s;*/
} 

/* fuwafuwa-uesita */
.fuwafuwa-uesita{
    animation: fuwafuwa-uesita 3s linear infinite;
} 

@keyframes fuwafuwa-uesita {
  0% { transform: translateY(0) }
  50% { transform: translateY(13px) }
  100% { transform: translateY(0) }
}

/*fuwafuwa*/
.fuwafuwa{
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-3deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(3deg);
  }
}

/*yurayura*/
.yurayura{
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform:translate(-50%, 0)  rotate(5deg);
  }
  50%{
      transform:translate(-50%, 0)  rotate(-5deg);
  }
}

/* slidein_shu_left */
.slidein_shu_left{
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    position: relative;
}
.slidein_shu_left_move {
    animation: slidein_shu_left_move 3s 1;
    opacity: 1;
    visibility: visible;
}

@keyframes slidein_shu_left_move {
  0% {
    opacity: 0;
    transform: translateX(-1000px);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* slidein_shu_right */
.slidein_shu_right{
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    position: relative;
}
.slidein_shu_right_move {
    animation: slidein_shu_right_move 3s 1;
    opacity: 1;
    visibility: visible;
}

@keyframes slidein_shu_right_move {
  0% {
    opacity: 0;
    transform: translateX(1000px);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* slidein_shu_down */
.slidein_shu_down{
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    position: relative;
}
.slidein_shu_down_move {
    animation: slidein_shu_down_move 3s 1;
    opacity: 1;
    visibility: visible;
}

@keyframes slidein_shu_down_move {
  0% {
    opacity: 0;
    transform: translateY(1000px);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes kurukuru{
  0%{ transform:rotateY(0);}
  100%{ transform:rotateY(360deg); }
}

/**/


/* poyoyon */
.poyoyon {
  animation: poyoyon 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* 次fuwafuwa */
.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out alternate;
  display: inline-block;
  opacity: 1;
  animation-delay: 1.4s;
}

@keyframes poyoyon {
  0% {
    transform: translateX(-50%) translateY(-200px);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  65% {
    transform: translateX(-50%) translateY(-35px);
  }
  80% {
    transform: translateX(-50%) translateY(0); 
  }
  90% {
    transform: translateX(-50%) translateY(-20px); 
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@keyframes fuwafuwa {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    30% {
        transform: translateX(-50%) rotate(3deg);
    }
    70% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(3deg);
  }
}



/* popup */
@keyframes popup {
    0% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    70% {
        transform: translateX(0) scale(1.0);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(1.0);
        opacity: 1;
    }
}

@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
        transform: scale(1.0);
    }
    50%, 70% {
        transform: scale(0.93);
    }
}

.popup.is-popup {
  animation: popup 1s ease-in-out, poyopoyo 1.5s ease-out 0.8s infinite;
}

/* popup2 */
@keyframes popup2 {
    0% {
        transform: translateX(-100%) scale(0.8);
        opacity: 0;
    }
    70% {
        transform: translateX(0) scale(1.0);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(1.0);
        opacity: 1;
    }
}

.popup2 {
  opacity: 0; /* 初期状態で非表示 */
  visibility: hidden; /* 画面上に存在しないようにする */
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.popup2.is-popup2 {
  visibility: visible;
  opacity: 1;
  animation: popup2 1s ease-in-out, poyopoyo 1.5s ease-out 0.8s infinite;
}


/**/

#endbox{
    display: none;
}

/*共通*/
section#top{
    background: #FFF798;
    font-size: 18px;
    text-align: left;
    color: #40210F;
    max-width: none;
    width: 100%;
    padding: 0;
    letter-spacing: 0.07em;
    word-break: break-all;
    font-family: 'Noto Sans JP', sans-serif;
     line-height: 1.5;
}

.asterisk{
    text-indent: -1em;
    margin-left: 1em;
    color: #454545;
}

.asterisk::before{
    content: '※';
}

.t-c{
    text-align: center;
}
/*

#top section{
    padding: 100px 0;
    margin: 0 auto;
}
*/

#top img{
    width: 100%;
}

#top a{
    display: block;
    width: 100%;
    height: 100%;
}

.section_wrapper{
    max-width: 980px;
    width: 86.67%;
    margin: 0 auto;
    padding: 100px 0;
}

.section_title{
    max-width: 630px;
    width: 100%;
    margin: auto auto 60px auto;
}

.text_big{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/*nav*/
#top #nav{
    padding: 25px 0;
    background: #5D452B;
}

#nav ul{
    display: flex;
    justify-content: space-between;
    max-width: 980px;
    width: 95%;
    margin: 0 auto;
}

#nav ul li{
    width: 20%;
    border-right: 1px solid rgba(255,255,255,0.3);
    vertical-align: middle;
    position: relative;
    padding: 0 0.8%;
}

#nav ul li:first-child{
    border-left: 1px solid rgba(255,255,255,0.3);¥
}

#nav ul li a{
    position: relative;
}

#nav ul li a:hover{
    top: 5px;
}

/*mv kv*/
#kv{
}


/*outline*/
#outline{
    background: url(../img/bg.png);
    background-size: 100% auto;
    background-repeat: repeat-y;
    position: relative;
    text-align: center;
}

.day{
/*    max-width: 870px;*/
    width: 100%;
    margin: auto auto 100px auto;
}

#outline .outline_text{
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

#outline .outline_text span{
    font-size: 28px;
    font-weight: 700;
}

#outline .outline_text span.pink{
    color: #E5147F;
}

#outline ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px auto 150px auto;
}

#outline ul li{
    width: 49%;
}

.youtube_box{
    position: relative;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 200px;
}

.youtube_box:before{
    content: '';
    background: radial-gradient(rgba(255, 247, 152, 1), rgba(255, 247, 152, 0));
    background-image: radial-gradient(#FFF798 0%, #FFF798 20%, transparent 80%);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
/*    opacity: 65%;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 0
}

.youtube{
    width: 80%; /* 伸縮する横幅 */
    max-width: 380px; /* 最大の横幅 */
    margin: auto; /* 画面の中央に配置 */
    z-index: 1;
    position: relative;
    
    border: 9px solid #5D452B;
    border-radius: 10px;
    background: #5D452B;
}

.youtube iframe,
.youtube video{
    aspect-ratio: 9 / 16;
    width: 100%;
    height: 100%;
    display: block;
}

/*prize*/
#prize{
    position: relative;
}

#prize::before{
    content: '';
    background: url(../img/prize_line.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 6.5vw;
    display: block;
    position: absolute;
    top: -6.5vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#prize .section_wrapper{
    padding: 40px 0 100px 0;
}

.prize_box.pc{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.prize_box ul{
    width: 50%;
}

.prize_box ul:first-child li{
    width: 94.3%;
}

.prize_box ul:last-child li:first-child{
    max-width: 292px;
    width: 100%;
}

.prize_box ul:last-child li:nth-child(2){
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: -10px;
    margin-top: -20px;
}

.prize_box ul:last-child li:nth-child(2) span.pink{
    color: #E5147F;
    font-size: 27px;
    font-weight: 800;
}

.prize_box ul:last-child li:nth-child(2) span.big{
    font-size: 47px;
}

.prize_box ul:last-child li.asterisk{
    font-size: 14px;
    letter-spacing: 0.069em;
    line-height: 1.5;
}

.wchance{
    position: relative;
    margin-top: 50px;
}

.wchance div{
    max-width: 870px;
    width: 100%;
    margin: 0 auto;
}

.wchance div::before{
    content: '';
    background: url(../img/wchance_img_l.png);
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 223px;
    width: 17.63vw;
    height: 21vw;
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
}

.wchance div::after{
    content: '';
    background: url(../img/wchance_img_r.png);
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 221px;
    width: 17.47vw;
    height: 19.4vw;
    display: block;
    position: absolute;
    top: -17px;
    right: 0;
}

/*product*/
#product{
    position: relative;
    text-align: center;
}

#product .text_big{
    margin-bottom: 20px;
}

#product .asterisk{
    font-size: 14px;
/*    margin-bottom: 5px;*/
}

.product_box{
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 50px 0 60px 0;
    margin-top: 40px;
}

.product_box .title{
    color: #CC312D;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
}

.product_box_01,
.product_box_02{
    max-width: 870px;
    width: 95%;
    margin: 0 auto;
}

.product_box_01{
    border-bottom: 1px dashed #939393;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.product_box_01 ul{
    display: flex;
    justify-content: space-between;
}

.product_box_01 ul li img{
    width: 74.5%!important;
    margin: auto auto 10px auto;
}

.product_box_01 ul li span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.product_box_01 ul li span.red{
    color: #CC312D;
}

.product_box_02 ul li:first-child{
    max-width: 519px;
    width: 100%;
    margin: 0 auto;
}

.product_box_02 ul li.set_text{
    margin-top: 10px;
    letter-spacing: 0.1em;
     line-height: 1.4;
}

.product_box_02 ul li.set_text span.set_text_20{
    font-size: 20px;
    display: block;
    font-weight: 600;
}

.product_box_02 ul li.set_text span.set_text_28{
    font-size: 28px;
    display: inline;
    font-weight: 800;
    margin: 0 15px;
}

.product_box_02 ul li.set_text span.set_text_30{
    font-size: 30px;
    display: block;
    font-weight: 800;
}

.product_box_02 ul li.set_text span.set_text_red{
    background: #CC312D;
    color: #fff;
    border-radius: 45px;
    font-weight: 800;
    font-size: 28px;
    padding: 5px;
    max-width: 250px;
    width: 50%;
    display: inline-block;
    margin: 10px auto;
    line-height: 1.5;
}

.product_sugar_box{
    margin-top: 50px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 50px 0 60px 0;
    margin-top: 40px;
    position: relative;
}

.product_sugar_box::after{
    content: '';
    background: url(../img/product_sugar_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 118px;
    height: 123px;
    display: block;
    position: absolute;
    top: -6px;
    left: 100px;
}

.product_sugar_box .product_sugar_inner{
    max-width: 870px;
    width: 89.6%;
    margin: 0 auto;
}

.product_sugar_box .title{
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 1px dashed #40210F;
    padding-bottom: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product_sugar_box .title span{
    font-size: 22px;
    display: block;
}

.product_sugar_box .product_sugar_inner p:first-of-type{
    font-weight: 700;
    font-size: 20px;
    margin: 40px auto;
    line-height: 1.5;
}

.product_sugar_box .product_sugar_inner p:first-of-type span{
    font-size: 28px;
    display: block;
    margin: 3px auto 15px auto;
}

.product_sugar_box .product_sugar_inner p:last-of-type{
    line-height: 1.6;
}

/*application*/
#application{
    background: #fff;
    position: relative;
}

.application_text{
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    line-height: 1.8;
}

.application_text span{
    font-size: 28px;
    font-weight: 600;
}

#application .step_box{
    border: 4px solid #5D452B;
    border-radius: 20px;
    width: 100%;
    margin: auto auto 30px auto;
}

.step_box .title{
    background: #5D452B;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    padding: 20px 0;
}

.step_box .title img{
    max-width: 461px;
    width: 100%!important;
    margin: 0 auto;
}

#application .step_box .inner{
    max-width: 870px;
    width: 91.8%;
    margin: 0 auto;
    padding: 40px 0;
}

#application .step_box .btn{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 755px;
    width: 100%;
    margin: auto auto 40px auto;
}

#application .step_box .btn li{
    width: 46.36%;
    height: 100%;
    color: #fff;
}

#application .step_box .btn li a{
    width: 100%;
    border-radius: 10px;
    align-content: center;
    padding: 14px 1em;
    font-size: 22px;
    position: relative;
    text-align: center;
    font-weight: 600;
}

#application .step_box .btn li a span{
    font-size: 16px;
    margin-bottom: -3px;
    display: block;
    font-weight: 400;
}

#application .step_box .btn li a::after{
    content: '';
    width: 10px;
    height: 15px;
    background: url(../img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#application .step_box .btn li a:hover{
    top: 10px;
    box-shadow: none;
}

#application .step_box .btn li a{
    background: #CC312D;
    border: 3px solid #921D25;
    box-shadow:0 10px 0 #921D25;
}

.step_box.step01{
    text-align: center;
}

.step_box .step_text{
    font-size: 18px;
}

.step_box .step_text .asterisk{
    font-size: 14px;
    color: #454545;
    margin-top: 10px;
}

#application .step_box .step_set{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#application .step_box .step_set li:first-child{
    width: 21%;
}

#application .step_box .step_set li:last-child{
    width: 76.66%;
    text-align: left;
}

#application .step_box .step_set li:last-child span{
    display: block;
}

#application .step_box .case{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

#application .step_box .case ul{
    border: 2px solid #5D452B;
    background: #E6DACB;
    padding: 20px;
    border-radius: 10px;
    width: 48.85%;
}

#application .step_box .case ul li:first-child{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #40210F;
    padding-bottom: 10px;
    margin-bottom: 5px;
}

#application .step_box .case ul li:nth-child(2){
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
}

#application .step_box .case ul li:nth-child(2) span.red{
    color: #CC312D;
}

#application .step_box .case ul li:nth-child(2) span.big{
    font-size: 33px;
    font-weight: 800;
}

#application .step_box .case ul li.asterisk{
    font-size: 14px;
    color: #454545;
}

#application .step_box .asterisk.step2{
    font-size: 14px;
    color: #454545;
    margin-top: 20px;
}

/*notes*/
#notes{
    border: 4px solid #CC312D;
    border-radius: 20px;
    width: 100%;
    margin: 100px auto auto auto;
    position: relative;
    line-height: 1.6;
    text-align: left;
}

#notes .notes_box_title{
    color: #fff;
    font-size: 27px;
    text-align: center;
    background: #CC312D;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 13px 1em;
    font-weight: 600;
}

#notes .notes_inner{
    max-width: 872px;
    width: 91.8%;
    margin: 0 auto;
    padding: 40px 0;
}

#notes .notes_inner .receipt{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

#notes .notes_inner .receipt li:first-child{
    width: 48.31%;
}

#notes .notes_inner .receipt li:last-child{
    width: 46.62%;
}

#notes .notes_inner .receipt li:last-child span{
    width: 89.12%;
    display: block;
    margin-bottom: 18px;
}

#notes .notes_inner .receipt_2,
#notes .notes_inner .receipt_3{
    margin-top: 40px;
}

#notes .notes_inner .receipt_2 .notes_inner_title,
#notes .notes_inner .receipt_3 .notes_inner_title{
    border-bottom: 1px solid #40210F;
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    color: #40210F;
}

#notes .notes_inner .receipt_2 li{
    font-size: 16px;
}

#notes .notes_inner .receipt_2 .maru::before{
    content: '◎';
}

#notes .notes_inner .receipt_2 .maru{
    text-indent: -1em;
    margin-left: 1em;
}

#notes .notes_inner .receipt_2 .asterisk{
    color: #CC312D;
}

#notes .notes_inner .receipt_3 ul{
    display: flex;
    justify-content: space-between;
}

#notes .notes_inner .receipt_3 ul li{
    width:  15.6%;
}


/*terms*/
#terms{
    background: url(../img/bg.png);
    background-size: 100% auto;
    background-repeat: repeat-y;
    position: relative;
    text-align: left;
}

#terms p{
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
    margin: auto auto 40px auto;
}

.accordion{
    width: 100%;
    margin: 0 auto;
}

.accordion_header,
.accordion_content{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    width: 100%;
}

.accordion_content{
    padding: 10px 0;
}

.accordion_header {
    cursor: pointer;
    background-color: #40210F;
    color: #fff;
    position: relative;
    font-weight: 600;
    font-style: normal;
    border-radius: 10px;
    font-size: 20px;
    letter-spacing: 0.13em;
}

.accordion_content {
    display: none;
/*    background-color: #fff;*/
    font-size: 16px;
    line-height: 1.75;
    color: #40210F;
}

.accordion_content .asterisk{
    color: #40210F;
}

.accordion_content ul{
/*    width: 90.11%;*/
    margin: 0 auto;
}

.accordion_header:nth-child(n + 1) {
    margin-top: 20px;
}

.accordion_header::before{
    position: absolute;
    content: '';
    top: 50%;
    right: 30px;
    width: 20px;
    height: 3px;
    background-color:#fff;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

.accordion_header::after{
    position: absolute;
    content: '';
    top: 50%;
    right: 30px;
    width: 20px;
    height: 3px;
    background-color:#fff;
    transition: all .3s ease-in-out;
}

.accordion_header.open::before {
    transform: rotate(180deg);
}

.accordion_header.open::after {
    opacity:0;
}

.accordion_content ul .disc::before{
    content: '・';
}

.accordion_content ul .disc{
    text-indent: -1em;
    margin-left: 1em;
}

.mb-1{
    margin-bottom: 1em;
}

.accordion_content ul ol li:nth-child(n+2){
    text-indent: -1em;
    margin-left: 2em;
}

.accordion_content ul li a{
    display: inline!important;
/*    color: #007D9B;*/
    text-decoration: underline;
}

/*contact*/
#contact .contact{
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 100px auto auto auto;
    padding: 20px 0;
    text-align: center;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #5D452B;
    letter-spacing: 0.07em;
}

#contact .contact li:first-child{
    width: 84.5%;
    font-size: 18px;
    background: #5D452B;
    color: #fff;
    padding: 3px 1em;
    border-radius: 45px;
    line-height: 1.7;
    margin: auto auto 10px auto;
    font-weight: 600;
}

#contact .contact li:nth-child(2){
/*    letter-spacing: 0em;*/
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

#contact .contact li:nth-child(3){
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 5px;
}

#contact .contact li:last-child{
    font-size: 16px;
}


/*追従系*/
#top section#pagetop,
#top section#tuiju{
    padding: 0;
}

#pagetop{
    right: 0;
    bottom: 0;
    width: 66px;
    height: 64px;
    position: fixed;
    z-index: 9;
}


#pagetop:hover,
#tuiju:hover{
    opacity: 0.5;
}

#tuiju{
    width: 152px;
    height: 163px;
    position: fixed;
    right: 15px;
    bottom: 70px;
    z-index: 9;
}

@media screen and  (max-width:920px){
    .product_sugar_box::after{
        left: 4vw;
    }
}

@media screen and  (max-width:850px){
    #application .step_box .btn li a::after{
        display: none;
    }
}

@media screen and (max-width:767px){
    .pc{
        display: none!important;
    }

    .sp{
        display: inherit;
    }

    section#top{
        font-size: 15px;
        overflow: hidden;
    }

/*
    #top section{
        padding: 50px 0;
    }
*/

    .section_wrapper{
        padding: 50px 0;
    }

    .section_title{
        max-width: 450px;
        margin: auto auto 30px auto;
    }

    .text_big{
        font-size: 18px;
        letter-spacing: 0.07em;
    }

    
    @keyframes poyoyon {
      0% {
        transform: translateX(-50%) translateY(-200px);
        opacity: 0;
      }
      50% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
      }
      65% {
        transform: translateX(-50%) translateY(-15px);
      }
      80% {
        transform: translateX(-50%) translateY(0); 
      }
      90% {
        transform: translateX(-50%) translateY(-10px); 
      }
      100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
      }
    }

    
    @keyframes popup {
        0% {
            transform: translateX(-100%) scale(0.8);
            opacity: 0;
        }
        70% {
            transform: translateX(0) scale(1.0);
            opacity: 1;
        }
        100% {
            transform: translateX(0) scale(1.0);
            opacity: 1;
        }
    }
    
    /*nav*/
    #top #nav{
        padding: 10px 0 20px 0;
    }

    #nav ul{
        display: block;
        width: 86.68%;
    }

    #nav ul li{
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        vertical-align: middle;
        position: relative;
        padding: 10px 17px;
    }

    #nav ul li:first-child{
        border-left: none;
    }
    
    #nav ul li a:hover{
        top: 0px;
    }


    /*outline*/
    #outline{
        background: url(../img/sp/bg.png);
        background-size: 100% auto;
        background-repeat: repeat-y;
        position: relative;
        text-align: center;
    }

    .day{
        margin: auto auto 40px auto;
    }

    #outline .outline_text{
        font-size: 16px;
        letter-spacing: 0.07em;
    }

    #outline .outline_text span{
        font-size: 18px;
    }

    #outline ul{
        display: block;
        margin: 20px auto 80px auto;
        max-width: 400px;
        width: 87.5%;
    }

    #outline ul li{
        width: 100%;
    }
    
    #outline ul li:first-child{
        margin-bottom: 15px;
    }

    .youtube_box{
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .youtube{
        border: 5px solid #5D452B;
        border-radius: 5px;
    }

    /*prize*/
    #prize::before{
        content: '';
        background: url(../img/sp/prize_line.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 13.5vw;
        display: block;
        position: absolute;
        top: -13.2vw;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    #prize .section_wrapper{
        padding: 20px 0 35px 0;
    }

    .prize_box.sp{
        display: block;
    }

    .prize_box ul{
        width: 100%;
    }

    .prize_box ul:first-child li{
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .prize_box ul:last-child li:first-child{
        width: 100%;
        font-weight: 600;
        font-size: 18px;
        line-height: 1;
        margin: 10px auto 15px auto;
        text-align: center;
        letter-spacing: 0.05em;
    }

    .prize_box ul:last-child li:first-child span.pink{
        color: #E5147F;
        font-size: 22px;
        font-weight: 800;
    }

    .prize_box ul:last-child li:first-child span.big{
        font-size: 35px;
    }

    .prize_box ul:last-child li:nth-child(2){
        max-width: 400px;
        width: 100%;
        margin: auto auto 15px auto;
    }
    
    .prize_box ul:last-child li:nth-child(3){
        margin-bottom: 10px;
    }

    .prize_box ul:last-child li.asterisk{
        font-size: 12px;
        letter-spacing: 0.02em;
    }
    
    .wchance {
        margin-top: 14vw;
    }

    .wchance div::before{
        content: '';
        background: url(../img/sp/wchance_img_l.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 30vw;
        height: 31vw;
        display: block;
        position: absolute;
        top: -8vw;
        left: -17px;
    }

    .wchance div::after{
        content: '';
        background: url(../img/sp/wchance_img_r.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 26.14vw;
        height: 30.94vw;
        display: block;
        position: absolute;
        top: -8vw;
        right: -17px;
    }
    
    /*product*/
    #product .text_big{
        margin-bottom: 10px;
    }

    #product .asterisk{
        font-size: 12px;
        text-align: left;
        letter-spacing: 0.02em;
    }

    .product_box{
        border-radius: 10px;
        padding: 30px 0 30px 0;
        margin-top: 20px;
    }

    .product_box .title{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .product_box_01,
    .product_box_02{
        max-width: 500px;
        width: 89.6%;
        margin: 0 auto;
    }

    .product_box_01{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .product_box_01 ul{
        flex-wrap: wrap;
    }

    .product_box_01 ul li{
        width: 50%;
    }
    
    .product_box_01 ul li:nth-child(3),
    .product_box_01 ul li:last-child{
        margin-top: 30px;
    }

    .product_box_01 ul li img{
        width: 82.4%!important;
    }

    .product_box_01 ul li span{
        font-size: 14px;
    }

    .product_box_01 ul li span.red{
        margin-top: 2px;
    }

    .product_box_02 ul li.set_text{
        margin-top: 15px;
    }

    .product_box_02 ul li.set_text span.set_text_20{
        font-size: 16px;
    }

    .product_box_02 ul li.set_text span.set_text_28{
        font-size: 18px;
        margin: 0;
    }

    .product_box_02 ul li.set_text span.set_text_30{
        font-size: 20px;
    }

    .product_box_02 ul li.set_text span.set_text_red{
        border-radius: 5px;
        font-size: 18px;
        padding: 10px 5px;
        max-width: 130px;
        width: 50%;
        display: inline-block;
        margin: 10px auto;
        letter-spacing: 0.02em;
    }

    .product_sugar_box{
        margin-top: 30px;
        border-radius: 10px;
        padding: 56px 0 30px 0;
    }

    .product_sugar_box::after{
        content: '';
        background: url(../img/sp/product_sugar_01.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 103px;
        height: 54px;
        display: block;
        position: absolute;
        top: -7px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .product_sugar_box .title{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .product_sugar_box .title span{
        font-size: 16px;
    }

    .product_sugar_box .product_sugar_inner p:first-of-type{
        font-size: 14px;
        margin: 20px auto;
        line-height: 1.7;
    }

    .product_sugar_box .product_sugar_inner p:first-of-type span{
        font-size: 20px;
        margin: 3px auto 5px auto;
    }

    .product_sugar_box .product_sugar_inner p:last-of-type{
        line-height: 1.7;
        text-align: left;
        font-size: 14px;
    }

    /*application*/
    .application_text{
        font-size: 16px;
        letter-spacing: 0.07em;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .application_text span{
        font-size: 18px;
    }

    #application .step_box{
        border: 3px solid #5D452B;
        border-radius: 10px;
        width: 100%;
        margin: auto auto 20px auto;
    }

    .step_box .title{
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        text-align: center;
        display: inline-block;
        padding: 10px 0;
        width: 100%;
    }

    .step_box .title img{
        max-width: 300px;
        width: 66.5%!important;
    }

    #application .step_box .inner{
        max-width: 870px;
        width: 91.8%;
        margin: 0 auto;
        padding: 20px 0;
    }

    #application .step_box .btn{
        display: block;
        max-width: 500px;
        margin: auto auto 20px auto;
    }

    #application .step_box .btn li{
        width: 100%;
        height: 100%;
        color: #fff;
        margin-bottom: 20px;
    }

    #application .step_box .btn li a{
        padding: 8px 1em;
        font-size: 16px;
    }

    #application .step_box .btn li a span{
        font-size: 12px;
        margin-bottom: 0px;
    }
    
    #application .step_box .btn li a::after{
        content: '';
        width: 10px;
        height: 15px;
        background: url(../img/arrow.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        display: block;
    }

    #application .step_box .btn li a:hover{
        top: 7px;
        box-shadow: none;
    }

    #application .step_box .btn li a{
        border: 2px solid #921D25;
        box-shadow:0 7px 0 #921D25;
    }
    
    .step_box .step_text{
        font-size: 15px;
        text-align: left;
        line-height: 1.7;
    }

    .step_box .step_text .asterisk{
        font-size: 12px;
        letter-spacing: 0.02em;
    }

    #application .step_box .step_set{
        display: block;
    }

    #application .step_box .step_set li:first-child{
/*        width: 42%;*/
        width: 123px;
        margin: auto auto 10px auto;
    }

    #application .step_box .step_set li:last-child{
        width: 100%;
        text-align: left;
    }
    
    #application .step_box .case{
        display: block;
        margin-top: 20px;
    }

    #application .step_box .case ul{
        border: none;
        background: #E6DACB;
        padding: 15px 20px;
        border-radius: 5px;
        width: 100%;
    }
    
    #application .step_box .case ul:first-child{
        margin-bottom: 20px;
    }

    #application .step_box .case ul li:first-child{
        font-size: 15px;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    #application .step_box .case ul li:nth-child(2){
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    #application .step_box .case ul li:nth-child(2) span.big{
        font-size: 23px;
    }

    #application .step_box .case ul li.asterisk{
        font-size: 12px;
        letter-spacing: 0.02em;
    }

    #application .step_box .asterisk.step2{
        font-size: 12px;
        letter-spacing: 0.02em;
        margin-top: 10px;
    }
    

    /*notes*/
    #notes{
        border-radius: 10px;
        margin: 40px auto auto auto;
    }

    #notes .notes_box_title{
        font-size: 18px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        padding: 15px 1em;
        line-height: 1.3;
    }

    #notes .notes_inner{
        padding: 20px 0 0 0;
    }

    #notes .notes_inner .receipt{
        display: block;
        margin-top: 0;
    }

    #notes .notes_inner .receipt li:first-child{
        max-width: 450px;
        width: 100%;
        margin: 20px auto;
    }

    #notes .notes_inner .receipt li:last-child{
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }

    #notes .notes_inner .receipt li:last-child span{
        width: 100%;
        margin-bottom: 25px;
    }

    #notes .notes_inner .receipt_2,
    #notes .notes_inner .receipt_3{
        margin-top: 40px;
    }

    #notes .notes_inner .receipt_2 .notes_inner_title,
    #notes .notes_inner .receipt_3 .notes_inner_title{
        font-size: 15px;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }

    #notes .notes_inner .receipt_3 ul{
        flex-wrap: wrap;
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }

    #notes .notes_inner .receipt_3 ul li{
        width:  46.4%;
        margin-bottom: 20px;
    }

    /*terms*/
    #terms p{
        font-size: 15px;
        margin: auto auto 30px auto;
    }

    .accordion_header,
    .accordion_content{
        padding: 10px 0;
    }

    .accordion_header {
        border-radius: 5px;
        font-size: 15px;
    }

    .accordion_content {
        font-size: 15px;
    }

    .accordion_header::before{
        right: 20px;
        width: 15px;
    }

    .accordion_header::after{
        right: 20px;
        width: 15px;
    }

    /*contact*/
    #contact .contact{
        margin: 30px auto auto auto;
        border-radius: 10px;
        padding: 15px 0;
    }

    #contact .contact li:first-child{
        width: 91.2%;
        font-size: 14px;
        padding: 5px 1em;
        margin: auto auto 10px auto;
    }

    #contact .contact li:nth-child(2){
        font-size: 14px;
    }

    #contact .contact li:nth-child(3){
        font-size: 25px;
        margin-bottom: 0;
    }

    #contact .contact li:last-child{
        font-size: 12px;
    }

    /*追従系*/
    #pagetop{
        width: 10.67%;
        height: auto;
    }

    #tuiju{
        width: 89.8%;
        height: auto;
        right: auto;
        left: 0;
        bottom: 0;
    }
    
    
    .footer__main{
        margin-bottom: 10vw;
    }
}

@media screen and  (max-width:372px){
    .product_box_02 ul li.set_text span.set_text_28{
        display: block;
        margin: -8px auto;
    }
    .product_box_02 ul li.set_text span.set_text_red{
        width: 100%;
    }
}


@media screen and  (max-width:320px){
    #application .step_box .btn li a::after{
        display: none;
    }
}
