@charset "utf-8";

/* common
****************************************************/
*{ margin:0; padding:0; word-break:break-all; word-wrap:break-word; box-sizing:border-box; }
body{ font-size:19px; line-height:180%; color:#000; font-family:"游ゴシック体 Medium", "游ゴシック体", "YuGothic", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; }
img{ border:none; font-size:0; vertical-align:top; }
ul{ list-style-type:none; }
a{ text-decoration:none; color:#000; }
a:hover{ text-decoration:none; }
a:hover img{ opacity: 0.5; transition:all 0.3s ease; }
h1{ font-size:12px; font-weight:normal; }
address{ font-style:normal; }

/* margin
****************************************************/
.mt10, .mt10ul li{ margin-top:10px; }
.mt20, .mt20ul li{ margin-top:20px; }
.mt30, .mt30ul li{ margin-top:30px; }
.mt40{ margin-top:40px; }
.mt50{ margin-top:50px; }
.mt60{ margin-top:60px; }
.mt75{ margin-top:75px; }
.mt100{ margin-top:100px; }
.mt150{ margin-top:150px; }
.mt-50{ margin-top:-50px; }
.mb50{ margin-bottom: 50px; }
.mt1em{ margin-top: 1em; }
.mt2em{ margin-top: 2em; }
@media screen and (max-width: 599px) {
	.sp_mt10 { margin-top: 10px; }
	.sp_mt20 { margin-top: 20px; }
}

/* padding
****************************************************/
.pt30 { padding-top: 30px; }

/* text-align
****************************************************/
.tar{ text-align:right; }
.tac{ text-align:center; }
.tal{ text-align:left; }
.ti1{ text-indent:1em; }
.ti2{ text-indent:-1em; padding-left:1em; }
.ti3, .ti3ul li{ text-indent:-1.5em; padding-left:1.5em; }

/* color
****************************************************/
.col_red{ color:red; }
.col_white{ color:white; }
.col_bleck{ color:black; }
.col1, .col1ul li:before, .col1icon:before{ color: #1262B9; }
.bg1col{ background-color: #1262B9; }

/* icon
****************************************************/
.icon_1:before, .icon1ul li:before, .icon1dl dt:before{ content:"▶"; margin-right: .5em; }
.icon_2:before, .icon2ul li:before, .icon2dl dt:before{ content:"●"; margin-right: .5em; }
.icon_3:before, .icon3ul li:before, .icon3dl dt:before{ content:"■"; margin-right: .5em; }
.icon_4:before, .icon4ul li:before, .icon4dl dt:before{ content:"◆"; margin-right: .5em; }
.icon_5:before, .icon5ul li:before, .icon5dl dt:before{ content:"▲"; margin-right: .5em; }
.icon_6:before, .icon6ul li:before, .icon6dl dt:before{ content:"＞"; margin-right: .5em; }

/* font-size
****************************************************/
.fs_s{ font-size:small; }
.fs12{ font-size:12px; }
.fs14{ font-size:14px; }
.fs15{ font-size:15px; }
.fs16{ font-size:16px; }
.fs20{ font-size:20px; }
.fs24{ font-size:24px; }

/* border-radius
****************************************************/
.br05, .br05ul li{ border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; }
.br10, .br10ul li{ border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; }
.br15, .br15ul li{ border-radius:15px; -webkit-border-radius:15px; -moz-border-radius:15px; }
.br25, .br25ul li{ border-radius:25px; -webkit-border-radius:25px; -moz-border-radius:25px; }

/* list-style
****************************************************/
.ls_disc{ list-style:disc; margin-left:1em; }

/* flexBox
****************************************************/
.d-fb1{ display: flex; flex-wrap: wrap; }

.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.flex-wrap { flex-wrap: wrap; }
.flex1 { flex: 1; }
@media (width >= 600px) {
	.d-md-flex { display: flex; }
	.d-md-inline-flex { display: inline-flex; }
	.flex-md-row { flex-direction: row; }
	.flex-md-row-reverse { flex-direction: row-reverse; }
	.flex-md-column { flex-direction: column; }
	.flex-md-column-reverse { flex-direction: column-reverse; }
	.justify-content-md-start { justify-content: flex-start; }
	.justify-content-md-end { justify-content: flex-end; }
	.justify-content-md-center { justify-content: center; }
	.justify-content-md-between { justify-content: space-between; }
	.justify-content-md-around { justify-content:space-around; }
	.justify-content-md-evenly { justify-content: space-evenly; }
	.align-items-md-start { align-items: flex-start; }
	.align-items-md-end { align-items: flex-end; }
	.align-items-md-center { align-items: center; }
	.align-items-md-baseline { align-items: baseline; }
	.align-items-md-stretch { align-items: stretch; }
	.align-self-md-start { align-self: flex-start; }
	.align-self-md-end { align-self: flex-end; }
	.align-self-md-center { align-self: center; }
	.align-self-md-baseline { align-self: baseline; }
	.align-self-md-stretch { align-self: stretch; }
	.flex-md-grow-0 { flex-grow: 0; }
	.flex-md-shrink-0 { flex-shrink: 0; }
	.flex-md-grow-1 { flex-grow: 1; }
	.flex-md-shrink-1 { flex-shrink: 1; }
	.flex-md-nowrap { flex-wrap: nowrap; }
	.flex-md-wrap { flex-wrap:wrap; }
	.flex-md-wrap-reverse { flex-wrap: wrap-reverse; }
	.order-md-1 { order: 1; }
	.order-md-2 { order: 2; }
	.order-md-3 { order: 3; }
	.order-md-4 { order: 4; }
	.order-md-5 { order: 5; }
	.align-content-md-start { align-content: flex-start; }
	.align-content-md-end { align-content: flex-end; }
	.align-content-md-center { align-content: center; }
	.align-content-md-around { align-content: space-around; }
	.align-content-md-stretch { align-content: stretch; }
	.flex-md-item-half { width: 47%; }
	.flex-md-item-half_space80 { width: calc(100% / 2 - 40px); }
}

/* column
****************************************************/
.clm_com{ letter-spacing:-0.4em; }
.clm_com li{ display:inline-block; letter-spacing:normal; vertical-align:top; }
.oh_com{ overflow: hidden; }
.oh_com .fl{ float: left; }
.oh_com .fr{ float: right; }
.fb1{ display: flex; flex-wrap: wrap; justify-content: space-between; }

/* headline
****************************************************/
.hl1{ text-align: center; }
.hl1 span{ display: block; font-size: medium; color: #f00; }
.hl2{ border-left: 7px solid #1262B9; border-bottom: 1px dotted #1262B9; padding: .25em .5em; margin-bottom: 1em; }
.hl3{ background-color: #E0F4FF; padding: .25em .75em; }

/* content
****************************************************/
/* notice */
#notice{ height:185px; overflow:auto; }
#notice::-webkit-scrollbar {
	all:unset;
	width:6px;
	background:transparent;
}
#notice::-webkit-scrollbar-track {
	all:unset;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
	background: transparent;
}
#notice::-webkit-scrollbar-thumb {
	all:unset;
	background: #1262B9;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
	border-radius: 8px;
}
#notice::-webkit-scrollbar-thumb:hover {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	background: transparent;
}
#notice li{ margin-bottom:25px; margin-right: .5em; padding-bottom: .5em; border-bottom: 1px dotted #808080; }
/* index */
#index .sec1 .fr{ border: 1px solid #9F9F9F; }
#index .sec2{ background: url("images/top_back@2x.png") no-repeat top center #f4fbff; background-size: 1920px auto; }
#index .sec2 .w300{ padding: 19px; }
#index .sec2 .w300 h3{ text-align: center; border-bottom: 1px solid #fff; padding: 15px 0 5px; margin-bottom: 1em; }
#index .sec3{ background: url("images/shinryo_back@2x.png") no-repeat center center; background-size: cover; }
#index .sec3 .fr li a{ display: flex; align-items: center; justify-content: center; min-height: 75px; border: 1px solid #1262B9; color: #1262B9; background-color: #fff; text-align: center; }
#index .sec3 .fr li a:hover{ background-color: #E0F4FF; }
#index .sec4 h3, #medical .sec1 h3{ border: 1px solid #1262B9; color: #1262B9; padding: 10px 0 5px; text-align: center; }
#index .sec4 dt, #index .sec4 dd, #medical .sec1 dt, #medical .sec1 dd{ border-bottom: 2px solid #1262B9; text-align: center; padding: .5em; }
#index .sec4 dt, #medical .sec1 dt{ background-color: #E0F4FF; color: #1262B9; }
#index .sec4 dt:last-of-type, #index .sec4 dd:last-of-type, #medical .sec1 dt:last-of-type, #medical .sec1 dd:last-of-type{ border: none; }
#index .sec5{ background: url("images/goaisatsu_back@2x.png") no-repeat center center; background-size: cover; }
/* greeting */
#greeting .sec2 .w480{ border: 1px solid #1262B9; padding: 20px; }
#greeting .sec2 h3{ border-bottom: 1px solid #1262B9; margin-bottom: 1em; }
/* guide */
#guide .sec1 .fr li{ margin-bottom: 30px; }
#guide .sec1 .txt{ margin-top: 10px; background-color: #1262B9; color: #fff; display: inline-block; padding: .2em .5em; }
#guide .sec2 .fl{ background-color: #e0f4ff; }
/* access */
#access .sec1 h3{ border-bottom: 1px dotted #1262B9; color: #1262B9; text-align: center; padding-bottom: .5em; }
#access .sec2 dt{ color: #1262B9; }

/* symptom
****************************************************/
/* symptom */
#symptom li a, #symptom2 li a{ color: #000; }
#symptom li a:before{ color: #1262B9; content:"▶"; margin-right: .5em; }
#symptom li a:hover, #symptom li a:hover:before,
#symptom2 li a:hover, #symptom2 li a:hover:before{ color: #1262B9; }
/* symptom2 */
#symptom2 li a{ color:#000 }
#symptom2 li a:hover{ color:#1262B9 }
#symptom2 li a:before{ color: #000; content:"▶"; margin-right: .5em; }
#symptom2 dt{ font-weight: bold; }
#symptom2 dd{ margin-top:30px; }
#symptom2 ul{ border-top: 1px dotted #1262B9; }
/* symptom3 */
#symptom3 h4{ color: #1262B9; }
#symptom3 h4:before{ color: #1262B9; content:"▶"; margin-right: .5em; }
#symptom3 dt{ font-weight:bold; margin-top:1em; }
#symptom3 dt:before{ content:"【"; margin-right:5px; }
#symptom3 dt:after{ content:"】"; margin-left:5px; }

/* disease
****************************************************/
#disease li a{
	color:#000;
	display:block;
	font-size:20px;
	letter-spacing:.5em;
	text-align: center;
	border: 1px solid #bebebe;
}
#disease li a:hover{ text-decoration: none; border: 1px solid #85c1e5; background-color: #e7f3fa; }
#disease dt{ margin-top:30px; padding:5px 1em 5px; font-weight: bold; background-color: #e7f3fa; }
#disease dd{ padding-top:20px; }

/* about
****************************************************/
#about dt:before{ content:"▶ "; color: #1262B9; }
#about dd{ margin:15px 15px 50px; }

/* sitemap
****************************************************/
#sitemap li{ margin-top:15px; }
#sitemap .parent li:before{ content:"▶"; color: #1262B9; margin-right:.5em; }
#sitemap .child li:before{ content:"";  margin-right:0; }
#sitemap .child a{ text-decoration:underline; }
#sitemap .child a:hover{ text-decoration:none; }

/* footer
****************************************************/
footer .sec1{ background-color: #1262B9; color: #fff; }
footer .sec2{ background-color: #1262B9; font-size:14px; }
footer .sec2 a{ color: #fff; }
footer .sec2 li:before{ color: #fff; }
address{ background-color: #1262B9; font-size:12px; text-align:center; color: #fff; }

.footer-link__box { justify-content: space-between; }
@media (width >= 600px) {
	.footer-link__box { justify-content: flex-start; }
	.footer-link__box .item { width: calc(100% / 3 - 10px); margin-right: 15px; }
	.footer-link__box .item:nth-of-type(3n) { margin-right: 0; }
}

/* breadcrumbs
****************************************************/
.breadcrumbs ol{ list-style: none; overflow: hidden; font-size: 12px; }
.breadcrumbs li{ float: left; }
.breadcrumbs li::after{ content: '>'; display: inline-block; padding: 0 10px; }
.breadcrumbs li:last-child::after{ display: none; }

/* 404
****************************************************/
.error404{ text-align:center; color:red; padding:100px 0; }

/* pagetop
****************************************************/
.pagetop {
	display:none;
	position:fixed;
	bottom:0px;
	right:10px;
	line-height:0;
	z-index: 9999;
}
.pagetop a{
	display:block;
	padding:5px;
	background-color:#1262B9;
	text-align:center;
	color:#ffffff;
	text-decoration:none;
	margin-bottom:5px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	opacity:.5;
}
.pagetop a:hover, .pagetop a:hover img{ opacity:1.0; }

/* table
**************************************************/
.tbl1{ width:100%; border-collapse:collapse; }
.tbl1 th, .tbl1 td{ border:1px solid #707070; padding:10px; }
.tbl1 th{ background-color: #E0F4FF; }
.tbl2 { width: 100%; border-collapse: collapse; }
.tbl2 tr { padding: 40px 0; border-bottom: 1px solid #1262B9; }
.tbl2 tr th, .tbl2 tr td { width: 100%; }
@media screen and (min-width: 600px) {
	.tbl2 tr th { width: 200px; }
	.tbl2 tr td { width: calc(100% - 200px); }
}

/* button
**************************************************/
.button_blue{ display: flex; align-items: center; justify-content: center; min-height: 75px; border: 1px solid #1262B9; color: #1262B9; background-color: #fff; text-align: center; }
.button_blue:hover{ background-color: #E0F4FF; }
.button01 { display: inline-block; padding: 0.3em 1em; color: #FFF; font-size: 1em; background-color: #1262B9; border: 1px solid #1262B9; text-align: center; transition: 0.3s ease; }
@media (hover: hover) {
	.button01:hover { color: #1262B9; background-color: #FFF; }
}


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

	600px over

**************************************************/
@media only screen and (min-width:600px), print{

	/* common
	****************************************************/
	.wrap{ margin-left:auto; margin-right:auto; width:1000px; }
	.sp{ display:none!important; }

	/* width
	****************************************************/
	.w200{ width: 200px; }
	.w300{ width: 300px; }
	.w480{ width: 480px; }

	/* overflow:hidden;
	****************************************************/
	.oh, .oh_ul{ overflow:hidden; }
	.oh .fl, .oh_ul li{ float:left; }
	.oh .fr{ float:right; }
	.oh .cb{ clear:both; }

	/* column
	****************************************************/
	.clm{ letter-spacing:-0.4em; }
	.clm li{ display:inline-block; letter-spacing:normal; vertical-align:top; }
	.fb1pc{ display: flex; flex-wrap: wrap; justify-content: space-between; }

	/* header
	****************************************************/
	header{ background-color: #1262B9; color: #fff; padding-bottom: 25px; }
	header .line2 .fl{ margin-right: 20px; padding-top: 14px; }
	header .line2 .fl:first-child{ margin-right: 50px; }

	/* nav
	****************************************************/
	nav{ font-size:15px; line-height: 20px; width:100%; background-color: #fff; }
	nav ul{ overflow:hidden; text-align: center; background: url("images/nav1bg.png") no-repeat left center;  }
	nav li{ float:left; width: 170px; background: url("images/nav1bg.png") no-repeat right center; }
	nav li:first-child{ width: 150px; }
	nav ul a{ display:inline-block; text-align: center; padding: 25px 0; width: 100%; }
	nav ul a:hover, nav ul .on{ text-decoration:none; color: #1262B9; }
	.fixed{ position:fixed; top:0px; left:0px; z-index:9999; }
	.space{ margin-top:70px; }
	.none{ display:none; }

	/* page title
	****************************************************/
	.pp1ttl{ background:url("images/midashi@2x.png") no-repeat center top #f4fbff; background-size: 1190px 200px; text-align: center; padding:75px 0; }
	.pp1ttl h2{ color:#000; line-height:50px; }

	/* content
	****************************************************/
	/* common */
	.sec1sp{ padding:80px 0; }
	.sec2sp{ padding-top:80px; }
	.pp1sp{ padding: 60px 0 120px; }
	/* index */
	.mv{ background: url("images/pc_main.png") no-repeat center center; height: 487px; }
	/* index */
	#index .sec1 .fl{ width: 200px; padding-top: 75px; }
	#index .sec1 .fr{ width: 790px; background-color: #fff; padding: 1em; }
	#index .sec3 .fl{ width: 120px; margin-top: 50px; -ms-writing-mode: tb-rl; writing-mode: vertical-rl; color: #1262B9; font-size: 24px; line-height: 2.5; font-weight: bold; }
	#index .sec3 .fr{ width: 740px; margin-top: 30px; }
	#index .sec3 .fr li{ width: 220px; }
	#index .sec3 .fr li:nth-child(n+10){ width: 350px; }
	#index .sec4 dt, #medical .sec1 dt{ width: 400px; }
	#index .sec4 dd, #medical .sec1 dd{ width: 600px; }
	/* greeting */
	#greeting .sec1 .fl{ width: 650px; }
	/* medical */
	#medical .sec2{ margin-top: 100px; }
	/* guide */
	#guide .sec1 .fl{ width: 820px; }
	#guide .sec2{ margin-top: 100px; }
	#guide .sec2 .oh{ margin-top: 50px; }
	#guide .sec2 .fr{ width:638px; }
	#guide .sec2 h3{ font-size:20px; margin-top: .5em; }
	/* access */
	#access .sec1{ padding-left: 175px; padding-right: 175px; }

	/* symptom
	****************************************************/
	/* symptom */
	#symptom li{ width: 25%; margin-top: 1em; }
	/* symptom2 */
	#symptom2 dt, #symptom3 h3{ font-size:26px; }
	#symptom2 dt{}
	#symptom2 dd{ padding:10px 0; }
	#symptom2 ul{ margin-top:40px; padding:20px 0 40px 100px; letter-spacing:-0.4em; }
	#symptom2 li{ display:inline-block; letter-spacing:normal; vertical-align:top; min-width:31%; margin-left:1%; margin-top:20px; }
	/* symptom3 */
	#symptom3 h4{ font-size:20px; margin-top:50px; }
	#symptom3 dl{ padding: 0 1em; }
	#symptom3 .dis{ margin-top: 50px; }
	#symptom3 .des{ padding: 1em; }

	/* disease
	****************************************************/
	#disease ul{ margin-bottom: 35px; }
	#disease li{ margin:15px 100px 15px 0; }
	#disease li:nth-child(2n){ margin-right:0; }
	#disease li a{ width:450px; padding:40px 0; line-height:20px; }
	#disease dl{ padding-top: 30px; }

	/* sitemap
	****************************************************/
	#sitemap .wrap{ padding-left:100px; padding-right:100px; margin-top: -15px; }
	#sitemap .child{ margin-left:1.5em; overflow:hidden; }
	#sitemap .child li{ float:left; width:33%; }

	/* footer
	****************************************************/
	footer .sec1{ padding: 50px 0; }
	footer .sec1 .fl{ width: 483px; }
	footer .sec2{ text-align: center; padding-top: 1em; }
	footer .sec2 li{ margin: 0 5px; }
	footer .sec3{ padding: 50px 0 70px; }
	footer .sec3 li{ margin-top: 20px; }
	address{ padding-bottom: 5px; }

	/* breadcrumbs
	****************************************************/
	.breadcrumbs ol{ padding: 5px 0 0 0; }

	/* gmap
	****************************************************/
	.gmap{
		width:100%;
		position: relative;
		padding-bottom:360px;
		height: 0;
		overflow: hidden;
	}
	.gmap iframe, .gmap object, .gmap embed{
		position: absolute;
		top:0;
		left:0;
		width:100%;
		height:360px;
	}
}





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

	600px under

**************************************************/
@media only screen and (max-width:599px){

	/* common
	****************************************************/
	body{ font-size:16px; }
	.wrap{ padding: 15px; line-height:1.5em; }
	img{ max-width:100%; height:auto; }
	.pc{ display:none!important; }
	.sp_tac{ text-align:center; }

	/* overflow:hidden;
	****************************************************/
	.oh_clm2sp, .oh_clm3sp, .oh_sp{ overflow:hidden; }
	.oh_clm2sp li{ width: 48%; }
	.oh_clm3sp li{ width: 32%; margin-right: 2% !important; margin-top: 2% !important; }
	.oh_clm3sp li:nth-child(3n){ margin-right: 0 !important; }
	.oh_sp .fl, .oh_clm2sp li:nth-child(odd), .oh_clm3sp li{ float: left; }
	.oh_sp .fr, .oh_clm2sp li:nth-child(even), .oh_clm3sp li:nth-child(3n){ float: right; }

	/* header
	****************************************************/
	header .wrap{ padding:0; }

	/* headline
	****************************************************/
	.hl1{ text-align: center; font-size: 18px; padding: 1em 0; }

	/* nav
	****************************************************/
	html{ overflow-x: hidden; }
	.header-sp{ position:fixed; top:0px; left:0px; z-index:2; width:100%; }
	#headerSp{ width:100%; border-collapse:collapse; background-color: #1262B9; }
	#headerSp tr td:nth-of-type(1){ padding: 2% 2% 2% 2%; }
	#headerSp tr td:nth-of-type(2){ padding: 2% 2% 2% 2%; }
	#headerSp tr td:last-child{ width: 17%; background-color: #fff; padding: 15px 10px; }
	#js-menuBk{
	  display: none;
	  position: fixed;
	  z-index: 1;
	  top: 0;
	  left: 0;
	  background: rgba(0,0,0,0.6);
	}
	#js-openBtn{ text-align:center; }
	.menuClose img{ width: 30%; padding:15px 10px; background-color: #fff; display: inline-block; }
	#js-spNav{
		position: absolute;
		position:fixed;
		z-index: 999;
		top: 0;
		right: 0;
		width: 50%;
		background-color: #C1ECF8;
		transform: translateX(100%);
		transition: all .3s;
	}
	#js-spNav.isOpen{ transform: translateX(0); }
	/* nav */
	nav .wrap{ padding: 0; }
	nav ul li a{ display:block; border-bottom:1px solid #fff; padding:15px; color: #1262B9; }
	nav ul li a:hover{ text-decoration: none; }
	nav ul li a:before{ content: "＞"; color: #1262B9; margin-right: .5em; }
	nav .job{ background-color: #B93434; color: #FFF; text-align: center; padding: .5em; margin: 25px 10% 0; }
	nav .job a{ display: block; color: #fff; }

	/* page title
	****************************************************/
	.pp1ttl{ background: url("images/sp_midashi@2x.png") no-repeat top center; background-size:cover; text-align: center; padding: 40px; }

	/* content
	****************************************************/
	/* common */
	.pp1sp{ margin-bottom: 50px; }
	/* index */
	.mv{ background: url("images/sp_main.png") no-repeat center center; padding-top:66.5%; background-size:contain; }
	#index .sec1 .fr{ padding: 1em; }
	#index .sec2{ padding-bottom: 50px; }
	#index .sec2, #index .sec3{ background: url("images/sp_back@2x.png") no-repeat center top #f4fbff; background-size: contain; }
	#index .sec2 h2{ margin-bottom: -30px; }
	#index .sec3 .fr li{ width: 48%; }
	#index .sec3 .fr li:nth-child(n+10){ width: 100%; }
	#index .sec3 .fl{ color: #1262B9; text-align: center; }
	#index .sec4 .fr, #medical .sec1 .fr{ margin-top: 20px; }
	#index .sec4 dt, #medical .sec1 dt{ width: 40%; }
	#index .sec4 dd, #medical .sec1 dd{ width: 60%; text-align: left; }
	#index .sec5{ background: url("images/sp_goaisatsu_back@2x.png") no-repeat center center; background-size:cover; }
	#index .sec5 h3{ margin-top: 0; }
	#index .sec5 .tar{ text-align: left; }
	/* greeting */
	#greeting .sec1 .fl{ margin-top: 40px; }
	#greeting .sec2{ margin-top: -30px; }
	/* guide */
	#guide .sec1 .fr{ display: flex; justify-content: space-between; margin-top: 10px; }
	#guide .sec2{ margin-top: 50px; }
	#guide .sec2 .oh{ margin-top: 50px; }
	#guide .sec2 .fl{ text-align: center; margin-bottom: 1em; }

	/* symptom
	****************************************************/
	#symptom2 .wrap, #symptom3 .wrap{ padding:20px; }
	/* symptom */
	#symptom li{ margin-top:1em; }
	/* symptom2 */
	#symptom2 dd{ margin-top:1em; }
	#symptom2 ul{ margin-top:30px; padding-top:10px; }
	#symptom2 li{ margin-top:10px; }
	/* symptom3 */
	#symptom3 .dis{ margin-top:20px; }
	#symptom3 h4{ font-size:18px; margin-top:50px; }
	#symptom3 .des, #symptom3 dl, #symptom3 .back{ margin-top:10px; }

	/* disease
	****************************************************/
	#disease ul{ margin-top:30px; }
	#disease li{ margin-top:20px; }
	#disease li:first-child{ margin-top:0; }
	#disease li a{ padding:15px; }

	/* footer
	****************************************************/
	footer .sec1 .fr{ margin-top: 15px; }
	footer .sec1 .fr .mt40{ margin-top: 15px; }
	footer .sec2{ padding: 15px; }
	footer .sec3 li{ width: 48%; margin: 10px 0; }
	address{ font-size: 10px; }

	/* breadcrumbs
	****************************************************/
	.breadcrumbs ol{ font-size: 10px; }

	/* table
	****************************************************/
    .tbl1{ border-bottom:1px solid #707070; }
    .tbl1 th, .tbl1 td{ display:block; border-bottom:none; width: 100%; }

	/* gmap
	****************************************************/
	.gmap{
		position: relative;
		padding-bottom: 79%;
		padding-top:30px;
		height: 0;
		overflow: hidden;
	}
	.gmap iframe, .gmap object, .gmap embed{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	/* footerSp
	****************************************************/
	#footerSp{ width:100%; border-collapse:collapse; position:fixed; z-index:998; bottom:0px; left:0px; }
	#footerSp tr td:nth-of-type(1){ width: 50%; background-color:#1262B9; border-right: 1px solid #fff; }
	#footerSp tr td:nth-of-type(2){ width: 50%; background-color:#1262B9; border-left: 1px solid #fff; }
	#footerSp a{ display: block; text-align:center; padding: 10px 30px; }
}