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

body{
    margin: 0;
}

.sp{
    display: none;
}

.pc{
    display: inherit;
}


/*
.application_asterisk{
    margin-bottom: 0!important;
}
.uptext{
    text-align: center;
    font-size: 21px;
    color: red;
    display: inline-block;
    width: 94%;
    margin: 25px auto auto auto;
    
	-webkit-animation:blink 1.3s ease-in-out infinite alternate;
    -moz-animation:blink 1.3s ease-in-out infinite alternate;
    animation:blink 1.3s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

@media screen and (max-width:767px){
    .uptext{
        font-size: 14px;
    }
}

*/

/*動き*/
.anim-box.poyoyon2.is-animated {
  animation: poyoyon2 1s ease-in-out 1 forwards;
    animation-delay: 0.5s;
/*
    animation-name: poyoyon2;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
*/
}

.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

.bounceInUp {
    animation: bounceInUp 1.0s ease 0s 1 normal;
}
/* bounceInUp */
@keyframes bounceInUp {
    0,
    60%,
    75%,
    90%,
    100% {
        animation-timing-function: cubic-bezier(0.215,.61,0.355,1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9)
    }
    75% {
        transform: translate3d(0, 10px, 0) scaleY(0.95)
    }
    90% {
        transform: translate3d(0, -5px, 0) scaleY(0.985)
    }
    100% {
        transform: translateZ(0)
    }
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
    
    left: 0;
    right: 0;
}

/*以下フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 2s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}
 
/*以下遅延の指定*/
.txt01 {animation-delay: 0.3s;}
.txt02 {animation-delay: 1s;}
.txt03 {animation-delay: 2s;}


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

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

@keyframes shivering{
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-8deg);
    }
    20% {
        transform: rotateZ(4deg);
    }
    25% {
        transform: rotateZ(-4deg);
    }
    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)}
}

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

.fuwafuwa-uesita2,
#about::after{
    animation: fuwafuwa-uesita2 3s linear infinite;
    animation-delay: 3s;
} 

/* fuwafuwa-uesita */
.fuwafuwa-uesita,
#about::before,
.recipe_box_01::before,
.recipe_box_01::after,
.recipe_box_02::before,
.recipe_box_02::after,
.send_box .flow_title::after,
.send_box::after,
.kv_bg::before,
.kv_bg::after{
    animation: fuwafuwa-uesita 3s linear infinite;
} 

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

.fuwafuwa-yoko{
    animation: fuwafuwa-yoko 3s linear infinite;
}

@keyframes fuwafuwa-yoko {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(6px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(-6px); }
  100% { transform: translateX(0); }
}

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

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

@keyframes yurayura {
  0% , 100%{
      transform:translate(0, 0)  rotate(5deg);
  }
  50%{
      transform:translate(0, 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: translateY(-200px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  65% {
    transform: translateY(-35px);
  }
  80% {
    transform: translateY(0); 
  }
  90% {
    transform: translateY(-20px); 
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fuwafuwa {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    30% {
        transform: translateX(0) rotate(3deg);
    }
    70% {
        transform: translateX(0) rotate(0deg);
    }
    100% {
        transform: translateX(0) rotate(3deg);
  }
}

*/


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

.poyopoyo.is-popup {
  animation: pop 0.6s ease-out forwards, poyopoyo 1.6s ease-in-out 0.6s 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;
}

/*hover*/

#nav ul li a:hover,
#terms a:hover{
    opacity: 0.7;
}


/*共通*/
section#top{
    background: #DBF8FF;
    text-align: left;
    color: #392800;
    width: 100%;
    padding: 0;
    letter-spacing: 0.07em;
    word-break: break-all;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    font-weight: 700;
    word-break: break-all;
}

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

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

section .inner{
    margin: 0 auto;
    max-width: 1100px;
    width: 86.67%;
    position: relative;
    z-index: 1;
}

#top img{
    width: 100%;
}

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

.font_cl{
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: 700;
    font-style: normal;
}

/*kv*/
section#kv{
/*    max-width: none;*/
/*    width: 100%;*/
}

#kv{
/*    position: relative;*/
/*    height: 100vh;*/
}

#kv ul{
/*    background: url(../img/kv_bg.jpg);*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
/*    height: 81.9vh;*/
}

#kv ul .kv_title{
    max-width: 1000px;
    width: 53%;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 2;
}

.kv_bg{
    position: relative;
}

.kv_bg::before{
    content: '';
    background: url(../img/kv_comment_l.png);
    background-size: contain;
    background-repeat: no-repeat;
/*
    width: 159px;
    height: 172px;
*/
    width: 10.6vw;
    height: 11vw;
    position: absolute;
    left: 4vw;
    top: 4vw;
}

.kv_bg::after{
    content: '';
    background: url(../img/kv_comment_r.png);
    background-size: contain;
    background-repeat: no-repeat;
/*
    width: 173px;
    height: 150px;
*/
    width: 9.5vw;
    height: 9vw;
    position: absolute;
    right: 6vw;
    top: 6vw;
}

.kv_p_l{
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 50%;
}

.kv_p_l img {
    width: 57.8% !important;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.kv_p_r{
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 50%;
}

.kv_p_r img {
    width: 84% !important;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.kv_maru {
    position: absolute;
    bottom: 17%;
    right: 1.5vh;
    max-width: 276px;
    width: 15%;
}

.kv_btn{
    background: #FFF1D3;
    text-align: center;
    padding: 18px 0 30px 0;
}

.kv_btn div{
    position: relative;
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
}

.kv_btn div::after{
    content: '';
    background: url(../img/kv_btn_img.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 126px;
    height: 136px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.kv_btn p:first-child{
    max-width: 594px;
    width: 80%;
    margin: auto auto 10px auto;
}

.kv_btn p.kv_btn_btn{
    max-width: 489px;
    width: 80%;
    margin: 0 auto;
    border: 3px solid #ED241A;
    border-radius: 15px;
    color: #ED241A;
    background: #fff;
    font-size: 23px;
    letter-spacing: 0.12em;
    line-height: 1;
    box-shadow: 0 7px 0 #ED241A;
    position: relative;
}

.kv_btn p.kv_btn_btn{
    padding: 20px 0;
}

.kv_btn p.kv_btn_btn::after{
    content: '';
    background: url(../img/kv_btn_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.kv_btn p.kv_btn_btn:hover{
    top: 7px;
    box-shadow: none;
}

/*nav_about*/
#nav_about{
    background: url(../img/nav_about_bg.jpg);
    background-size: cover;
    background-repeat: repeat-y;
    padding: 35px 0 100px 0;
    position: relative;
}

#nav_about::before{
    content: '';
    background: url(../img/nav_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vw;
    position: absolute;
    top: 0;
}

/*nav*/
#nav{
    text-align: center;
    color: #106FBE;
    font-size: 19px;
    line-height: 1.3;
    
    margin: 0 auto;
    max-width: 1100px;
    width: 86.67%;
    
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
}

#nav li{
    height: 75px;
    width: 16.6%;
    border-right: 2px solid #9FC8E8;
    
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
/*    padding-bottom: 10px;*/
    padding: 0 15px;
}

#nav li:last-child{
    border-right: none;
}

#nav li a{
    width: auto;
    height: auto;
    display: block;
}

#nav li:hover a {
    top: 8px;
    position: relative;
    opacity: 0.7;
}

/*about*/

#about{
    padding: 100px 0 0 0;
}

.about_title{
    max-width: 827px;
    width: 100%;
    margin: 0 auto;
}

.about_text{
    font-size: 33px;
    text-align: center;
    letter-spacing: 0.12em;
    color: #106FBE;
    margin-top: 75px;
}

.about_text span{
    font-size: 40px;
}

.about_box{
    background: #fff;
    border: 2px solid #F5BD2C;
    border-radius: 30px;
    box-shadow: 10px 10px 0 rgba(245,189,44,0.41);
    text-align: center;
    padding: 35px 70px 40px 0;
    position: relative;
    max-width: 828px;
    margin: 45px auto auto auto;
}

.about_box .about_box_inner {
    max-width: 552px;
    margin: auto 0 auto auto;
/*    width: 50.37%;*/
}

.about_box .about_box_inner .font_cl{
    font-size: 30px;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
    line-height: 1;
}

.about_box .about_box_inner .font_cl span.marker{
    font-size: 31px;
    color: #106FBE;
    background: linear-gradient(transparent 50%, #FFF691 50%);
    padding: 0 0.2em 5px 0.2em;
    margin: auto 0.1em;
}

.about_box .about_box_inner .font_cl span.big{
    font-size: 45px;
    vertical-align: -0.07em;
}

.about_box::before{
    content: '';
    background: url(../img/about_img.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 275px;
    height: 331px;
    position: absolute;
    left: -91px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: block;
    
}

.about_box .asterisk{
    font-size: 12px;
    text-align: right;
    color: #4B4B4B;
    font-weight: 400;
    margin-top: 20px;
}

/*recipe*/
#recipe{
    background: url(../img/recipe_bg.jpg);
    background-size: contain;
    background-repeat: repeat-y;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.recipe_title{
    max-width: 658px;
    width: 100%;
    margin: auto auto 70px auto;
}

.recipe_box_01{
    max-width: 930px;
    width: 100%;
    position: relative;
    background: #fff;
    text-align: center;
    border-radius: 30px;
    margin: 0 auto;
    box-shadow: 10px 10px 10px rgba(30,129,197,0.2);
    padding: 0 0 50px 0;
}

.recipe_box_01::before{
    content: '';
    background: url(../img/ice_01.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 165px;
    height: 169px;
    display: block;
    position: absolute;
    top: -20px;
    right: -115px;
}

.recipe_box_01::after{
    content: '';
    background: url(../img/ice_02.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 165px;
    height: 169px;
    display: block;
    position: absolute;
    bottom: -35px;
    left: -113px;
}

.recipe_box_title{
    color: #fff;
    font-size: 42px;
    padding: 22px 0;
    background: #0D5EB0;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    letter-spacing: 0.16em;
    line-height: 1;
}

.recipe_box_title span{
    font-size: 35px;
}

.recipe_box_text{
    font-size: 22px;
    color: #106FBE;
    position: relative;
    letter-spacing: 0.14em;
    line-height: 1.6;
    margin: 40px auto 60px auto;
    width: auto;
    display: inline-block;
}

.recipe_box_text::before{
    content: '';
    background: url(../img/text_decoration_l.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 33px;
    position: absolute;
    bottom: -12px;
    left: -40px;
}

.recipe_box_text::after{
    content: '';
    background: url(../img/text_decoration_r.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 24px;
    position: absolute;
    top: 0;
    right: -26px;
}

.recipe_box_01 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 828px;
    width: 90%;
    margin: 0 auto;
}

.recipe_box_01 ul li{
    width: 44.81%;
}

.recipe_min_title{
    font-size: 22px;
    font-weight: 900;
    color: #106FBE;
    margin: 40px auto 30px auto;
    position: relative;
    background: #fff;
}

.recipe_min_title span{
    z-index: 99;
    position: relative;
}

.recipe_min_title::before{
    content: '';
    background: #106FBE;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 828px;
    width: 84%;
    margin: 0 auto;
    z-index: 0;
}

.recipe_min_title::after{
    content: '';
    background: #fff;
    width: 16%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 0;
}

.recipe_01_03{
    max-width: 560px;
    margin: 0 auto;
    width: 90%;
}

.recipe_arrow{
    width: 83px;
    height: 95px;
    margin: 25px auto 20px auto;
}

.recipe_box_02{
    max-width: 930px;
    width: 100%;
    position: relative;
    background: #fff;
    text-align: center;
    border-radius: 30px;
    margin: 0 auto;
    box-shadow: 10px 10px 10px rgba(30,129,197,0.2);
    padding: 0 0 50px 0;
}

.recipe_box_02::before{
    content: '';
    background: url(../img/ice_03.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 117px;
    height: 218px;
    display: block;
    position: absolute;
    top: 147px;
    left: -100px;
}

.recipe_box_02::after{
    content: '';
    background: url(../img/ice_04.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 149px;
    height: 159px;
    display: block;
    position: absolute;
    bottom: -45px;
    right: -120px;
}

.recipes{
    display: flex;
    justify-content: space-between;
    max-width: 828px;
    width: 90%;
    margin: 0 auto;
    border-bottom: 2px dashed #106FBE;
    padding-bottom: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.recipes:last-child{
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recipes ul:first-child{
    width: 54.6%;
}

.recipes ul:last-child{
    width: 41.91%;
}

.recipes ul:last-child li.font_cl{
    letter-spacing: 0.18em;
    font-size: 33px;
    line-height: 1;
}

.recipes ul:last-child li.font_cl:first-child{
    font-size: 24px;
    margin-bottom: 10px
}

.recipes ul:last-child li:nth-child(3){
    margin: 13px auto 18px auto;
    width: 83.58%;
}

.recipe_btn{
    width: 92.22%;
    border-radius: 10px;
    text-align: center;
    font-size: 19px;
    letter-spacing: 0.12em;
    padding: 13px 0;
    line-height: 1;
    border: 3px solid #ED6C1F;
    color: #ED6C1F;
    box-shadow: 0 7px 0 #ED6C1F;
    position: relative;
    display: block;
}

.recipe_btn2{
    width: 92.22%;
    border-radius: 10px;
    text-align: center;
    font-size: 19px;
    letter-spacing: 0.12em;
    padding: 13px 0;
    line-height: 1;
    border: 3px solid #2B9A28;
    color: #2B9A28;
    box-shadow: 0 7px 0 #2B9A28;
    position: relative;
    display: block;
}

.recipe_btn::after{
    content: '';
    background: url(../img/recipe_btn_arrow_1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 11px;
}

.recipe_btn2::after{
    content: '';
    background: url(../img/recipe_btn_arrow_2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 11px;
}

.recipe_btn:hover,
.recipe_btn2:hover{
    box-shadow: none;
    top: 7px;
}

.timer_title{
    max-width: 694px;
    width: 100%;
    margin: 90px auto 30px auto;
}

.timer_asterisk_box{
    text-align: center;
    font-size: 12px;
    color: #4B4B4B;
    font-weight: 400;
}

.timer_asterisk_box p::before{
    content: '※';
    display: inline-block;
}

.recipe_box_03{
    max-width: 828px;
    width: 100%;
    position: relative;
    background: #fff;
    text-align: center;
    border-radius: 30px;
    margin: 30px auto auto auto;
    box-shadow: 10px 10px 10px rgba(30,129,197,0.2);
    padding: 0 0 20px 0;
}

.recipe_box_03 .recipe_box_title{
    font-size: 23px;
    padding: 25px 0 15px 0;
}

.recipe_box_03 .recipe_box_title span{
    font-size: 32px;
    display: block;
    padding-top: 5px;
}

.recipe_box_text2{
    font-size: 16px;
    margin: 30px auto 20px auto;
    max-width: 724px;
    width: 89.19%;
}

.recipe_box_text_min{
    font-size: 12px;
    color: #4B4B4B;
    text-align: right;
    display: block;
    font-weight: 400;
}

.timer_box_img{
    max-width: 724px;
    width: 89.19%;
    margin: auto auto 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.timer_box_img li{
    width: 48.344%;
}

.timer_box{
    max-width: 724px;
    width: 89.19%;
    margin: auto auto 30px auto;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed #106FBE;
    padding-bottom: 30px;
    line-height: 1.6;
}

.timer_box:nth-child(5){
    border-bottom: none;
    margin: 0 auto;
    padding-bottom: 0;
}

.timer_box ul:first-child{
    width: 45.857%;
    font-size: 18px;
}

.timer_box ul:first-child li:first-child{
    width: 30px;
    margin-bottom: 5px;
}

.timer_box ul:last-child{
    width: 50%;
}

.timer_btn{
    width: 100%;
    background: #199BE8;
    border: 3px solid #0D5EB0;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    padding: 10px 5px;
    box-shadow: 0 7px 0 #0D5EB0;
    margin-top: 17px;
    position: relative;
}

.timer_btn span{
    font-size: 22px;
}

.timer_btn:hover{
    box-shadow: none;
    top: 7px;
}

.blue{
    color: #0D5EB0;
}

.timer_asterisk_box:last-child{
    max-width: 724px;
    width: 89.19%;
    margin: 20px auto auto auto;
}

/*ポップアップ*/
.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#recipe_01,
#recipe_02{
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#recipe_01:checked + .overlay,
#recipe_02:checked + .overlay{
	display: block;
	z-index: 9999;
	background-color: #00000070!important;;
	position: fixed!important;;
	width: 100%!important;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90vw;
	max-width: 930px;
	background-color: #ffffff;
	border-radius: 30px;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    box-shadow: 8px 8px 15px rgba(0,0,0,0.8);
}

.window .pop_box {
    width: 100%;
    border-radius: 30px;
    letter-spacing: 0.12em;
}

.window .pop_box .title{
    color: #fff;
    font-size: 33px;
    letter-spacing: 0.12em;
    text-align: center;
    font-weight: bold;
    background:#0D5EB0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 11px 0;
    position: relative;
}

.window .close {
	cursor:pointer;
	position: absolute;
    right: 2%;
    top: -25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: auto;
}

.pop_box_ul{
    margin: 30px auto;
    overflow-y: scroll;
    -ms-overflow-style:none;
    scrollbar-width:none:
}

.pop_box_ul::-webkit-scrollbar{
    display: none;
}

.pop_box_inner{
    max-width: 828px;
    width: 85.6%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    position: relative;
}

.pop_box_inner ul:first-child{
    max-width: 292px;
    width: 38%;
    margin-right: 25px;
}

.pop_box_inner ul:last-child{
    width: 60%;
    font-size: 16px;
}

.pop_box_inner ul:last-child li:first-child{
    font-size: 18px;
    margin-bottom: 10px;
}

.pop_box_inner ul:last-child li:nth-child(n+2){
    font-weight: 500;
    margin-bottom: 10px;
}

.pop_box_inner ul:last-child li.number_01,
.pop_box_inner ul:last-child li.number_02,
.pop_box_inner ul:last-child li.number_03{
    text-indent: -1.7em;
    margin-left: 1.7em;
}

.pop_box_inner ul:last-child li.number_01::before{
    content: '1.';
    margin-right: 0.5em;
}

.pop_box_inner ul:last-child li.number_02::before{
    content: '2.';
    margin-right: 0.5em;
}

.pop_box_inner ul:last-child li.number_03::before{
    content: '3.';
    margin-right: 0.5em;
}

.pop_box_ul:last-child p{
    font-size: 14px;
    letter-spacing: 0.07em;
    color: #4B4B4B;
    text-align: right;
    font-weight: 400;
    display: flex;
    justify-content: right;
    margin-top: 30px;
}

.pop_box.recipe_02{
    position: relative;
}

.pop_box.recipe_02::after{
    content: '';
    background: url(../img/popup_03.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 187px;
    height: 187px;
    position: absolute;
    top: 0;
    right: 0;
}


/*campaign*/
#campaign_section{
    background: url(../img/campaign_bg.jpg);
    background-size: 100%;
    background-repeat: repeat-y;
    padding: 110px 0 100px 0;
    position: relative;
    border-top: 10px solid #ED6C00;
}

.campaign_title{
    max-width: 405px;
    width: 100%;
    margin: auto auto 60px auto;
}

.campaign_text p:first-child{
    max-width: 794px;
    width: 100%;
    margin: 0 auto;
}

.campaign_text p:nth-child(2){
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    margin: 10px auto;
}

.campaign_text p:nth-child(2) a{
    text-decoration: underline;
    display: inline!important;
}

.campaign_text p:last-child{
    max-width: 696px;
    width: 100%;
    margin: 0 auto;
}

.campaign_day{
    max-width: 828px;
    width: 100%;
    margin: 80px auto 60px auto;
}

/*present*/
#present{
    padding: 60px 0 0 0;
}

.present_title{
    max-width: 268px;
    width: 100%;
    margin: auto auto 50px auto;
}

.present_box{
    background: #fff;
    border-radius: 90px;
    box-shadow: 5px 5px 10px rgba(237,108,31,0.2);
    position: relative;
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
}

.present_box::after{
    content: '';
    background: url(../img/present_batch_1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 210px;
    height: 218px;
    display: block;
    position: absolute;
    top: -22px;
    right: -25px;
}

.present_box_inner{
    max-width: 828px;
    width: 88.925%;
    margin: 0 auto;
    padding: 80px 0 60px 0;
}

.present_box_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.present_box_inner ul:first-child{
    width: 38.045%;
}

.present_box_inner ul:last-child{
    width: 55.07%;
}

.present_box_inner ul:last-child li.font_cl{
    background: #ED241A;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 21px;
    letter-spacing: 0.1em;
    padding: 0 15px;
    margin-bottom: 20px;
}

.present_box_inner ul:last-child li:nth-child(2){
    max-width: 274px;
    width: 100%;
}

.present_box_inner ul:last-child li:nth-child(3){
    font-size: 21px;
    letter-spacing: 0.12em;
}

.present_box_inner ul:last-child ol{
    border: 1px solid #392804;
    border-radius: 5px;
    font-size: 13px;
   
    font-weight: 400;font-weight: 400;
    margin: 35px auto 10px auto;
    padding: 15px 10px;
    letter-spacing: 0.07em;
    margin-top: 10px;
}

.present_box_inner ul:last-child ol p:first-child{
    border-bottom: 1px solid #392804;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.present_box_inner ul:last-child li.asterisk{
    color: #4B4B4B;
    font-size: 12px;
    font-weight: 400;
}

.wchance_title{
    max-width: 460px;
    width: 100%;
    margin: 70px auto 20px auto;
}

.wchancet_box{
    border: 20px solid #fff;
    background: #FDEDE0;
    border-radius: 90px;
    box-shadow: 5px 5px 10px rgba(237,108,31,0.2);
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 50px 0;
    position: relative;
}

.wchancet_box::after{
    content: '';
    background: url(../img/present_batch_2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 210px;
    height: 218px;
    display: block;
    position: absolute;
    top: -40px;
    right: -45px;
}

.wchance_box_inner{
    max-width: 828px;
    width: 94.75%;
    margin: 0 auto;
}

.wchance_box_01{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

.wchance_box_inner .wchance_box_01 ul:first-child{
    width: 40.65%;
}

.wchance_box_inner .wchance_box_01 ul:last-child{
    width: 55.162%;
}

.wchance_box_inner .wchance_box_01 ul:last-child li:last-child{
    font-size: 21px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin-top: 20px;
}

.wchance_box_02{
    border-top: 2px dashed #ED6C1F;
    padding-top: 40px;
    margin-top: 40px;
}

.tyokoto_title{
    max-width: 517px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.tyokoto_text{
    font-size: 21px;
    text-align: center;
    letter-spacing: 0.12em;
    line-height: 1.6;
    margin: 20px auto 20px auto;
    position: relative;
    width: 100%;
    display: inline-block;
}

.tyokoto_title::before{
    content: '';
    background: url(../img/wchance_decoration_r.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 171px;
    height: 133px;
    display: block;
    position: absolute;
    top: -58px;
    right: -169px;
}

.tyokoto_text::after{
    content: '';
    background: url(../img/wchance_decoration_l.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 114px;
    height: 138px;
    display: block;
    position: absolute;
    bottom: -25px;
    left: 0;
}

.tyokoto_box{
    display: flex;
    flex-wrap: wrap;
    max-width: 690px;
    margin: auto auto 30px auto;
    justify-content: space-between;
}

.tyokoto_box li{
    width: 30.43%;
}

.wchance_box_02 .asterisk.red{
    color: #ED241A;
    text-align: center;
    font-weight: 400;
}

/*application*/
#application{
    background: url(../img/campaign_bg.jpg);
    background-size: 100%;
    background-repeat: repeat-y;
    padding: 110px 0 100px 0;
    position: relative;
    text-align: center;
}

#application::before{
    content: '';
    background: #fff;
    background-size: 100%;
    opacity: 0.44;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.application_title{
    max-width: 270px;
    width: 100%;
    margin: auto auto 50px auto;
}

.application_text{
    font-size: 21px;
    margin-bottom: 10px;
    letter-spacing: 0.12em;
}

.application_asterisk{
    font-size: 16px;
    letter-spacing: 0.12em;
    margin-bottom: 50px;
}

.flow_box{
    background: #fff;
    box-shadow: 5px 5px 10px rgba(237,108,31,0.2);
    border-radius: 10px;
    max-width: 930px;
    width: 100%;
    margin: 30px auto;
}

.flow_box div{
    width: 86.099%;
    margin: 0 auto;
    padding: 40px 0 20px 0;
}

.flow_box .step{
    background: #ED6C1F;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    font-size: 30px;
    padding: 8px 0;
}

.flow_box .flow_title{
    font-size: 28px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin-bottom: 25px;
}

.flow_box .flow_text{
    font-size: 16px;
    letter-spacing: 0.12em;
}

.flow_box .login_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    margin: 30px auto;
}

.flow_box .login_btn li{
    border: 3px solid #EA2827;
    border-radius: 45px;
    color: #EA2827;
    width: 48.03%;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 7px 0 #EA2827;
    position: relative;
}

.flow_box .login_btn li a{
    padding: 15px 0;
}

.flow_box .login_btn li span{
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.flow_box .login_btn li:hover{
    box-shadow: none;
    top: 7px;
}

.flow_box .login_btn li::after{
    content: '';
    background: url(../img/login_btn_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.flow_box .asterisk{
    font-size: 12px;
    font-weight: 400;
    color: #4B4B4B;
}

.flow_box .asterisk_box{
    display: inline-block;
    text-align: left;
}

.flow_box_2set{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
}

.flow_box_2set .flow_box{
    width: 47.96%;
    max-width: none;
    margin: 0;
}

.flow_img{
    width: 56.25%;
    margin: 0 auto;
}

ul.flow_btn {
    width: 95.315%;
    margin: 0 auto;
}

.flow_btn li{
    border: 3px solid #ED6C00;
    border-radius: 45px;
    color: #ED6C00;
    width: 100%;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 7px 0 #ED6C00;
    position: relative;
    margin: 25px auto 30px auto;
}

.flow_btn li a{
    padding: 15px 0;
}

.flow_btn li:hover{
    box-shadow: none;
    top: 7px;
}

.flow_btn li::after{
    content: '';
    background: url(../img/flow_btn_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.flow_box_2set .flow_box:last-child .asterisk_box{
    margin-top: 20px;
    letter-spacing: 0.007em;
}

.flow_arrow{
    width: 127px;
    margin: 30px auto;
}

.send_box{
    padding-bottom: 13px;
}

.send_box .flow_title{
    position: relative;
    display: inline-block;
}

.send_box .flow_title::after{
    content: '';
    background: url(../img/flow_send.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 86px;
    position: absolute;
    top: -25px;
    right: -110px;
}

.accordion{
	border: 5px solid #EA894F;
	border-radius: 10px;
	margin: 65px auto auto auto;
    background: #fff;
}

.accordion .accordion_box .accordion_header {
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: 700;
    font-style: normal;
	font-size: 30px;
	padding: 20px 0.5em;
	position: relative;
	z-index: 1;
	cursor: pointer;
	transition-duration: 0.2s;
	text-align: center;
}

.accordion .accordion_box .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	transition-duration: 0.2s;
}

.accordion .accordion_box .accordion_header .i_box .one_i {
	display: block;
	width: 27px;
	height: 27px;
	position: relative;
	
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.accordion .accordion_box .accordion_header.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}

.accordion .accordion_box .accordion_header .i_box .one_i:before, 
.accordion .accordion_box .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #EA894F;
	border-radius: 10px;
	width: 28px;
	height: 5px;
	position: absolute;
	top: 12px;
	left: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
}

.accordion .accordion_box .accordion_header .i_box .one_i:before {
	width: 5px;
	height: 28px;
	top: 0;
	left: 12px;
}

.accordion .accordion_box .accordion_header.open .i_box .one_i:before {
	content: none;
}

.accordion .accordion_box .accordion_header.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.accordion .accordion_box .accordion_inner {
	display: none;
	padding: 20px 0 40px 0;
    word-break: break-all;
    text-align: left;
    max-width: 930px;
    width: 91.75%;
    margin: 0 auto;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.6;
    font-weight: 500;
}

.accordion .accordion_box .accordion_inner .midashi_2::before{
    content: '';
    background: #ED6C00;
    width: 5px;
    height: 1.2em;
    display: inline-block;
    margin-right: 0.3em;
    vertical-align: sub;
}

.accordion .accordion_box .accordion_inner .midashi_2{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.marubatu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px auto 40px auto;
}

.accordion .accordion_box .accordion_inner .maru{
    border: 4px solid #116ECC;
    border-radius: 10px;
    background: #FEFEFF;
    position: relative;
    
    width: 48.39%;
}

.accordion .accordion_box .accordion_inner .maru::before{
    content: '';
    background: url(../img/maru.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 203px;
    height: 196px;
    position: absolute;
    top: 0;
    right: -1px;
    z-index: 0;
}

.accordion .accordion_box .accordion_inner .maru .wrapper,
.accordion .accordion_box .accordion_inner .batu .wrapper{
    width: 85.75%;
    margin: 0 auto;
    padding: 15px 0;
    z-index: 1;
    position: relative;
    font-weight: 500;
}

.accordion .accordion_box .accordion_inner .maru .wrapper div{
    font-size: 23px;
    text-align: center;
    border-bottom: 5px dotted #116ECC;
    border-bottom-style: dotted;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.accordion .accordion_box .accordion_inner .maru .wrapper div span,
.accordion .accordion_box .accordion_inner .batu .wrapper div span{
    font-size: 14px;
    font-weight: normal;
    display: block;
}

.accordion .accordion_box .accordion_inner .maru .wrapper .maru_list{
/*    margin-left: 1em;*/
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 2;
}

.accordion .accordion_box .accordion_inner .batu .wrapper .maru_list{
/*    margin-left: 1em;*/
    font-weight: bold;
    line-height: 2;
}

.accordion .accordion_box .accordion_inner .maru .wrapper .maru_list li::before,
.accordion .accordion_box .accordion_inner .batu .wrapper .maru_list li::before{
    content: '●';
    display: inline-block;
    margin-right: 0.5em;
}

.accordion .accordion_box .accordion_inner .batu{
    border: 4px solid #ED371F;
    border-radius: 10px;
    background: #FFFBFB;
    position: relative;
    
    width: 48.39%;
}

.accordion .accordion_box .accordion_inner .batu::before{
    content: '';
    background: url(../img/batu.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 169px;
    height: 174px;
    position: absolute;
    top: 0;
    right: -1px;
    z-index: 0;
}

.accordion .accordion_box .accordion_inner .batu .wrapper div{
    font-size: 23px;
    text-align: center;
    border-bottom: 5px dotted #ED371F;
    border-bottom-style: dotted;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.list_2 .maru_ls::before{
    content: '●';
}

.list_2 .kome_ls::before{
    content: '※'
}

.list_2 .maru_ls,
.list_2 .kome_ls{
/*
    text-indent: -1em;
    margin-left: 1em;
*/
/*    letter-spacing: 0;*/
/*    line-height: 1.5;*/
}

.batu_disc li{
    text-indent: -1em;
    margin-left: 1em;
}

.accordion .accordion_box .accordion_inner .maru .wrapper .receipt_img,
.accordion .accordion_box .accordion_inner .batu .wrapper .receipt_img{
    margin-bottom: 20px;
}

.accordion .accordion_box .accordion_inner .maru .wrapper .text-16{
    font-size: 18px;
    color: #ED241A;
    font-weight: 700;
    line-height: 1.6;
}

.accordion .accordion_box .accordion_inner .example{
/*    max-width: 175px;*/
    width: 18.82%;
/*    margin-right: 20px;*/
    display: inline-block;
}

.accordion .accordion_box .accordion_inner .example.mt40{
    margin-top: 40px;
}

.example_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .accordion_box .accordion_inner .example_p .b{
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.accordion .accordion_box .accordion_inner .example_p{
    letter-spacing: 0.12em;
    width: 78%;
}

.accordion .accordion_box .accordion_inner{
    line-height: 1.6;
}

.accordion:last-child .batu ul li::before{
    content: '・';
}


/*product*/
#product{
    background: url(../img/product_bg.png);
    background-color: #FFE1A3;
    background-size: 106px;
    background-repeat: repeat;
    padding: 110px 0 100px 0;
    position: relative;
    text-align: center;
}

.product_title{
    max-width: 267px;
    width: 100%;
    margin: 0 auto;
}

.product_box{
    margin-top: 40px;
    background: #fff;
    border-radius: 30px;
}

.product_box_inner{
    max-width: 930px;
    width: 91.75%;
    margin: 0 auto;
    padding: 60px 0;
}

.product_box_set{
    display: flex;
    justify-content: center;
    border-bottom: 2px dashed #EB6C1F;
    padding-bottom: 60px;
    margin-bottom: 40px;
    
     align-items: center;
}

.product_box_set.set_one{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product_box_set ul{
    width: 50%;
}

.product_box_set.set_one{
    flex-direction: column;
}

.product_box_set .asterisk{
    color: #ED241A;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

.product_none{
    background: #FEE8E9;
    border-radius: 20px;
    max-width: 735px;
    width: 100%;
    margin: 50px auto auto auto;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
}

.product_none_inner {
    display: flex;
    width: 90.88%;
    margin: 0 auto;
    align-items: center;
    padding: 20px 0;
    line-height: 1.6;
}

.product_none_inner ul:first-child{
    width: 18%;
    margin-right: 20px;
}

.product_none_inner ul .red{
    color: #ED241A;
}


/*terms*/
#terms{
    background-color: #FFE1A3;
    padding: 110px 0 100px 0;
    position: relative;
    text-align: left;
    font-weight: 500;
}

.terms_title{
    max-width: 569px;
    width: 100%;
    margin: 0 auto;
}

.terms_text{
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 70px;
}

.terms_box{
    font-size: 14px;
    line-height: 1.63;
    background: #fff;
    padding: 27px;
    height: 280px;
    overflow-y: scroll;
    letter-spacing: 0;
}

.terms_box ul{
    margin-bottom: 1.8em;
}

.terms_box ul:last-child{
    margin-bottom: 0;
}

.terms_box a{
    display: inline!important;
    width: auto;
    color: #006ECC;
}

.terms_box .disc::before{
    content: '・';
}

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

.terms_box ol{
    list-style: decimal;
    margin-left: 1.5em;
}

/*contact*/
#contact{
    background: #fff;
    border: 5px solid #ED6C1F;
    border-radius: 20px;
    text-align: center;
    margin: 70px auto 50px auto;
    max-width: 620px;
    width: 100%;
    padding: 35px 0;
}

#contact ul{
    width: 93.12%;
    margin: 0 auto;
    letter-spacing: 0.06em;
}

#contact ul li:first-child{
    background: #ED6B1F;
    border-radius: 45px;
    color: #fff;
    font-size: 25px;
    width: 94.36%;
    margin: 0 auto;
}

#contact ul li:nth-child(2){
    font-size: 16px;
    margin: 15px auto 10px auto;
}

#contact ul li:nth-child(3){
    margin-bottom: 10px;
}

#contact ul li:nth-child(n+4){
    font-size: 14px;
}

/*btn*/
#btn{
    max-width: 420px;
    width: 89%;
    margin: 0 auto;
}

/*fixed*/

#fixed ul li{
    position: fixed;
    z-index: 99;
}

#fixed li:first-child{
    width: 111px;
    bottom: 97px;
    right: -14px;
}

#fixed li:first-child:hover{
    right: 0;
    opacity: 0.8;
}

#fixed li:last-child{
    width: 64px;
    bottom: 15px;
    right: 15px;
}

@media screen and (max-width:1080px){
    #nav{
        width: 95%;
    }
}

@media screen and (max-width:1040px){
    .flow_box .login_btn li,
    .flow_btn li{
        font-size: 2vw;
    }
    .flow_box .login_btn li span{
        font-size: 1.6vw;
    }
    .flow_btn li::after{
        width: 2.3vw;
        height: 2.3vw;
    }
}


@media screen and (max-width:1000px){
    .about_box {
        padding: 35px 4.5vw 40px 0;
    }
    .about_box .about_box_inner {
        width: 76%;
    }
    .about_box::before {
        width: 33vw;
    }
    
    .recipe_box_01::before {
        width: 17vw;
        top: -7vw;
        right: -5vw;
    }
    .recipe_box_01::after{
        width: 17vw;
        left: -9vw;
    }
    .recipe_box_02::before {
        width: 15vw;
        left: -10vw;
    }
    .recipe_box_02::after {
        width: 17vw;
        bottom: -8vw;
        right: -10vw;
    }
}

@media screen and (max-width:950px){
    .recipe_btn,
    .recipe_btn2{
        font-size: 1.9vw;
    }
    .recipe_btn::after,
    .recipe_btn2::after{
        width: 2.5vw;
        height: 2.5vw;
    }
    .pop_box.recipe_02::after{
        width: 16vw;
        height: 16vw;
        top: 7%;
    }
    .present_box::after,
    .wchancet_box::after{
        width: 21vw;
    }
}

@media screen and (max-width:860px){
    .tyokoto_title::before {
        width: 17vw;
        right: -12vw;
    }
    
    .tyokoto_text::after {
        width: 11.5vw;
        left: -6vw;
    }
}

@media screen and (max-width:822px){
    .kv_btn div::after{
        width: 13vw;
        height: 14vw;
    }
}

@media screen and (max-width:767px){
    .sp{
        display: inherit;
    }

    .pc{
        display: none;
    }
    
    @keyframes fuwafuwa {
      0% {
        transform:rotate(-3deg);
          transform-origin:center;
      }
      50% {
        transform:rotate(0deg);
          transform-origin:center;
      }
      100% {
        transform:rotate(3deg);
          transform-origin:center;
      }
    }
    
    /*hover*/
    #nav ul li a:hover,
    #terms a:hover{
        opacity: 1;
    }


    /*共通*/
    section#top{
        line-height: 1.5;
    }

    /*kv*/
    #kv ul .kv_title{
        width: 95.2%;
        top: 10px;
    }

    .kv_bg::before{
        content: '';
        background: url(../img/sp/kv_comment_l.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 36.54vw;
        height: 15vw;
        position: absolute;
        left: 5vw;
        top: 89vw;
    }

    .kv_bg::after{
        content: '';
        background: url(../img/sp/kv_comment_r.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 35.74vw;
        height: 18.1vw;
        position: absolute;
        right: 2vw;
        top: 61vw;
    }

    .kv_p_l{
        bottom: 2.5%;
    }

    .kv_p_l img {
        width: 68.8% !important;
    }

    .kv_p_r{
        bottom: 2.5%;
    }

    .kv_p_r img {
        width: 89.1% !important;
    }

    .kv_maru {
        position: absolute;
        bottom: 7%;
        right: 0vh;
        max-width: none;
        width: 54.4%;
    }

    .kv_btn{
        padding: 10px 0 20px 0;
    }

    .kv_btn div{
        max-width: none;
        width: 89.335%;
    }

    .kv_btn div::after{
        width: 24vw;
        height: 26vw;
        right: -3vw;
    }

    .kv_btn p:first-child {
        max-width: 594px;
        width: 70%;
        margin: 0 0 5px 0;
    }

    .kv_btn p.kv_btn_btn{
        max-width: 489px;
        width: 70%;
        margin: 0;
        border-radius: 10px;
        font-size: 16px;
    }

    .kv_btn p.kv_btn_btn{
        padding: 15px 0;
    }

    .kv_btn p.kv_btn_btn::after{
        width: 18px;
        height: 18px;
        right: 15px;
    }


    /*nav_about*/
    #nav_about{
        padding: 20px 0 50px 0;
    }

    #nav_about::before{
        background: url(../img/sp/nav_bg.png);
        width: 100%;
        height: 100%;
    }

    /*nav*/
    #nav{
        flex-wrap: wrap;
    }

    #nav li{
        height: auto;
        width: 50%;
        border-right: 2px solid #9FC8E8;
        padding: 0 5px;
        margin-bottom: 5px;
        margin-top: 5px;
        padding-top: 0;
    }

    #nav li:nth-child(even){
        border-right: none;
    }

    #nav li a{
        width: auto;
        height: auto;
        display: block;
        border-bottom: 2px solid #9FC8E8;
        padding-bottom: 5px;
        margin-bottom: -7px;
        padding-bottom: 5px;
    } 

    #nav li:nth-child(n+5) a{
        border-bottom: none;
    }

    #nav li a img {
        padding-bottom: 5px;
        margin-bottom: 0;
        padding-top: 5px;
        margin: 0 auto;
        width: 88%;
    }
    
    #nav li:last-child a img{
        margin-top: 4px;
    }

    #nav li:hover a {
        top: 0;
        opacity: 1;
    }

    /*about*/

    #about{
        padding: 40px 0 0 0;
    }

    #about .inner{
        width: 100%;
    }

    .about_title{
        width: 94.14%;
    }

    .about_text{
        font-size: 25px;
        width: 95%;
        margin: 35px auto auto auto;
        line-height: 1.28;
    }

    .about_text span{
        font-size: 30px;
    }

    .about_box{
        border-radius: 20px;
        box-shadow: 6px 6px 0 rgba(245,189,44,0.41);
        padding: 60px 0 30px 0;
        position: relative;
        max-width: 828px;
        width: 86.67%;
        margin: 35px auto auto auto;
    }

    .about_box .about_box_inner {
        margin: 0 auto;
        width: 93%;
    }
    
    .about_box_inner ul li {
        width: 100%;
        margin: 0 auto;
    }

    .about_box::before{
        content: '';
        background: url(../img/sp/about_img.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 43.3%;
        height: 45vw;
        position: absolute;
        left: -5vw;
        top: 5vw;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
        display: block;

    }

    .about_box .asterisk{
        text-align: left;
        margin-top: 10px;
        letter-spacing: 0.04em;
    }
    
    /*recipe*/
    #recipe{
        padding: 50px 0;
    }

    #recipe .inner{
        width: 100%;
    }
    
    .recipe_title{
        width: 95.47%;
        margin: auto auto 55px auto;
    }

    .recipe_box_01{
        max-width: 828px;
        width: 86.67%;
        border-radius: 20px;
        box-shadow: 5px 5px 10px rgba(30,129,197,0.2);
        padding: 0 0 30px 0;
    }

    .recipe_box_01::before{
        width: 65px;
        height: 68px;
        top: -20px;
        right: -10px;
    }

    .recipe_box_01::after{
        width: 67px;
        height: 76px;
        bottom: -7vw;
        left: -5px;
    }

    .recipe_box_title{
        font-size: 25px;
        padding: 13px 0;
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        letter-spacing: 0.10em;
        line-height: 1.3;
    }

    .recipe_box_title span{
        font-size: 21px;
    }

    .recipe_box_text{
        font-size: 16px;
        letter-spacing: 0.03em;
        line-height: 1.875;
        margin: 35px auto 60px auto;
        width: 84%;
    }

    .recipe_box_text::before{
        width: 25px;
        height: 26px;
        bottom: -25px;
        left: -15px;
    }

    .recipe_box_text::after{
        width: 23px;
        height: 21px;
        top: 0;
        right: -10px;
    }

    .recipe_box_01 ul{
        display: block;
        width: 84%;
    }

    .recipe_box_01 ul li{
        width: 100%;
    }

    .recipe_box_01 ul li:first-child{
        margin-bottom: 30px;
    }

    .recipe_min_title{
        font-size: 18px;
        margin: 30px auto 15px auto;
    }

    .recipe_min_title span{
        z-index: 99;
        position: relative;
    }

    .recipe_min_title::after{
        width: 29.5%;
    }

    .recipe_01_03{
        width: 90%;
    }

    .recipe_arrow{
        width: 57px;
        height: auto;
        margin: 30px auto 30px auto;
    }

    .recipe_box_02{
        max-width: 828px;
        width: 86.67%;
        border-radius: 20px;
        box-shadow: 5px 6px 10px rgba(30,129,197,0.2);
        padding: 0 0 40px 0;
    }
    
    .recipe_box_02 .recipe_box_text{
        margin-bottom: 35px;
    }
    
    .recipe_box_02 .recipe_box_text::before {
        width: 25px;
        height: 26px;
        bottom: -10px;
        left: -10px;
    }

    .recipe_box_02::before{
        width: 48px;
        height: 90px;
        top: 13px;
        left: -15px;
    }

    .recipe_box_02::after{
        content: '';
        background: url(../img/sp/ice_04.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 48px;
        height: 49px;
        display: block;
        position: absolute;
        bottom: -18px;
        right: -25px;
    }

    .recipes{
        display: block;
        width: 86.67%;
        text-align: center;
    }

    .recipes ul:first-child{
        width:100%;
    }

    .recipes ul:last-child{
        width: 100%;
    }

    .recipes ul:last-child li.font_cl{
        letter-spacing: 0.12em;
        font-size: 25px;
    }

    .recipes ul:last-child li.font_cl:first-child{
        font-size: 20px;
        margin-bottom: 8px;
        margin-top: 20px;
    }

    .recipes ul:last-child li:nth-child(3){
        margin: 15px auto 17px auto;
        width: 95%;
    }

    .recipe_btn,
    .recipe_btn2{
        width: 100%;
        font-size: 16px;
    }

    .recipe_btn::after,
    .recipe_btn2::after{
        width: 18px;
        height: 18px;
        right: 20px;
    }

    .timer_title{
        max-width: 694px;
        width: 78.5%;
        margin: 35px auto 10px auto;
    }

    .timer_asterisk_box{
        width: 86.67%;
        margin: 0 auto;
        text-align: left;
    }

    .timer_asterisk_box p{
        text-indent: -0.53em;
        margin-left: 1em;
        letter-spacing: 0.04em;
        line-height: 1.65;
    }

    .recipe_box_03{
        max-width: 828px;
        width: 86.67%;
        border-radius: 20px;
        margin: 15px auto auto auto;
        box-shadow: 5px 5px 10px rgba(30,129,197,0.2);
        padding: 0 0 30px 0;
    }

    .recipe_box_03 .recipe_box_title{
        font-size: 18px;
        padding: 18px 0 10px 0;
    }

    .recipe_box_03 .recipe_box_title span{
        font-size: 25px;
    }

    .recipe_box_text2{
        margin: 20px auto 15px auto;
        text-align: left;
    }

    .timer_box_img{
        margin: auto auto 30px auto;
        display: block;
    }

    .timer_box_img li{
        width: 100%;
    }
    
    .timer_box_img li:first-child{
        margin-bottom: 10px;
    }

    .timer_box{
        display: block;
        letter-spacing: 0.06em;
    }

    .timer_box ul:first-child{
        width: 100%;
        font-size: 16px;
        text-align: center;
    }

    .timer_box ul:first-child li:first-child{
        margin: auto auto 10px auto;
    }
    
    .timer_box .sp_l{
        text-align: left;
        display: inline-block;
    }

    .timer_box ul:last-child{
        width: 100%;
    }
    
    .sp_m{
        margin-top: 15px;
    }

    .timer_btn{
        border-radius: 10px;
        line-height: 1.2;
        padding: 8px 5px;
        margin-top: 15px;
        margin-bottom: 30px;
        font-size: 16px;
    }

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

    
    /*ポップアップ*/
    .window {
        border-radius: 10px;
    }

    .window .pop_box {
        border-radius: 10px;
        letter-spacing: 0.07em;
    }

    .window .pop_box .title{
        font-size: 22px;
        letter-spacing: 0.07em;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        padding: 9px 0;
        position: relative;
        line-height: 1.28;
    }

    .window .close {
        cursor:pointer;
        position: absolute;
        right: 2%;
        top: -17px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        width: 11px;
        height: auto;
        line-height: 1;
    }

    .pop_box_ul{
        margin: 20px auto;
        overflow-y: scroll;
        max-height: 60vh;
        -ms-overflow-style:inherit;
        scrollbar-width:thin;
    }

    .pop_box_ul::-webkit-scrollbar{
        display: block;
    }

    .pop_box_inner{
        display: block;
        width: 88%;
    }

    .pop_box_inner ul:first-child{
        max-width: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .pop_box_inner ul:last-child{
        width: 100%;
        font-size: 14px;
    }

    .pop_box_inner ul:last-child li:first-child{
        font-size: 14px;
        margin-bottom: 5px;
    }

    .pop_box_ul:last-child p{
        font-size: 12px;
        letter-spacing: 0em;
        text-align: left;
        font-weight: 400;
        display: block;
        margin-top: 15px;
    }


    .pop_box.recipe_02::after{
        content: '';
        background: url(../img/sp/popup_03.png);
        background-size: contain;
        background-repeat: no-repeat;
        display: block;
        width: 107px;
        height: 127px;
        top: 50px;
        right: 0;
    }
  
    /*campaign*/
    #campaign_section{
        padding: 50px 0;
        position: relative;
        border-top: 7px solid #ED6C00;
    }

    .campaign_title{
        width: 75%;
        margin: auto auto 35px auto;
    }

    .campaign_text p:nth-child(2){
        font-size: 14px;
        letter-spacing: 0.04em;
        margin: 10px auto 25px auto;
    }

    .campaign_text p:last-child{
        max-width: 696px;
        width: 100%;
        margin: 0 auto;
    }

    .campaign_day{
        margin: 40px auto 40px auto;
    }
    
    /*present*/
    #present{
        padding: 40px 0 0 0;
    }

    .present_title{
        max-width: none;
        width: 45%;
        margin: auto auto 35px auto;
    }

    .present_box{
        border-radius: 30px;
    }

    .present_box::after{
        width: 145px;
        height: 149px;
        top: 7px;
        right: 8px;
    }

    .present_box_inner{
        padding: 30px 0;
    }

    .present_box_inner{
        display: block;
    }

    .present_box_inner ul:first-child{
        width: 100%;
    }

    .present_box_inner ul:last-child{
        width:100%;
        text-align: center;
    }

    .present_box_inner ul:last-child li.font_cl{
        font-size: 16px;
        letter-spacing: 0.07em;
        padding: 2px 10px;
        margin-bottom: 15px;
        margin-top: 30px;
    }

    .present_box_inner ul:last-child li:nth-child(2){
        max-width: none;
        width: 65%;
        margin: 0 auto;
    }

    .present_box_inner ul:last-child li:nth-child(3){
        font-size: 15px;
        letter-spacing: 0.04em;
        margin: 10px auto 20px auto;
    }

    .present_box_inner ul:last-child ol{
        margin: auto auto 10px auto;
        padding: 10px 15px;
        letter-spacing: 0.07em;
        text-align: left;
    }

    .present_box_inner ul:last-child ol p:first-child{
        padding-bottom: 5px;
    }

    .present_box_inner ul:last-child li.asterisk{
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0.04em;
        text-align: left;
    }

    .wchance_title{
        margin: 35px auto 15px auto;
    }

    .wchancet_box{
        border: 10px solid #fff;
        border-radius: 30px;
        padding: 30px 0;
    }

    .wchancet_box::after{
        width: 145px;
        height: 149px;
        top: 7px;
        right: 0px;
    }

    .wchance_box_01{
        display: block;
    }

    .wchance_box_inner .wchance_box_01 ul:first-child{
        width: 100%;
        margin-bottom: 10px;
    }

    .wchance_box_inner .wchance_box_01 ul:last-child{
        width: 100%;
    }

    .wchance_box_inner .wchance_box_01 ul:last-child li:last-child{
        font-size: 15px;
        text-align: center;
        letter-spacing: 0.04em;
        margin-top: 15px;
    }

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

    .tyokoto_text{
        font-size: 15px;
        letter-spacing: 0.04em;
        margin: 20px auto 20px auto;
    }

    .tyokoto_title::before{
        display: none;
    }

    .wchance_box_02::before{
        content: '';
        background: url(../img/wchance_decoration_r.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 87px;
        height: 68px;
        display: block;
        position: absolute;
        bottom: -80px;
        right: -33px;
    }
    
    .tyokoto_text::after{
        content: '';
        background: url(../img/sp/wchance_decoration_l.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 48px;
        height: 69px;
        display: block;
        position: absolute;
        bottom: auto;
/*        top: -125px;*/
/*        left: 0;*/
        
        top: -135px;
        margin-top: -3.5vw;
        left: -10px;
    }

    .tyokoto_box{
        display: block;
        flex-wrap: wrap;
        max-width: 690px;
        margin: auto auto 10px auto;
        justify-content: space-between;
    }

    .tyokoto_box li{
        width: 100%;
        margin-bottom: 10px;
    }

    .tyokoto_box li:last-child{
        margin-bottom: 0;
    }

    .wchance_box_02 .asterisk.red{
        color: #ED241A;
        text-align: left;
        font-size: 15px;
        letter-spacing: 0.04em;
    }
    
    /*application*/
    #application{
        padding: 50px 0;
    }

    .application_title{
        max-width: none;
        width: 45.6%;
        margin: auto auto 30px auto;
    }

    .application_text{
        font-size: 17px;
        margin-bottom: 20px;
        letter-spacing: 0.04em;
    }

    .application_asterisk{
        font-size: 14px;
        letter-spacing: 0.04em;
        margin-bottom: 30px;
        text-align: left;
    }

    .flow_box div{
        width: 88.93%;
    }

    .flow_box .step{
        font-size: 24px;
    }

    .flow_box .flow_text{
        font-size: 15px;
        letter-spacing: 0.04em;
        text-align: left;
    }

    .flow_box .login_btn {
        display: block;
        margin: 25px auto;
        letter-spacing: 0.12em;
    }

    .flow_box .login_btn li{
        width: 100%;
        font-size: 16px;
        letter-spacing: 0.12em;
    }
    
    .flow_box .login_btn li:first-child{
        margin-bottom: 20px;
    }

    .flow_box .login_btn li a{
        padding: 10px 0;
    }

    .flow_box .login_btn li span{
        font-size: 13px;
        margin-bottom: 7px;
    }

    .flow_box .login_btn li::after{
        width: 18px;
        height: 18px;
    }

    .flow_box_2set{
        display: block;
    }

    .flow_box_2set .flow_box{
        width: 100%;
        max-width: none;
        margin: auto auto 30px auto;
    }

    .flow_img{
        width: 66.45%;
    }

    ul.flow_btn {
        width: 100%;
    }

    .flow_btn li{
        font-size: 16px;
        letter-spacing: 0.12em;
        margin: 15px auto 20px auto;
    }

    .flow_btn li a{
        padding: 13px 0;
    }

    .flow_btn li::after{
        width: 18px;
        height: 18px;
    }

    .flow_box_2set .flow_box:last-child .asterisk_box{
        margin-top: 20px;
        letter-spacing: 0.007em;
        line-height: 1.8;
    }
    
    .flow_box .flow_title{
        font-size: 24px;
        letter-spacing: 0.12em;
    }

    .flow_arrow{
        width: 100px;
        margin: 0 auto;
    }
    
    .flow_box_2set .flow_box:last-child{
        margin: auto auto 15px auto;
    }

    .send_box{
        margin-top: 15px;
        padding-bottom: 13px;
        position: relative;
    }
    
    .send_box .flow_title::after{
        display: none;
    }

    .send_box::after{
        content: '';
        background: url(../img/sp/flow_send.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 66px;
        height: 50px;
        position: absolute;
        top: auto;
        bottom: -5px;
        right: -15px;
    }
    
    .accordion{
        border: 3px solid #EA894F;
        margin: 20px auto auto auto;
    }

    .accordion .accordion_box .accordion_header {
        font-size: 20px;
        padding: 30px 0.5em;
        line-height: 1.3;
    }

    .accordion .accordion_box .accordion_header .i_box {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        right: 5%;
        width: 40px;
        height: 40px;
        margin-top: -17px;
        transition-duration: 0.2s;
    }

    .accordion .accordion_box .accordion_header .i_box .one_i {
        display: block;
        width: 25px;
        height: 25px;
        position: relative;

        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .accordion .accordion_box .accordion_header.open .i_box {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    .accordion .accordion_box .accordion_header .i_box .one_i:before, 
    .accordion .accordion_box .accordion_header .i_box .one_i:after {
        display: flex;
        content: '';
        background-color: #EA894F;
        border-radius: 10px;
        width: 20px;
        height: 5px;
        position: absolute;
        top: 8px;
/*         top: 12px;*/
        left: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transform-origin: center center;
    }

    .accordion .accordion_box .accordion_header .i_box .one_i:before {
        width: 5px;
        height: 20px;
        top: 0;
        left: 7px;
/*        left: 11px;*/
    }

    .accordion .accordion_box .accordion_inner {
        display: none;
        padding: 0 0 20px 0;
        width: 90.8%;
        font-size: 15px;
        letter-spacing: 0.04em;
        line-height: 1.5;
    }

    .accordion .accordion_box .accordion_inner .midashi_2{
        font-size: 15px;
        margin-bottom: 10px;
    }

    .marubatu{
        display: block;
        margin: 30px auto 25px auto;
    }

    .accordion .accordion_box .accordion_inner .maru{
        border: 2px solid #116ECC;
        width: 100%;
    }

    .accordion .accordion_box .accordion_inner .maru::before{
        content: '';
        background: url(../img/sp/maru.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 167px;
        height: 169px;
        position: absolute;
        top: 0;
        right: -1px;
        z-index: 0;
    }

    .accordion .accordion_box .accordion_inner .maru .wrapper,
    .accordion .accordion_box .accordion_inner .batu .wrapper{
        width: 88.5%;
        padding: 20px 0;
    }

    .accordion .accordion_box .accordion_inner .maru .wrapper div{
        font-size: 18px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .accordion .accordion_box .accordion_inner .maru .wrapper div span,
    .accordion .accordion_box .accordion_inner .batu .wrapper div span{
        font-size: 12px;
    }
    

    .accordion .accordion_box .accordion_inner .batu{
        border: 2px solid #ED371F;
        width: 100%;
        margin-top: 20px;
    }

    .accordion .accordion_box .accordion_inner .batu::before{
        content: '';
        background: url(../img/sp/batu.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 145px;
        height: 160px;
        position: absolute;
        top: 0;
        right: -1px;
        z-index: 0;
    }

    .accordion .accordion_box .accordion_inner .batu .wrapper div{
        font-size: 18px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .accordion .accordion_box .accordion_inner .maru .wrapper .receipt_img,
    .accordion .accordion_box .accordion_inner .batu .wrapper .receipt_img{
        margin-bottom: 20px;
    }

    .accordion .accordion_box .accordion_inner .maru .wrapper .text-16{
        font-size: 15px;
    }
    
    .list_2 .maru_ls,
    .kome_ls{
        text-indent: -1em;
        margin-left: 1em;
    }

    .accordion .accordion_box .accordion_inner .example{
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    .example_box{
        display: block;
        justify-content: space-between;
        align-items: center;
    }

    .accordion .accordion_box .accordion_inner .example_p{
        letter-spacing: 0.04em;
        width: 100%;
    }
    
    
    /*product*/
    #product{
        padding: 50px 0;
    }

    .product_title{
        max-width: none;
        width: 45.6%;
    }

    .product_box{
        margin-top: 35px;
        border-radius: 10px;
    }

    .product_box_inner{
        width: 89.8%;
        padding: 30px 0;
    }

    .product_box_set{
        display: block;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .product_box_set ul{
        width: 100%;
    }
    
    .product_box_set ul:nth-child(2){
        margin-top: 30px;
    }
    
    .product_box_set.set_one{
        text-align: left;
    }

    .product_box_set.set_one ul{
        margin-bottom: 10px;
    }

    .product_box_set .asterisk{
        font-size: 12px;
        text-align: left;
        width: 95%;
        display: inline-block;
    }

    .product_none{
        border-radius: 10px;
        margin: 30px auto auto auto;
    }

    .product_none_inner {
        display: block;
        width: 88.3%;
        }

    .product_none_inner ul:first-child{
        width: 49.42%;
        margin: auto auto 15px auto
    }

    /*terms*/
    #terms{
        padding: 50px 0 25vw 0;
    }

    .terms_title{
        max-width: none;
        width: 95.1%;
    }

    .terms_text{
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: 40px;
    }

    .terms_box{
        padding: 20px;
        height: 250px;
        font-size: 12px;
    }


    /*contact*/
    #contact{
        border: 3px solid #ED6C1F;
        border-radius: 10px;
        margin: 30px auto;
        width: 100%;
        padding: 20px 0;
    }

    #contact ul{
        width: 90.6%;
    }

    #contact ul li:first-child{
        font-size: 16px;
        width: 100%;
        line-height: 1.2;
        padding: 6px 0;
    }

    #contact ul li:nth-child(2){
        font-size: 14px;
        margin: 10px auto 5px auto;
    }

    #contact ul li:nth-child(3){
        margin-bottom: 5px;
    }

    #contact ul li:nth-child(n+4){
        font-size: 12px;
        text-align: left;
        letter-spacing: 0;
    }

    /*fixed*/
    #fixed ul {
        display: flex;
    }

    #fixed ul li{
        position: fixed;
        z-index: 99;
    }

    #fixed li:first-child {
        width: 88%;
        bottom: 0;
        right: auto;
        left: 0;
    }

    #fixed li:last-child{
        width: 12%;
        bottom: 0;
        right: 0;
    }
}

@media screen and (max-width:400px){
    .recipe_box_01::after{
        width: 57px;
        height: 66px;
        bottom: -13vw;
    }
}

@media screen and (max-width:370px){
    .flow_btn li{
        font-size: 4.2vw;
        letter-spacing: 0.04em;
    }
}

@media screen and (max-width:350px){
    .kv_btn p.kv_btn_btn {
        font-size: 4.5vw;
    }
    .kv_btn p.kv_btn_btn::after{
        width: 4.3vw;
        height: 4.3vw;
    }
    .recipe_btn,
    .recipe_btn2{
        font-size: 4.6vw;
    }
    .recipe_btn::after,
    .recipe_btn2::after{
        width: 4.8vw;
        height: 4.8vw;
    }
    .present_box::after,
    .wchancet_box::after{
        width: 40vw;
        height: 42vw;
    }
    .tyokoto_text::after,
    .flow_box .login_btn li::after,
    .flow_btn li::after{
        display: none;
    }
    .flow_box .login_btn li{
        letter-spacing: 0.04em;
    }
}


@media screen and (max-width:320px){
    .recipe_box_02::before,
    .recipe_box_01::after{
        display: none;
    }
    .accordion .accordion_box .accordion_header .i_box{
        right: 0;
    }
    .accordion .accordion_box .accordion_header{
        font-size: 6vw;
    }
}




