@charset "UTF-8";

html>/**/body {font-size:14px;}

body {
	background: #fdd000;
	line-height: 1.8;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
    color: #000;
}

#wrap {
    width: 100%;
	max-width: 800px;
	margin: 30px auto;
}

.recipe {
	background:#FFF;
	padding: 50px;
	margin: 20px 15px 40px 15px;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
    border-radius: 10px;
}

h1 {
	text-align:center;
}

.h1_img{ 
    width: 350px;
}

.program_ttl{
    text-align: center;
    margin: 25px 0;
    color: #fff;
    background: #3E0405;
    border-radius: 10px;
    padding: 10px;
}

.recipe_image {
	text-align:center;
}

.recipe_image img {
    width: 100%;
	margin: 0 auto ;
	padding: 2px 0;
    border-radius: 10px;
}

.recipe_name_box{
    background: url("../img/stripe_yellow.png") repeat;
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin: 25px 0;
    border-radius: 5px;
}

.recipe_name_box .recipe_name{
    display: inline-block;
    font-family: UD Shin Go Bold;
    padding: 0 0.8rem;
    font-size: 1rem;
    color: #fff;
    background: #FD9500;
    margin-bottom: 0.4rem;
    border-radius: 100vh;
    letter-spacing: 0.1rem;
}

.recipe_name_box .recipe_text{
    font-family: UD Shin Go Bold;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #000;
}

.recipe_ttl {
    width: 100%;
    padding: 0.2em 0 0.2em 1em;
    border-left: solid 5px #007dae;
    font-family: UD Shin Go Bold;
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 20px 0;
}

.recipe_ttl_s{
    font-family: UD Shin Go Bold;
    font-size: 1.2rem;
}

.recipe .recipe-list {
    background: #f5f5f5;
    padding: 20px 25px;
    border-radius: 5px;
    margin: 10px 0 30px;
}

.recipe .recipe-list li{
    position :relative;
    font-size: 1rem;
    margin: 0 0 0 1rem;
}

.recipe .recipe-list li:before{
    position: absolute;
    left: -1rem;
    top: 45%;
    content:  "";
    width:  0.4rem;
    height: 0.4rem;
    display:  inline-block;
    background-color: #007DAE;
    border-radius:  50%;  
}

.recipe .recipe-order{
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.recipe .recipe-order li{
    position :relative;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 0.7rem 2rem;
}

.recipe .recipe-order li:before{
    font-family: UD Shin Go;
    font-weight: bold;
    position: absolute;
    counter-increment: item;
    content: counter(item);
    left: -2rem;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    color: #fff;
    background: #007DAE;
    font-size: 0.9rem;
    border-radius: 50%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


@media screen and (max-width:640px) {
    .recipe {
        padding: 30px;
    }
    .h1_img{
         width: 220px;
    }
    .program_ttl{
        margin: 15px 0;
        font-size: 1.4rem;
        line-height: 1.4;
        padding: 10px 20px;
    }
    .recipe_name_box .recipe_name{
        margin-bottom: 0.6rem;
    }
    
    .recipe_name_box{
         padding: 20px;
    }
    
    .recipe_name_box .recipe_text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    .recipe_ttl {
        font-size: 1.4rem;
        margin: 30px 0 20px;
    }
}

