body {
	font-size:16px;
}

@media screen and (max-device-width: 699px), screen and (max-width: 699px) {
	td[class="fluid"]{
		display: block !important;
		width: 100% !important;
		margin:3px 0;
		clear: both;
	}
	#spwd {
		width:99% !important;
		box-sizing:border-box;
	}
}


@media screen and (min-width: 800px) {
	.smp{display:none;}
}

@media screen and (max-width: 800px) {
	.pc{display:none;}
}

img {
	max-width:100%;
	display:block;
}

.dot-line{
	border: none;
	border-top: dotted 1px #666;
}


/* ボタン(小) */
.button{
	text-align: center;
}
.button a {
	background: #00a0dd;
	border: 5px solid #00a0dd;
	color: #ffffff;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 150px;
	transition: 0.3s ease-in-out;
	font-size: 1.2em;
	font-weight: 600;
	z-index:0;
	border-radius: 7px;
	text-decoration: none;
}
.button a:before {
	background: #0063a4;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	display: block;
	transition: .3s;
	left:0;
}
.button a:hover {
	color: #ffffff;
}
.button a:hover:before {
	width: 100%;
	z-index: -1;
}


/* ボタン(大) */
a.induction {
	border: 5px solid #ff0000;
	background-color: #ff0000;
	color: #ffffff;
	font-size: 1.8em;
	display: block;
	text-align: center;
	text-decoration: none;
	width: 350px;
	margin: auto;
	font-weight: bold;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
	border-radius: 7px;
 	z-index: 1;
}
a.induction::before {
	background-color: #bb0000;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
a.induction:hover::before {
	transform: translateX(0);
}
a.induction:hover {
	color: #ffffff;
}
