﻿
@charset "utf-8";
/* ベース設定 */

/* 画像の下にできる隙間をなくす
---------------------------------------------------------- */
img {
	line-height: 0;
	vertical-align: top;
	border: 0;
}
@media only screen and (max-width: 480px) {
	img {
		max-width: 100%;
		height: auto;
	}
}

/* テキストリンクの設定
---------------------------------------------------------- */
a,
a:link {
	color: #308AD0;
	text-decoration: underline;
}
a:visited {
	color: #369;
	text-decoration: underline;
}
a:active {
	color: #66F;
	text-decoration: none;
}
a:hover {
	color: #0BF;
	text-decoration: none;
}

/* クリアフィックス設定 micro clearfix
---------------------------------------------------------- */
.cf::after {
	content: "";
	display: block;
	clear: both;
}

/* 全体の設定
---------------------------------------------------------- */
* {
	box-sizing: border-box;
}
html {
	background-color: #fff;
	margin: 0;	
	padding: 0;
	display: flex;
	flex-direction: column;
}
body {
	color: #000;
	/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Helvetica, Arial, clean, sans-serif;*/
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
_:lang(x)::-ms-backdrop, body {
	font-family: "メイリオ", Meiryo, sans-serif;
}
figure {
	margin: 0;
	padding: 0;
}
ul {
	padding-left: 1.5em;
}
#contents {
	flex: 1 0 auto;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin: 0 auto;
}
#home #contents {
	background-color: rgba(255,255,255,.7);
	width: 940px;
	padding: 20px;
}
.second #contents {
	width: 900px;
	padding: 30px 0 60px 0;
}
#main {
	width: 640px;
}
#sidebar {
	width: 230px;
}

/* テーブルの設定 */
table {
	border-collapse: collapse;
}
th {
	width: 100px;
}

td {
	border: solid 1px #666;
	padding: .6em .8em;
}

table {
   
 border-collapse: collapse;

}

.table_event {
    table-layout: fixed;
    width: 100%;
}

.table_event th {
    
width: 140px;

}


.table_event td {
 
   border: solid 1px #666;
    padding: .6em .8em;


}
/* 注意書き */
.caution {
	margin: .5em 0 0 0;
	padding: 0 0 0 1em;
	font-size: 12px;
	text-indent: -1em;
}

/* リストの設定
---------------------------------------------------------- */
/* 番号付きリスト（番号位置調整版） */
ol.ol_numbering {
	list-style: none;
	padding-left: 0;
	display: table;
}
ol.ol_numbering > li:after {
	content: "";
	display: block;
}
ol.ol_numbering > li {
	display: table-row;
	counter-increment: table-ol;
}
ol.ol_numbering > li:before {
	content: counter(table-ol) ".";
	display: table-cell;
	padding-right: 0.4em;
	text-align: right;
}


