@charset "UTF-8";
@import url("reset.css");
@import url("webfonts.css");


*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

input,
select {
	box-sizing: border-box;
}


body {
	font-size: 13px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'Noto Sans Japanese', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	/*font-weight:400;
	font-family:'Noto Sans Japanese', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
	line-height: 1.75;
}



/* 共通スタイル
--------------------------------------------------------------------------------------------------------------------------------------------- */
/* リンク */

a {
	color: #000;
	text-decoration: none;
	transition-duration: 0.5s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
}

a:hover {
	color: #999;
}

/* ボタン */
.btn {
	padding: 15px 25px 14px;
	margin-bottom: 10px;
	display: inline-block;
	background: #3098F2;
	color: #FFF;
	clear: both;
	text-align: left;
}

.btn:hover {
	background: #666;
	color: #FFF;
}

.btn2 {
	padding: 10px 15px 8px;
	margin-bottom: 10px;
	display: inline-block;
	border: #3098F2 solid 2px;
	background: #FFF;
	color: #3098F2;
	clear: both;
	text-align: left;
}

.btn2:hover {
	background: #3098F2;
	color: #FFF;
}

.btn3d {
	position: relative;
}

.btn3d a {
	display: block;
	width: 100%;
	padding: 12px 15px 8px;
	height: 53px;
	border: #000 solid 3px;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	position: relative;
	z-index: 2;
}

.btn3d a:hover {
	background: #000;
	color: #FFF;
	left: 3px;
	top: 3px;
}

.btn3d:after {
	display: block;
	width: 100%;
	height: 53px;
	content: "";
	border-right: #000000 solid 3px;
	border-bottom: #000000 solid 3px;
	position: absolute;
	left: 6px;
	top: 6px;
}

.btn3d:hover:after {
	left: 3px;
	top: 3px;
}



/* アイコン */
.ico-arrow:before {
	display: inline-block;
	font-size: 12px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	font-family: 'FontAwesome';
	content: "\f105";
}

.ico-arrow-back:before {
	display: inline-block;
	font-size: 12px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	font-family: 'FontAwesome';
	content: "\f104";
}


.ico-blank:before {
	display: inline-block;
	font-size: 12px;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f08e";
}

.ico-pdf,
.ico-docx,
.ico-xlsx {
	color: #3098F2;
	border: 1px solid;
	padding: 10px 15px 10px 35px;
	position: relative;
	font-weight: 700;
	display: inline-block;
}

.ico-pdf::before {
	content: "";
	position: absolute;
	background: url(../images/common/i-pdf.png) center no-repeat;
	background-size: 100%;
	width: 17px;
	left: 14px;
	top: 12px;
	z-index: 5;
	height: 20px;
}

.ico-pdf--wh::before {
	/* content: "";
	position: absolute;
	background: url(../images/common/i-pdf.png) center no-repeat;
	background-size: 100%;
	width: 17px;
	left: 14px;
	top: 12px;
	z-index: 5;
	height: 20px; */
	display: inline-block;
	font-size: 12px;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f1c1";
}

.ico-docx::before {
	content: "";
	position: absolute;
	background: url(../images/common/i-word.png) center no-repeat;
	background-size: 100%;
	width: 17px;
	left: 14px;
	top: 12px;
	z-index: 5;
	height: 20px;
}

.ico-xlsx::before {
	content: "";
	position: absolute;
	background: url(../images/common/i-xlsx.png) center no-repeat;
	background-size: 100%;
	width: 17px;
	left: 14px;
	top: 12px;
	z-index: 5;
	height: 20px;
}

.ico-tel:before {
	display: inline-block;
	font-size: 12px;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f095";
}

.ico-fax:before {
	display: inline-block;
	font-size: 12px;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f02f";
}

.ico-download:before {
	display: inline-block;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f019";
}

.new-mark {
	position: relative;
}

.new-mark::after {
	content: "";
	display: inline-block;
	width: 27px;
	height: 12px;
	background-image: url(../images/common/newmark.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 27px 12px;
	position: absolute;
	right: -33px;
	top: 0;
	-webkit-animation: blink 1s ease-in-out infinite alternate;
	-moz-animation: blink 1s ease-in-out infinite alternate;
	animation: blink 1s ease-in-out infinite alternate;

}

@-webkit-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}




/* float */
.img-right {
	float: right;
	margin-left: 20px;
	margin-bottom: 10px;
}

.img-left {
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
}

.left {
	float: left;
}

.right {
	float: right;
}


.fc-black {
	color: #000 !important;
}

.fc-green {
	color: #3098F2 !important;
}

.fc-red {
	color: #C1272D !important;
}

.fc-blue {
	color: #0078C6 !important;
}

.fc-orange {
	color: #FF8D56 !important;
}

.fw-bold {
	font-weight: bold !important;
}

.underline {
	text-decoration: underline;
}

a.underline:hover {
	text-decoration: none;
}

.markar {
	background: linear-gradient(transparent 60%, #ffff66 0%);
	padding-left: 3px;
	padding-right: 3px;
}


.ta-right {
	text-align: right !important;
}

.ta-left {
	text-align: left !important;
}

.ta-center {
	text-align: center !important;
}


.txt-break {
	display: block;
}

/* PCのみ */
/*.sp-txt-break{ display:block; }  SMTのみ */


.row,
.article {
	width: 100%;
	box-sizing: border-box;
}

.row:after,
.article:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.col-md-1 {
	width: 8.333%;
}

.col-md-2 {
	width: 31.663%;
}

.col-md-2-5 {
	width: 20%;
}

.col-md-3 {
	width: 24.99%;
}

.col-md-4 {
	width: 33.332%;
}

.col-md-5 {
	width: 41.665%;
}

.col-md-55 {
	width: 48%;
}

.col-md-6 {
	width: 49.998%;
}

.col-md-7 {
	width: 58.331%;
}

.col-md-8 {
	width: 66.664%;
}

.col-md-9 {
	width: 74.997%;
}

.col-md-10 {
	width: 83.33%;
}

.col-md-11 {
	width: 91.663%;
}

.col-md-12 {
	width: 99.996%;
}

[class*="col-md-"] img {
	max-width: 100%;
}

.gallery-object img {
	width: 100%;
	height: 21vw;
	max-height: 250px;
	object-fit: cover;
}

.pl5 {
	box-sizing: border-box;
	padding-left: 5px !important;
}

.pr5 {
	box-sizing: border-box;
	padding-right: 5px !important;
}

.pl15 {
	box-sizing: border-box;
	padding-left: 15px !important;
}

.pr15 {
	box-sizing: border-box;
	padding-right: 15px !important;
}

.pb15 {
	box-sizing: border-box;
	padding-bottom: 15px !important;
}

.pt15 {
	box-sizing: border-box;
	padding-top: 15px !important;
}

.pl30 {
	box-sizing: border-box;
	padding-left: 30px !important;
}

.pr30 {
	box-sizing: border-box;
	padding-right: 30px !important;
}

.pb30 {
	box-sizing: border-box;
	padding-bottom: 30px !important;
}

.pt30 {
	box-sizing: border-box;
	padding-top: 30px !important;
}



.abel {
	font-family: 'Abel', sans-serif !important;
}

.jp {
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'Noto Sans Japanese', sans-serif;
}

.noto {
	font-family: 'Noto Sans Japanese' !important;
	letter-spacing: 0.075em;
}

.italic {
	font-style: italic;
	letter-spacing: 0.075em;
}


.inline-block {
	display: inline-block !important;
}

.block {
	display: block !important;
}



/* wrapper
--------------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 1280px) {}

#wrapper {
	padding: 0;
}

#wrapper:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.inner {
	box-sizing: border-box;
	max-width: 1130px;
	width: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.inner:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}




/* header
--------------------------------------------------------------------------------------------------------------------------------------------- */
#header {
	width: 100%;
	position: relative;
	z-index: 2;
}

#header:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.secondary-head {
	padding: 0 15px;
}

.secondary-head:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.secondary-head .site-disc {
	padding-top: 11px;
	float: left;
}

.secondary-head .subnav {
	width: 610px;
	float: right;
	position: relative;
	top: 10px;
}

.sns-block {
	float: left;
}

.sns-block a {
	display: inline-block;
	font-family: 'FontAwesome';
	font-size: 14px;
	margin: 0 7px;
}

.ico-twitter:before {
	content: "\f099";
}

.ico-fb:before {
	content: "\f09a";
}

.ico-rss:before {
	content: "\f09e";
}


.secondary-head .subnav ul {
	float: right;
}

.secondary-head .subnav ul:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.secondary-head .subnav li {
	float: left;
}

.secondary-head .subnav li a {
	display: block;
	padding: 3px 18px 1px;
	border-left: #DDDDDD solid 1px;
}

.secondary-head .subnav li.head-news a {
	display: block;
	padding: 3px 18px 1px;
	border: none;
}

.secondary-head .subnav li a:before {
	display: inline-block;
	font-family: 'FontAwesome';
	margin-right: 10px;
}

.ico-recruit:before {
	content: "\f2c0";
}

.ico-contact:before {
	content: "\f003";
}

.secondary-head .subnav li a.ico-recruit,
.secondary-head .subnav li a.ico-contact {
	margin-left: 1px;
	padding: 10px 18px 8px 15px;
	border-left: none;
	color: #FFF;
	position: relative;
	top: -10px;
}

.secondary-head .subnav li a.ico-recruit {
	background: #00AFAD;
}

.secondary-head .subnav li a.ico-contact {
	background: #3098F2;
}

.secondary-head .subnav li a.ico-recruit:hover,
.secondary-head .subnav li a.ico-contact:hover {
	background: #666;
	color: #999;
}


.primary-head {
	padding: 0px 15px;
	background-color: #FFF;
}

.primary-head:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

@media screen and (min-width: 1130px) {
	.primary-head {
		height: 80px;
	}
}

.logo {
	float: left;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	width: 320px;
	height: 107px;
	background-repeat: no-repeat;
	background-position: 0 8px;
	background-image: url(../images/common/logo@2x.png);
	background-size: contain;
	transition-duration: 0.3s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}

.action-information {
	padding-top: 25px;
}

@media screen and (min-width: 1130px) {
	.action-information {
		float: right;
	}
}

@media screen and (max-width: 1129px) {
	.action-information {
		width: 840px;
		float: left;
	}
}

.head-news a {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #3098F2;
}

.action-time,
.action-telfax {
	float: left;
}

.action-time dt,
.action-telfax dt {
	line-height: 1.5;
}


.action-time dt {
	padding-top: 6px;
	border: #DDDDDD solid 1px;
	width: 50px;
	height: 50px;
	text-align: center;
	font-weight: bold;
	float: left;
}

.action-time dd {
	padding: 5px 20px 0 60px;
}

.action-time dd ul:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.action-time dd ul li {
	padding-left: 60px;
	position: relative;
}

.action-time dd ul li aside {
	position: absolute;
	left: 0;
	top: 0;
}

.action-time dd ul li .am {
	display: inline-block;
	margin-right: 10px;
}

.pc-only {
	display: block;
}

.tablet-only {
	display: none;
}

.sp-only {
	display: none;
}

.action-telfax {
	width: 250px;
	float: left;
	/*background: url(../images/common/slash.png) no-repeat left 0;*/
}

.tablet-only {
	display: none;
}

.action-tel {
	font-size: 26px;
	position: relative;
	top: -10px;
}

.action-tel::after {
	font-size: 13px;
	content: "（代表番号）";
	position: relative;
	top: -2px;
}

.action-tel .tel-link-txt:before {
	font-family: 'FontAwesome';
	content: "\f095";
	font-size: 16px;
	margin-right: 5px;
	position: relative;
	top: -3px;
}

.action-fax {
	font-size: 22px;
	position: relative;
	top: -24px;
}

.action-fax:before {
	font-size: 18px;
	content: "Fax";
	margin-right: 5px;
	position: relative;
	top: -2px;
}

.kenshin-tel {
	font-size: 22px;
	position: relative;
	top: -17px;
}

.kenshin-tel::after {
	font-size: 13px;
	content: "（健診センター）";
	position: relative;
	top: -2px;
}

.kenshin-tel .tel-link-txt:before {
	font-family: 'FontAwesome';
	content: "\f095";
	font-size: 16px;
	margin-right: 5px;
	position: relative;
	top: -2px;
}


.gnav {
	padding-top: 22px;
	padding-bottom: 22px;
	display: block;
	width: 100%;
	border-top: #DDDDDD solid 1px;
	background: rgba(255, 255, 255, .8);
	text-align: center;
	display: table;
	display: table\9;
	/* IE10以下 */
}

.gnav:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.gnav a {
	display: table-cell;
	display: table-cell\9;
	/* IE10以下 */
	font-size: 21px;
	font-weight: bold;
}

.gnav a::before {
	display: inline-block;
	content: " ";
	width: 30px;
	height: 30px;
	margin-right: 8px;
	vertical-align: middle;
	position: relative;
	top: -2px;
}

.gnav a.gnav-icon01::before {
	background: url(../images/common/gnav_icon01.png) no-repeat;
	background-size: contain;
}

.gnav a.gnav-icon02::before {
	background: url(../images/common/gnav_icon02.png) no-repeat;
	background-size: contain;
}

.gnav a.gnav-icon03::before {
	background: url(../images/common/gnav_icon03.png) no-repeat;
	background-size: contain;
}

.gnav a.gnav-icon04::before {
	background: url(../images/common/gnav_icon04.png) no-repeat;
	background-size: contain;
}

.gnav a.gnav-icon05::before {
	background: url(../images/common/gnav_icon05.png) no-repeat;
	background-size: contain;
}

.gnav a.gnav-icon06::before {
	background: url(../images/common/gnav_icon06.png) no-repeat;
	background-size: contain;
}

@media screen and (min-width: 1140px) {
	.gnav {
		padding-left: 30px;
		padding-right: 30px;
	}

	.gnav a {
		padding: 0 30px;
	}
}

@media screen and (max-width: 1139px) {
	.gnav {
		padding-left: 15px;
		padding-right: 15px;
	}

	.gnav a {
		padding: 0 15px;
	}
}







#sp-menu,
.sp-nav-block {
	display: none !important;
}




/* コンテンツ
--------------------------------------------------------------------------------------------------------------------------------------------- */
.contents-wrap {
	padding: 0;
	background: rgba(240, 240, 240, 1);
	position: relative;
}

.contents {
	padding: 28px 0 0;
	background: #FFFFFF;
	/*display:table;*/
}

.contents-main {
	float: left;
	/*display:table-cell;*/
	border-right: #EFEFEF solid 1px;
	width: 72%;
	padding: 30px;
}

.contents-side {
	float: right;
	/*display:table-cell;
	border-left:#EFEFEF solid 1px;*/
	width: 28%;
	padding: 30px;
}

.contents-side .side-nav-title-en {
	font-family: 'Crimson Text';
	font-style: italic;
	font-weight: 400;
	font-size: 24px;
	margin-bottom: 15px;
}

.contents-side .lnav li a {
	display: block;
	padding: 10px 10px 10px 12px;
	font-size: 14px;
	position: relative;
}

.contents-side .lnav li a:before {
	display: block;
	font-family: 'FontAwesome';
	content: "\f105";
	position: absolute;
	left: 0;
	top: 10px;
}

.lnav-subject-list {
	padding-left: 15px;
	border-left: #DDD solid 1px;
}



.page-title {
	padding-top: 50px;
	background-image: url(../images/common/page_bg_def.png);
	background-position: 0 50%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	width: 100%;
	height: 160px;
	position: relative;
}

.page-title h1 {
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	color: #3098F2;
	position: relative;
	left: 50%;
	margin-left: -565px;
	padding-left: 20px;
	padding-right: 20px;
	/*background-color: rgba(255,255,255,.2);*/
}


.pankuzu-nav {
	background: #FFFFFF;
	padding: 24px 20px 15px;
	border-bottom: #EFEFEF solid 1px;
	position: relative;
	top: 35px;
	z-index: 2;
}

.pankuzu-nav:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.pankuzu-nav li {
	float: left;
	color: #666666;
}

.pankuzu-nav li a:after {
	display: inline-block;
	margin-left: 7px;
	margin-right: 3px;
	position: relative;
	top: -1px;
	font-family: 'FontAwesome';
	content: "\f105";
	font-style: normal;
}

.pankuzu-nav li:first-child a {
	font-family: 'Crimson Text';
	font-style: italic;
	font-weight: 600;
}




/*見出し1-4*/
.headline1 {
	padding: 25px 0;
	margin-bottom: 25px;
	font-size: 18px;
	border-bottom: #E5E5E5 solid 1px;
}

.headline2 {
	padding: 20px 0 0 20px;
	margin-bottom: 20px;
	font-size: 18px;
	color: #3098F2;
	position: relative;
}

.headline2:before {
	display: block;
	content: "";
	width: 13px;
	height: 13px;
	background: url(../images/common/ico_cycle@2x.png) no-repeat 0 0;
	background-size: 13px 13px;
	position: absolute;
	left: 0;
	top: 29px;
}

.headline3 {
	padding: 23px 0 20px;
	margin-bottom: 15px;
	border-top: #3098F2 solid 1px;
	border-bottom: #E5E5E5 solid 1px;
	font-size: 18px;
}

.headline4 {
	padding: 13px 0 10px;
	margin-bottom: 15px;
	border-bottom: #E5E5E5 solid 1px;
	font-size: 16px;
	color: #F7931E;
}

.headline5 {
	padding: 13px 0 10px;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: bold;
}

/*テキストブロック*/
.contents-main {
	font-size: 15px;
}

.contents-main p {
	margin-bottom: 25px;
}


.heading-txt16 {
	font-size: 16px !important;
}

.heading-txt18 {
	font-size: 18px !important;
}

.font-16 {
	font-size: 16px !important;
}

/* マージン制御 */
.mb0 {
	margin-bottom: 0 !important;
}

.end-block {
	margin-bottom: 40px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

/*リストスタイル*/
.list-style-disc li {
	padding: 5px 0;
	margin-left: 20px;
	list-style: outside disc;
}

.list-style-number li {
	padding: 5px 0;
	margin-left: 20px;
	list-style: outside decimal;
}

.list-style-none li {
	margin-bottom: 7px;
	margin-left: 0 !important;
	list-style: none;
}


/* テーブルスタイル */
[class*="table-style-"] {
	width: 100%;
	box-sizing: border-box;
	border-right: #DDDDDD solid 1px;
	border-top: #DDDDDD solid 1px;
}

[class*="table-style-"] th,
[class*="table-style-"] td {
	box-sizing: border-box;
	padding: 20px 15px 17px;
	border-left: #DDDDDD solid 1px;
	border-bottom: #DDDDDD solid 1px;
}

[class*="table-style-"] th {
	font-weight: bold;
	min-width: 200px;
	text-align: left;
}

/*背景グレー*/
.table-style-01 th {
	background: #EFEFEF;
	color: #000000;
}

/*背景グリーン*/
.table-style-02 th {
	background: #3098F2;
	color: #FFFFFF;
}

/*背景ライトグリーン*/
.table-style-03 th {
	background: #D6F2E6;
	color: #3098F2;
}

.table-style-04 {
	width: 100%;
	border-right: none;
}

.table-style-04 th,
.table-style-04 td {
	min-width: auto !important;
	padding: 13px 15px 10px;
	border-left: none;
	text-align: center;
	font-weight: bold;
}

.table-style-04 th {
	background: #3098F2;
	color: #FFF;
	text-align: center;
}

.table-style-04 td {
	color: #000;
}

.table-style-04 tr:nth-child(2n) {
	background-color: #EFEFEF;
}

.table-style-04 td:nth-child(2n) {
	border-left: #DDDDDD solid 1px;
}

.table-style-04 tr:last-child {
	background-color: #FFF;
}

.table-style-04 tr:last-child td:nth-child(2n) {
	border-left: none;
}



.two-col-box:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.two-col-box .thumb img {
	width: 100%;
}

.two-col-box .thumb.right {
	padding-left: 25px;
}

.two-col-box .thumb.left {
	padding-right: 25px;
}

.two-col-box-body {}

.caption {
	display: block;
}

.caption-name {
	text-align: center;
}

/*注釈スタイル*/
[class*="note-box-"] {
	padding: 4%;
}

.note-box-01 {
	background-color: #F2F2F2;
}

.note-box-01 .note-title {
	font-size: 16px;
	margin-bottom: 20px;
	text-align: center;
}

.note-box-02 {
	border: #3098F2 solid 3px;
}

.note-box-02 dl:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.note-box-02 dl dt {
	width: 15%;
	padding: 5px 0 3px;
	float: left;
	color: #3098F2;
	font-weight: bold;
}

.note-box-02 dl dd {
	padding: 5px 0 3px 15%;
}

.note-box-03 {
	border: #CCCCCC solid 1px;
}

.dl-two-col {
	display: table;
}

.dl-two-col:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.dl-two-col dt {
	width: 150px;
	display: table-cell;
}

.dl-two-col .headline2 {
	padding-top: 0;
}

.dl-two-col .headline2:before {
	top: 9px;
}

.dl-two-col dd {
	display: table-cell;
	border-left: #DDDDDD solid 1px;
	padding-left: 10px;
}

[class*="note-box-"] p:last-child {
	margin-bottom: 0;
}



/*一覧用box*/
.idx-nav-box-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.idx-nav-box-wrap:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.idx-nav-box {
	width: 48%;
	margin-bottom: 5%;
	margin: 1% 2% 5% 0%;
}

.idx-nav-box-wrap .idx-nav-box:nth-child(2n) {
	margin-left: 2%;
	margin-right: 0 !important;
}

.idx-nav-box h2 {
	padding: 10px 0 7px 20px;
	margin-bottom: 20px;
	border-top: #3098F2 solid 1px;
	border-bottom: #E5E5E5 solid 1px;
	font-size: 18px;
	color: #3098F2;
	position: relative;
}

.idx-nav-box h2 .sub {
	width: 105%;
	display: block;
	font-size: 13px;
	color: #666666;
	position: relative;
	left: -20px;
}

.idx-nav-box h2:before {
	display: block;
	content: "";
	width: 13px;
	height: 13px;
	background: url(../images/common/ico_cycle@2x.png) no-repeat 0 0;
	background-size: 13px 13px;
	position: absolute;
	left: 0;
	top: 19px;
}

.idx-nav-box p {
	min-height: 50px;
	font-size: 16px;
}

.idx-nav-box .btn {
	float: right;
}



.not-found {
	padding: 2.5%;
}


/*アンカーボタン*/
.anchor-link {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.anchor-link a {
	color: #3098F2;
	padding: 7px 20px 5px;
	display: inline-block;
	border: 1px solid #3098F2;
	border-radius: 3px;
	transition-duration: 0.5s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	cursor: pointer;
	font-weight: 700;
}

.anchor-link a:before {
	display: inline-block;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f107";
}




/* 	footer
--------------------------------------------------------------------------------------------------------------------------------------------- */
/* 1351以上 */
@media screen and (min-width: 1351px) {}

/* 769〜1350まで */
@media screen and (min-width: 769px) and (max-width: 1350px) {}

.footer-wrap {
	position: relative;
	/*top:-95px;*/
}

#mec.footer-wrap,
#toumien.footer-wrap {
	top: 0;
}

#recruit.footer-wrap {
	top: 0;
}


.recommend-area {
	height: 765px;
	padding-top: 60px;
	background: rgb(208, 238, 235);
	background: -moz-linear-gradient(top, rgba(242, 242, 242, 1) 70%, #EDF7FF 70%);
	background: -webkit-linear-gradient(top, rgba(242, 242, 242, 1) 70%, #EDF7FF 70%);
	background: linear-gradient(to bottom, rgba(242, 242, 242, 1) 70%, #EDF7FF 70%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0eeeb', endColorstr='#e5e5e5', GradientType=0);
}

.recommend-area .inner {
	background: #FFF;
}

.recommend-box {
	display: block;
	background: #FFF;
	width: 50%;
	float: left;
	vertical-align: middle;
	text-align: center;
}

.recommend-area .inner .recommend-box:nth-child(3) .thumb,
.recommend-area .inner .recommend-box:nth-child(4) .thumb {
	float: right;
}


.recommend-box .thumb {
	display: block;
	width: 50%;
	height: 282px;
	overflow: hidden;
	float: left;
}

.recommend-box .thumb img {
	width: 100%;
	height: auto;
}

.recommend-info {
	display: inline-block;
	width: 50%;
	padding: 28px 25px 13px;
}

.recommend-info p {
	margin-bottom: 20px;
}

.recommend-info h2 {
	font-size: 18px;
	margin-bottom: 15px;
}

.recommend-info h2:before {
	display: block;
	content: "";
	width: 55px;
	height: 55px;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 55px 55px;
}

.recommend-info .ico-gairai:before {
	background-image: url(../images/common/ico_gairai@2x.png);
}

.recommend-info .ico-shinryo:before {
	background-image: url(../images/common/ico_shinryo@2x.png);
}

.recommend-info .ico-kenshin:before {
	background-image: url(../images/common/ico_kenshin@2x.png);
}

.recommend-info .ico-kaigo:before {
	background-image: url(../images/common/ico_kaigo@2x.png);
}

.txt-contents,
.txt-informaiton {
	display: inline-block;
	font-family: 'Crimson Text';
	font-style: italic;
	font-size: 18px;
	position: absolute;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.txt-contents {
	left: -40px;
	top: 10px;
}

.txt-informaiton {
	right: -55px;
	bottom: 0px;
}


.recruit-area {
	padding: 50px 0 70px;
	background: #F9FAFD url(../images/common/recruit_area_bg.png) no-repeat right bottom;
	background-size: 350px auto;
}


.recruit-area h2 {
	font-family: 'Crimson Text';
	font-style: italic;
	font-weight: 400;
	font-size: 36px;
	margin-bottom: 15px;
}

.recruit-area h2 .jp {
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin-left: 20px;
}

.recruit-area p {
	margin-bottom: 20px;
}

.recruit-btn {
	display: block;
	width: 220px;
	background-color: #FFF;
	padding: 13px 30px 10px;
	border: #000000 solid 3px;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	position: relative;
}

.recruit-btn:hover {
	background: #000;
	color: #FFF;
	position: relative;
	left: 3px;
	top: 3px;
}

.recruit-btn:after {
	display: block;
	width: 220px;
	height: 53px;
	content: "";
	border-right: #000 solid 3px;
	border-bottom: #000 solid 3px;
	position: absolute;
	left: 3px;
	top: 3px;
}

.recruit-btn:hover:after {
	position: absolute;
	left: -3px;
	top: -3px;
}



.search-area {
	background-color: rgba(0, 169, 157, 0.2);
}

#toumien.footer-wrap .search-area,
#recruit.footer-wrap .search-area {
	background-color: rgba(244, 242, 233, 1);
}


.search-area {
	padding: 20px 0 15px;
}

.search-area:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.search-area h2 {
	float: left;
	font-size: 20px;
	font-weight: bold;
	color: #3098F2;
}

#toumien.footer-wrap .search-area h2,
#recruit.footer-wrap .search-area h2 {
	color: #000;
}

.search-btn-set {
	float: right;
}

.toggle-btn {
	padding: 7px 20px 5px;
	display: inline-block;
	background-color: #3098F2;
	color: #FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	transition-duration: 0.5s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	cursor: pointer;
}

.toggle-btn:before {
	display: inline-block;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f107";
}

#toumien.footer-wrap .toggle-btn,
#recruit.footer-wrap .toggle-btn {
	background-color: #fd8400;
}

.btn-line {
	padding: 7px 20px 5px;
	display: inline-block;
	background-color: #009F00;
	color: #FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.toggle-btn:hover,
.btn-line:hover,
#toumien.footer-wrap .toggle-btn:hover,
#recruit.footer-wrap .toggle-btn:hover {
	background: #666;
}

.search-area.open .toggle-btn {
	background: #666;
}

.search-body {
	display: none;
	width: 100%;
	padding: 2.5% 2.5% 100px;
	margin-top: 15px;
	margin-bottom: 5px;
	position: relative;
	background-color: #FFF;
}

.search-area h3 {
	padding-top: 7px;
	width: 220px;
	float: left;
	font-size: 16px;
	font-weight: bold;
	color: #fd8400;
}

.search-area ul {
	width: calc(100% - 250px);
	float: right;
}

.search-area ul li {
	width: 48%;
	float: left;
}

.search-area ul li:nth-child(2n) {
	float: right;
}

.search-area ul li a {
	display: block;
	padding: 7px 5px 5px 15px;
	border-bottom: #ddd solid 1px;
	position: relative;
}

.search-area ul li a:before {
	display: block;
	position: absolute;
	left: 5px;
	top: 6px;
	font-family: 'FontAwesome';
	content: "\f105";
}

.close-btn {
	content: "";
	width: 140px;
	height: 37px;
	background-color: #000;
	position: absolute;
	left: 50%;
	bottom: 30px;
	color: #FFF;
	text-align: center;
	padding-top: 5px;
	margin-left: -70px;
	font-size: 16px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	transition-duration: 0.5s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
}

.close-btn:before {
	content: "×";
	display: inline-block;
	position: relative;
	top: 1px;
	left: -3px;
}

.close-btn:hover {
	background-color: #666;
}



#footer {
	width: 100%;
	/* border-top:#DDDDDD solid 1px; */
	position: relative;
}

#footer:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

#footer .inner {
	padding: 7px 0 5px;
}



#footer .logo {
	float: left;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	width: 125px;
	height: 44.5px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url(../images/common/logo@2x.png);
	background-size: 125px 44.5px;
	transition-duration: 0.3s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	position: relative;
	top: 5px;
}

.foot-add {
	padding: 20px 10px 10px 40px;
	float: left;
}

.foot-contact {
	display: block;
	position: relative;
	top: 0;
	float: right;
}

.foot-contact span {
	display: inline-block;
	margin-right: 15px;
	padding: 5px 7px 3px;
	border: #000000 solid 1px;
	background-color: rgba(0, 169, 157, .2);
	font-weight: bold;
	position: relative;
	top: -5px;
}

.foot-contact a {
	font-size: 32px;
	color: #3098F2;
	font-family: 'Abel', sans-serif;
}

.foot-contact a:before {
	content: "Tel";
	font-size: 24px;
	position: relative;
	margin-right: 10px;
}

.footer-nav {
	width: 100%;
	padding: 0 5%;
	padding-top: 20px;
	padding-bottom: 50px;
	/* border-top:#DDDDDD solid 1px; */
	border-bottom: #DDDDDD solid 1px;
	font-weight: 400;
}

.footer-nav:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.footer-nav dl {
	padding-top: 25px;

}

.footer-nav .col-md-4 {
	float: left;
}

.footer-nav dl a {
	display: block;
	padding: 3px 0 2px;
	position: relative;
}

.footer-nav dl a:before,
.sitemap-list dl a:before {
	display: inline-block;
	margin-right: 7px;
	font-family: 'FontAwesome';
	content: "\f105";
}

.footer-nav dl dt,
.sitemap-list dl dt {
	font-weight: bold;
	font-size: 14px;
}

.footer-nav dl dd,
.sitemap-list dl dd {
	font-size: 12px;
	font-family: "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 400;
}

.footer-nav dd a,
.sitemap-list dd a {
	color: #555;
}

.footer-nav dl dd:after,
.sitemap-list dl dd:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

.footer-nav dl dd ul,
.sitemap-list dl dd ul {
	padding-left: 14px;
}


.sitemap-list dl {
	width: 50%;
	float: left;
	margin-bottom: 30px;
}

.sitemap-list dl dt {
	margin-bottom: 10px;
}

.sitemap-list:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}


.copyright {
	font-family: 'Crimson Text';
	display: block;
	text-align: center;
	font-size: 14px;
	position: relative;
	top: 45px;
}

#mec.footer-wrap .copyright {
	top: 35px;
}

#recruit.footer-wrap .copyright {
	top: 35px;
}

.page-top {
	width: 100px;
	display: block;
	text-align: center;
	margin: 0 auto;
	padding-bottom: 30px;
	font-family: 'Crimson Text';
	font-style: italic;
	font-size: 20px;
	position: relative;
	top: 50px;
}

#mec.footer-wrap .page-top {
	padding-bottom: 20px;
}

#recruit.footer-wrap .page-top {
	padding-bottom: 20px;
}


/* 2022.2.4TOPページ改修につき追加
--------------------------------------------------------------------------------------------------------------------------------------------- */
/* ヘッダー */
.secondary-head {
	width: 100%;
	padding: 0 0 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header h1 {
	padding-left: 30px;
	padding-right: 30px;
}

.logo {
	width: 280px;
	height: 68px;
	background-size: contain;
}

.secondary-head .subnav li a.ico-recruit,
.secondary-head .subnav li a.ico-contact {
	top: 0;
}

.secondary-head .subnav {
	top: 0;
}

.secondary-head .subnav li.head-item a {
	margin-top: 10px;
	padding: 2px 18px 4px;
}

.secondary-head .subnav li.head-ClinicReception a {
	display: block;
	color: #3099F2;
	font-weight: bold;
	padding: 10px 40px 7px 39px;
	border: 1px solid #3098F2;
}

.secondary-head .subnav li.head-ClinicReception a:hover {
	color: #ffffff;
	background-color: #3098F2;
}

.secondary-head:after {
	content: none;
}

/* フッター */
/* .footer-wrap {
    border-top: 1px #ddd solid;
} */
#footer .logo {
	width: 200px;
	height: 40px;
	background-size: contain;
}

.search-area {
	background-color: #EDF7FF;
}

/* セカンド 見出し */
.page-title h1 {
	text-shadow: 0px 0px 10px rgb(255 255 255);
}