@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: 61px;
	overflow: hidden;
}

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

.sp_container,
.mb_container,
.container {
	box-sizing: border-box;
	padding-left: 14px;
	padding-right: 14px;
	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: 14px;
	padding-right: 14px;
}

.main_column {
	margin-bottom: 100px;
}

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

.root_container {
	overflow: hidden;
	word-wrap: break;
}

.scroll_to_top {
	right: 14px;
}

@keyframes fuwafuwa {
	0% {
		transform: translateY(0);
	}
	60% {
		transform: translateY(-3px);
	}
	100% {
		transform: translateY(0);
	}
}
.center_float_btn {
	display: none;
}
.center_float_btn.active {
	/* animation: fuwafuwa 3s infinite; */
	opacity: 1;
	transform: translateX(0);
	transition: .5s;
	transition-delay: 0.4s;
	animation-name: fuwafuwa;
	animation-duration: 2s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
	
	display: block;
	max-width: 358px;
	/* @media print {
		display: none !important;
	} */
	position: fixed;
	right: 0;
	left: 0;
	bottom: 10px;
	margin: auto;
	z-index: 999;
	line-height: 0;
}
.center_float_btn.active img {
	max-width: 100%;
}
@media screen and (max-width:575px) {
	.center_float_btn.active {
		max-width: 290px;
		right: 70px;
	}
}
@media screen and (max-width:420px) {
	.center_float_btn.active {
		max-width: 222px;
		right: 50px;
	}
}

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

## 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.33333%;
	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: 1em;
}

.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: 1em;
}

.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: 1em;
}

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

/**************************
	.table-column2
*/
.table-column2 {
	width: 100% !important;
	max-width: 100% !important;
}

.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 #fff;
}

.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% !important;
}

.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%;
	border-left: 0 none;
	border-right: 0 none;
}

.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: 720px;
}

.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;
}

.scroll_to_top {
	width: 50px;
	height: 50px;
	right: 14px;
}

.scroll_to_top img {
	width: 50px;
	height: 50px;
}

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

## Project

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

*/
.header {
	position: fixed;
	z-index: 1000;
	top: 0;
	background-color: #fff;
	width: 100%;
	height: 61px;
	box-sizing: border-box;
}

.header .container {
	padding-left: 0;
	padding-right: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	position: relative;
	top: 0;
	left: 0;
}

.header__1__2 {
	display: none;
}

.header__2 {
	display: none;
}

.header__logo {
	position: absolute;
	top: 0;
	left: 0;
}

.header__logo,
.header__logo a,
.header__logo img {
	width: 205px;
	height: 60px;
}

.open_menu {
	text-indent: -119988px;
	overflow: hidden;
	text-align: left;
	margin: 0;
	width: 60px;
	height: 60px;
	background-color: #fff;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	box-sizing: border-box;
}

.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: 60px 60px;
	width: 60px;
	height: 60px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.mm-opened .open_menu::after {
	background-image: url("../img/sp/menu_close.png");
}

.main_wrapper_area {
	padding-top: 30px;
}


/*循環器内科病棟*/

.haert_team h2 {
  display: block;
  width: 100%;
  background-image: url(https://www.mito-saiseikai.jp/wp/wp-content/uploads/2021/08/h3_bg.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ec896e;
  padding: 10px 0;
  margin-bottom: 1.5em;
  font-size: 18px;
}
.haert_team h3 {
  font-weight: normal;
  padding-left: 25px;
  position: relative;
  margin-bottom: 1em;
}
.haert_team h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 9px;
  left: 4px;
  background-color: #ec896e;
  transform: rotate(45deg);
}
.haert_team .cv_hero__text {
  top: auto;
  left: 5%;
  right: auto;
  bottom: 5%;
}
.haert_team .js-accordion {
  margin-bottom: 1em;
}
.haert_team .js-accordion__toggle {
  color: #222;
  text-decoration: none;
  position: relative;
  height: 40px;
}
.haert_team .js-accordion__toggle .js-toggle {
  position: absolute;
  width: 100%;
  max-width: 930px;
  background-color: #ffe1d2;
  padding: 10px 5px;
  background-image: url(https://www.mito-saiseikai.jp/wp/wp-content/uploads/2021/08/accordion_bg.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  right: auto;
  box-sizing: border-box;
}
.haert_team .js-accordion__toggle .js-toggle:hover {
  background-color: #ec896e;
}
.haert_team .js-accordion__toggle .js-toggle::before {
  left: auto;
  right: 10px;
}
.haert_team .js-accordion__toggle .js-toggle::after {
  left: auto;
  right: 10px;
}
.haert_team .js-accordion__toggle:hover {
  color: #fff;
}
.haert_team .js-accordion__content {
  background-color: #FCF9F7;
}
.haert_team .js-accordion__content__inner {
  padding: 26px;
  position: relative;
}
.haert_team .js-accordion__content__inner ul li span {
  font-weight: bold;
  font-size: 15px;
}
.haert_team .haert-comment {
  margin: 2em auto;
}
.haert_team .haert-comment__main {
  position: relative;
  margin: 1em 0 5em;
}
.haert_team .haert-comment__main__text {
  position: absolute;
  top: 105%;
  left: 0;
}
.haert_team .haert-comment__main__text p {
  margin-bottom: 5px;
  display: inline;
  line-height: 1;
}
.haert_team .haert-comment__main__text .position {
  font-size: 14px;
}
.haert_team .haert-comment__main__text .name {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
}
.haert_team .haert-comment__main__text .a_name {
  font-size: 14px;
  font-weight: bold;
  color: #ec896e;
}
.haert_team .haert-comment__main img {
  box-shadow: 0 0 20px 0 rgba(255, 172, 154, 0.6);
}
.haert_team .haert-comment__title {
  font-size: 20px;
  font-weight: bold;
  color: #ec896e;
  margin-bottom: 0.5em !important;
}
.haert_team table tr th {
  border: 1px solid #ec896e !important;
  text-align: center !important;
  background-color: #fff4ee !important;
  color: #be6433 !important;
  font-weight: normal !important;
  width: auto !important;
}
.haert_team table tr td {
  border: 1px solid #ec896e !important;
  background-color: #fff !important;
  vertical-align: middle !important;
}
.haert_team table tr td:last-child {
  text-align: center;
}

/*心臓リハビリテーション（上記「循環器病棟」と併せて使用）*/

.riha h2 {
  background-image: url(https://www.mito-saiseikai.jp/wp/wp-content/uploads/2021/08/c-riha_h2-bg.jpg);
  color: #fff;
}
.riha ul li:before {
  background-color: #ffaa31 !important;
}
.riha ol li h3 {
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 62px;
  font-weight: bold;
  color: #ffaa31;
  font-size: 16px;
  background-size: 60px;
  background-repeat: no-repeat;
}
.riha ol li h3::before {
  display: none;
}
.riha ol li:nth-child(1) h3 {
  background-image: url(https://www.mito-saiseikai.jp/wp/wp-content/uploads/2021/08/c-riha_point01.png);
}
.riha ol li:nth-child(2) h3 {
  background-image: url(https://www.mito-saiseikai.jp/wp/wp-content/uploads/2021/08/c-riha_point02.png);
}
.riha ol li:nth-child(3) h3 {
  background-image: url(https://www.mito-saiseikai.jp/wp/wp-content/uploads/2021/08/c-riha_point03.png);
}
.riha .cv_hero__text {
  top: auto;
  left: 5%;
  right: auto;
  bottom: 5%;
}
.riha .cv_hero__text-4 .text1 {
  padding-left: 21px;
  background-image: url(https://www.mito-saiseikai.jp/wp/wp-content/uploads/2021/08/c-riha_main_logo.png);
  background-size: 14px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  height: 14px;
  font-size: 16px;
}
.riha .haert-comment__main__text .a_name {
  color: #ffaa31;
}
.riha .haert-comment__main img {
  box-shadow: 0 0 25px 0 rgba(255, 170, 49, 0.6);
}
.riha .haert-comment__title {
  color: #ffaa31;
}



/*# sourceMappingURL=sp_style.css.map */
