/* CSS Document */
#main{}
	#main>div {
		background: #fff;
		color: #42210b;
		}
	#main h3 {
		text-align: center;
		}

#topics {
	position: relative;
	}
	#topics h3 {
		position: absolute;
		}
	#topics>div {
		background: url(../images/topicsBg.png) no-repeat;
		}
	#topics dl+dl {
		margin-top: 1em;
		}
	#topics dt {
		font-weight: bold;
		}
	#topics dd+dd {
		margin-top: 1em;
		}
	#topics dl+p,
	#topics dl+ul,
	#topics div+ul {
		margin-top: 1em;
		}
	#topics ol {
		margin: 0 0 0.5em 0;
		padding: 0;
		list-style: none;
		counter-reset: day;
		}
	#topics ol li {
		display: grid;
		grid-template-columns: 1.5em 1fr;
		grid-gap: 0.5em;
		line-height: 1.6em;
		}
		#topics ol li:before {
			counter-increment: day;
			content: counter(day);
			display: inline-block;
			margin-right: 0.5em;
			width: 1.5em;
			height: 1.5em;
			text-align: center;
			color: #fff;
			font-weight: bold;
			text-indent: 0;
			background: #ed7da6;
			border-radius: 100%;
			}
		#topics ol li strong {
			font-weight: bold;
			}
	#topics ol li+li {
		margin-top: 0.5em;
		}
	#topics ul li {
		position: relative;
		list-style: none;
		padding-left: 1em;
		}
	#topics ul li:before {
		content: "※";
		position: absolute;
		margin-left: -1em;
		}
	#topics .topicsTitle {
		font-weight: bold;
		border-left: #ed7da6 solid 6px;
		padding-left: 0.5em;
		}
		#topics h4+p,
		#topics h4+dl,
		#topics dl+p,
		#topics dl+ul,
		#topics dl+dl {
			margin-top: 1em;
			}
	#topics .topicsNote {
		/* margin-top: 0.5em; */
		color: #C30000;
		}
		#topics .topicsNote li {
			line-height: 1.5em;
			}
			#topics .topicsNote li+li {
				margin-top: 0.3em;
				}

:where(#about, #point, #timetable, #program, #price) h3 {
  display: none;
}

#faq {}
	#faq dl {
		margin: auto 1em;
		}
	#faq dt {
		position: relative;
		padding-left: 2em;
		}
		#faq dt:before {
			content: "Q";
			position: absolute;
			display: inline-block;
			margin-right: 0.5em;
			width: 1.5em;
			height: 1.5em;
			left: 0;
			text-align: center;
			color: #fff;
			font-weight: bold;
			text-indent: 0;
			background: #fbb03b;
			border-radius: 100%;
			}
		#faq dt:hover:before{
			background: rgba(251,176,59,0.6);
			}
		#faq dt.open{
			font-weight: bold;
			}
	#faq dd {
		position: relative;
		padding: 1em 0 1em 2em;
		}
		#faq dd:before {
			content: "A";
			position: absolute;
			display: inline-block;
			margin-right: 0.5em;
			width: 1.5em;
			height: 1.5em;
			left: 0;
			text-align: center;
			color: #fff;
			font-weight: bold;
			text-indent: 0;
			background: #ff519a;
			border-radius: 100%;
			}
	#faq dd+dt {
		margin-top: 1em;
		}

#application{}
	#application h3+div{
		text-align: center;
		margin-bottom: 2em;
		}

#formBox{
	background: #fffcdb;
	padding-bottom: 2em;
	}

#form{}
	#form table{
		margin-top: 1em;
		border-collapse: collapse;
		background: #fff;
		}
	#form th,
	#form td{
		line-height: 1.4em;
		}
	#form th{
		position: relative;
		text-align: left;
		vertical-align: top;
		background: #f2f2f2;
		}
		#form th:before{
			content: "任意";
			position: absolute;
			top: 0;
			right: 0;
			padding: 0.5em;
			background: rgb(160, 160, 160);
			color: #fff;
			font-size: 0.8em;
			font-weight: normal;
			line-height: 1em;
			z-index: 1;
			}
		#form th:after{
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: #252525;
			z-index: -1;
			}
	#form input,
	#form select,
	#form textarea {
		margin: 0;
		padding: 0.5em;
		width: 100%;
		border: 1px solid #f2f2f2;
		font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
		font-size: 100%;
		line-height: 1.2em;
		box-sizing: border-box;
		}
		#form input:focus,
		#form select:focus,
		#form textarea:focus{
			border:2px solid #fff000;
			}
	#form .err{}
		#form .err:focus{
			border-color: rgb(255, 51, 51);
			}
	#form .req{}
		#form .req:before {
			content: "必須";
			background: rgb(255, 51, 51);
			}
	#form .txtOr{
		color: rgb(255, 51, 51);
		}
	#form .privacy{
		margin-top: 1em;
		}

#agreement{
	display: inline-block;
	margin-top: 1em;
	padding: 0.5em 0.8em;
	font-size: 1.2em;
	}
	#agreement input[type=checkbox] {
		display: none;
		margin: 0;
		}
	#agreement label{
		position:relative;
		}
	#agreement input[type=checkbox] + label {
		padding: 0 0 0 1.5em;
		}
	#agreement input[type=checkbox] + label::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		width: 1em;
		height: 1em;
		margin-top: -0.5em;
		background: #FFF;
		}
	#agreement input[type=checkbox] + label::before {
		border: 2px solid #ccc;
		}
	#agreement input[type=checkbox]:checked + label::after {
		content: "";
		position: absolute;
		top: 50%;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		}
	#agreement input[type=checkbox]:checked + label::after {
		left: 3px;
		width: 16px;
		height: 8px;
		margin-top: -8px;
		border-left: 3px solid #E71063;
		border-bottom: 3px solid #E71063;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		}
	#agreement #privacy {
		padding-left: 24px;
		}
	#agreement #privacy::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		width: 18px;
		height: 18px;
		margin-top: -9px;
		background: #016736;
		}
	#agreement #privacy::before {
		border: 2px solid #016736;
		}
	#agreement #privacy::after {
		content: "";
		position: absolute;
		top: 50%;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		}
	#agreement #privacy::after {
		left: 0px;
		width: 20px;
		height: 10px;
		margin-top: -8px;
		border-left: 3px solid #fff;
		border-bottom: 3px solid #fff;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		}
	#agreement.err{
		color: #016736;
		}

#submit{
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 2em auto;
	}
	#submit button{
		margin: 0;
		padding: 0.8em 1em;
		background: #016736;
		border: #fff 1px solid;
		color: #fff;
		font-size: 1.2em;
		text-decoration: none;
		line-height: 1em;
		letter-spacing: 0.5px;
		box-sizing: border-box;
		border-radius: 8px;
		}
		#submit button:hover{
			background: #ffff02;
			color: #016736;
			border-color: #ffff02;
			}
	#submit #btnModify{
		background: #bbb;
		border: none;
		color: #fff;
		}
		#submit #btnConfirm.lsf-error-btn{
			background: #ff0000;
			border-color: #ff0000;
			color: #fff;
			}

#ssl{
	text-align: center;
	}
	#ssl p{
		font-size: 0.8em;
		line-height: 1.2em;
		}

#thanks { padding: 1em;}
	#thanks strong{
		font-weight: bold;
		text-align: center;
		display: block;
		padding: 0.5em;
		margin-bottom: 0.5em;
		font-size: 1.6em;
		}
	#thanks #nonice{
		margin: 1em auto;
		margin-bottom: 3em;
		padding: 2em;
		font-size: 0.8em;
		line-height: 1.6em;
		background: #fff;
		text-align: left;
		}
	#thanks .btn{
		padding: 1em;
		border: #fff 1px solid;
		text-decoration: none;
		color: #fff;
		background: #016736;
		}
		#thanks a.btn:hover {
			background: #fff;
			color: #016736;
			}
	#thanks .btn+.btn{
		margin-left: 1em;
		}

#map {
	width: 100%;
	}

#contact{}
	#contact>div{
		background: url(../images/footerBg.png) no-repeat;
		background-position: bottom;
		background-size: contain;
		padding-bottom: 2.5em;
		text-align: center;
		}
	#contact li {
		list-style: none;
		}
		#contact li:nth-of-type(4) {
			padding-top: 1em;
			}
			#contact li:nth-of-type(4) p{
				font-size: 0.8em;
				color: #0093d6;
				}
			#contact li:nth-of-type(4) a{
				font-size: 2em;
				color: #0093d6;
				font-weight: bold;
				}
			#contact li:nth-of-type(4) span {
				display: block;
				}


.red{
	color: rgb(255, 51, 51);
	}

.none{
	display: none!important;
	}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
#main h3 {
	text-align: center;
	padding: 1.5em 0 1em;
	}
#topics {
	padding-top: 2.25em;
	padding-bottom: 2em;
	}
	#topics h3 {
		top: -0.5em;
		}
	#topics>div {
		margin: auto 1em;
		padding: 2em;
		box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
		}
	#topics dd+dt {
		margin-top: 1em;
		}
	#topics ol {
		margin-top: 0.5em;
		}
	#topics .topicsNote li {
		font-size: 0.8em;
		}
#faq {}
	#faq dl {
		padding-bottom: 2em;
		}
#form{}
	#form table{
		margin-top: 1em;
		
		}
	#form tr{
		display: block;
/*		margin: 0 -1em;	*/
		}
	#form th,
	#form td{
		display: block;
		width: 100%;
		padding: 1em;
		}
	#form th{
		padding-right: 3em;
		border-top: 1px solid #ccc;
		border-bottom: 1px dotted #ccc;
		}
	#form tr{}
		#form tr:last-child td{
			border-bottom: 1px solid #ccc;
			}
	#form input,
	#form select,
	#form textarea {
		font-size: 16px;
		}
#map {
	height: 300px;
	}
#submit {}
	#submit button+button {
		margin-top: 1em;
		}
	
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
#main h3 {
	padding: 4em 0 2em;
	}
#topics {
	padding-top: 6em;
	padding-bottom: 2em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	}
	#topics h3 {
		top: -1em;
		}
	#topics>div {
		margin: auto 2em;
		padding: 5em 2em 2em;
		box-shadow: 8px 8px 8px rgba(0,0,0,0.3);
		}
	#topics dl {
		overflow: hidden;
		font-size: 1.4em;
		margin-bottom: 0.5em;
		}
	#topics dt {
		margin-bottom: 0.5em;
		}
	#topics dd {}
		#topics dd span {
			font-size: 0.8em;
			}
	#topics ol {
		font-size: 1.4em;
	}
		#topics ol li:before {
			line-height: 1.5em;
			}
	#topics .topicsTitle {
		font-size: 1.4em;
		}
#faq {}
	#faq dl {
		padding: 0 4em 4em;
		}
#formBox{
	padding: 1em 2em 2em;
	}
#form{}
	#form table{
		border: 1px solid #ccc;
		}
	#form th,
	#form td{
		padding: 0.8em;
		border-top: 1px solid #ccc;
		}
	#form th{
		width: 15em;
		padding-right: 3em;
		border-right: 1px dotted #ccc;
		}
	#form input,
	#form select,
	#form textarea {
		font-family: Lato, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
		}
#map {
	height: 450px;
	}
#contact{}
	#contact>div{
		padding-bottom: 7em;
		}
	#contact li {
		list-style: none;
		font-size: 1.4em;
		line-height: 1.6em;
		font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
		}
			#contact li a{
				color: #0093d6;
				text-decoration: none;
				}
		#contact li:nth-of-type(4) {
			padding-top: 1em;
			}
			#contact li:nth-of-type(4) a{
				font-size: 2em;
				font-weight: bold;
				}
			#contact li:nth-of-type(4) span {
				display: block;
				}
#submit {}
	#submit button+button {
		margin-left: 1em;
		}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}


/* ie */
@media all and (-ms-high-contrast: none){}


