@charset "utf-8";

body {
    counter-reset: number;
}

#wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#header {
    padding: 20px 0;
    background: #ffe45f;
}

#main {
    width: 960px;
    margin: 0 auto;
}

#main .sub-title {
    margin-top: 20px;
    color: #3b82c5;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}

#main h1 {
    margin-bottom: 20px;
    font-size: 45px;
    text-align: center;
    line-height: 1.2;
}

#main .line {
    padding-bottom: 30px;
}

#main .recipe {
    display: flex;
    justify-content: space-between;
}

#main .recipe .recipe-ingredients {
    width: 49%;
}

#main .recipe .recipe-ingredients h2 {
    margin-bottom: 15px;
    padding: 2px 0 0 10px;
    color: #f39800;
    font-size: 28px;
    border-left: 7px solid #f39800;
}

#main .recipe .recipe-ingredients h3 {
    margin-top: 25px;
    color: #3c38bc;
    font-size: 15px;
}

#main .recipe .recipe-ingredients .ingredients {
    margin-top: 8px;
    padding: 5px 15px 15px;
    border: 2px dashed #f39800;
    border-radius: 20px;
}

#main .recipe .recipe-ingredients .ingredients .row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cccccc;
}

#main .recipe .recipe-ingredients .ingredients .row div {
    padding: 10px 0;
}

#main .recipe .recipe-ingredients .ingredients .row div:first-child {
    font-weight: bold;
}

#main .recipe .recipe-ingredients .ingredients .row .group_l {
    width: 4%;
    padding: 35px 10px 25px 0;
    color: #f39800;
    font-weight: bold;
    border-right: 1px solid #cccccc;
}

#main .recipe .recipe-ingredients .ingredients .row .group_l.b{
    padding: 20px 10px 15px 0;
}

#main .recipe .recipe-ingredients .ingredients .row .group_r {
    width: 96%;
}

#main .recipe .recipe-ingredients .ingredients .row .row_a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #cccccc;
}

#main .recipe .recipe-ingredients .ingredients .row .row_a .font_n {
    font-weight: normal;
}

#main .recipe .recipe-ingredients .ingredients .row .row_a:first-child {
    padding-top: 0;
}

#main .recipe .recipe-ingredients .ingredients .row .row_a:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

#main .recipe .recipe-ingredients .ingredients .row .row_a div {
    padding: 0 0 0 10px;
}

#main .recipe .recipe-process {
    position: relative;
    width: 49%;
}

#main .recipe .recipe-process h2 {
    margin-bottom: 15px;
    padding: 2px 0 0 10px;
    color: #f39800;
    font-size: 28px;
    border-left: 7px solid #f39800;
}

#main .recipe .recipe-process p {
    margin-bottom: 3px;
}

#main .recipe .recipe-process .process {
    padding-left: 30px;
}

#main .recipe .recipe-process .process:before {
    counter-increment: number;
    content: counter(number);
    position: absolute;
    left: 0;
    color: #f39800;
    font-size: 24px;
    font-weight: bold;
}

#main .recipe .recipe-process .a {
    color: #f39800;
    font-weight: bold;
}

#main .recipe .recipe-process .process_img {
    float: right;
    margin-left: 10px;
}

#main .point {
    position: relative;
    margin-top: 30px;
    padding: 100px 0 50px;
    background: url(../images/img03_bg.jpg) no-repeat top center;
}

#main .point img {
    display: block;
    margin: 0 120px 0 auto;
}

#main .point p {
    position: absolute;
    width: 440px;
    top: 140px;
    left: 120px;
    font-size: 18px;
    line-height: 1.5;
}

#main .back_btn img {
    display: block;
    margin: 50px auto;
}

#footer {
    background: #ffe45f;
}