@charset "UTF-8";

/*共通---------------------------------------------------------------------------------------------------------------*/
#contents * {
    box-sizing: border-box;
}

#contents p,
#contents h2,
#contents h3,
#contents li,
#contents dt,
#contents dd,
#contents a,
#contents a:hover {
    line-height: 34px;
    font-size: 18px;
    font-family: "メイリオ", sans-serif;
    color: #320303;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none !important;
}

.sp {
    display: none !important;
}

.pc {
    display: block !important;
}


/*PC---------------------------------*/

/*-------------------main-------------------*/
#contents .main {
    padding: 0 0 10px;
    background-image: url(../img/line.jpg), url(../img/line.jpg);
    background-repeat: repeat-y, repeat-y;
    background-position: left 0, right 0;
    background-size: 20px auto, 20px auto;
    background-attachment: fixed, fixed;
}

/*title---------------------------------------------------------------------------------*/
#contents .title {
    position: relative;
    background-image: url(../img/line.jpg), url(../img/line.jpg);
    background-repeat: repeat-y, repeat-y;
    background-position: left 0, right 0;
    background-size: 20px auto, 20px auto;
    background-attachment: fixed, fixed;
}


#contents .title .wrap {
    background: #fff;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    line-height: 0;
}

/*---h1---*/
#contents .title h1 img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: block;
    margin: auto 0;
    width: 44%;
    opacity: 0;
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*---slider---*/
#contents .title ul.slider {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0 auto;
}

#contents .title ul.slider img {
    width: 100%;
    border-radius: 20px;
}

/*---smoke---*/
#contents .title ul.smoke li img {
    position: absolute;
    z-index: 4;
    width: 700px;
    opacity: 0;
}

#contents .title ul.smoke li:first-child img {
    top: 0;
    left: 20%;
    animation: smoke 3s ease 0s infinite alternate;
}

#contents .title ul.smoke li:last-child img {
    bottom: 0;
    right: 6%;
    animation: smoke 6s ease 0s infinite reverse;
    animation-direction: reverse;
}

@keyframes smoke {
    0% {
        opacity: 0;
        transform: scale(1.0);
    }

    70% {
        opacity: 0.7;

    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/*---bg---*/
#contents .title .bg_top {
    position: absolute;
    top: -38px;
    right: 0;
    background-image: url(../img/bg_yellow.jpg);
    background-repeat: repeat;
    background-position: 0 0;
    background-size: 375px auto;
    display: block;
    width: 20%;
    height: 300px;
    border-radius: 20px 0 0 20px;
}

#contents .title .bg_bottom {
    position: absolute;
    bottom: -40px;
    background-image: url(../img/bg_yellow.jpg);
    background-repeat: repeat;
    background-position: 0 0;
    background-size: 375px auto;
    display: block;
    width: 50%;
    height: 400px;
    border-radius: 0 20px 20px 0;
}

/*-------------------button-------------------*/
#contents .button ul {
    display: flex;
    flex-flow: wrap;
    width: 890px;
    margin: 130px auto 100px;
}


#contents .button ul li:first-child {
    margin: 0 50px 0 0;
}

#contents .button li a {
    position: relative;
    background: #ffdd40;
    font-size: 20px;
    display: block;
    text-align: center;
    width: 420px;
    font-weight: bold;
    padding: 22px 0;
    border-radius: 6px;
    filter: drop-shadow(0 3px 3px rgba(165, 80, 0, 0.2));
    transition: 0.5s;
}

#contents .button li a:hover {
    background: #f2c600;
    filter: drop-shadow(0 0x 0px rgba(111, 56, 5, 0.2));
}

#contents .button li a img {
    position: absolute;
    right: 20px;
    top: 25px;
    width: 24px;
    transition: 0.5s;
}

#contents .button li a:hover img {
    right: 16px;
}


/*-------------------about-------------------*/
#contents .about {
    width: 100%;
    padding: 40px 0 0;
    background-image: url(../img/line.jpg), url(../img/line.jpg), url(../img/bg_white.jpg);
    background-repeat: repeat-y, repeat-y, repeat;
    background-position: left 0, right 0, 0 0;
    background-size: 20px auto, 20px auto, 800px auto;
    background-attachment: fixed, fixed, fixed;
    text-align: center;
    margin: 0 auto 150px;
}

#contents .about h2 {
    text-align: center;
}

#contents .about h2 img {
    width: 500px;
    margin: 0 auto 24px;
}

#contents .about .img_area ul {
    position: relative;
    bottom: -30px;
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
}

#contents .about .img_area li {
    position: relative;
    opacity: 0;
    transition: 0.8s;
    transform: translate(0, 40px);
}

#contents .about .img_area li.in {
    opacity: 1;
    transform: translate(0, 0);
}

#contents .about .img_area li::after {
    position: absolute;
    z-index: 10;
    top: 0;
    right: -40px;
    content: "";
    display: inline-block;
    width: 50px;
    height: 240px;
    background: url(../img/arrow.png) 0 0 no-repeat;
    background-size: 50px auto;
}

#contents .about .img_area li:last-child:after {
    content: none;
}

#contents .about .img_area li img {
    width: 295px;
    margin: 0 10px;
}

/*-------------------product-------------------*/
#contents .product {
    margin: 0 auto 120px;
}

#contents .product h2 {
    text-align: center;

}

#contents .product h2 img {
    width: 800px;
    margin: 0 auto 50px;
}

/*---wrap---*/
#contents .product .wrap {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    background: url(../img/bg_white.jpg) 0 0 repeat;
    background-size: 800px auto;
    background-attachment: fixed;
    border-radius: 20px;
    padding: 60px 0 0;
}

#contents .product .wrap ul {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
}

#contents .product li {
    width: 50%;
    text-align: center;
    margin: 0 auto 40px;
}

/*---img_area---*/
#contents .product li .img_area {
    position: relative;
}

#contents .product li .img_area .pkg {
    width: 80%;
    filter: drop-shadow(0 3px 8px rgba(111, 56, 5, 0.3));
}

#contents .product li .img_area .sub {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 120px;
    animation: fuwafuwa 3s ease-in-out 0s infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

#contents .product li .img_area .new {
    position: absolute;
    z-index: 5;
    top: -30px;
    left: 40px;
    width: 150px;
}

/*---img_area---*/
#contents .product li h3 {
    font-size: 22px;
    font-weight: bold;
    padding: 0 10px;
    display: inline-block;
    background: linear-gradient(transparent 60%, #ffdd40 60%);
}

#contents .product li p {
    width: 420px;
    text-align: left;
    margin: 24px auto 34px;
}

#contents .product li a {
    position: relative;
    background: #ffdd40;
    display: block;
    text-align: center;
    width: 340px;
    font-weight: bold;
    margin: 20px auto 40px;
    padding: 10px 0;
    border-radius: 5px;
    filter: drop-shadow(0 3px 3px rgba(165, 80, 0, 0.2));
    transition: 0.5s;
}

#contents .product li a:hover {
    background: #f2c600;
    filter: drop-shadow(0 0x 0px rgba(111, 56, 5, 0.2));
}

#contents .product li a img {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 24px;
    transition: 0.5s;
}

#contents .product li a:hover img {
    right: 16px;
}


/*-------------------recipe-------------------*/
#contents .recipe {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#contents .recipe h2 {
    text-align: center;

}

#contents .recipe h2 img {
    width: 700px;
    margin: 0 auto 80px;
}

/*---ul---*/
#contents .recipe ul {
    width: 90%;
    max-width: 1200px;
}

#contents .recipe ul li {
    margin: 0 auto 140px;
}

/*---wrap---*/
#contents .recipe ul .wrap {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

#contents .recipe ul li:nth-child(even) .wrap {
    flex-direction: row-reverse;
}

/*---img_area---*/
#contents .recipe .img_area {
    width: 60%;
    position: relative;
}

#contents .recipe .img_area .photo {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
}

#contents .recipe .img_area .pkg {
    position: absolute;
    right: -50px;
    bottom: -80px;
    z-index: 3;
    width: 290px;
    filter: drop-shadow(0 3px 8px rgba(111, 56, 5, 0.3));
}

#contents .recipe .img_area .bg {
    position: absolute;
    left: -30px;
    bottom: -30px;
    z-index: 0;
    border-radius: 20px;
    display: block;
    background: url(../img/bg_white.jpg) 0 0 repeat;
    background-size: 800px auto;
    width: 90%;
    height: 300px;

}

/*---txt_area---*/
#contents .recipe .txt_area {
    width: 40%;
}

/*---tit---*/
#contents .recipe .txt_area .tit {
    position: relative;
    left: -10%;
    top: 30px;
    z-index: 3;
    border-radius: 0 0 0 10px;
    padding: 35px 0 25px 25px;
    background: #fff;
    border-left: #ffda33 solid 6px;
    border-bottom: #ffda33 solid 6px;
    width: 120%;
}


#contents .recipe .txt_area .tit h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 45px;
    letter-spacing: -1px;
}

#contents .recipe .txt_area hr {
    border-top: #ffda33 solid 2px;
    width: 110%;
    margin: 50px 0 0 30px;
}

#contents .recipe .txt_area p {
    font-size: 18px;
}

/*---step---*/
#contents .recipe .txt_area .step {
    margin: 65px 0 0 50px;
}

#contents .recipe .txt_area p {
    font-size: 18px;
}

#contents .recipe .txt_area .step dt {
    background: #ffda33;
    width: 140px;
    text-align: center;
    font-weight: bold;
    margin: 25px 0 20px;
    padding: 0;
}

#contents .recipe .txt_area .step dd {
    line-height: 35px;
    padding-left: 1em;
    text-indent: -1em;

}

#contents .recipe .txt_area .step dd a {
    border-bottom: 1px solid #320303;
}

#contents .recipe .txt_area .step dd a:hover {
    border-bottom: none;
}

/*---reverse---*/
#contents .recipe li:nth-child(even) {
    position: relative;
    left: 50px;
}

#contents .recipe li:nth-child(even) .txt_area .tit {
    width: 115%;
    border-radius: 0 0 0 10px;
}

#contents .recipe li:nth-child(even) .img_area .pkg {
    right: auto;
    left: -60px;
    bottom: -80px;
}

#contents .recipe li:nth-child(even) .img_area .bg {
    left: auto;
    right: -30px;
}

#contents .recipe li:nth-child(even) .txt_area hr {
    margin: 30px 0 0 0;
}

#contents .recipe ul li:nth-child(even) .wrap .txt_area .step {
    margin: 65px 0 0 0;
}



/*-------------------caution-------------------*/
#contents .caution {
    width: 1000px;
    border: #ffda33 2px solid;
    border-radius: 10px;
    padding: 40px;
    margin: 60px auto 60px;
}

#contents .caution h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 10px;
}

#contents .caution li {
    font-size: 16px;
    padding-left: 1em;
    text-indent: -1em;
}

/*-------------------sns-------------------*/
#contents .sns {
    background: #f7f7f7;
    padding: 15px 0;
    margin: 0 auto 0;
}

#contents .sns ul {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

#contents .sns ul li {
    width: 31%;
    margin: 0 2% 0 0;
    background: #fff;
    border-radius: 5px;
}

#contents .sns ul li:hover {
    opacity: 0.6;
    transition: 0.4s;
}

#contents .sns ul li a {
    display: block;
    border-right: 10px;
    padding: 10px;
    line-height: 48px;
    font-size: 16px;
}

#contents .sns ul li:nth-child(3) {
    margin: 0;
}

#contents .sns ul li img {
    width: 45px;
    margin: 0 10px 0 0;
}

/*-------------------fadein-------------------*/
.fidein {
    opacity: 0;
    transform: translate(0, 40px);
    transition: all 0.8s;
}

.fidein.active {
    opacity: 1;
    transform: translate(0, 0);
}

/*-------------------page_top-------------------*/

#page_top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 12px;
    z-index: 9999;
    transition: 0.5s;
}

#page_top a img {
    width: 80px;
}

#page_top:hover {
    bottom: 30px;
}

/*SP---------------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    img {
        width: 100%;
        height: auto;
    }

    #contents .main {
        width: 100%;
        padding: 0 0 60px;
    }

    .pankuzu {
        width: 100%;
        display: block;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        overflow: auto;
        word-break: keep-all;
        white-space: nowrap;
        padding: 8px;
        margin: 0;
    }

    /*-------------------main-------------------*/
    #contents .main {
        padding: 0 0 50px;
        background-size: 8px auto, 8px auto;
    }

    /*title---------------------------------------------------------------------------------*/
    #contents .title {
        margin: 10px auto 0;
        background: none;
        background-color: #fff;
    }


    #contents .title .wrap {
        width: 90%;
        max-width: 90%;
    }

    /*---h1---*/
    #contents .title h1 img {
        top: auto;
        bottom: -20%;
        margin: 0 auto;
        width: 90%;
    }

    /*---smoke---*/
    #contents .title ul.smoke li img {
        width: 80%;
    }

    #contents .title ul.smoke li:first-child img {
        top: 0;
        left: 0;
    }

    #contents .title ul.smoke li:last-child img {
        bottom: 0;
        right: 0;
    }

    /*---bg---*/
    #contents .title .bg_top {
        display: none !important;
    }

    #contents .title .bg_bottom {
        bottom: -30px;
        width: 100%;
        height: 140px;
        border-radius: 0;
    }

    /*-------------------button-------------------*/
    #contents .button ul {
        display: block;
        width: 80%;
        margin: 90px auto 50px;
    }

    #contents .button ul li:first-child {
        margin: 0 0 30px 0;
    }

    #contents .button li a {
        text-align: left;
        font-size: 18px;
        width: 100%;
        padding: 18px 0 18px 18px;
    }

    #contents .button li a img {
        right: 20px;
        top: 25px;
        width: 24px;
    }

    #contents .button li a:hover img {
        right: 16px;
    }

    /*-------------------about-------------------*/
    #contents .about {
        background-size: 8px auto, 8px auto, 220px auto;
        width: 100%;
        padding: 30px 0 34px;
        margin: 0 auto 60px;
    }

    #contents .about h2 img {
        width: 100%;
        margin: 0 auto 14px;
    }

    #contents .about p {
        width: 80%;
        margin: 0 auto 24px;
        text-align: left;
        font-size: 18px;
        line-height: 34px;
    }

    #contents .about .img_area ul {
        position: relative;
        bottom: -20px;
        width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-flow: wrap;
    }

    #contents .about .img_area img {
        width: 90%;
        margin: 0 auto;
    }

    /*-------------------product-------------------*/
    #contents .product {
        margin: 0 auto 60px;
    }

    #contents .product h2 img {
        width: 100%;
        margin: 0 auto 20px;
    }

    /*---wrap---*/
    #contents .product .wrap {
        width: 86%;
        max-width: 88%;
        padding: 20px 0 10px;
        border-radius: 10px;
    }

    #contents .product .wrap ul {
        display: block;
        width: 92%;
    }

    #contents .product li {
        width: 100%;
        margin: 0 auto 50px;
    }

    /*---img_area---*/
    #contents .product li .img_area .pkg {
        width: 100%;
    }

    #contents .product li .img_area .sub {
        top: -10px;
        right: -4%;
        width: 30%;
    }

    #contents .product li .img_area .new {
        left: 0px;
        width: 80px;
    }

    /*---img_area---*/
    #contents .product li h3 {
        font-size: 20px;
        line-height: 28px;
        padding: 0 10px;
    }

    #contents .product li p {
        width: 94%;
        margin: 20px auto 30px;
        font-size: 18px;
        line-height: 34px;
    }

    #contents .product li a {
        width: 90%;
    }

    /*-------------------recipe-------------------*/
    #contents .recipe {
        width: 100%;
        max-width: 100%;
    }

    #contents .recipe h2 {
        margin: 0 auto 20px;
    }

    #contents .recipe h2 img {
        width: 100%;
        margin: 0 auto 20px;
    }

    /*---ul---*/
    #contents .recipe ul {
        width: 100%;
        max-width: 100%;
    }

    #contents .recipe ul li,
    #contents .recipe li:nth-child(even) {
        left: auto;
        margin: 0 auto 70px;
    }

    /*---wrap---*/
    #contents .recipe ul .wrap {
        display: block;
    }

    /*---img_area---*/
    #contents .recipe .img_area {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    #contents .recipe .img_area .photo {
        width: 80%;
        border-radius: 10px;
    }

    #contents .recipe .img_area .pkg,
    #contents .recipe li:nth-child(even) .img_area .pkg {
        left: 0px;
        bottom: -50px;
        width: 44%;
    }

    #contents .recipe .img_area .bg,
    #contents .recipe li:nth-child(even) .img_area .bg {
        left: 0;
        right: 0;
        bottom: -20px;
        border-radius: 0px;
        width: 95%;
        margin: 0 auto;
        height: 120px;

    }

    /*---txt_area---*/
    #contents .recipe .txt_area {
        width: 90%;
        margin: 0 auto;
    }

    /*---tit---*/
    #contents .recipe .txt_area .tit,
    #contents .recipe li:nth-child(even) .txt_area .tit {
        position: relative;
        left: 0;
        top: 0;
        z-index: 3;
        border-radius: 0;
        padding: 4px 0 12px 15px;
        margin: 60px auto 0;
        border-left: #ffda33 solid 4px;
        border-bottom: #ffda33 solid 1px;
        width: 90%;
    }

    #contents .recipe .txt_area p {
        font-size: 18px;
        line-height: 34px;
    }

    #contents .recipe .txt_area .tit h3 {
        font-size: 22px;
        line-height: 32px;
    }

    #contents .recipe .txt_area hr,
    #contents .recipe li:nth-child(even) .txt_area hr {
        width: 90%;
        margin: 20px auto;
    }

    /*---step---*/
    #contents .recipe .txt_area .step,
    #contents .recipe ul li:nth-child(even) .wrap .txt_area .step {
        width: 90%;
        margin: 20px auto;
    }

    #contents .recipe .txt_area .step dt {
        width: 120px;
        margin: 20px 0 12px;
        padding: 0;
        font-size: 18px;
        line-height: 30px;
    }

    #contents .recipe .txt_area .step dd,
    #contents .recipe .txt_area .step a {
        font-size: 18px;
        line-height: 34px;
    }

    /*-------------------caution-------------------*/
    #contents .caution {
        width: 82%;
        padding: 20px;
        margin: 60px auto 0;
    }

    #contents .caution li {
        font-size: 16px;
        line-height: 30px;
    }

    /*---------sns---------*/

    #contents .sns {
        margin: 0 auto 0;
    }

    #contents .sns ul {
        width: 100%;
        display: block;
    }

    #contents .sns ul li {
        width: 90%;
        margin: 0 auto 20px;
        background: #fff;
    }

    #contents .sns ul li:nth-child(3) {
        margin: 0 auto 0;
    }

    /*-------------------page_top-------------------*/

    #page_top {
        bottom: 10px;
        right: 20px;
    }

    #page_top a img {
        width: 60px;
    }

    #page_top:hover {
        bottom: 20px;
    }

}