@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}



/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:14px;
	color:#333;
	font-family: 'Noto Sans JP', sans-serif;
	line-height:1.6;
}
.contents, .contents2 {
	position:relative;
	overflow:hidden;
	width:1000px;
	margin:0 auto;
}
#main {
	box-sizing: border-box;
	float:right;
	width:73%;
	min-height: 700px;
	margin: 20px 0;
}
.index{
	background: none !important;
	padding: 0 !important;
}
#sub {
	box-sizing: border-box;
	float:left;
	width:20%;
	margin: 20px 0;
}

/* タイトルタグ */
h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	color:#333;
	font-size:32px;
	font-weight: bold;
	line-height:1.2;
}
h2 {
	margin-bottom:0.5em;
	font-size:21px;
	color:#fbfbfb;
	background:#7d082f;
	padding:2px 7px;
}
h3 {
	margin:1em 0;
	padding: 0 5px;
	font-size:18px;
	color:#7d082f;
	border-bottom:3px solid #7d082f;
}
h4 {
	margin:0.5em 0;
	padding:0px 5px;
	font-size:16px;
	color:#7d082f;
	border-left:3px solid #7d082f;
}

/* リスト */
ul,ol,dl {
	margin:0 0 1em 0;
}
ul li {
	list-style:disc;
}
ol li {
	list-style:decimal;
}
li {
	margin-left:2em;
}
ul li ul{
	margin-bottom: 0;
}
ul li ul li{
	list-style-type: circle;
}
dt {
	margin-bottom:0.5em;
	border-bottom:1px dotted #ddd;
}
dt:before {
	content:"\0025a0";
}
dd {
	margin-bottom:1em;
}

/* テーブル */
table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #ddd;
	background:#fff;
}
th {
	padding:10px;
	text-align:left;
	vertical-align:top;
	border:1px solid #ddd;
	background:#eee;
	font-weight: bold;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #ddd;
}

/* その他 */
p {
	margin:0 0 1em 0;
}
img {
	vertical-align:bottom;
	max-width: 100%;
}
em {
	font-weight:bold;
}
strong {
	font-weight:bold;
}
pre {
	margin:1em 0;
	padding:1em;
}
blockquote {
	margin-bottom:1em;
	padding:1em;
	border:1px dotted #ddd;
	border-left:5px solid #ddd;
}
textarea{
	width: 95%;
}
input[type=text]{
	width: 40%;
}
.red{
	color:#FF1493;
	font-weight: bold;
}



/*================================================
 *  ヘッダー
 ================================================*/
header {
	position:relative;
}
header h1 {
	padding:10px 20px;
}



/*================================================
 *  グローバルナビゲーション
 ================================================*/
nav {
	overflow:hidden;
	position:relative;
}
nav h3 {
	display:none;
}
nav ul {
	margin:0;
	padding:0;
	background-color: #f1f1f1;
}
nav li {
	list-style:none;
	padding:10px 20px;
	margin: 0;
	border-bottom: 1px solid #ccc;
}
nav li:last-child{
	border-bottom: none;
}
nav li a {
	display:block;
	color:blue;
	text-decoration:none;
}
nav li a:hover {
	text-decoration: underline;
	transition:all 0.2s ease 0s;
}



/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
	box-sizing: border-box;
	width:100%;
	margin:0 auto;
	background:#f1f1f1;
}
.footmenu {
	padding:20px 0;
	overflow:hidden;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (min-width:768px) {
	.footmenu {
		display: flex;
	}
}
.footer-box{
	padding:0 20px;
}
.footer-img{
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright {
	clear:both;
	padding:5px;
	font-size:11px;
	text-align:center;
	background:#ccc;
}



/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:blue;
}
.totop img:hover {
	background:#4337ff;
}



/*================================================
 *  クラス
 ================================================*/
.textL {
	text-align:left;
}
.textR {
	text-align:right;
}
.list {
	padding:0 0 0 0.5em;
}
.list li {
	margin:0;
	padding:0 0 0 15px;
	list-style:none;
	background:url(../images/check.png) 0 5px no-repeat;
}
.info dt {
	border-bottom:none;
}
.info dd {
	padding-bottom:1em;
	border-bottom:1px solid #ddd;
}



/*================================================
 *  コンテンツ
 ================================================*/
.soon{
	width:95%;
	border:double 7px #7d082f;
	text-align:center;
	margin:20px auto;
	padding: 20px;
}
.soon p:first-child{
	font-size: 2em;
}
.soon p{
	margin: 0;
}
.mainv-box{
	margin: 20px 0;
	font-weight: bold;
	font-size: 28px;
	text-align: center;
	color: #7d082f;
}
.end{
	border: 2px solid #7d082f;
	padding: 20px;
	margin-bottom: 30px;
}
.end p{
	margin: 0;
	color: #7d082f;
}
.banner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.banner img{
	margin: 5px;
}
.deadline{
	color: #7d082f;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
}
.form td{
	vertical-align: top;
}



/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:979px) {
	.contents {
		box-sizing: border-box;
		width:100%;
	}
	.contents2{
		width: 95%;
		box-sizing: border-box;
		margin: 0 auto;
	}
}



/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:767px) {
	header h1{
		padding: 10px;
		font-size: 22px;
	}
	header h1 img{
		width: 20%;
	}
	.mainv-box{
		font-size: 18px;
	}
	.end{
		width: 80%;
		margin: 20px auto;
	}
	#main {
		float:none;
		width:100%;
		min-height: 200px;
		margin: 20px auto;
		padding:5%;
	}
	.index{
		width: 100% !important;
	}
	#sub {
		float:none;
		width:100%;
		margin: 0;
	}
	nav {
		display:block;
		position:relative;
		width:100%;
	}
	nav h3 {
		display:block;
		cursor:pointer;
		margin-bottom:0;
		padding:10px;
		color:#fff;
		background:#7d082f;
		border:none;
		margin: 0;
	}
	nav li{
		margin: 0;
	}
	#navBtn {
		display:inline-block;
		position:absolute;
		top:8px;
		right:10px;
		width:30px;
		height:30px;
		border-radius:5%;
		background:#fff;
	}
	#navBtnIcon {
		display:block;
		position:absolute;
		top:50%;
		left:50%;
		width:14px;
		height:2px;
		margin:-1px 0 0 -7px;
		background:#7d082f;
		transition:.2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display:block;
		content:'';
		position:absolute;
		top:50%;
		left:0;
		width:14px;
		height:2px;
		background:#7d082f;
		transition:0.3s;
	}
	#navBtnIcon:before {
		margin-top:-6px;
	}
	#navBtnIcon:after {
		margin-top:4px;
	}
	#navBtn .close {
		background:transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top:0;
	}
	#navBtn .close:before {
		transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
	}
	#navBtn .close:after {
		transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
	}
	.news{
		width: 90%;
		margin: 0 auto;
		padding: 5%;
	}
	table.schedule td::before{
		content: attr(data-label);
    	font-weight: bold;
		padding-right: 10px;
	}
	table.schedule thead{
		display: none;
	}
	th, td {
    	display: block;
		width: 95%;
		padding: 2.5%;
  	}
	table.schedule td.textR{
		text-align: left;
	}
	.soon{
		width:75%;
	}
	form{
		width: 100%;
	}
	input[type=text]{
		width: 95%;
	}
}
