@charset "UTF-8";
@media screen and (max-width: 768px) {
	body {
		font-family: "ヒラキ゛ノ角コ゛ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pコ゛ シック", "MS PGothic", sans-serif;
		background-color: #f7f5f2;
		-webkit-text-size-adjust: 100%;
		font-size: 14px;
	}
	.clearfix::after {
		content: "";
		display: block;
		clear: both;
	}
	section {
		clear: both;
	}
	h1 {
		width: 100%;
		text-align: center;
		color: #fff;
		font-size: 10px;
		line-height: 16px;
		padding: 5px 2px 2px 2px;
		z-index: 11;
		background: #111;
		position: absolute;
		top: 50px;
		left: 0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.sp_off {
		display: none;
	}
	/* ----------------------------------------
	header
	---------------------------------------- */
	.h_wrap {
		width: 100%;
		height: 50px;
		text-align: center;
	}
	.h_logo {
		padding: 5px 0;
		z-index: 100;
		background-color: #ffffff;
		position: fixed;
		width: 100%;
		box-shadow: 0 2px 2px 0 #ccc;
	}
	.h_logo a {
		display: block;
		width: 50%;
		margin: 0 auto;
	}
	.h_logo img {
		max-height: 40px;
		margin: 0 auto;
	}
	/*ナビメニューのスタイルを指定*/
	nav.NavMenu {
		position: fixed;
		/*表示位置を固定*/
		z-index: 20;
		/*重ね順を変更*/
		top: 50px;
		/*表示位置を指定*/
		left: 0;
		/*表示位置を指定*/
		background: #fff;
		/*背景を白にする*/
		color: #000;
		/*文字色を黒にする*/
		text-align: center;
		/*テキストを中央揃え*/
		width: 100%;
		/*全幅表示*/
		transform: translateY(-100%);
		/*ナビを上に隠す*/
		transition: all 0.6s;
		/*アニメーションの時間を指定*/
	}
	nav.NavMenu ul.menu_list {
		background: #33a389;
		/*背景*/
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	nav.NavMenu ul.menu_list li {
		font-size: 1.1em;
		list-style-type: none;
		padding: 0;
		width: 100%;
		border-bottom: 1px solid #cccccc;
	}
	nav.NavMenu ul.menu_list li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		/*最後のメニュー項目のみ下線を消す*/
	}
	nav.NavMenu ul.menu_list li a {
		display: block;
		/*クリックできる領域を広げる*/
		font-size: 0.9em;
		font-weight: normal;
		color: #fff;
		padding: 8px 0;
		text-decoration: none;
		text-align: left;
		text-indent: 1em;
		line-height: 2em;
	}
	nav.NavMenu ul.menu_list li a::after {
		content: '\f105';
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		float: right;
		margin: 0 2em 0 0;
	}
	nav.NavMenu.active {
		transform: translateY(0%);
		border-bottom: 1px solid #cccccc;
	}
	.Toggle {
		display: block;
		position: fixed;
		/* bodyに対しての絶対位置指定 */
		right: 15px;
		top: 10px;
		width: 30px;
		height: 30px;
		cursor: pointer;
		z-index: 120;
	}
	.Toggle span {
		display: block;
		position: absolute;
		width: 30px;
		border-bottom: solid 2px #000;
		-webkit-transition: .35s ease-in-out;
		/*変化の速度を指定*/
		-moz-transition: .35s ease-in-out;
		/*変化の速度を指定*/
		transition: .35s ease-in-out;
		/*変化の速度を指定*/
	}
	.Toggle span:nth-child(1) {
		top: 7px;
	}
	.Toggle span:nth-child(2) {
		top: 16px;
	}
	.Toggle span:nth-child(3) {
		top: 25px;
	}
	/* 最初のspanをマイナス45度に */
	.Toggle.active span:nth-child(1) {
		top: 16px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* 2番目と3番目のspanを45度に */
	.Toggle.active span:nth-child(2),
	.Toggle.active span:nth-child(3) {
		top: 16px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.other_links {
		margin: 40px 0 0 0;
	}
	.other_links li:first-child a {
		width: 60%;
		font-size: 1em;
		text-align: center;
		border-radius: 4em;
		line-height: 1.4em;
		padding: 0.4em;
		display: block;
		color: #111;
		background-color: #eeeeee;
		text-decoration: none;
		margin: 0 auto
	}
	.other_links li:nth-child(2) {
		margin: 40px auto;
		width: 60%;
	}
	.other_links li:nth-child(2) a {
		color: #0086d1;
		font-size: 12px;
		font-weight: bold;
		border: 2px solid #0086d1;
		display: block;
		text-decoration: none;
		text-align: center;
		line-height: 4em;
		transition: .5s;
	}
	/*---------------

	サイドバー

	---------------*/
	.side-bar {
		display: none;
	}
	/*---------------

	メインコンテンツ

	---------------*/
	.main-contents {
		margin: 0 auto;
		margin-top: 35px;
	}
	.main-contents_wrapper {
		background-image: url(../img/common/bg_main-contents_top.png), url(../img/common/bg_main-contents_under.png);
		background-repeat: no-repeat;
		background-position: top right, bottom right;
		background-size: 200%;
	}
	.main-contents_inner {
		margin: 0 auto;
	}
	.content-box {
		margin: 38px auto;
		border: 3px solid #33a389;
		background-color: #fff;
		border-radius: 3px;
		padding: 25px 15px;
	}
	.content-box-inner {
		line-height: 2;
		border-bottom: 1px dashed #33a389;
		padding: 20px 0;
		overflow: hidden;
	}
	.content-box-inner:last-of-type {
		border-bottom: none;
		padding-bottom: 0;
	}
	.bg_dog {
		background-image: url(../img/common/bg_guide.png);
		background-repeat: no-repeat;
		background-position: bottom 10px center;
		padding-bottom: 200px;
	}
	/*common-guide*/
	.content-box h2 {
		text-align: center;
	}
	.common-guide h3 {
		font-size: 13px;
		padding: 9px 14px 8px 15px;
		background-color: #ffec35;
		border-radius: 3px;
		float: left;
		clear: both;
		margin-right: 11px;
	}
	.common-guide h3+p {
		clear: both;
		font-size: 13px;
		padding: 6px 14px 5px 15px;
		margin-bottom: 10px;
	}
	.guide-table {
		font-weight: bold;
		text-align: center;
		font-size: 14px;
		margin: 0 auto 10px;
		width: 100%;
		border-top: 1px solid #33a389;
		border-left: 1px solid #33a389;
		box-sizing: border-box;
	}
	.guide-table tr {
		display: block;
		float: left;
	}
	.guide-table tr td,
	.guide-table tr th {
		border-left: none;
		display: block;
		padding: 15px 0;
		border-right: 1px solid #33a389;
		border-bottom: 1px solid #33a389;
		box-sizing: border-box;
	}
	.sched-time {
		height: 60px !important;
		padding: 5px 0 !important;
		background: #B4D5CD;
	}
	.guide-table thead {
		display: block;
		float: left;
		width: 30%;
	}
	.guide-table thead tr {
		width: 100%;
	}
	.guide-table tbody {
		display: block;
		float: left;
		width: 70%;
	}
	.guide-table tbody tr {
		width: 50%;
	}
	.guide-table tr td+td {
		border-left: none;
	}
	.guide-table span {
		display: block;
		font-weight: normal;
		font-size: 12px;
		line-height: 15px;
	}
	.green-text {
		font-weight: bold;
		color: #33a389;
	}
	.map {
		margin-bottom: 30px;
	}
	.map iframe {
		width: 100%;
	}
	.bnr_hospital {
		padding-top: 10px;
		clear: both;
	}
	.bnr_hospital_box {
		background: #f7f5f2;
		padding: 15px;
	}
	.bnr_hospital p {
		font-size: 14px;
		line-height: 1.6;
		font-weight: bold;
		margin-bottom: 10px;
		text-align: center;
	}
	.bnr_hospital a {
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	.bnr_hospital a:hover {
		opacity: 0.9;
	}
	.line-account {
		text-align: center;
	}
	/*---------------

	メインコンテンツの共通ナビゲーション

	----------------*/
	.main-nav {
		margin: 30px auto;
	}
	.main-nav::after {
		content: "";
		display: block;
		clear: both;
	}
	.main-nav li {
		border: 2px solid #33a389;
		border-radius: 3px;
		background-color: #fff;
		margin-bottom: 15px;
	}
	.main-nav .current {
		font-size: 17px;
		padding: 22px 32px;
		color: #fff;
		background-color: #33a389;
		font-weight: bold;
		position: relative;
	}
	.main-nav li.current i.icon-about {
		background-image: url(../img/common/main-nav_icon_about_hover.png);
	}
	.main-nav li.current i.icon-hosp {
		background-image: url(../img/common/main-nav_icon_hosp_hover.png);
	}
	.main-nav li.current i.icon-staff {
		background-image: url(../img/common/main-nav_icon_staff_hover.png);
	}
	.main-nav a {
		font-size: 17px;
		padding: 22px 32px;
		color: #33a389;
		font-weight: bold;
		text-decoration: none;
		display: block;
		position: relative;
	}
	.main-nav i {
		position: absolute;
		background-repeat: no-repeat;
		background-size: 90%;
		background-position: center;
	}
	.main-nav i.icon-about {
		width: 26px;
		height: 29px;
		bottom: 18px;
		right: 24px;
		background-image: url(../img/common/main-nav_icon_about.png);
	}
	.main-nav i.icon-hosp {
		width: 30px;
		height: 23px;
		bottom: 18px;
		right: 25px;
		background-image: url(../img/common/main-nav_icon_hosp.png);
		background-repeat: no-repeat;
	}
	.main-nav i.icon-staff {
		width: 40px;
		height: 24px;
		bottom: 19px;
		right: 19px;
		background-image: url(../img/common/main-nav_icon_staff.png);
		background-repeat: no-repeat;
	}
	.main-nav li:hover {
		background-color: #33a389;
	}
	.main-nav li:hover a {
		color: #fff;
	}
	.main-nav li:hover i.icon-about {
		background-image: url(../img/common/main-nav_icon_about_hover.png);
	}
	.main-nav li:hover i.icon-hosp {
		background-image: url(../img/common/main-nav_icon_hosp_hover.png);
	}
	.main-nav li:hover i.icon-staff {
		background-image: url(../img/common/main-nav_icon_staff_hover.png);
	}
	/*-------------------

	フッター

	-------------------*/
	footer {
		font-size: 14px;
		background-color: #33a389;
	}
	.footer-wrapper {}
	.footer-inner {
		margin: 0 auto;
		padding: 47px 20px 23px;
	}
	footer h2 {
		padding-bottom: 20px;
		border-bottom: 1px solid #fff;
		font-weight: bold;
		font-size: 16px;
		color: #fff;
		margin-bottom: 20px;
	}
	.footer-nav {
		margin: 0 auto;
		font-size: 14px;
		line-height: 2;
		color: #fff;
	}
	.footer-nav a {
		color: #fff;
		text-decoration: none;
	}
	.footer-nav a:hover {
		text-decoration: underline;
	}
	.footer-nav ul {
		float: left;
		width: 50%;
	}
	.footer-inner .left-content {
		margin-bottom: 30px;
	}
	.footer-inner .left-content::after {
		content: "";
		display: block;
		clear: both;
	}
	.footer-address {
		text-align: center;
	}
	.footer-address-logo {
		margin-bottom: 13px;
	}
	.footer-contact-btn {
		margin: 0 auto;
	}
	.footer-contact-btn a {
		font-size: 15px;
		display: block;
		font-weight: bold;
		padding: 18px 26px 17px;
		color: white;
		background-color: #33a389;
		border: 2px solid #fff;
		text-decoration: none;
		border-radius: 3px;
		position: relative;
	}
	.footer-contact-btn a:hover {
		background-color: white;
		color: #33a389;
	}
	.footer-contact-btn .icon-contact {
		position: absolute;
		width: 24px;
		height: 16px;
		top: 17px;
		right: 30px;
		background-image: url(../img/common/icon_mail.png);
		background-repeat: no-repeat;
	}
	.footer-contact-btn a:hover .icon-contact {
		background-image: url(../img/common/footer_icon_mail_hover.png);
	}
	.footer-tel {
		margin: 14px auto 20px;
	}
	.footer-logo {
		padding-top: 32px;
		clear: both;
		text-align: center;
	}
	.f_bnr_hospital {
		padding-top: 15px;
		clear: both;
	}
	.f_bnr_hospital_box {
		border-top: 1px dashed #fff;
		border-bottom: 1px dashed #fff;
		padding: 15px;
	}
	.f_bnr_hospital p {
		font-size: 14px;
		line-height: 1.6;
		color: #fff;
		font-weight: bold;
		margin-bottom: 10px;
		text-align: center;
	}
	.f_bnr_hospital a {
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	.f_bnr_hospital a:hover {
		opacity: 0.9;
	}
	/* ----------------------------------------
	ch_program_tl
	---------------------------------------- */
	.ch_program_tl {
		text-align: center;
		background-color: #3f98d7;
		margin: 22px auto 0;
		font-size: 0.8em;
		line-height: 4em;
		border-bottom: 1px solid #ffffff;
		box-shadow: 0px 9px 0px 0px rgba(63, 152, 215, 1.0);
		-webkit-box-shadow: 0px 10px 0px 0px rgba(63, 152, 215, 1.0);
		-moz-box-shadow: 0px 9px 0px 0px rgba(63, 152, 215, 1.0);
		color: #ffffff;
	}
	/* ----------------------------------------
	pan
	---------------------------------------- */
	.pan {
		margin: 20px 0 0 0;
		display: block;
	}
	.pan ul {
		width: 100%;
		color: #666;
		position: relative;
		padding: 3px 1%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		line-height: 17px;
	}
	.pan li {
		display: inline-block;
		font-size: 0.8em;
	}
	.pan li a {
		text-decoration: none;
		color: #111111;
	}
	.pan li::after {
		content: ">";
		margin: 0 15px;
	}
	.pan li:last-child {
		color: #3f98d7
	}
	.pan li:last-child::after {
		content: "";
		margin: 0 15px;
	}
	/* ----------------------------------------
	ch_grouppaging
	---------------------------------------- */
	.group_paging {
		width: 96%;
		margin: 0 auto;
		padding: 10px 0;
	}
	.group_paging ul {
		display: flex;
		justify-content: center;
	}
	.group_paging li {
		padding: 1px;
		line-height: 30px;
	}
	.group_paging a, .group_paging span {
		border-radius: 50%;
		border: 1px solid #3f98d7;
		color: #3f98d7;
		background: #fff;
		width: 38px;
		height: 38px;
		box-sizing: border-box;
		display: block;
		text-align: center;
		font-size: 15px;
		font-weight: bold;
		line-height: 35px;
	}
	.group_paging a {
		text-decoration: none;
	}
	.group_paging a:hover, .group_paging span {
		background: #3f98d7;
		color: #fff;
	}
	.group_paging p {
		font-size: 16px;
		font-weight: bold;
		line-height: 35px;
	}
	/* ----------------------------------------
	ch_link
	---------------------------------------- */
	.ch_link {
		width: 98%;
		margin: 40px auto 20px auto;
		border: 1px solid #cccccc;
		box-shadow: 0px 0px 0px 5px #eeeeee inset;
		overflow: hidden;
		padding: 20px;
		align-items: center;
		box-sizing: border-box;
	}
	.ch_link ul {
		width: 80%;
		overflow: hidden;
		display: flex;
		flex-wrap: wrap;
	}
	.ch_link li {
		margin: 0 10px 10px 0;
	}
	.ch_link li img {
		max-width: 90%;
	}
	.ch_link_tl {
		text-align: center;
		margin-bottom: 10px;
	}
}