/* CSS Document */
#recipe section{
    background: var(--color-recipe-bg);
    padding: 3rem 2rem;
}
#recipe h1.recipe-title{
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid orange;
    margin-bottom: 3rem;
    font-size: 3.0rem;
    align-items: center;
    font-family: var(--font-serif);
    font-weight: bold;
}
#recipe h1.recipe-title span.recipe-no{
    background: orange;
    font-family: --font-sanserif;
    font-size: 4.0rem;
    color: var(--white);
    width: 90px;
    height: 90px;
    border-radius: 0.4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 1rem;
}
#recipe h1.recipe-title span:last-child{
    flex: 1;
}
#recipe section figure{
    max-width: 940px;
    margin: 5rem auto 6rem;
    border-radius: 5rem;
    overflow: hidden;
}
#recipe p.comment{
    max-width: 940px;
    margin: 0 auto 3rem;
    font-size: 1.8rem;
    text-indent: 0;
}
#recipe table.ingredient th{
    font-weight: normal;
    padding-right: 3rem;
} 
#recipe dl{
    max-width: 940px;
    margin: 0 auto;
}
#recipe dl dd{
    background: transparent;
}
#recipe dl dt, #recipe dl dd{
    padding: 1.2rem 0 4rem;
}
#recipe dl dd p{
    text-indent: 0;
}
#recipe dl dd ol{
    margin-top: 0;
    margin-bottom: 0;
}
.back-btn{
    text-align: center;
}
.back-btn a{
    background: var(--black);
    border: 1px solid var(--black);
    color: var(--white);
    padding: 0.8rem 2rem 0.8rem 3rem;
    margin: 0 auto;
    position: relative;
    display: inline-block;
    transition: 0.3s;
}
.back-btn a:before{
        content: "";
        position: absolute;
        display: block;
        width: 14px;
        height: 14px;
        -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 16 16"><path d="M1,0.343L6.657,6,5.95,6.707,0.293,1.05ZM6.657,6L1,11.657,0.293,10.95,5.95,5.293Z"/></svg>');
        -webkit-mask-size: contain;
        mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 16 16"><path d="M1,0.343L6.657,6,5.95,6.707,0.293,1.05ZM6.657,6L1,11.657,0.293,10.95,5.95,5.293Z"/></svg>');
        background-color: var(--white);
        transform: translate(-50%, -50%) rotate(180deg);
        top: 48%;
        left: 1rem;
}
.back-btn a:hover{
    color: var(--black);
    background: var(--white);
    transition: 0.3s;
}
.back-btn a:hover:before{
    background-color: var(--black);
    transition: 0.3s;
}
/* タブレット（以下） */
/* =========================================================== */
@media screen and (max-width: 990px){
    #recipe h1.recipe-title{
        font-size: 2.2rem;
        line-height: 1;
    }
    #recipe h1.recipe-title span.recipe-no{
        font-size: 3.0rem;
        width: 60px;
        height: 60px;
    }
}