﻿/*	IMPORT RESET	*/
@import url("reset.css");
/*	IMPORT BASIC	*/
@import url("basic.css");
/*	<header><footer><nav>ｿｰｽのｲﾝﾎﾟｰﾄ	*/
@import url("nav.css");
/*	ﾌﾚｯｸｽﾎﾞｯｸｽのｲﾝﾎﾟｰﾄ	*/
@import url("co-flexbox.css");

body {
	position: relative;
}
/*--------------------------------------------------------
	ｺﾝﾃﾝﾂ部分の設定
----------------------------------------------------------*/
h3.bid {
	background-color: #000;
	margin: 10px 0;
	text-align: center;
	border: 5px double #ffffff;	/*　二重線で囲む　*/
}
table {
	border-collapse: collapse;
	width: 100%;
	margin: 0 auto;
}
table th,table td {
	padding: 10px;
	border: 1px solid #999;
}
table th {
	background-color: #F3F2FF;
	text-align: center;
	width: 30%;
}
table td {
	background-image: url("../img/pattern/pattern8.png");
}
@media screen and (max-width: 400px) {
table {
	width: 99%;
	margin: 0 auto;
}
table th,table td {
	padding: 10px 0;
}
table td {
	display: block;
	text-align: center;
	width: 100%;
}
table th {
	display: block;
	border-top: none;
	border-bottom: none;
	width: 100%;
}}