@charset "UTF-8";
/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/* simple clearfix */
/**************************
@mixin for sprite
*/
.bold,
strong,
em {
	font-family: 'dnp-shuei-mgothic-std', sans-serif;
	font-weight: 600;
}

select,
input {
	font-size: 1rem;
}

.text_frame input,
.textarea_frame textarea {
	font-size: 1rem;
}

body {
	font-size: 0.875rem;
	line-height: 1.5;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************
## Layout
*/
.root {
	padding-top: 101px;
	overflow: hidden;
}

.wrapper {
	width: 100%;
	min-width: 100%;
}

.sp_container,
.mb_container,
.container {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}
.sp_container-nopadding,
.mb_container-nopadding,
.container-nopadding {
	padding-left: 0;
	padding-right: 0;
}

.sp_padding,
.padding {
	padding-left: 16px;
	padding-right: 16px;
}

.main_content {
	padding-top: 30px;
	padding-bottom: 50px;
}
.main_content img {
	max-width: 100%;
}

.sub_column {
	margin-left: -16px;
	margin-right: -16px;
}

.sp_unindent {
	margin-left: -16px;
	margin-right: -16px;
}

.sp_cell + .sp_cell {
	margin-left: 1em;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Utility - Cosmetic

ユーティリティー設定。
このサイト専用というわけでもない共通設定。

<div class="_h3">.sp</div>
PCの時だけ表示される。

<div class="_h3">.sp_block</div>
SPの時だけ、ブロック要素になる。

<div class="_h3">.tel_link</div>
SPの時だけ、リンクになる。(クリックで電話するリンク)

*/
.sp_none,
.root .sp_none {
	display: none;
}

.block,
.sp_block {
	display: block;
}

.sp_click {
	cursor: pointer;
}

.scell {
	display: block;
	margin-right: 0;
}

.tel_link-no {
	text-decoration: none;
	pointer-events: none;
	color: inherit;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Component - Base

コンポーネント設定。
各ページでよく使い回す記述。
このサイト専用の共通設定。

*/
/**************************

## - 段組設定 2列 3列 4列

SPの時だけ、中央に等間隔で余白を作り、width: 100%; を守って列になる。
ul でなくてもいい。

**2列 .sp_column2**

	<ul class="sp_column2">
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
	</ul>

**3列 .sp_column3**

	<ul class="sp_column3">
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
	</ul>

**4列 .sp_column4**

	<ul class="sp_column4">
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
	</ul>

*/
.sp_column2::before,
.sp_column2::after {
	content: '';
	display: table;
}
.sp_column2::after {
	clear: both;
}
.sp_column2 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.sp_column3::before,
.sp_column3::after {
	content: '';
	display: table;
}
.sp_column3::after {
	clear: both;
}
.sp_column3 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.sp_column4::before,
.sp_column4::after {
	content: '';
	display: table;
}
.sp_column4::after {
	clear: both;
}
.sp_column4 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.sp_column2 > *:nth-child(2n),
.sp_column3 > *:nth-child(3n),
.sp_column4 > *:nth-child(4n) {
	padding-bottom: 15px;
}

.sp_column2 > *:last-child,
.sp_column3 > *:last-child,
.sp_column4 > *:last-child {
	padding-bottom: 0;
}

.sp_column2::before,
.sp_column2::after {
	content: '';
	display: table;
}
.sp_column2::after {
	clear: both;
}
.sp_column2 > * {
	width: 50%;
	float: left;
	box-sizing: border-box;
}
.sp_column2 > *:nth-child(2n + 1) {
	clear: left;
	padding-right: 5px;
}
.sp_column2 > *:nth-child(2n) {
	padding-left: 5px;
}

.sp_column3::before,
.sp_column3::after {
	content: '';
	display: table;
}
.sp_column3::after {
	clear: both;
}
.sp_column3 > * {
	width: 33.3333333333%;
	float: left;
	box-sizing: border-box;
}
.sp_column3 > *:nth-child(3n + 1) {
	clear: left;
	padding-right: 7px;
}
.sp_column3 > *:nth-child(3n + 2) {
	padding-left: 3px;
	padding-right: 3px;
}
.sp_column3 > *:nth-child(3n) {
	padding-left: 7px;
}

.sp_column4::before,
.sp_column4::after {
	content: '';
	display: table;
}
.sp_column4::after {
	clear: both;
}
.sp_column4 > * {
	width: 25%;
	float: left;
	box-sizing: border-box;
}
.sp_column4 > *:nth-child(4n + 1) {
	clear: left;
	padding-right: 8px;
}
.sp_column4 > *:nth-child(4n + 2) {
	padding-left: 3px;
	padding-right: 5px;
}
.sp_column4 > *:nth-child(4n + 3) {
	padding-left: 5px;
	padding-right: 3px;
}
.sp_column4 > *:nth-child(4n) {
	padding-left: 8px;
}

/**************************
.pc_column
*/
.pc_column2:not(.sp_column2):not(.mb_column2):not(.link_list):not(.pc_column2-no_mb) > *:not(:last-child) {
	margin-bottom: 3em;
}

.pc_column3:not(.sp_column2):not(.sp_column3):not(.mb_column2):not(.mb_column3):not(.link_list):not(.pc_column2-no_mb) > *:not(:last-child) {
	margin-bottom: 3em;
}

.pc_column4:not(.sp_column2):not(.sp_column3):not(.mb_column2):not(.mb_column3):not(.link_list):not(.pc_column2-no_mb) > *:not(:last-child) {
	margin-bottom: 3em;
}

.pc_column2_2 > *:not(:last-child) {
	margin-bottom: 1em;
}

.pc_column2_flex > *:not(:last-child) {
	margin-bottom: 3em;
}

/**************************
	.table-column2
*/
.table-column2 {
	width: 100% !important;
	max-width: 100% !important;
}
.table-column2 thead,
.table-column2 tbody,
.table-column2 tfoot,
.table-column2 tr,
.table-column2 th,
.table-column2 td {
	display: block;
	box-sizing: border-box;
	float: left;
	clear: both;
}
.root .table-column2 thead,
.root .table-column2 tbody,
.root .table-column2 tfoot,
.root .table-column2 tr,
.root .table-column2 th,
.root .table-column2 td {
	width: 100%;
}
.table-column2 tr th,
.table-column2 th + td {
	border-top: 0 none;
}
.table-column2 thead th,
.table-column2 thead td,
.table-column2 tbody th,
.table-column2 tbody td {
	width: 100%;
}
.table-column2 thead td + td,
.table-column2 tbody td + td {
	border-top: 0 none;
}
.table.table-column2:not(.table-noborder) tr:first-child th:first-child,
.table.table-column2:not(.table-noborder) tr:first-child td:first-child {
	border-top: 1px solid #999999;
}

/*

<div class="_h3">横スクロールできる table</div>

responsive-tables.js と組み合わせないと効果が生まれない。
左の固定部分の横幅を変えたい場合は、CSSを追記する必要がある。
.responsive_table_area で包んで、
table.responsive とするのが必須の仕様。

	<div class="responsive_table_area">
		<table class="responsive">
			<tbody>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
			</tbody>
		</table>
	</div>

*/
.responsive_table_area {
	position: relative;
	top: 0;
	left: 0;
	clear: both;
	margin-bottom: 10px;
}
.root .responsive_table_area table {
	margin-bottom: 0;
}
.responsive_table_area:not(.responsive_table_area-all) th:first-child {
	max-width: 125px;
	min-width: 125px;
	width: 125px;
}
.responsive_table_area:not(.responsive_table_area-all) .table-wrapper .pinned {
	max-width: 126px;
	min-width: 126px;
	width: 126px;
}
.responsive_table_area:not(.responsive_table_area-all) .table-wrapper .scrollable {
	padding-left: 125px;
}
.responsive_table_area:not(.responsive_table_area-all) .table-wrapper .scrollable > table {
	margin-left: -125px;
}
.responsive_table_area td {
	min-width: 70px;
}
.responsive_table_area th:first-child {
	box-sizing: border-box;
}
.responsive_table_area .scrollable {
	-webkit-overflow-scrolling: touch;
}
.responsive_table_area .table-wrapper {
	margin-bottom: 0;
}
.responsive_table_area table.responsive th:first-child,
.responsive_table_area table.responsive table.responsive td:first-child,
.responsive_table_area table.responsive table.responsive td:first-child,
.responsive_table_area table.responsive.pinned td {
	display: table-cell;
}
.responsive_table_area-all .table-wrapper .table {
	min-width: 900px;
}
.responsive_table_area-all .table-wrapper td,
.responsive_table_area-all .table-wrapper th {
	position: static;
	white-space: normal;
}
.responsive_table_area-all .table-wrapper .pinned {
	display: none;
}
.responsive_table_area-all .table-wrapper .scrollable {
	padding-left: 0;
}
.responsive_table_area-all .table-wrapper .scrollable > table {
	margin-left: 0;
}

.responsive_table_mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url('../images/icon_swipe.png') center center no-repeat transparent;
	background-size: auto 90px;
	z-index: 102;
	cursor: pointer;
}

.responsive_table_mask.shadow {
	background-image: none;
	background: #666;
	opacity: 0.5;
	z-index: 101;
}

/**************************
	.table
*/
.no_th_table_area .table-wrapper .pinned {
	display: none;
}
.no_th_table_area .table-wrapper .scrollable {
	padding-left: 0;
}
.no_th_table_area .table-wrapper .scrollable > table {
	margin-left: -0;
}
.no_th_table_area th:first-child,
.no_th_table_area td:first-child {
	max-width: none;
	min-width: initial;
	width: auto;
}
.root .no_th_table_area th,
.root .no_th_table_area td {
	white-space: inherit !important;
}

/* form */
.input_frame.node,
.input_frame.node input {
	width: 60px;
	display: inline-block;
}

.input_frame.node2,
.input_frame.node2 input {
	width: 70px;
}

form .frame .node {
	margin-right: 3px;
}

.sp_center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.sp_center .img {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

.set .fix + .resize,
.set .resize + .fix {
	margin-top: 10px;
}
.set .left,
.set .right {
	float: none;
}
.set .fix img,
.set .resize img {
	display: block;
	width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.footer {
	position: relative;
	top: 0;
	left: 0;
}
.footer .scroll_to_top {
	right: 5px;
	bottom: 5px;
	width: 60px;
	height: 60px;
}
.footer .scroll_to_top a,
.footer .scroll_to_top img {
	max-width: 100%;
	display: block;
}
.footer .scroll_to_top-web_form {
	transform: translateY(-63px);
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Project

特定ページ専用、効果範囲が限定的な記述。
コンテンツ内容に密接で、汎用性がなく、機能の付け替えを想定していない。

*/
.header {
	position: fixed;
	z-index: 1000;
	width: 100%;
	top: 0;
	height: 101px;
	border-bottom: 1px solid #dedede;
	box-sizing: border-box;
	background-color: #fff;
}
.header > .container {
	display: flex;
	justify-content: space-between;
	padding-left: 0;
	padding-right: 0;
}
.header__tel_banner a {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
	display: block;
	position: absolute;
	width: 40px;
	height: 100px;
	top: 0;
	right: 15px;
}
.header__tel_banner a::before {
	content: '';
	display: block;
	background: url('../images/sp/header_tel.png') 0 0 no-repeat transparent;
	background-size: 40px 100px;
	width: 40px;
	height: 100px;
}
.header__reserve a {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
	display: block;
	position: absolute;
	width: 40px;
	height: 100px;
	top: 0;
	right: 65px;
}
.header__reserve a:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s opacity;
}
.header__reserve a::before {
	content: '';
	display: block;
	background: url('../images/sp/header_reserve.png') 0 0 no-repeat transparent;
	background-size: 40px 100px;
	width: 40px;
	height: 100px;
}
.header__access {
	display: none;
}
.header__gnav {
	display: none;
}
.header__logo {
	width: 100px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
}
.header .triangular {
	display: none;
}

.open_menu {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
	margin: 0;
	width: 90px;
	height: 100px;
	display: block;
	box-sizing: border-box;
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
}
.open_menu:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s opacity;
}
.open_menu::before {
	content: '';
	display: block;
	background: url('../images/sp/menu_open.png') 0 0 no-repeat transparent;
	background-size: 90px 100px;
	width: 90px;
	height: 100px;
}
.mm-opened .open_menu::before {
	background-image: url('../images/sp/menu_close.png');
}

.root .main_content .sp_small_image {
	width: 200px;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.root .main_content .sp_medium_image {
	width: 300px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
/* gnav調整(gnavには出ないが、indexページは表示) */
#drawer .gnav_none {
	display: none !important;
}

.infection_types_wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.infection_types_wrap__inner {
	display: flex;
	align-items: end;
	gap: 6px;
	margin: 0 0 8px;
}

.infection_types_item {
	background-color: #f0f0f0;
	padding: 4px 0;
	text-align: center;
	border-radius: 30px;
	font-weight: 700;
	width: 60px;
	color: #fff;
	font-weight: 900;
	font-size: 15px;
}

.infection_types_item._3 {
	background-color: #30b73e;
}

.infection_types_item._6 {
	background-color: #0d78aa;
}

.infection_types_item._8 {
	background-color: #e36d86;
}

.infection_types_item._10 {
	background-color: #b79860;
}

.infection_types_item._l4 {
	background-color: #a1a6aa;
}
