@charset "UTF-8";

/*=========================================
リセットCSS　デフォルトのスタイルを打ち消す
=========================================*/

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*=========================================
全体の設定
=========================================*/

#wrapper{
    width: 100%; 
    margin: 0 auto;
}

body {
    font-size: 18px;
    font-family: "小塚明朝 Pr6N", "Kozuka Mincho ProN", serif;
    background-color: #fffde4;
    color: #544741;
    text-align: center
}

/*=========================================
ヘッダー
=========================================*/

header {
    background-repeat: no-repeat;/*背景画像を繰り返さないように指定*/
    background-size: 100% auto;/*100%: 画像の幅を、親要素（header）の幅いっぱいに広げる。auto: 画像の高さは、元の画像の縦横比を保ったまま自動で調整*/
    text-align: center;/*水平方向の中央に揃える*/
}

#header-image{
    background-image: url("../images/header02.png"); /*ヘッダーの背景として表示する画像*/
    background-position: center; 
    width: 100%;
    height: 96px;
}

#header h1{
    font-size: 30px;
    font-weight: bold;
    color: #544741;
    padding: 80px 0 30px 0;
}

#header h2{
    font-size: 40px;
    padding-bottom: 20px;
}

#header p{
    font-size: 40px;
    font-weight: bold;
    color: #544741;
    padding-bottom: 20px;
}

/*=========================================
Googleフォント
=========================================*/

.fraunces-uniquifier {
    font-family: "Fraunces", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings: "SOFT" 0, "WONK" 0;
}

/*=========================================
ナビゲーション
=========================================*/

nav ul {
    display: flex;/*横並びにする*/
    width: 1400px;
    margin: 0 auto; 
    justify-content: center; /*ナビゲーションをまとめて中央に配置*/
}

nav ul li a {
    display: inline-block;/*横並びを保ちつつ、自由にサイズ変更できる*/
    width: 145px;
    height: 38px;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    background-color: #ff5c53;
    padding: 10px 0;
    border-radius: 10px;
    text-align: center; 
    margin: 30px 30px 50px 30px;
}

a {
    color: #544741;
}

a:hover {
    text-decoration: underline;
    color: #ff5c53;
    font-weight: bold;
    background-color: #fff;
}

/*=========================================
トップ画像
=========================================*/

div#top-image {
    width: 1400px;
    height: 500px;
    margin: 30px auto 0 auto; 
    background-position: center;
}

#top-image img {
    display: block;/*インライン要素をブロック要素に変更*/
    width: 100%; 
    height: 100%;
}

/*=========================================
浮間舟渡公園フリーマーケット2について
=========================================*/

h3 {
    color: #ff5c53;
    text-align: center;
    width: 1400px;
    margin: 80px auto; 
    padding: 5px 10px;
    border: 3px dotted #ff5c53;
    border-radius: 5px;
    background-color: #fff;
}

#holding_overview{
    width: 1400px; 
    font-size: 40px;
    text-align: center;
    color: #544741;
    margin: 0 auto 30px auto;
    border-bottom: 3px dotted #ff5c53;
}

#overview p {
    width: 1400px; 
    margin: 0 auto 80px auto; 
    text-align: center; 
}

#event{
    width: 1400px; 
    font-size: 40px;
    text-align: center;
    color: #544741;
    margin: 0 auto 30px auto; 
    padding: 10px;
    border-bottom: 3px dotted #ff5c53;   
}

/*=========================================
テーブル
=========================================*/

table {
    width: 1120px; 
    margin: 0 auto 80px auto; 
    background-color: #fff;
    border-collapse: collapse;/*(コラプス)罫線を一本に結合する設定 */
}

.col1 { 
    width: 30%; 
}
.col2 { 
    width: 50%; 
}
.col3 { 
    width: 20%; 
}

thead tr th{
    background-color: #ff5c53;
    color: #fff;
    padding: 10px;
}

tbody tr td{
    text-align: center;
    padding: 10px;
}

tfoot td, tfoot tr td {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center; 
}

/*=========================================
フッター上部の画像
=========================================*/

#footer-image {
    width: 100%;
    height: 255px;
    background-image: url("../images/footer02.png");
    background-repeat: no-repeat; 
    background-position: center; 
}

/*=========================================
フッター
=========================================*/

footer {
    width: 100%;
    height: 50px;
    background-size: 100%;
    margin: 0 auto; 
    background-color: #ff5c53;
    color: #fff;
}

footer p{
    font-size: 20px;
    text-align: center;
    padding: 10px 0 10px 0;
}



