@charset "UTF-8";

/* ==================================
全体に働きかける '※'
================================== */
*{
    box-sizing: border-box;
}

/* ==================================
基本の設定
================================== */
body{
    margin: 0;
    font-family:"游ゴシック体", YuGothic,"游ゴシック", "Yu Gothic", sans-serif;
    /* font-family: serif; */
    /* font-family: sans-serif; */
    color: #666;
    line-height: 1.8;
    /* line hight テキストの行間 */
    background-image: url(../img/back.006.png);
    /* ↑　背景に画像をいれる */
}
img {
    max-width: 100%;
    /* ↑　画像のサイズ　100% */
}



/* ==================================
各ボックスの設定
================================== */
/* 大枠 */
.wrapper {
    width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
    /* 縦　横　ぼかし */
}
/* ヘッダーエリア */
.header {
    width: 920px;
    /* height: 300px;  */
}
.header h1{
    font-size: 24px;
    margin: 0;
    padding: 0;
    color: #e29676;    
}
.header img {
    /* 画像下隙間なくす */
    display: block;
}

/* コンテンツエリア */
.contents-wrapper {
      /* margin-top: 60px;  */
    display: flex;
    justify-content: space-between;
}

/* メインエリア */
.main-contents {
    width: 600px;
}
.content {
    margin-top: 40px;
    margin-bottom: 10px;
    /* 外側のスペースをそれぞれ空ける */
}
.content h2 {
    font-size: 22px;
    padding: 10px;
    border-bottom: 1px dashed#000;
    border-left: 8px solid#e29676;
    /* border-left ボーダーを太くすることで見出しっぽいデザイン */
}
.content p {
    font-size: 16px;
}

/* サイドエリア */
.aside-contents {
    width: 280px;
    margin-top: 57px;
}
.aside-contents h3 {
    /* 食へのこだわりの部分 */
    font-size: 18px;
    margin: 0;
    padding-bottom: 10px;
    color: #e29676;
    border-bottom: 1px solid #ccc;
}
.aside-contents p {
    font-size: 16px;
}
.aside-contents ul {
    margin-bottom: 30px;
}

/* フッターエリア */
.footer {
    /* 一番下の部分 */
    display: flex;
    /* ↑　横並び */
    justify-content: center;
    align-items: center;
    /* ↑　この3つで　上下左右中央揃えにすることができる */
    margin-top: 20px;
    height: 200px;
    background: #e29676;
    text-align: center;
}
.footer small {
    color: #fff;
}



/* ==================================
色、文字サイズ
================================== */
