@charset "UTF-8";
/* CSS Document */
html { 
    scroll-behavior: smooth;
}

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_popin {
    opacity: 0;
}

.fadein_element_is_fadein_popin {
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    70% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.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 */
@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: #622121;
    max-width: none;
    width: 100%;
    padding: 0;
    letter-spacing: 0.07em;
    word-break: break-all;
    font-family: 'Noto Sans JP', sans-serif;
}

.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: 50%; */
    margin: auto auto 60px auto;
}

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

/*nav*/
#top #nav {
    padding: 25px 0;
    background: #6A3906;
}

#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;
    display: inline-block;
    color: #fff;
    padding-bottom: 25px;
    text-align: center;
    font-size: 18px;
}

#nav ul li a::after {
    content: '';
    width: 30px;
    height: 20px;
    background: url(../img/nav_icon.png) no-repeat center/contain;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-size: 80%;
}

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

/*mv kv*/
#kv {}


/* day */
#day .daybox {
    display: flex;
    justify-content: center;
    background: #E5147F;
    padding: 10px 0;
}

#day .daybox .period {
    color: #E5147F;
    background: #fff;
    border: 1px solid #E5147F;
    border-radius: 50px;
    padding: 10px 25px;
    margin-right: 10px;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
}

#day .daybox .closing_day p {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

#day .daybox .closing_day p .text_big {
    font-size: 36px;
}


/*outline*/
#outline {
    background: #F9F6EA;
    position: relative;
    text-align: center;
}

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

#outline .outline_text {
    font-size: 26px;
    /* line-height: 1.8; */
    letter-spacing: 0.1em;
    font-weight: 700;
}

#outline .outline_text span {
    font-size: 35px;
    font-weight: 900;
    line-height: 1.6em;
}

#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%;
}

#outline .section_wrapper .canpaign {
    padding: 50px;
    border: 5px solid #622121;
    background-color: #fff;
    background-image: url(../img/star.png);
    background-repeat: no-repeat;
    background-position: top 10% right 5%;
    background-size: 65px;
    border-radius: 20px;
    max-width: 880px;
    width: 100%;
    margin: 0 auto 65px;
}

#outline .point_img .point_inner p {
    display: inline;
}

#outline .point_img img {
    width: 35%;
    position: relative;
    left: 1%;
}
#outline .point_img span.p_big {
    font-size: 46px;
}
#outline .point_img span.p_small {
    display: block;
    font-size: 16px;
    margin-top: 33px;
    font-weight: 600;
}

#outline .point_img span.sp_small {
    font-size: 16px;
    font-weight: 600;
}


/*present*/
#present {
    position: relative;
    background: url(../img/coin-bg.png) no-repeat;
}

#present .section_wrapper {
    padding: 40px 0 200px 0;
    position: relative;
}

#present .section_wrapper::before {
    content: '';
    background: url(../img/coin.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 120%;
    height: 100%;
    display: block;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#present .section_wrapper .present_inner {
    margin: 100px auto 0;
    border: 5px solid #622121;
    border-radius: 440px 440px 40px 40px;
    max-width: 880px;
    width: 100%;
    padding: 30px 80px 30px;
    background-color: #fff;
    z-index: 2;
    position: relative;
}

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

/* .present_box ul {
    width: 50%;
}

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

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

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

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

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

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


#present .present_box .present_text {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

#present .present_box .present_text .first_text {
    margin-bottom: 40px;
    font-weight: 900;
    font-size: 42px;
}

#present .present_box .present_text .yellow_content {
    font-size: 46px;
    background: #F5D100;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 10px;
}

#present .present_box .present_text .pay_title1 {
    width: 60%;
}

#present .present_box .present_text .present_text_last {
    font-size: 22px;
}

#present .present_box .present_text .p_big {
    font-size: 46px;
    font-weight: 900;
    color: #E5147F;
}

#present .present_box .present_text .text_big {
    font-size: 27px;
}

#present .present_box .present_text .text_small {
    font-size: 16px;
    line-height: 1.8em;
}

#present .present_box .asterisk {
    color: #622121;
    text-indent: 0;
    line-height: 1.6em;
}


/*product*/
#product {
    position: relative;
    text-align: center;
    background: url(../img/products_bg.png) no-repeat;
    background-size: cover;
}

#product::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/products-nami_bg.png) center top / contain no-repeat;
}

#product::after {
    content: "";
    position: absolute;
    bottom: -98px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/products-nami2_bg.png) center bottom / contain no-repeat;
    z-index: 1;
}

#product .products_inner {
    position: relative;
    z-index: 2;
}

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

#product .asterisk {
    font-size: 16px;
}

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

.product_box .title {
    color: #622121;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    display: inline-block;
    padding: 0 80px;
    position: relative;
}

.product_box .title::before,
.product_box .title::after {
    content: "";
    display: block;
    background: url(../img/heart.png) no-repeat center / 35px;
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    transform: translatey(-0.5em);
}

.product_box .title::before {
    left: 0;
}

.product_box .title::after {
    right: 0;
}

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


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

.product_box_02 ul li.set_text {
    margin-top: 30px;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 30px;
    color: #5D452B;
}

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

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

.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: #DFC991;
    position: relative;
}

#application .section_wrapper {
    padding-top:200px;
}

.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;
    background: #fff;
    line-height: normal;
}

.step_box .title {
    background: #622121;
    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: 50px;
    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,
#application .step_box .btn li.g_login a:hover {
    top: 10px;
    box-shadow: none;
}

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

#application .step_box .btn li.g_login a {
    background: #3DC9D0;
    border: 3px solid #147A80;
    box-shadow: 0 10px 0 #147A80;
}

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

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

.step_box .step_text .asterisk {
    font-size: 16px;
    color: #622121;
}

.step_box .step_text .asterisk:first-of-type {
    margin-top: 10px;
}

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

#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 .asterisk.step2 {
    font-size: 14px;
    color: #454545;
    margin-top: 20px;
}

.step_box .title .step {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.step_box .title .step .step_num {
    font-size: 26px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.step_box .title .step .step_big {
    font-size: 36px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}




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

#notes .notes_box_title {
    color: #fff;
    font-size: 27px;
    text-align: center;
    background: #E5147F;
    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 70px;
}

#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,
#notes .notes_inner .receipt_4 {
    margin-top: 40px;
}

#notes .notes_inner .receipt_2 .notes_inner_title,
#notes .notes_inner .receipt_3 .notes_inner_title,
#notes .notes_inner .receipt_4 .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%;
}

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

.receipt-boxes {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 20px auto 0;
}

.receipt-box {
  flex: 1;
  overflow: hidden;
  background: #fff;
  border-radius: 26px;
  border: 5px solid;
  padding-bottom: 30px;
}

.receipt-head {
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.receipt-list {
  padding: 30px 45px 0;
  list-style: none;
}

.receipt-list li {
  position: relative;
  padding: 0 0 5px 30px;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.5;
  border-bottom:4px dotted;
}

.receipt-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background:center / contain no-repeat;
}

.receipt-note {
    padding:0 48px;
    font-size: 14px;
    line-height: 1.8;
    text-indent: -1em;
    margin-left: 1em;
}

.is-ok {
  border-color: #67c6cc;
}

.is-ok .receipt-head {
  background: #67c6cc;
}

.is-ok li {
  color: #6b2420;
  border-color: #67c6cc;
}

.is-ok li::before {
  background-image:
    url('../img/correct.png');
}

.is-ng {
  border-color: #e57b7b;
}

.is-ng .receipt-head {
  background: #e57b7b;
}

.is-ng li,
.is-ng .receipt-note {
  color: #6b2420;
}

.is-ng li {
  border-color: #ff3b30;
}

.is-ng li::before {
  background-image:url('../img/cross.png');
}



/* research */
#research .section_wrapper {
    text-align: center;
}

#research .section_wrapper .cta_logo {
    width: 50%;
    margin-bottom: 50px;
}

.cta_text {
    font-size: 24px;
    font-weight: 700;
    color: #4C2500;
    margin-top: 80px;
    line-height: 1.8;
    font-family: "VDL-V7MaruGothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", sans-serif;
}

.cta_img {
    border: 1px solid #a2a2a2;
}
.cta_img:hover {
    border: 1px solid #c4c4c4;
}
.cta_img:hover img {
    opacity: 0.8;
}



/*terms*/
#terms {
    background: #F9F6EA;
    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: #622121;
    color: #fff;
    position: relative;
    font-weight: 600;
    font-style: normal;
    border-radius: 50px;
    font-size: 20px;
    letter-spacing: 0.13em;
}

.accordion_content {
    display: none;
    background-color: rgba(98, 33, 33, 0.1);
    font-size: 16px;
    line-height: 1.75;
    margin: 25px 0;
    padding: 25px 30px;
}

.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: 0 0 50px;
    text-align: center;
    background: #F2E9CE;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #622121;
    letter-spacing: 0.07em;
    line-height: normal;
}

#contact .contact li:first-child {
    font-size: 22px;
    background: #622121;
    color: #fff;
    padding: 20px 1em;
    line-height: 1.6;
    margin: auto auto 35px auto;
    font-weight: 600;
}

#contact .contact li:nth-child(2) {
    /*    letter-spacing: 0em;*/
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 22px;
    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;
    }

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

    .section_wrapper {
        padding: 50px 0;
        width: 88.5%;
    }

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


    /* day */
    #day .daybox {
        flex-direction: column;
        align-items: center;
    }

    #day .daybox .period {
        font-size: 14px;
        padding: 5px 20px;
    }

    #day .daybox .closing_day p {
        font-size: 20px;
    }

    #day .daybox .closing_day p .text_big {
        font-size: 29px;
    }



    /*nav*/
    #top #nav {
        padding: 10px 0 20px 0;
        background: #622121;
    }

    #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;
        padding: 15px 17px;
    }

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

    #nav ul li a {
        padding-bottom: 0;
        text-align: left;
        padding-right: 80px;
        font-size: 15px;
    }

    #nav ul li a::after {
        left: unset;
        right: 0;
        transform: translateX(50%);
        background-size: 50%;
    }


    /*outline*/
    .day {
        margin: auto auto 40px auto;
    }

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

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

    #outline .section_wrapper .canpaign {
        padding: 50px 0;
        background-position: top 5% right 5%;
        background-size: 50px;
        margin-bottom: 15px;
    }

    #outline .point_img span.p_big {
        font-size: 28px;
    }

    #outline .point_img .point_inner p {
        display: block;
    }

    #outline .point_img img {
        width: 80%;
    }
    
    #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;
    }

    #outline .point_img span.p_small {
        font-size: 15px;
        font-weight: 500;
    }

    #outline .point_img span .sp_small {
        font-size: 12px;
        font-weight: 500;
    }

    #present .present_box .present_text .pay_title1 {
        width: 100%;
    }

    #present .present_box .present_text .present_text_last {
        font-size: 13px;
    }

    #present .present_box .present_text .text_big {
        font-size: 15px;
    }

    #present .present_box .present_text .p_big {
        font-size: 27px;
    }

    #present .present_box .present_text .text_small {
        font-size: 12px;
    }
  


    /*present*/
    /* #present::before {
        content: '';
        background: url(../img/sp/present_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%);
    } */

    #present .section_wrapper {
        padding: 20px 0 80px 0;
    }

    .present_box.sp {
        display: block;
    }

    .present_box ul {
        width: 85%;
        margin: 0 auto;
    }

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

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

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

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

    .present_box ul:last-child li:nth-child(2) {
        max-width: 400px;
        width: 100%;
        /* margin: auto auto 15px auto; */
    }

    .present_box ul:last-child li:nth-child(3) {
        /* margin-bottom: 10px; */
    }

    #present .present_box ul:last-child li.asterisk {
        font-size: 12px;
        letter-spacing: 0.02em;
        text-indent: -1em;
        margin-left: 1em;
        font-weight: normal;
        line-height: 1.6em;
    }

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

    #present .section_wrapper .present_inner {
        padding: 30px 10px 30px;
        margin-top: 30px;
    }

    #present .present_box .present_text .yellow_content {
        font-size: 24px;
        padding: 5px 15px;
        margin-bottom: 5px;
    }

    #present .present_box .present_text {
        font-size: 20px;
    }

    #present .present_box .present_text .first_text {
        margin-bottom: 20px;
        font-size: 20px;
    }

    #present .section_wrapper::before {
        content: none;
    }

    #present::before {
        content: '';
        display: block;
        background: url(../img/sp/conin-sp.png) no-repeat;
        top: -25px;
        width: 100%;
        left: 0;
        transform: unset;
        background-size: contain;
        height: 100%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }



    /*products*/
    #product .text_big {
        margin-bottom: 20px;
        font-size: 24px;
    }

    #product .asterisk {
        font-size: 12px;
        letter-spacing: 0.02em;
        line-height: 1.7em;
    }

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

    .product_box .title {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 30px;
    }

    .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;
        font-size: 20px;
    }

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

    #product {
        position: relative;
        text-align: center;
        background: url(../img/sp/products_bg-sp.png) no-repeat;
        background-size: cover;
    }

    #product::before {
        top: -40px;
        left: 0;
        background: url(../img/sp/products-nami_bg-sp.png) center top / contain no-repeat;
    }

    #product::after {
        content: "";
        bottom: -55px;
        left: 0;
        background: url(../img/sp/products-nami2_bg-sp.png) center bottom / contain no-repeat;
        z-index: 1;
    }

    .product_box .title::before, .product_box .title::after {
        background-size: 20px;
        top: 50%;
        width: 30px;
        height: 30px;
        transform: translatey(-1.5vh);
    }





    /*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 .step {
        font-size: 20px;
        gap: 0;
        flex-direction: column;
    }

    .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;
        line-height: 1.7;
    }

    .step_box.step01 .step_text {
        font-size: 15px;
        max-width: 245px;
        width: 100%;
        margin: 0 auto;
        text-align: left;
    }

    .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 .asterisk.step2 {
        font-size: 12px;
        letter-spacing: 0.02em;
        margin-top: 10px;
    }

    #application .section_wrapper {
        padding-top: 90px;
    }

    .step_box .step_text:nth-child(n + 2) .asterisk {
        margin-top: 0;
    }

    .step_box .title .step .step_big {
        font-size: 28px;
    }

    .step_box .title .step .step_num {
        font-size: 18px;
    }





    /*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;
    }

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

    #notes .notes_inner .receipt_4 .notes_inner_title {
        font-size: 15px;
    }

    .receipt-boxes {
        display: block;
    }
    .receipt-head {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .receipt-list {
        padding: 20px 30px 0;
    }

    .receipt-list li {
        padding: 0 0 5px 30px;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .receipt-note {
        padding: 0 25px;
        font-size: 10px;
        line-height: 1.8;
    }

    .receipt-list li::before {
        top: 0;
    }

    .is-ok li::before {
        background-image: url(../img/sp/correct_sp.png);
    }

    .receipt-box {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .t-c {
        text-align: left;
    }



    /* research */
    #research .section_wrapper .cta_logo {
        width: 55%;
        margin-bottom: 30px;
    }

    .cta_text {
        font-size: 16px;
        margin-top: 40px;
        letter-spacing: 0;
    }




    /*terms*/
    #terms p {
        font-size: 15px;
        margin: auto auto 30px auto;
        max-width: 276px;
        width: 100%;
    }

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

    .accordion_header {
        /* 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: 0 0 15px;
    }

    #contact .contact li:first-child {
        font-size: 14px;
        font-size: 16px;
        padding: 10px 1em;
    }

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

    #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: 30%;
        height: auto;
        right: 0;
        left: auto;
        bottom: 0;
    }
}

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