@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Zen+Maru+Gothic:wght@900&display=swap');

/* 冷凍うどんで料理を作ってみよう！ 2022/06 */

/* common setting */

/* 画像リンク */
#main a:hover img {
    opacity:0.7;
    filter:alpha(opacity=70);
    -ms-filter:"alpha( opacity=70 )";
    transition:0.5;
    transition-duration:0.3s;
}

body {
    position:relative;
    overflow-x:hidden;
}

#navHeader {
    margin-bottom:0 !important;
    z-index:100;
}

.pc {}
.sp {display:none;}


/* common setting END */


/* PCレイアウト */
/*-------------------------------------------*/
#contents {
    background-color: #5bbde7;
    margin-bottom: 60px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height:1.8;
    font-size:1.4em;
    font-weight: 700;
    color:#000000;
}
#contents img {
    max-width:100%;
    height:auto;
}

#contents * {box-sizing: border-box;}

.sp {display:none;}

#contents ruby {
    ruby-align: center;
}


#contents h1 {
    margin-bottom: 35px;
}




/* sec03 */
/* トップと共通 */
#sec03 {
    padding-bottom: 20px;
}
#sec03 ul.recipe {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width:94%;
    max-width: 950px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url("../images/sec03_line_pc.png");
    background-size: contain;
    margin: 0 auto 40px;
    padding-bottom: 40px;
}
#sec03 ul.recipe li {
    width:32%;
    margin-bottom: 2%;
}
#sec03 ul.recipe li a {
    display: block;
    width:100%;
    height:0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    padding-top:95.918%;
    text-indent: -9999px;
}

#sec03 ul.recipe.recipe-a li:nth-child(2) a {background-image: url("../images/sec03_recipe_a01.png");}
#sec03 ul.recipe.recipe-a li:nth-child(3) a {background-image: url("../images/sec03_recipe_a02.png");}
#sec03 ul.recipe.recipe-a li:nth-child(4) a {background-image: url("../images/sec03_recipe_a03.png");}
#sec03 ul.recipe.recipe-a li:nth-child(5) a {background-image: url("../images/sec03_recipe_a04.png");}
#sec03 ul.recipe.recipe-a li:nth-child(6) a {background-image: url("../images/sec03_recipe_a05.png");}

#sec03 ul.recipe.recipe-a li:nth-child(2) a:hover {background-image: url("../images/sec03_recipe_a01_o.png");}
#sec03 ul.recipe.recipe-a li:nth-child(3) a:hover {background-image: url("../images/sec03_recipe_a02_o.png");}
#sec03 ul.recipe.recipe-a li:nth-child(4) a:hover {background-image: url("../images/sec03_recipe_a03_o.png");}
#sec03 ul.recipe.recipe-a li:nth-child(5) a:hover {background-image: url("../images/sec03_recipe_a04_o.png");}
#sec03 ul.recipe.recipe-a li:nth-child(6) a:hover {background-image: url("../images/sec03_recipe_a05_o.png");}

#sec03 ul.recipe.recipe-b li:nth-child(2) a {background-image: url("../images/sec03_recipe_b01.png");}
#sec03 ul.recipe.recipe-b li:nth-child(3) a {background-image: url("../images/sec03_recipe_b02.png");}
#sec03 ul.recipe.recipe-b li:nth-child(4) a {background-image: url("../images/sec03_recipe_b03.png");}
#sec03 ul.recipe.recipe-b li:nth-child(5) a {background-image: url("../images/sec03_recipe_b04.png");}
#sec03 ul.recipe.recipe-b li:nth-child(6) a {background-image: url("../images/sec03_recipe_b05.png");}

#sec03 ul.recipe.recipe-b li:nth-child(2) a:hover {background-image: url("../images/sec03_recipe_b01_o.png");}
#sec03 ul.recipe.recipe-b li:nth-child(3) a:hover {background-image: url("../images/sec03_recipe_b02_o.png");}
#sec03 ul.recipe.recipe-b li:nth-child(4) a:hover {background-image: url("../images/sec03_recipe_b03_o.png");}
#sec03 ul.recipe.recipe-b li:nth-child(5) a:hover {background-image: url("../images/sec03_recipe_b04_o.png");}
#sec03 ul.recipe.recipe-b li:nth-child(6) a:hover {background-image: url("../images/sec03_recipe_b05_o.png");}


/* accordion */
.acc-block {
    position: relative;
    width:84%;
    max-width: 730px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url("../images/sec03_acc_bottom_pc.png");
    background-size: contain;
    margin: 0 auto 60px;
    padding-bottom: 2.186%;
}
.acc-block input {
    display: none;
}
.acc-block label {
    display: block;
    width:100%;
    height:0;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url("../images/sec03_acc_label_pc.png");
    background-size: contain;
    padding-top: 10.237%;
    text-indent: -9999px;
    cursor: pointer;
}
.acc-block .acc-cont {
    height: 0;
    background-color: #ffffff;
    padding: 0 4%;
    text-align: left;
    opacity: 0;
    transition: all .3s ease;
}
.acc-block input:checked ~ label {
    background-image: url("../images/sec03_acc_label_open_pc.png");
}
.acc-block input:checked ~ .acc-cont {
    height: auto;
    opacity: 1;
}
.acc-block ul {
    padding: 4% 0;
}
.acc-block ul > li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
}
.acc-block ul > li:before {
    content:"●";
}
.acc-block ul > li ul {
    padding-left: 1.5em;
}
.acc-block ul > li ul li {
    list-style: disc;
    margin-bottom: 0.5em;
    padding-left: 0;
    text-indent: 0;
}
.acc-block ul > li ul li:before {
    content:"";
}

/* トップと共通 END */


/* 戻るボタン */
#sec03 .prev {
    padding-bottom: 60px;
    text-align: center;
}


/* レシピ本体 */
.conetent img {
    max-width: 100%;
    height: auto;
}
.conetent .inner {
    width: 94%;
    max-width: 900px;
    background-color: #ffffff;
    margin: 0 auto 50px;
}

.overview {
    display: flex;
    justify-content: space-between;
    width:78%;
    max-width: 700px;
    margin: 0 auto;
}

.recipe01 .overview,
.recipe06 .overview {
    margin: 0 auto 40px;
}

.overview .lead {
    width:48%;
}
.overview .tools-material {
    width:48%;
}

.directions {
    position: relative;
    width:78%;
    max-width: 700px;
    margin: 0 auto;
}
.directions ol {
    list-style: none;
}

.picture {
    position: absolute;
    right: 5%;
    bottom: 1%;
    width: 34%;
    max-width: 260px;
    margin: auto;
}

.recipe02 .picture {
    right: 8%;
    bottom: 2%;
}
.recipe03 .picture,
.recipe08 .picture {
    left: 18%;
    right:inherit;
    bottom: 2%;
}
.recipe10 .picture {
    left: 20%;
    right:inherit;
    bottom: 13%;
}



.bottom {
    width:87%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 50px;
}



/* 印刷ボタン */
.print-block {
    display: flex;
    width: 45%;
    max-width: 350px;
    margin-left: auto;
}





/* 949px以下 */
/*-------------------------------------------*/
@media only screen and (max-width: 949px) {

/* common setting */

img, object, embed, video {
    max-width:100%;
    height:auto;
}

#navHeader {
    height:20px;
}

.pagetop_sp {z-index:9999;} 

/* common setting END */

#contents {
    font-size:1.2em;
}





}
/*-------------------------------------------*/
/* 949px以下 END */



/* 750px以下 */
/*-------------------------------------------*/
@media only screen and (max-width: 750px) {

/* common setting */

#navHeader {
    height:1.5em;
}

.pagetop_sp {z-index:9999;}

.pc {display:none;}
.sp {display:block;}

/* common setting END */


#contents {
    margin-bottom: 6%;
}





/* sec03 */
/* トップと共通 */
#sec03 {
    padding-bottom: 3%;
}
#sec03 ul.recipe {
    justify-content: center;
    background-image: url("../images/sec03_line_sp.png");
    margin: 0 auto 12%;
    padding-left: 6%;
    padding-bottom: 8%;
}
#sec03 ul.recipe li {
    width:46%;
    margin-right: 4%;
    margin-bottom: 4%;
}

.acc-block ul {
    font-size: 2.8vw;
}
.acc-block {
    position: relative;
    width:88%;
    max-width: 656px;
    background-image: url("../images/sec03_acc_bottom_sp.png");
    margin: 0 auto 8%;
    padding-bottom: 2.32%;
}
.acc-block label {
    background-image: url("../images/sec03_acc_label_sp.png");
    padding-top: 11.75%;
}
.acc-block input:checked ~ label {
    background-image: url("../images/sec03_acc_label_open_sp.png");
}

/* トップと共通 END */


/* 戻るボタン */
#sec03 .prev {
    width: 40%;
    margin: 0 auto;
    padding-bottom: 10%;
}


/* レシピ本体 */
.conetent .inner {
    width: 100%;
    background-color: #ffffff;
    margin: 0 auto 8%;
}

.overview {
    display: block;
    width:88%;
}
.recipe01 .overview,
.recipe06 .overview {
    margin: 0 auto;
}

.overview .lead {
    width:100%;
    margin-bottom: 8%;
}
.overview .tools-material {
    width:96%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url("../images/recipe/line_sp.png");
    background-size: contain;
    margin: 0 auto 8%;
    padding-bottom: 3%;
}

.directions {
    position: relative;
    width:88%;
}

.picture {
    position: static;
    width: 70%;
    max-width: inherit;
    margin-right: 12%;
    padding-top: 4%;
}

.recipe02 .picture {
    padding-top: 6%;
    margin-bottom: 5%;
}
.recipe03 .picture {
    padding-top: 8%;
}


.bottom {
    width:88%;
    padding: 6% 0;
}

/* 印刷ボタン */
.print-block {
    width: 54%;
}




}
/*-------------------------------------------*/
/* 750px以下 END */



/* 640px以下 */
/*-------------------------------------------*/
@media only screen and (max-width: 640px) {

#navHeader {
    height:4.5em;
}

}
/*-------------------------------------------*/
/* 640px以下 END */



/* 420px以下 */
/*-------------------------------------------*/
@media only screen and (max-width: 420px) {

#navHeader {
    height:5.5em;
}

}
/*-------------------------------------------*/
/* 420px以下 END */












