@charset "utf-8";
/* CSS Document */

/* header */
header {
	padding: 1em;
	text-align: center;
}
header h1 {
	font-size: 1.2em;
	font-weight: bold;
}

/* main */
.telop {
	display: block;
	height: 2em;
	width: 100%;
	background-color: #ccc;
	overflow: hidden;
}
.telop_content {
	display: inline-block;
	color: #333;
	line-height: 2em;
	padding-left: 100%;
	white-space: nowrap;
	animation: animate-telop 20s linear infinite;
}
/* .telop_content > * {
	display: inline-block;
} */
@keyframes animate-telop {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
}
}

.info {
	padding: 0.5em 1em;
	background: #f0f0f0;
}
.function {
	overflow: hidden;
	padding: 0.5em 1em 2em;
	border: solid 1px #666;
	border-top-width: 4px;
	border-left: 0;
	border-right: 0;
	background: #fdfbfa;
}
h2 {
	padding: 0.75em 0 1em;
	text-align: center;
	font-size: 1.3em;
	font-weight: bold;
}
h3 {
	font-weight: bold;
}
.currenttime {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1em;
}
.currenttime div:first-of-type {
	margin-right: 1em;
}
.state {
	padding: 1em;
	border: solid 1px #a8a8a8;
	border-bottom-width: 0;
	background: #fff;	
}
.state:last-of-type {
	border-bottom-width: 1px;
	border-bottom-left-radius:0.25em;
	border-bottom-right-radius:0.25em;
}
.state:first-of-type {
	border-top-left-radius: 0.25em;
	border-top-right-radius: 0.25em;
}
.state1 {
	display: flex;
}
.state1 > div:first-of-type {
	width: 50%;
	padding-right: 5%;
}
.state1 > div:last-of-type {
	width: 45%;
}
.state1 > div > p {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 1em;
	line-height: 1;
	font-weight: bold;
}
.state1 > div > p span:first-of-type {
	width: 50%;
	transform: translateY(0.2em);
	text-align: center;
	font-size: 3em;
}
.state2 {
	display: flex;
	justify-content: flex-end;
	padding: 1em 0;
}
.state2 span:nth-of-type(2) {
	padding: 0 0.75em;
	font-weight: bold;
}
.state3 {
	display: flex;
}
.state3 > div:first-of-type {
	width: 50%;
	padding-right: 5%;
}
.state3 > div:last-of-type {
	width: 45%;
}
div.submit {
	clear: both;
	padding: 1.5em 1em;
	text-align: center;
}
.examination {
	padding: 0 1em 1em;
}
.examination table {
	width: 100%;
	margin-bottom: 0.5em;
}
.examination table th, 
.examination table td {
	padding: 0.5em;
	border: solid 1px #a8a8a8;
	text-align: center;
}
.examination table tr:nth-of-type(1) th {
	background: #f3f3f3;
}
.examination table tr:nth-of-type(1) td {
	background: #fffdec;
}
.examination table td.sun {
	background: #ffcfda!important;
}
.examination table td.sat {
	background: #d1e7f9!important;
}
/* .examination ul {
	padding-left: 2em;
	text-indent: -2em;
}
.examination ul img {
	vertical-align: middle;
} */
.examination ul li{
	display: flex;
	align-items: flex-start;
}
.examination ul li .mark{
	display: flex;
}
.examination ul li .mark span{
	width: 1em;
	text-align: center;
}
.examination ul li .text {
	font-size: 14px;
}
.hours {
	padding: 0.5em 1em;
}
.tel {
	padding: 0.5em 1em;
}
/* ボタン */
button {
	padding: 0.5em 1em;
	border: solid 1px #999;
	border-radius: 3px;
	line-height: 1;
	font-size: 14px;
	text-decoration: none;
	background: #fff;
	box-shadow: #aaa 0 0 3px;
}
.state button {
	width: 100%;
	padding: 0.75em 1em;
}
.state button + button {
	margin-top: 0.75em;
}
.state button.watch {

}
.state button.submit {
	border-color: #fff;
	background: #666;
	color: #fff;
}
.state button.reset {
	background: #f0f0f0;
}
