/* 
 * Author: Shunsuke Ogihara
 * Desc  : お惣菜紹介ページのスタイルの定義 
 */

/****************************************
メタ情報
****************************************/
@charset "utf-8";


/****************************************
タイトル
****************************************/
.bg_title {
    background-image: url(../images/naname.png);
    padding: 10px 0;
}
h2 {
    font-size: 5rem;
    padding-left: 5%;
    line-height: 300px;
    background-color: #ffffff;
    background-image: url(../images/title_sidedish.jpg);
    background-repeat: no-repeat;
    background-position: right;
}
.read {
    margin: 20px auto 60px 5%;
    font-size: 2rem;
    letter-spacing: 0.6rem;
}


/****************************************
惣菜紹介
****************************************/
section {
    margin-bottom: 100px;
}
h3 {
    font-size: 3.5rem;
    color: #fb8b6b;
    text-align: center;
    letter-spacing: 1rem;
}
.dish_wrap {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
}
.dish {
    width: 40%;
}
.detail {
    display: flex;
}
.detail .bg_sidedish {
    width: 75px;
    height: 200px;
    border-radius: 5px;
    background-image: url(../images/naname.png);
    position: relative;
}
.detail h4 {
    position: absolute;
    left: -10px;
    top: -7px;
    writing-mode: vertical-rl;
    width: 75px;
    height: 200px;
    font-size: 2.6rem;
    color: #fb8b6b;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 0 2px #fb8b6b;
    line-height: 75px;
    text-align: center;
    letter-spacing: 0.6rem;
}
.detail .yakibuta {
    padding-top: 20px;
    letter-spacing: 3rem;
}
.detail .curry {
    letter-spacing: 0.1rem;
}
.detail .makaroni {
    letter-spacing: 0rem;
}
.detail p {
    width: 100%;
    margin-top: 20px;
    margin-left: -40px;
}
.detail p img {
    width: 100%;
}
.text {
    padding-left: 35px;
    padding-right: 5px;
}
.price {
    font-size: 1.6rem;
    text-align: right;
}
.price span {
    font-size: 2.2rem;
    color: #fb8b6b;
    font-weight: bold;
    margin-right: 5px;
    padding-right: 5px;
}
.dish_other {
    margin-bottom: 20px;
}
.dish_other .bg {
    background-image: url(../images/naname.png);
    width: 100px;
    height: 30px;
    position: relative;
    border-radius: 3px;
    margin-bottom: 3px;
}
.dish_other h4 {
    background-color: #ffffff;
    color: #fb8b6b;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -6px;
    top: -6px;
    border-radius: 3px;
    box-shadow: 0 0 0 2px #fb8b6b;
    line-height: 30px;
    text-align: center;
}
.sidedish_image img {
    width: 100%;
}

/**************************************************************************************
ここからレスポンシブ
***************************************************************************************/
@media screen and (max-width:640px) {

/****************************************
タイトル
****************************************/
h2 {
    font-size: 2.5rem;
    line-height: 100px;
    background-size: contain;
}
.read {
    width: 95%;
    margin: 10px auto 20px;
    font-size: 1.3rem;
    letter-spacing: 0;
    text-align: justify;
}
.read br {
    display: none;
}
    
/****************************************
惣菜紹介
****************************************/
section {
    margin-bottom: 50px;
}
h3 {
    font-size: 2.8rem;
    letter-spacing: 0;
}
.dish_wrap {
    display: block;
    margin-top: 20px;
}
.dish {
    width: 90%;
    margin: 0 auto 20px;
}
.detail {
    display: flex;
}
.detail .bg_sidedish {
    width: 50px;
    height: 150px;
}
.detail h4 {
    width: 50px;
    height: 150px;
    font-size: 1.8rem;
    line-height: 50px;
    letter-spacing: 0.2rem;
}
.detail p {
    margin-top: 15px;
}
.text {
    padding-left: 3%;
    padding-right: 2%;
    font-size: 1.6rem;
    text-align: justify;
}
.price {
    font-size: 1.4rem;
}
.price span {
    font-size: 1.8rem;
}
.sidedish_image {
    display: none;
}

}