@charset "UTF-8";
/* CSS Document */

/* =========================================
    リセットCSS
==========================================*/

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

/* =========================================
    全体設計
==========================================*/
/* ↓ ユーザーが指定した文字サイズを正しく反映 ↓ */
html {
	font-size: 100%　
}

/* ↓ 画像の大きさの指定（画像が親要素よりも大きくなることを防ぐ） ↓ */
img {
	max-width: 100%;
}

body {
	font-family: "M PLUS Rounded 1c", sans-serif;	
    font-weight: 700;
    font-style: normal;
	color: #302622;
	background-color: #fffeee;
}

/* =========================================
    ヘッター
==========================================*/

.page-header {
	background-color: #63CBDE;
	text-align: center;
}


h1 {
	font-size: 50px;
	font-weight:bold;
}

h2 {
	font-size: 30px;
}

header p {
	font-size: 30px;
	padding: 5px 0 5px 0;
}


.navigation {
	color: #302622;
	text-align: center;
	margin: 15px 0 30px 0;
}

.btn {
	display: inline-flex;
	font-size: 20px;
	background-color: #63CBDf;
	color: #302622;
	border-radius: 8px;
	margin: 20PX;
	padding: 10px;
	text-decoration: none;
}

.btn:hover {
	background-color: #0090aa
}

.container {
	display: flex;
	justify-content: center;
}

/* =========================================
    メインビジュアル
==========================================*/

.main-image {
  display: block; /* imgタグをブロック要素に変換 */
  margin-left: auto; /* 左マージンを自動に */
  margin-right: auto; /* 右マージンを自動に */
  margin-bottom: 30px;
  width: 50%; /* 幅の指定も必要 */
  border-radius: 30px;
  overflow: hidden; /*画像の角を丸くするのではなく、親要素からはみ出た部分を隠すことで角丸に見せる*/
}

/* =========================================
    開催概要
==========================================*/


main {
	text-align: center;
}

main h3 {
	margin-bottom: 40px;
}

main div h4 {
	margin-bottom: 20px;
}

main div p {
	margin-bottom: 40px;
}

.event-program {
	margin-bottom: 20px;
}

/* 右の星微調整 */

.star-icon-01 {
	margin-right: 8px;
}

.star-icon-03 {
	margin-right: 4.5px;
}

/* テーブル */

.schedule-table {
  	border-collapse: collapse;
	border: 2px solid #00bbdd;
	margin: 0 auto;
}

.schedule-table th, 
.schedule-table td {
  	border: 1px solid #00bbdd;
	padding: 10px;
	text-align: center
}

.table-head {
	background: #63CBDE;
}


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

.page-footer {
	width: 100%;
	hight:50px;
	background-color: #63CBDE;
	text-align: center;
	margin-top: 50px
}


















