@charset "UTF-8";
/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/* simple clearfix */
/**************************
@mixin for sprite
*/
html {
	font-size: 100%;
}

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: 49px;
	overflow: hidden;
}

.wrapper {
	width: 100%;
	min-width: 100%;
}

.sp_container,
.mb_container,
.container {
	box-sizing: border-box;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: auto;
	margin-right: auto;
}

.sp_container-nopadding,
.mb_container-nopadding,
.container-nopadding {
	padding-left: 0;
	padding-right: 0;
}

.sp_padding,
.padding {
	padding-left: 10px;
	padding-right: 10px;
}

.main_column {
	margin-bottom: 30px;
}

.sub_column {
	margin-bottom: 30px;
}

.root_container {
	overflow: hidden;
	word-wrap: break;
}

.scroll_to_top {
	right: 10px;
}

.scroll_to_top,
.scroll_to_top a,
.scroll_to_top img {
	display: block;
	width: 52px;
	height: 52px;
}

.vaccine_bnr{
	margin: 40px 0;
}
/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## 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: 20px;
}

.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: 8px;
}

.sp_column2 > *:nth-child(2n) {
	padding-left: 8px;
}

.sp_column3::before, .sp_column3::after {
	content: '';
	display: table;
}

.sp_column3::after {
	clear: both;
}

.sp_column3 > * {
	width: 33.33333%;
	float: left;
	box-sizing: border-box;
}

.sp_column3 > *:nth-child(3n + 1) {
	clear: left;
	padding-right: 10px;
}

.sp_column3 > *:nth-child(3n + 2) {
	padding-left: 5px;
	padding-right: 5px;
}

.sp_column3 > *:nth-child(3n) {
	padding-left: 10px;
}

.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: 11px;
}

.sp_column4 > *:nth-child(4n + 2) {
	padding-left: 4px;
	padding-right: 8px;
}

.sp_column4 > *:nth-child(4n + 3) {
	padding-left: 8px;
	padding-right: 4px;
}

.sp_column4 > *:nth-child(4n) {
	padding-left: 11px;
}

/**************************
.pc_column
*/
.pc_column2:not(.sp_column2):not(.mb_column2):not(.link_list) > *:not(:last-child) {
	margin-bottom: 1em;
}

.pc_column3:not(.sp_column2):not(.sp_column3):not(.mb_column2):not(.mb_column3):not(.link_list) > *:not(:last-child) {
	margin-bottom: 1em;
}

.pc_column4:not(.sp_column2):not(.sp_column3):not(.mb_column2):not(.mb_column3):not(.link_list) > *:not(:last-child) {
	margin-bottom: 1em;
}

.pc_column2_2 > *:not(:last-child) {
	margin-bottom: 1em;
}

/**************************
	.table-column2
*/
.table-column2 {
	width: 100%;
	max-width: 100%;
}

.table-column2:not(.table-noborder) tr:first-child th:first-child,
.table-column2:not(.table-noborder) tr:first-child td:first-child {
	border-top: 1px solid #ccc;
}

.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;
}

/*

<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: 730px;
}

.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("../img/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;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.footer-scroll_to_top_stop .scroll_to_top {
	position: absolute;
	top: auto;
	top: 10px;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Project

特定ページ専用、効果範囲が限定的な記述。
コンテンツ内容に密接で、汎用性がなく、機能の付け替えを想定していない。

*/
.sp_wide {
	margin-left: -10px;
	margin-right: -10px;
}

.header {
	background-color: #fff;
	height: 49px;
	box-sizing: border-box;
	border-bottom: 1px solid #E5E5E5;
	top: 0;
	left: 0;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}

.header__1 .container {
	height: 49px;
}

.header__1__2__1 {
	display: none;
}

.header__logo {
	padding-top: 7px;
}

.header__logo a,
.header__logo img {
    
	height: 38px;
}

.header__tel {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
	background: url("../img/sp/header_tel.png") 0 0 no-repeat transparent;
	background-size: 49px 49px;
	width: 49px;
	height: 49px;
	position: absolute;
	top: 0;
	right: 49px;
}

.open_menu {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
	margin: 0;
	width: 49px;
	height: 49px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
}

.open_menu:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s opacity;
}

.open_menu::after {
	content: '';
	display: block;
	background: url("../img/sp/menu_open.png") 0 0 no-repeat transparent;
	background-size: 49px 49px;
	width: 49px;
	height: 49px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.mm-opened .open_menu::after {
	background-image: url("../img/sp/menu_close.png");
}

.main_content img {
	max-width: 100%;
}

.main_content h2:not(.cancel),
.main_content h3:not(.cancel),
.main_content .h-2 {
	margin-left: -10px;
	margin-right: -10px;
}

.main_content h2:not(.cancel) {
	font-family: "FOT-ニューロダン Pro DB", "NewRodinPro-DB", "Roboto", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	min-height: 52px;
	font-size: 1.313rem;
	margin-bottom: 20px;
	padding: 13px 10px 9px;
}

.main_content h3:not(.cancel) {
	font-size: 1rem;
	min-height: 42px;
	padding: 9px 10px 8px;
	margin-bottom: 20px;
}

.main_content h4:not(.cancel) {
	font-size: 1rem;
}

.main_content h5:not(.cancel) {
	font-size: 0.938rem;
}

.main_content h6:not(.cancel) {
	font-size: 0.875rem;
}

.main_content .h-2 {
	font-size: 1.125rem;
	min-height: 47px;
	padding: 14px 10px 9px;
}

.person__head {
	margin-bottom: 15px;
}

.index_list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.index_list li {
	padding-bottom: 10px;
	margin-right: 10px;
	width: calc(50% - 5px);
}

.index_list li:nth-child(2n) {
	margin-right: 0;
}

.root .main_wrapper .main_column .main_content .index_image_list li:not(:last-child) {
	margin-bottom: 25px;
}

.index_image_list li img {
	max-width: 350px;
	width: 100%;
	margin: 0 auto;
}

.sub_cate {
	margin-left: -10px;
	margin-right: -10px;
}

.sub_column_button_list,
.sub_column_banner_list {
	max-width: 220px;
	margin-left: auto;
	margin-right: auto;
}

.footer__foot_area {
	padding-top: 20px;
	padding-bottom: 10px;
	background-color: #00295e;
	color: #fff;
}

.footer__logo {
	margin-bottom: 13px;
}

.footer__address {
	margin-bottom: 3px;
}

.footer__access {
	margin-bottom: 12px;
}

.footer__tel {
	margin-bottom: 20px;
}

.footer__btn {
	display: block;
	border: 1px solid #4c698f;
	border-radius: 3px;
	font-size: 0.813rem;
	width: 110px;
	height: 26px;
	line-height: 26px;
	color: #fff;
	text-align: center;
	transition: all .2s ease-in-out;
}

.footer__btn:hover {
	color: #00295e;
	background-color: #fff;
	border-color: #fff;
}

.footer__btn::before {
	content: '';
	display: inline-block;
	background: url("../img/icon/arrow_white.png") 0 center no-repeat transparent;
	background-size: 6px 8px;
	width: 6px;
	height: 8px;
	margin-right: 4px;
}

.footer__banner_list {
	/* max-width: 370px; */
	margin-bottom: 9px;
	display: flex;
	gap: 15px;
	align-items: center;
	flex-wrap: wrap;
}

/* .footer__banner_list::before, .footer__banner_list::after {
	content: '';
	display: table;
}

.footer__banner_list::after {
	clear: both;
} */

.footer__banner_list > * {
	width: calc(50% - (30px / 3));
	/* float: left; */
	max-width: 160px;
	box-sizing: border-box;
}

.footer__banner_list > *:nth-child(2n + 1) {
	/* clear: left; */
	/* padding-right: 5px; */
}

.footer__banner_list > *:nth-child(2n) {
	/* padding-left: 5px; */
}

.footer__copyright {
	text-align: center;
}

.footer__menu {
	margin-bottom: 13px;
}

.footer__menu::before, .footer__menu::after {
	content: '';
	display: table;
}

.footer__menu::after {
	clear: both;
}

.footer__menu > * {
	width: 50%;
	float: left;
	box-sizing: border-box;
}

.footer__menu > *:nth-child(2n + 1) {
	clear: left;
	padding-right: 5px;
}

.footer__menu > *:nth-child(2n) {
	padding-left: 5px;
}

.footer__menu a {
	padding-top: .5em;
	padding-bottom: .5em;
	display: block;
}

.footer__nav_area {
	padding: 15px 0;
}
.sp_footer_nav_list {
	display: flex;
	flex-wrap: wrap;
	margin: -5px;
	box-sizing: border-box;
}
.sp_footer_nav_list > li {
	width: 50%;
	padding: 5px;
	box-sizing: border-box;
	display: flex;
}

.sp_footer_nav {
	display: flex;
	height: 100%;
	width: 100%;
	min-height: 70px;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: #00295e;
	font-weight: bold;
	font-size: 13px;
	padding: 1em 1em 1em 1.5em;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}

@media only screen and (max-width: 350px) {
	.sp_footer_nav {
		font-size: 12px;
		padding: 1em .5em 1em 1em;
	}
}

.sp_footer_nav::before {
	content: '';
	display: block;
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 1em;
	height: 1em;
	background-image: url('../img/icon/arrow_link2.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.cate_area__inner {
	min-height: 80px;
}

.cate_area h2 {
	padding-top: 20px;
}

.cate_area h2 .main {
	font-size: 1.375rem;
	display: block;
}

.cate_area h2 .sub {
	font-size: 0.688rem;
	display: block;
}

.half_flex_child {
	text-align: center;
	margin-top: 10px;
}

.schedule_th01 {
	width: auto;
}

.sp_mb20 {
	margin-bottom: 20px;
}
.access_sns{
align-items: initial;
.footer_sns{
	margin-top: 5px;
}
}