@charset "utf-8";
/*==================================================
	【お問い合わせ】ページ固有のスタイル
==================================================*/
#mailform .tbl {
	margin: 2em 0;
}
#mailform .tbl th {
	vertical-align: top;
	background-color: rgba( 24, 191, 161, 0.4);
}
#mailform .tbl th .need {
	float: right;
	padding: 1px 10px;
	background: #18bfa1;
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 13px;
}
#mailform .btn {
	margin-top: 1.5em;
	/* フレックス */
	display: flex;
	justify-content: center;
}
#mailform .btn li+li {
	margin-left: 15px;
}
#mailform .btn input {
	width: 200px;
	height: 50px;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 30px;
	box-shadow: 0 -2px 0 rgba(0,0,0,0.2) inset;
	color: #FFFFFF;
	font-size: 16px;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor: pointer;
}
#mailform .btn input:hover {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
#mailform .btn input[type="reset"] {
	background: #F4F4F4;
	border-color: #DDD;
	color: #666;
}
#mailform .tbl input[type="text"],
#mailform .tbl textarea {
	width: 100%;
	box-sizing: border-box;
}
#mailform .tbl textarea {
	display: block;
}
#mailform .tbl input.wno {
	width: 100px;
}
#privacy {
	background-color: #fff;
	border-radius: 50px;
	padding: 50px;
	margin-top: 80px;
}
#privacy h3 {
	text-align: center;
	color: #18bfa1;
	font-size: 25px;
	padding-bottom: 2.5rem;
}
#privacy h4 {
	font-size: 18px;
	margin-bottom: 0.5rem;
}
#privacy h5 {
	font-size: 15px;
	margin-top: 1rem;
}
#privacy ol {
	list-style: none;
}
#privacy ol li {
	padding-left: 1.3em;
	text-indent: -1.3em;
}
#privacy .box_office {
	width: 330px;
	border: 1px solid #18bfa1;
	padding: 20px 30px;
}
#privacy .box_office p {
	margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#contact .tbl {
		border-bottom: 1px solid var(--color-tbl-border);
	}
	#contact .tbl th,
	#contact .tbl td {
		display: block;
		width: auto;
		padding: 10px;
		border-bottom: none;
	}
	#mailform .tbl input[type="text"],
	#mailform .tbl textarea {
		font-size: 120%;
	}
	#mailform .btn input {
		width: 120px;
	}
	#privacy {
		margin-top: 60px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#privacy {
		margin-top: 40px;
		padding: 30px 25px;
	}
	#privacy h3 {
		font-size: 19px;
		padding-bottom: 1.5rem;
	}
	#privacy h4 {
		font-size: 16px;
		margin-bottom: 0.5rem;
	}
	#privacy h5 {
		font-size: 15px;
		margin-top: 1rem;
	}
	#privacy .box_office {
		width: 100%;
		padding: 20px 15px;
	}
}