@charset "UTF-8";
/* common ---------------------------------------*/
body {
	font-family: "Zen Old Mincho", serif;
	color: #000;
}

.index-title { 
	text-align: center;
}

.index-title span { 
	display: block;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0;
	color: #999999;
}

.index-title b { 
	display: block;
	font-size: 40px;
	font-weight: 700;
}

.index-title small { 
	display: block;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	line-height: 1.464;
	letter-spacing: 0.04em;
}

/* indexheader ---------------------------------------*/
header.indexheader {
	background: #000;
}

.header-inner.indexheader-inner {
	height: 80px;
	border-bottom: unset;
}

.header-logo.indexheader-logo {
	width: 245px;
	left: 40px;
}

.gnav.indexgnav {
	align-items: unset;
	gap: unset;
	right: 40px;
	top: 0;
	transform: unset;
}

.gnav-list.indexgnav-list {
	gap: 28px;
	height: fit-content;
    margin-top: 28px;
}

.gnav-list.indexgnav-list > li,
.gnav-list.indexgnav-list > li > a {
	font-size: 14px;
	color: #fff;
	padding-right: unset;
}

.gnav-list.indexgnav-list .gnav-sublist {
	padding: 18px 14px;
	color: #000;
	border-radius: 8px;
}

.gnav-list.indexgnav-list .gnav-sublist > li,
.gnav-list.indexgnav-list .gnav-sublist > li > a {font-size: 15px;}

.gnav-list.indexgnav-list .gnav-sublist > li > a {
	letter-spacing: 0.04em;
	padding-left: 28px;
}

.gnav-list.indexgnav-list .gnav-sublist > li > a:before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
	width: 24px;
	height: 24px;
	-webkit-mask-image: url('../img/common/icon_arrow_right.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_arrow_right.svg');
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: 0 0;
	background: #000;
	content: '';
}

.gnav-list.indexgnav-list .gnav-sublist > li + li {
    margin-top: 14px;
}


/* indexbtn ---------------------------------------*/
.indexbtn {
	display: inline-block;
	max-width: 400px;
	width: 100%;
	height: 80px;
	padding: 0 16px;
	font-size: 20px;
	line-height: 80px;
	text-align: center;
	color: #ffffff;
	background: #000;
	border-radius: 80px;
	filter: drop-shadow(0 0 10px rgba(85, 85, 85, 0.2));
}

.indexbtn:hover {
	opacity: 1;
	color: #000;
	background: #fff;
}

.indexbtn .icon-arrow-deco { 
	position: absolute;
	top: 50%;
	right: 26px;
	transform: translateY(-50%);
	width: 30px;
    height: 30px;
	background: #fff;
	transition: all .25s ease;
}

.indexbtn:hover .icon-arrow-deco {background: #000;}


/* indexkv ---------------------------------------*/
.indexkv {
	padding: 240px 20px 80px;
	background: #F2F2F2;
}

.indexkv-image {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
}

.indexkv-image img {

}


/* indexinformation ---------------------------------------*/
.indexinformation {
	padding: 84px 20px 80px;
	background: #F2F2F2;
}

.indexinformation-list { 
	display: flex;
	gap: 20px calc(20 / 1040 * 100%);
	flex-wrap: wrap;
	margin: 40px auto 0;
}

.indexinformation-list > li  { 
	width: calc(510 / 1040 * 100%);
}

.indexinformation-list > li.is-1col  { 
	width: 100%;
}

.indexinformation-list > li a { 
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(85, 85, 85, 0.2);
	overflow: hidden;
	transition: all .4s ease;
}

.indexinformation-list-image { 
	width: calc(120 / 510 * 100%);
	height: 100%;
}

.indexinformation-list > li.is-1col .indexinformation-list-image { 
	width: calc(290 / 1040 * 100%);
}

.indexinformation-list-image img { 
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indexinformation-list-summary { 
	display: flex;
    justify-content: center;
    flex-direction: column;
	flex: 1;
	position: relative;
	height: 100%;
}

.indexinformation-list-title { 
	padding: 24px 10px 0;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	transition: all .4s ease;
}

.indexinformation-list-text { 
	padding: 0 10px 30px;
	font-size: 15px;
	text-align: center;
	transition: all .4s ease;
}

.indexinformation-list-deco { 
	position: absolute;
	bottom: 0;
	right: 0;
	background: #000;
	width: 28px;
	height: 28px;
	border-radius: 8px 0 8px 0;
	transition: all .4s ease;
}

.indexinformation-list-deco .icon-arrow-deco { 
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	background: #fff;
	transition: all .4s ease;
}

.indexinformation-list > li a:hover { 
	opacity: 1;
	background: #000;
}

.indexinformation-list > li a:hover .indexinformation-list-text,
.indexinformation-list > li a:hover .indexinformation-list-title { color: #fff;}


/* indexnews ---------------------------------------*/
.indexnews { 
	padding: 80px 20px 120px;
	background: #F2F2F2;
}

.indexnews-list { 
	margin-top: 40px;
	border-top: 1px solid #CCCCCC;
}

.indexnews-list > li { 
	display: flex;
	gap: 22px;
	border-bottom: 1px solid #CCCCCC;
	padding: 34px 0 30px;
}

.indexnews-list > li time { 
	flex-shrink: 0;
	width: 96px;
	font-size: 16px;
}

.indexnews-list-title { 
	flex: 1;
	font-size: 16px;
	overflow-wrap: break-word;
	overflow-wrap: anywhere;
}

.indexmiddleimage {
	width: 100%;
}

.indexmiddleimage img {
	width: 100%;
}

/* indexabout ---------------------------------------*/
.indexabout { 
	padding: 122px 20px 80px;
}

.indexabout-lead { 
	font-size: 32px;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.04em;
	text-align: center;
	margin: 32px auto 20px;
}

.indexabout-list {
	margin-top: 42px;
}

.indexabout-list > li { 
	display: flex; 
	align-items: flex-start;
	border-left: 2px solid #CCCCCC;
}

.indexabout-list > li + li { 
	margin-top: 46px;
}

.indexabout-list-num { 
	font-size: 70px;
	line-height: 1;
	text-align: center;
	letter-spacing: 0;
	color: #CCCCCC;
	width: 146px;
	opacity: 0.6;
}

.indexabout-list-summary { 
	flex: 1;
}

.indexabout-list-title { 
	font-size: 24px;
	font-weight: 500;
	line-height: 1.44;
	letter-spacing: 0.04em;
	margin-bottom: 16px;
}

.indexabout-list-text { 
	font-size: 18px;
	letter-spacing: 0.04em;
}

/* indexdirectorintroduction ---------------------------------------*/
.indexdirectorintroduction { 
	padding: 82px 20px 80px;
}

.indexdirectorintroduction-block { 
	display: flex;
	gap: calc(40 / 1040 * 100%);
	margin: 46px auto 48px;
}

.indexdirectorintroduction-image { 
	width: calc(480 / 1040 * 100%);
	order: 2;
}

.indexdirectorintroduction-image img { 

}

.indexdirectorintroduction-summary { 
	flex: 1;
	order: 1;
}

.indexdirectorintroduction-text { 
	font-size: 16px;
	margin-bottom: 24px;
}

.indexdirectorintroduction-title { 
	font-size: 20px;
	line-height: 1.44;
	text-align: right;
}

.indexdirectorintroduction-title span { 
	font-size: 14px;
	margin-right: 10px;
}

.indexdirectorintroduction-info { 
	display: flex;
	gap: calc(80 / 1040 * 100%);
}

.indexdirectorintroduction-info-block { 
	position: relative;
	width: calc(480 / 1040 * 100%);
}

.indexdirectorintroduction-info-block + .indexdirectorintroduction-info-block::before{ 
	position: absolute;
	top: 0;
	left: calc(-40 / 480 * 100%);
	z-index: 1;
	width: 1px;
	height: 100%;
	background: #CCCCCC;
	content: '';
}

.indexdirectorintroduction-info-title { 
	font-size: 18px;
	font-weight: 500;
	line-height: 1.44;
	margin-bottom: 8px;
}

.indexdirectorintroduction-info-list { 
    margin-left: 4px;
}

.indexdirectorintroduction-info-list > li { 
	position: relative;
	font-size: 14px;
	padding-left: 18px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	width: 100%;
}

.indexdirectorintroduction-info-list > li > span {
	width: 132px;
}

.indexdirectorintroduction-info-list-sub {
	max-width: calc(100% - 140px);
}

.indexdirectorintroduction-info-list > li::before { 
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	content: '・';
}

.indexdirectorintroduction-info-list + .indexdirectorintroduction-info-title { 
	margin-top: 20px;
}

.indexdirectorintroduction-info-link {
	font-size: 16px;
}


/* indexdoctorintroduction ---------------------------------------*/
.indexdoctorintroduction { 
	padding: 80px 20px;
}

.indexdoctorintroduction-block { 
	display: flex;
	gap: calc(40 / 1040 * 100%);
	margin-top: 46px;
}

.indexdoctorintroduction-image { 
	width: calc(480 / 1040 * 100%);

}

.indexdoctorintroduction-image img { 

}

.indexdoctorintroduction-summary { 
	margin-top: 36px;
	flex: 1;
}

.indexdoctorintroduction-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	flex-wrap: wrap;
}

.indexdoctorintroduction-nameblock {
	flex: 1;
}

.indexdoctorintroduction-title { 
	font-size: 24px;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
}

.indexdoctorintroduction-title span { 
	font-size: 18px;
	padding-right: 10px
}

.indexdoctorintroduction-text { 
	font-size: 18px;
	line-height: 2;
	margin-bottom: 28px;
}

.indexdoctorintroduction-detail { 

}

.indexdoctorintroduction-detail > li { 

}

.indexdoctorintroduction-detail > li + li {
	margin-top: 14px;
}

.indexdoctorintroduction-detail-title { 
	position: relative;
	z-index: 1;
	margin-bottom: 4px;
}

.indexdoctorintroduction-detail-title::after { 
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
	width: 100%;
	height: 1px;
	background: #CCCCCC;
	content: '';
}

.indexdoctorintroduction-detail-title span { 
	font-size: 18px;
	line-height: 2;
	background: #fff;
	padding-right: 20px;
	margin-bottom: 10px;
}

.indexdoctorintroduction-detail-list { 

}

.indexdoctorintroduction-detail-list > li { 
	position: relative;
	font-size: 14px;
	padding-left: 22px;
}

.indexdoctorintroduction-detail-list > li::before { 
	position: absolute;
	top: 0;
	left: 4px;
	font-size: 15px;
	content: '・';
}


/* indexsymptoms ---------------------------------------*/
.indexsymptoms { 
	padding: 80px 20px 120px;
}

.indexsymptoms-list { 
	margin-top: 36px;
}

.indexsymptoms-list > li + li { 
	margin-top: 50px;
}

.indexsymptoms-list-title { 
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 20px;
}

.indexsymptoms-list-title::after {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
	width: 100%;
	height: 1px;
	background: #CCCCCC;
	content: '';
}

.indexsymptoms-list-title span { 
	font-size: 28px;
	background: #fff;
	padding: 0 20px;
}

.indexsymptoms-list-symptomslist { 
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px calc(20 / 1040 * 100%);
}

.indexsymptoms-list-symptomslist > li { 
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(1000 / 3 / 1040 * 100%);
	height: 72px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.444;
	text-align: center;
	letter-spacing: 0.04em;
	padding: 0 10px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 8px;
}

.indexsymptoms-btn { 
	margin-top: 40px;
	text-align: center;
}


/* indexaccess ---------------------------------------*/
.indexaccess { 
	padding: 124px 20px 120px;
	background: #F2F2F2;
}

.indexaccess-wrapper { 
	display: flex;
	gap: calc(40 / 1040 * 100%);
	margin-top: 40px;
}

.indexaccess-access { 
	flex: 1;
	margin-top: -6px;
}

.indexaccess-access-logo {
	max-width: 343px;
	width: 100%;
	margin-bottom: 16px;
}

.indexaccess-access-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.44;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

.indexaccess-access-list { 
	margin-bottom: 24px;
}

.indexaccess-access-list > li { 
	position: relative;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.44;
	letter-spacing: 0.04em;
	padding-left: 14px;
}

.indexaccess-access-list > li + li { 
	margin-top: 4px;
}

.indexaccess-access-list > li::before { 
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	content: '・';
}

.indexaccess-access-map { 
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 62.05%;
	margin-bottom: 24px;
}

.indexaccess-access-map iframe { 
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.indexaccess-btnlist {

}

.indexaccess-btnlist > li + li {
	margin-top: 20px;
}

.indexbtn.indexaccess-btn {
	max-width: unset;
	line-height: 1.44;
	letter-spacing: 0.04em;
	padding: 10px;
	height: 80px;
	background: #fff;
	color: #000;
}

.indexaccess-btn small {
	display: block;
	font-size: 16px;
	margin-bottom: 4px;
}

.indexbtn.indexaccess-btn .icon-tel,
.indexbtn.indexaccess-btn .icon-web {
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translateY(-50%);
	background: #000;
	transition: all .25s ease;
}

.indexbtn.indexaccess-btn .icon-line {
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translateY(-50%);
	transition: all .25s ease;
}

.indexbtn.indexaccess-btn .icon-tel {
	width: 32px;
	height: 32px;
}

.indexbtn.indexaccess-btn .icon-arrow-deco {
	background: #000;
}

.indexbtn.indexaccess-btn:hover {
	background: #000;
	color: #fff;
}

.indexbtn.indexaccess-btn:hover .icon-tel,
.indexbtn.indexaccess-btn:hover .icon-web,
.indexbtn.indexaccess-btn:hover .icon-arrow-deco {background: #fff;}

.indexbtn.indexaccess-btn .icon-arrow-deco { 
	right: 24px;
}

.indexaccess-info { 
	width: 552px;
}

.indexaccess-info-list { 

}

.indexaccess-info-list > li { 

}

.indexaccess-info-list > li + li { 
	margin-top: 30px;
}

.indexaccess-info-list-title { 
	position: relative;
	z-index: 1;
	margin-bottom: 16px;
}

.indexaccess-info-list-title span { 
	font-size: 18px;
	line-height: 1.444;
	background: #F2F2F2;
	padding-right: 20px;
}

.indexaccess-info-list-title::after { 
	position: absolute;
	top: 40%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
	width: 100%;
	height: 1px;
	background: #ccc;
	content: '';
}

.indexaccess-table { 
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #CCCCCC;
}

.indexaccess-table tr:not(:first-of-type) { border-top: 1px solid #CCCCCC;}
.indexaccess-table th:not(:first-of-type),
.indexaccess-table td:not(:first-of-type) {border-left: 1px solid #CCCCCC;}

.indexaccess-table th { 
	background: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.44;
	text-align: center;
	color: #fff;
	padding: 16px 16.8px;
}

.indexaccess-table td {
	position: relative;
	font-size: 18px;
	line-height: 1.44;
	text-align: center;
	padding: 17px 10px;
}

.indexaccess-table td span {
	display: block;
	font-size: 14px;
}

.indexaccess-table td::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #000;
	content: '';
}

.indexaccess-table td.indexaccess-table-close::after {
	width: 12px;
	height: 2px;
}

.indexaccess-table td.indexaccess-table-open::after {
	width: 14px;
	height: 14px;
	border-radius: 50%;
}

.indexaccess-table td.indexaccess-table-half::after {
	width: 16px;
	height: 14px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.indexaccess-table td.indexaccess-table-half::before {
	position: absolute;
	top: 24px;
	right: 6px;
	font-size: 10px;
	content: '※';
}

.indexaccess-info-caption { 
	margin-top: 20px;
}

.indexaccess-info-caption > li { 
	position: relative;
	font-size: 14px;
	padding-left: 18px;
}

.indexaccess-info-caption > li::before { 
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	content: '※';
}


/* indexfooter ---------------------------------------*/
.indexfooter { 

}

.indexfooter-image { 
	width: 100%;
}

.indexfooter-image img { 
	width: 100%;
}

.indexfooter-bottom {
	padding: 40px 20px;
	background: #000;
}

.indexfooter-copyright { 
	display: block;
	font-size: 12px;
	text-align: center;
	line-height: 1.25;
	color: #fff;
}


/* small pc */
@media screen and (min-width: 768px) and (max-width: 1100px){
	.header-logo.indexheader-logo {
		width: 156px;
		left: 20px;
	}

	.gnav.indexgnav {
		right: 20px;
	}

	.gnav-list.indexgnav-list {
		gap: 12px;
	}

	.gnav-list.indexgnav-list > li,
	.gnav-list.indexgnav-list > li > a {
		font-size: 12px;
	}
}


@media screen and (min-width: 768px) and (max-width: 920px){
	.indexaccess-info {
		width: 422px;
	}
	.indexaccess-table th {
		padding: 16px 10.8px;
	}
}


/* sp only */
@media screen and (max-width: 767px){
	/* common ---------------------------------------*/
	.index-title span { 
		font-size: 16px;
	}
	
	.index-title b { 
		font-size: 28px;
		margin-top: 2px;
	}
	
	.index-title small { 
		font-size: 18px;
	}

	/* indexheader ---------------------------------------*/
	.indexheader #openmenu {
		background: unset;
	}
	.indexheader #openmenu span {background: #fff;}
	.header-inner.indexheader-inner {
		height: 60px;
	}
	.header-logo.indexheader-logo {
		width: 171px;
		left: 20px;
	}
	.gnav.indexgnav {
		top: 0;
		right: 0;
		height: 100dvh!important;
		padding: 100px 20px 0;
		background: #13161C;
		transform: translate3d(100%, 0, 0);
	}
	.gnav-list.indexgnav-list {
		margin-top: unset;
	}

	.gnav-list.indexgnav-list > li,
	.gnav-list.indexgnav-list > li > a,
	.gnav-list.indexgnav-list .gnav-sublist > li > a {color: #fff;}
	.gnav-list.indexgnav-list > li,
	.gnav-list.indexgnav-list > li > a {font-size: 16px;}
	.gnav-list.indexgnav-list .gnav-sublist > li > a {font-size: 15px;}
	.gnav-list.indexgnav-list .gnav-sublist > li > a:before {background: #fff;}
	.gnav-list.indexgnav-list > li + li {margin-top: 32px;}
	.gnav-list.indexgnav-list .gnav-sublist { padding: 20px 6px 0;}
	.gnav-list.indexgnav-list .gnav-sublist > li + li {margin-top: 18px;}


	/* indexbtn ---------------------------------------*/
	.indexbtn {
		max-width: 335px;
		height: 72px;
		font-size: 18px;
		line-height: 72px;
	}

	.indexbtn .icon-arrow-deco { 
		right: 22px;
	}


	/* indexkv ---------------------------------------*/
	.indexkv {
		padding: 160px 20px 18px;
	}

	.indexkv-image {
		max-width: unset;
		width: 280px;
	}


	/* indexinformation ---------------------------------------*/
	.indexinformation {
		padding: 64px 20px 32px;
	}

	.indexinformation-list { 
		display: block;
		margin: 26px auto 0;
	}
	
	.indexinformation-list > li  { 
		width: 100%;
	}

	.indexinformation-list > li + li { 
		margin-top: 19px;
	}
	
	.indexinformation-list > li a { 
		display: block;
		border-radius: 8px;
	}
	
	.indexinformation-list > li a::after {
		border-radius: 4px;
	} 
	
	.indexinformation-list-image,
	.indexinformation-list > li.is-1col .indexinformation-list-image { 
		width: 100%;
	}
	
	.indexinformation-list-summary { 
		position: unset;
	}

	.indexinformation-list-title { 
		padding: 18px 10px 0;
		font-size: 20px;
	}
	
	.indexinformation-list-text { 
		line-height: 1.6;
		padding: 0 10px 52px;
		width: 100%;
	}
	
	.indexinformation-list-deco { 
		width: 32px;
		height: 32px;
		border-radius: 4px 0 4px 0;
	}
	
	.indexinformation-list-deco .icon-arrow-deco { 
		width: 18px;
		height: 18px;
	}


	/* indexnews ---------------------------------------*/
	.indexnews { 
		padding: 32px 20px 64px;
	}

	.indexnews-list { 
		width: 100%;
		margin-top: 28px;
	}

	.indexnews-list > li { 
		display: block;
		padding: 22px 0 19px;
	}

	.indexnews-list > li time { 
		display: block;
		line-height: 1.6;
		margin-bottom: 4px;
	}

	.indexnews-list-title { 
		line-height: 1.6;
	}


	/* indexabout ---------------------------------------*/
	.indexabout { 
		padding: 64px 20px;
	}

	.indexabout-lead { 
		font-size: 22px;
		line-height: 1.8;
		margin: 26px auto 20px;
	}

	.indexabout-list {
		margin-top: 32px;
	}
	
	.indexabout-list > li { 
		display: flex; 
		align-items: flex-start;
	}
	
	.indexabout-list > li + li { 
		margin-top: 28px;
	}
	
	.indexabout-list-num { 
		padding: unset;
		font-size: 56px;
		width: 94px;
	}
	
	.indexabout-list-title { 
		font-size: 20px;
		line-height: 1.44;
		margin-bottom: 10px;
	}

	.indexabout-list-text {
		font-size: 16px;
		line-height: 1.62;
	}


	/* indexdirectorintroduction ---------------------------------------*/
	.indexdirectorintroduction { 
		padding: 64px 20px;
	}

	.indexdirectorintroduction-block { 
		display: block;
		margin: 32px auto 20px;
	}
	
	.indexdirectorintroduction-image { 
		width: 100%;
		margin-bottom: 20px;
	}
	
	.indexdirectorintroduction-image img { 
		width: 100%;
	}
	
	.indexdirectorintroduction-text { 
		font-size: 16px;
		line-height: 1.625;
		margin-bottom: 12px;
	}
	
	.indexdirectorintroduction-title { 
		font-size: 20px;
	}
	
	.indexdirectorintroduction-title span { 
		font-size: 14px;
		margin-right: 10px;
	}
	
	.indexdirectorintroduction-info { 
		display: block;
	}
	
	.indexdirectorintroduction-info-block { 
		width: 100%;
	}
	
	.indexdirectorintroduction-info-block + .indexdirectorintroduction-info-block { 
		margin-top: 10px;
	}

	.indexdirectorintroduction-info-block + .indexdirectorintroduction-info-block::before { 
		display: none;
	}
	
	.indexdirectorintroduction-info-title { 
		font-size: 16px;
		line-height: 1.44;
		margin-bottom: 8px;
	}

	.indexdirectorintroduction-info-list > li { 
		line-height: 1.6;
	}

	.indexdirectorintroduction-info-list + .indexdirectorintroduction-info-title {
		margin-top: 20px;
	}


	/* indexdoctorintroduction ---------------------------------------*/
	.indexdoctorintroduction { 
		padding: 64px 20px;
	}

	.indexdoctorintroduction-block { 
		display: block;
		margin-top: 28px;
	}

	.indexdoctorintroduction-image { 
		width: 100%;
	}

	.indexdoctorintroduction-image img { 
		width: 100%;
	}

	.indexdoctorintroduction-summary { 
		margin-top: 20px;
		width: 100%;
	}

	.indexdoctorintroduction-title { 
		font-size: 20px;
		margin-bottom: 2px;
	}

	.indexdoctorintroduction-title span { 
		font-size: 16px;
	}

	.indexdoctorintroduction-text { 
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 12px;
	}

	.indexdoctorintroduction-detail > li + li {
		margin-top: 14px;
	}

	.indexdoctorintroduction-detail-title { 
		margin-bottom: 2px;
	}

	.indexdoctorintroduction-detail-title span { 
		font-size: 16px;
		padding-right: 20px;
		margin-bottom: 10px;
	}

	.indexdoctorintroduction-detail-list { 

	}

	.indexdoctorintroduction-detail-list > li { 
		padding-left: 22px;
		line-height: 1.6;
	}

	.indexdoctorintroduction-detail-list > li::before { 
		left: 4px;
	}


	/* indexsymptoms ---------------------------------------*/
	.indexsymptoms { 
		padding: 64px 20px;
	}

	.indexsymptoms-list { 
		margin-top: 24px;
	}

	.indexsymptoms-list > li + li { 
		margin-top: 30px;
	}

	.indexsymptoms-list-title { 
		margin-bottom: 6px;
	}

	.indexsymptoms-list-title span { 
		font-size: 20px;
		padding: 0 20px;
	}

	.indexsymptoms-list-symptomslist { 
		display: block;
	}

	.indexsymptoms-list-symptomslist > li { 
		width: 100%;
		height: 56px;
		font-size: 16px;
		line-height: 1.438;
	}

	.indexsymptoms-list-symptomslist > li + li{ 
		margin-top: 10px;
	}

	.indexsymptoms-btn { 
		margin-top: 20px;
	}


	/* indexaccess ---------------------------------------*/
	.indexaccess { 
		padding: 64px 20px;
	}

	.indexaccess-wrapper { 
		display: block;
		margin: 32px auto 0;
		max-width: 400px;
	}

	.indexaccess-access { 
		margin-top: 38px;
	}

	.indexaccess-access-logo {
		max-width: unset;
		width: 100%;
		margin-bottom: 16px;
	}

	.indexaccess-access-logo img {
		width: 100%;
	}
	
	.indexaccess-access-text {
		margin-bottom: 8px;
	}
	
	.indexaccess-access-list { 
		margin-bottom: 24px;
	}

	.indexaccess-access-list > li {
		padding-left: 20px;
	}

	.indexaccess-access-list > li::before {
		left: 4px;
	}
	
	.indexaccess-access-list > li + li { 
		margin-top: 4px;
	}
	
	.indexaccess-access-map { 
		padding-top: 82.99%;
		margin-bottom: 24px;
	}

	.indexaccess-btnlist {
	
	}
	
	.indexaccess-btnlist > li + li {
		margin-top: 20px;
	}
	
	.indexbtn.indexaccess-btn {
		padding: 10px;
		height: 72px;
	}
	
	.indexaccess-btn small {
		margin-bottom: 4px;
	}
	
	.indexbtn.indexaccess-btn .icon-tel,
	.indexbtn.indexaccess-btn .icon-web,
	.indexbtn.indexaccess-btn .icon-line {
		left: 20px;
	}

	.indexbtn.indexaccess-btn .icon-arrow-deco { 
		right: 20px;
	}
	
	.indexaccess-info { 
		width: unset;
		margin-top: 32px;
	}
	
	.indexaccess-info-list { 
	
	}
	
	.indexaccess-info-list > li { 
	
	}
	
	.indexaccess-info-list > li + li { 
		margin-top: 20px;
	}
	
	.indexaccess-info-list-title { 
		margin-bottom: 8px;
	}
	
	.indexaccess-info-list-title span { 
		padding-right: 20px;
	}
	
	.indexaccess-info-list-title::after { 
		top: 40%;
	}
	
	.indexaccess-table { 
		max-width: unset;
		margin: 0 auto;
		border-radius: 4px;
	}

	.indexaccess-table th,
	.indexaccessdetail-table-wrapper .indexaccess-table th { 
		font-size: 11px;
		padding: 8px 10px;
	}
	
	.indexaccess-table td,
	.indexaccessdetail-table-wrapper .indexaccess-table td {
		font-size: 12px;
		padding: 7px 2px;
	}
	
	.indexaccess-table td span,
	.indexaccessdetail-table-wrapper .indexaccess-table td span {
		font-size: 10px;
		margin-top: 2px;
	}

	.indexaccess-table td.indexaccess-table-close::after,
	.indexaccessdetail-table-wrapper .indexaccess-table td.indexaccess-table-close::after {
		width: 10px;
		height: 2px;
	}
	
	.indexaccess-table td.indexaccess-table-open::after,
	.indexaccessdetail-table-wrapper .indexaccess-table td.indexaccess-table-open::after {
		width: 10px;
		height: 10px;
	}

	.indexaccess-table td.indexaccess-table-half::after,
	.indexaccessdetail-table-wrapper .indexaccess-table td.indexaccess-table-half::after {
		width: 10px;
		height: 8px;
	}

	.indexaccesskv-info .indexaccess-table td.indexaccess-table-half::before,
	.indexaccess-table td.indexaccess-table-half::before {
		top: 14px;
		right: 2px;
		font-size: 8px;
	}
	
	.indexaccess-info-caption { 
		margin-top: 8px;
	}
	
	.indexaccess-info-caption > li { 
		line-height: 1.6;
		padding-left: 18px;
	}


	/* indexfooter ---------------------------------------*/
	.indexfooter-bottom {
		padding: 16px 20px;
	}

	.indexfooter-copyright {
		font-size: 10px;
	}

}




/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}