@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:#333; font-family: "丸フォーク R", "Maru Folk Regular", 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; }

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

/*===================================================================================
Grid Layout
===================================================================================*/
.d-grid { display: grid; }
.g-gap10px { gap: 10px; }
.g-gap20px { gap: 20px; }
.g-gap30px { gap: 30px; }
.g-clm-gap10px { column-gap: 10px; }
.g-clm-gap20px { column-gap: 20px; }
.g-clm-gap30px { column-gap: 30px; }
.g-row-gap10px { row-gap: 10px; }
.g-row-gap20px { row-gap: 20px; }
.g-row-gap30px { row-gap: 30px; }
@media screen and (min-width: 600px) {
  .pc_d-grid { display: grid; }
  .pc_gtc-2clm { grid-template-columns: repeat(2, 1fr); }
  .pc_gtc-3clm { grid-template-columns: repeat(3, 1fr); }
  .pc_gtc-4clm { grid-template-columns: repeat(4, 1fr); }
  .pc_g-gap10px { gap: 10px; }
  .pc_g-clm-gap10px { column-gap: 10px; }
  .pc_g-row-gap10px { row-gap: 10px; }
}
@media screen and (max-width: 599px) {
  .sp_d-grid { display: grid; }
  .sp_gtc-1clm { grid-template-columns: 1fr; }
  .sp_g-gap10px { gap: 10px; }
  .sp_g-clm-gap10px { column-gap: 10px; }
  .sp_g-row-gap10px { row-gap: 10px; }
}

/*===================================================================================
Flexbox
===================================================================================*/
.d-flex { display: flex; }
.d-il-flex { display: inline-flex; }
.fd-row { flex-direction: row; }
.fd-row-reverse { flex-direction: row-reverse; }
.fd-column { flex-direction: column; }
.fd-column-reverse { flex-direction: column-reverse; }
.fw-wrap { flex-wrap: wrap; }
.fw-nowrap { flex-wrap: nowrap; }
.jc-start { justify-content: flex-start; }
.jc-end { justify-content: flex-end; }
.jc-center { justify-content: center; }
.jc-between { justify-content: space-between; }
.jc-around { justify-content: space-around; }
.jc-evenly { justify-content: space-evenly; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }
.ai-center { align-items: center; }
.f-gap10px { gap: 10px; }
.f-gap20px { gap: 20px; }
.f-gap30px { gap: 30px; }
.f-clm-gap10px { column-gap: 10px; }
.f-clm-gap20px { column-gap: 20px; }
.f-clm-gap30px { column-gap: 30px; }
.f-row-gap10px { row-gap: 10px; }
.f-row-gap20px { row-gap: 20px; }
.f-row-gap30px { row-gap: 30px; }
@media screen and (min-width: 600px) {
  .pc_d-flex { display: flex; }
  .pc_fd-column { flex-direction: column; }
  .pc_fd-column-reverse { flex-direction: column-reverse; }
  .pc_fw-wrap { flex-wrap: wrap; }
  .pc_fw-nowrap { flex-wrap: nowrap; }
  .pc_jc-start { justify-content: flex-start; }
  .pc_jc-end { justify-content: flex-end; }
  .pc_jc-center { justify-content: center; }
  .pc_jc-between { justify-content: space-between; }
  .pc_jc-around { justify-content: space-around; }
  .pc_jc-evenly { justify-content: space-evenly; }
  .pc_ai-start { align-items: flex-start; }
  .pc_ai-end { align-items: flex-end; }
  .pc_ai-center { align-items: center; }
  .pc_f-clm-gap10px { column-gap: 10px; }
  .pc_f-row-gap10px { row-gap: 10px; }
  .pc_f-gap10px { gap: 10px; }
}
@media screen and (max-width: 599px) {
  .sp_d-flex { display: flex; }
  .sp_fd-column { flex-direction: column; }
  .sp_fd-column-reverse { flex-direction: column-reverse; }
  .sp_fw-wrap { flex-wrap: wrap; }
  .sp_fw-nowrap { flex-wrap: nowrap; }
  .sp_jc-start { justify-content: flex-start; }
  .sp_jc-end { justify-content: flex-end; }
  .sp_jc-center { justify-content: center; }
  .sp_jc-between { justify-content: space-between; }
  .sp_jc-around { justify-content: space-around; }
  .sp_jc-evenly { justify-content: space-evenly; }
  .sp_ai-start { align-items: flex-start; }
  .sp_ai-end { align-items: flex-end; }
  .sp_ai-center { align-items: center; }
  .sp_f-clm-gap10px { column-gap: 10px; }
  .sp_f-row-gap10px { row-gap: 10px; }
  .sp_f-gap10px { gap: 10px; }
}

/*===================================================================================
width
===================================================================================*/
.min-w100px { min-width: 100px; }
.max-w100px { max-width: 100px; }
.w100px { width: 100px; }
.w50per { width: 50%; }
@media screen and (min-width: 600px) {
  .pc_min-w100px { min-width: 100px; }
  .pc_max-w100px { max-width: 100px; }
  .pc_w100px { width: 100px; }
  .pc_w50per { width: 50%; }
}
@media screen and (max-width: 599px) {
  .sp_min-w100px { min-width: 100px; }
  .sp-max-w100px { max-width: 100px; }
  .sp_w100px { width: 100px; }
  .sp_w50per { width: 50%; }
  .sp_w100per { width: 100%; }
}

/* 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; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mt1em{ margin-top: 1em; }
.mt2em{ margin-top: 2em; }
.pa1em{ padding: 1em; }

/* text-align
****************************************************/
.tar{ text-align:right; }
.tac{ text-align:center; }
.tal{ text-align:left; }
.ti1{ text-indent:1em; }
.ti2, .ti2ul li{ 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:#0C594D; }
.col2, .col2ul li:before, .col2icon:before{ color:#B94949; }
.col3, .col3ul li:before, .col3icon:before{ color:#ADA53A; }
.col4, .col4ul li:before, .col4icon:before{ color:#ffffff; }

/* background
****************************************************/
/* color */
.bg1col{ background-color: #0C594D; }
.bg2col{ background-color: #DCEAE8; }

/* icon
****************************************************/
.icon1:before, .icon1ul li:before, .icon1dl dt:before{ content:"▶"; margin-right: .5em; }
.icon2:before, .icon2ul li:before, .icon2dl dt:before{ content:"●"; margin-right: .5em; }
.icon3:before, .icon3ul li:before, .icon3dl dt:before{ content:"■"; margin-right: .5em; }
.icon4:before, .icon4ul li:before, .icon4dl dt:before{ content:"◆"; margin-right: .5em; }
.icon5:before, .icon5ul li:before, .icon5dl dt:before{ content:"▲"; margin-right: .5em; }
.icon6:before, .icon6ul li:before, .icon6dl dt:before{ content:"＞"; margin-right: .5em; }

/* font-size
****************************************************/
.fs_s{ font-size:small; }
.fs_m{ font-size: medium; }
.fs12{ font-size:12px; }
.fs14{ font-size:14px; }
.fs15{ font-size:15px; }
.fs16{ font-size:16px; }
.fs20{ font-size:20px; }
.fs24{ font-size:24px; }
.fwb{ font-weight: bold; }
.fs-marufolk-M { font-family: "丸フォーク M", "Maru Folk Medium", serif; }

/* line-height
****************************************************/
.lh10 { line-height: 1; }
.lh12 { line-height: 1.2; }
.lh13 { line-height: 1.3; }
.lh14 { line-height: 1.4; }
.lh15 { line-height: 1.5; }
.lh16 { line-height: 1.6; }
.lh17 { line-height: 1.7; }
.lh18 { line-height: 1.8; }
.lh19 { line-height: 1.9; }
.lh20 { line-height: 2; }

/* 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; }
.br50{ border-radius:50px; -webkit-border-radius:50px; -moz-border-radius:50px; }

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

/* column
****************************************************/
.clm1, .clm2{ letter-spacing: -0.4em; }
.clm1 li, .clm2 .row{ display: inline-block; letter-spacing: normal; vertical-align: top; }
.ofh1, .ofh2{ overflow: hidden; }
.ofh1 .fl, .ofh2 li{ float: left; }
.ofh1 .fr{ float: right; }

/* border
****************************************************/
.bor1{ border-bottom: 5px solid #0C594D; }

/* header
****************************************************/

/* headline
****************************************************/
[class^="hl"]{ font-family: "丸フォーク M", "Maru Folk Medium", serif; }
.hl1{ color: #0C594D; text-align: center; }
.hl1 span{ border: solid #0C594D; border-width: 0 2px; min-width: 226px; display: inline-block; padding-left: 1em; padding-right: 1em; }
.hl1 img{ margin-bottom: 5px; }

/* page title
****************************************************/
.pp1ttl{ background-color: #FFFDD6; color: #0C594D; text-align: center; }

/* mv
****************************************************/
#mv .swiper-pagination-bullet-active { background: #0C594D; }

/* content
****************************************************/
/* notice */
#notice li{ margin-bottom: 1em; }
#notice li:last-child{ margin-bottom: 0; }
#notice li a{ display: block; }
#noticeList li{ border-bottom: 1px dotted #333; padding: 1.5em 0 .5em; }
/* index */
#index .sec1 .fr{ border: 1px solid #707070; }
#index .sec2{ background: url("images/top_tokucho_back.png") repeat-x top #fffdd6; }
#index .sec2 .row{ margin-top: 50px; }
#index .sec2 .img{ margin-bottom: 20px; }
#index .sec2 .txt{ border: solid #0C594D; border-width: 1px 0; color: #0C594D; }
#index .sec4 .band{ display: block; background-color: #0C594D; color: #fff; text-align: center; padding: .5em; }
#index .sec4 li a{ display: block; border: 1px solid #0C594D; background: url("images/index4no2.png") no-repeat right center #fff; padding: 1em; text-align: center; border-radius:15px; }
#index .sec4 li a:hover{ background-color: #FFFDD6; }
#index .sec5{ background: url("images/top_goaisatu_back.png") no-repeat bottom center; background-size: 100% auto; }
#index .sec5 .wrap{ background-color: #fff; border: 1px solid #0C594D; padding: 1em; margin-top: 50px; }
.name{ text-align: right; }
.name span{ font-size: 30px; }
/* greeting */
#greeting .sec2{ border: 1px solid #0C594D; padding: 25px; }
#greeting .sec2 h3{ border-bottom: 1px solid #0C594D; color: #0C594D; padding-left: 25px; }
#greeting .sec2 ul{ padding: 25px; }
/* medical */
#medical .sec1 h4{ border-bottom: 1px solid #0C594D; color: #0C594D; }
#medical .sec3 .box1{ border: 1px solid #0C594D; padding: 30px; }
#medical .sec3 h3{ border-bottom: 1px solid #0C594D; color: #0C594D; }
/* guide */
#guide .sec1 .ofh1pc{ border: 1px solid #0C594D; padding: 30px; }
#guide .sec1 h3{ border-bottom: 1px solid #0C594D; color: #0C594D; margin-bottom: 1em; }
#guide .sec2 .fl, #guide .sec2 .fr{ background-color: #fff; border: 1px solid #0C594D; padding: 30px 15px 0; margin-top: 50px; }
#guide .sec2 h3{ border-bottom: 1px solid #0C594D; color: #0C594D; text-align: center; }
/* access */
#access h3{ border-bottom: 1px solid #0C594D; color: #0C594D; margin-bottom: 1em; }
#access .fl, #access .fr{ background-color: #DCEAE8; padding: 30px 15px; text-align: center; margin-top: 50px; }

/* symptom
****************************************************/
#symptom h3, #symptom3 .sym{ background-color: #DCEAE8; text-align: center; padding: .25em 0; }
#symptom2 ul{ border-top: 1px solid #333333; margin-top: 50px; padding-top: 50px; }
#symptom3 h4{ border-bottom: 1px solid #0C594D; color: #0C594D; margin-top: 50px; margin-bottom: 1em; }
#symptom3 h4:before{ 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{ display: block; border: 1px solid #0C594D; background: url("images/index4no2.png") no-repeat right center #fff; padding: 1em; text-align: center; border-radius:15px; }
#disease li a:hover{ background-color: #FFFDD6; }
#disease dt{ margin-top:30px; padding:5px 1em 5px; font-weight: bold; background-color: #DCEAE8; }
#disease dd{ padding-top:20px; }

/* about
****************************************************/
#about dt:before{ content:"▶"; margin-right: .5em; color:#EA7931; }
#about dd{ margin: 1em 1.5em 50px; }

/* sitemap
****************************************************/
#sitemap li{ margin-bottom:2em; }
#sitemap .parent li:before{ content:"▶"; color:#EA7931; margin-right:.5em; }
#sitemap .child{ margin-top: 1em; }
#sitemap .child li{ margin-bottom: .5em; }
#sitemap .child li:before{ content:"";  margin-right:0; }
#sitemap .child a{ text-decoration:underline; }
#sitemap .child a:hover{ text-decoration:none; }

/* footer
****************************************************/
footer{ border-top: 5px solid #0C594D; }
footer .sec2 *{ color: #fff; }

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

/* breadcrumbs
****************************************************/
.breadcrumbs{ 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; }

/* pagetop
****************************************************/
.pagetop {
	display:none;
	position:fixed;
	bottom:0px;
	right:10px;
	line-height:0;
	z-index: 9999;
}
.pagetop a{
	display:block;
	padding:5px;
	background-color: #0C594D;
	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; }

/* link
****************************************************/
.lin1op:hover, .lin2op a:hover,
.lnk1btn:hover{ opacity: .6; }
.lnk1btn{ display: inline-block; background-color: #0C594D; color: #ffffff; text-align: center; padding: .3em 1em; }
.lnk2btn{ display: inline-block; background-color: #ffffff; color: #0C594D; text-align: center; padding: .5em; border: 1px solid #0C594D; }
.lnk2btn:hover{ color: #fff; background-color: #0C594D; }
.lnk2btn:after{ content: "＞"; margin-left: 1.5em; }





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

	600px over

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

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

	/* margin
	****************************************************/
	.ml2em{ margin-left: 2em; }

	/* overflow:hidden;
	****************************************************/
	.ofh1pc, .ofh2pc{ overflow:hidden; }
	.ofh1pc .fl, .ofh2pc li{ float:left; }
	.ofh1pc .fr{ float:right; }

	/* column
	****************************************************/
	.clm1pc{ letter-spacing:-0.4em; }
	.clm1pc li, .clm1pc .row{ display:inline-block; letter-spacing:normal; vertical-align:top; }

	/* width
	****************************************************/
	.w250{ width: 250px; }
	.w480{ width: 480px; }
	.w500{ width: 500px; }
	.w650{ width: 650px; }

	/* width
	****************************************************/
	.hl1{ font-size: 30px!important; }
	.hl2{ font-size: 24px; }
	.hl3, .hl4{ font-size: 22px; }

	/* header
	****************************************************/
	header .ofh1pc{ padding: 20px 0 25px; }
	header .fl{ padding-top: 5px; }
	header .tel{ margin-left: 60px; }

	/* nav
	****************************************************/
	.gnavi{ font-size:18px; line-height: 20px; width:100%; background-color: #0C594D; text-align: center; }
	.gnavi li{ width: 166px; background: url("images/nav1bg.png") no-repeat right center; padding-right: 1px; }
	.gnavi li:first-child{ width: 170px; padding-left: 1px; }
	.gnavi ul a{ display:block; color: #ffffff; padding: 20px 0; }
	.gnavi li:hover a{ background-color: #E7E7EF; color: #3A5DA1; }
	.gnavi .stay{ color: #F7EA17; }
	.fixed{ position:fixed; top:0px; left:0px; z-index:999; }
	.space{ margin-top:60px; }
	.none{ display:none; }

	/* page title
	****************************************************/
	.hl1{ font-size: 26px; }
	.pp1ttl{ font-size: 32px; line-height: 40px; padding: 55px 0; }

	/* content
	****************************************************/
	/* common */
	.spa1{ padding: 50px 0; }
	.spa2{ padding: 100px 0; }
	.spa3{ padding-top: 100px; }
	.spa4{ padding: 50px 0 100px; }
	/* index */
	.pcmv{ background: url("images/main_pc.png") no-repeat bottom center; height: 550px; margin-bottom: 40px; }
	/* index */
	#index .sec1 .fl{ text-align: center; }
	#index .sec1 .lnk1btn{ width: 160px; margin-top: 50px; }
	#index .sec1 .fr{ width: 660px; padding: 30px; }
	#index .sec2 .txt{ display: table-cell; height:130px; width: 300px; line-height: 30px; vertical-align: middle; }
	#index .sec2 .mr{ margin-right: 50px; }
	#index .sec3 .fr{ width: 323px; }
	#index .sec4 li{ width: 480px; }
	#index .sec4 li:nth-child(odd){ margin-right: 40px; }
	#index .sec4 li{ margin-top: 40px; }
	#index .sec5 .wrap{ padding: 50px; position: relative; }
/* 	#index .sec5 .wrap .ads1{ padding: 50px; position: absolute; top: -200px; right: -100px; } */
	#index .sec5 .wrap .ads1{ margin-left: 650px; position: absolute; top: -200px; right: -100px; }
	#index .sec6 li{ padding: 50px 25px; }
	/* greeting */
	#greeting .name{ margin-top: 100px; }
	#greeting .sec2 li{ padding-left:150px; overflow:hidden; }
	#greeting .sec2 li span{ display:block; float:left; width:150px; margin-left:-150px; }
	/* medical */
	#medical .sec1 .fr{ width: 700px; }
	#medical .sec1 .ofh1pc{ margin-top: 75px; }
	#medical .sec2 .fr{ width: 323px; }
	#medical .sec3 .box1 .fr{ width: 600px; }
	#medical .sec3 .w480{ height: 440px; }
	/* guide */
	#guide .sec2 .fl, #guide .sec2 .fr{ width: 300px; height: 580px; }
	#guide .sec2 .fl{ margin-right: 50px; }
	#guide .sec2 h3{ display: table-cell; height: 80px; vertical-align: middle; width: 270px; }
	/* access */
	#access{ padding-left:  112px; padding-right: 112px; }
	#access .fl, #access .fr{ width: 370px; }

	/* symptom
	****************************************************/
	#symptom li{ width: 25%; margin-top: 1em; }
	#symptom2 ul{ padding-left: 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; }

	/* disease
	****************************************************/
	#disease li{ width: 480px; margin-bottom: 40px; }
	#disease li:nth-child(odd){ margin-right: 40px; }
	#disease dl{ padding-top: 30px; }

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

	/* footer
	****************************************************/
	footer .sec1{ padding: 40px 0; }
	footer .sec1 .fl{ width: 363px; }
	footer .sec1 .fr{ width: 569px; }
	footer .sec2{ text-align: center; font-size: 16px; }
	footer .sec2 ul{ padding: 20px 0 30px; }
	footer .sec2 li{ min-width: calc(100% / 7); }

	/* breadcrumbs
	****************************************************/
	.breadcrumbs{ margin: 5px 0; float: right; }

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





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

	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; }
	.bg2img{ background-size:auto 40%; }
	.fs20{ font-size:17px; }

	/* width
	****************************************************/
	.w250{ width: 80%; }

	/* column
	****************************************************/
	.clm1sp, .clm2sp{ letter-spacing: -0.4em; }
	.clm1sp li, .clm2sp .row{ display: inline-block; letter-spacing: normal; vertical-align: top; }

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

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

	/* nav
	****************************************************/
	html{ overflow-x: hidden; }
	.header-sp{ position:fixed; top:0px; left:0px; z-index:99; width:100%; }
	#headerSp{ width:100%; border-collapse:collapse; background-color: #fff; }
	#headerSp tr td:nth-of-type(1){ padding: 2% 5%; text-align: left; }
	#headerSp tr td:last-child{ width: 20%; padding: 0; vertical-align: top; text-align: right; padding: 3%; }
	/* nav */
	.gnavi{
		background-color: #0C594D;
		background:rgba(12, 89, 77, 0.8);
		position: absolute;
		position: fixed;
		height: 150px;
		width: 100%;
		z-index: 9998;
	}
	.menubtn .close{ display: none; }
	.menubtn.active .open{ display: none; }
	.menubtn.active .close{ display: inline-block; }
	.gnavi .inner{ height:100%; overflow-y: scroll; -webkit-overflow-scrolling: touch; padding-bottom: 0; }
	.gnavi .wrap{ padding: 0; margin: 0; }
	.gnavi li{ width: 50%; }
	.gnavi a{ display:block; color: #fff; line-height: 20px; padding: 15px 0; text-align: center; background: url("images/sp_nav1bg.png") no-repeat right center; }

	/* page title
	****************************************************/
	.pp1ttl{ font-size: 24px; padding: .5em 0; }

	/* content
	****************************************************/
	/* common */
	.spa1, .spa2{ padding-top: 50px; padding-bottom: 50px; }
	.spa3, .spa4{ padding-top: 50px; padding-bottom: 100px; }
	.spa1sp{ margin-top: 50px; }
	/* index */
	#index .sec1 .fl p{ text-align: center; margin-top: 20px; }
	#index .sec1 .fr{ margin-top: 20px; padding: 1em; }
	#index .sec2 .tac{ padding: 0 2em; }
	#index .sec2 .txt{ padding: .5em 0; }
	#index .sec3 .fr, #index .sec3 .fl{ margin-top: 20px; }
	#index .sec4{ padding-top: 20px; }
	#index .sec4 .fr{ margin-top: 20px; }
	#index .sec4 li{ margin-top: 20px; }
	#index .sec5 .wrap{ position: relative; margin: 150px 20px 0; padding-top: 100px; }
	#index .sec5 .wrap .ads1{
		position: absolute;
		top: -100px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	#index .sec5{ background-size: auto 30%; }
	#index .sec6{ padding: 20px; }
	#index .sec6 li{ width: 46%; margin: 2%; }
	/* greeting */
	#greeting .sec1 .fr, #greeting .sec1 .name{ margin-top: 50px; }
	#greeting .sec2 span{ display: block; }
	/* guide */
	#guide .sec1 .w480{ margin-top: 20px; }
	#guide .sec2 .fl{ text-align: center; margin-bottom: 20px; }
	/* medical */
	#medical .sec1 .fs24{ font-size: 18px; }
	#medical .sec1 .ofh1pc{ margin-top: 50px; }
	#medical .sec1 .ofh1pc .fr{ margin-top: 20px; }
	#medical .sec2 .fr{ margin-top: 20px; }
	#medical .sec3 .box1 .fr{ margin-top: 20px; }
	/* guide */
	#guide .sec1 .w500{ margin-top: 20px; }
	#guide .sec2 h3{ margin-top: 20px; }
	#guide .sec2 .fl, #guide .sec2 .fr{ padding-bottom: 25px; }
	/* access */
	#access .lnk2btn{ min-width: 80%; }

	/* symptom
	****************************************************/
	#symptom ul{ margin-top: 20px; }

	/* footer
	****************************************************/
	footer .sec1{ padding-top: 15px; }
	footer .sec1 .fr{ margin-top: 30px; padding-bottom: 30px; }
	footer .sec2 ul{ padding-left: 10%; }
	footer .sec2 li{ padding: .5em 0; }
	address{ text-align: center; font-size: 12px; line-height: 150%; }

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

	/* gmap
	****************************************************/
	.gmap{
		position: relative;
		padding-bottom: 80%;
		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:9999; bottom:0px; left:0px; background-color: #0C594D; }
	#footerSp tr td:nth-of-type(1){ border-right: 1px solid #fff; }
	#footerSp tr td:last-child{ width: 50%; }
	#footerSp a{ display: block; text-align:center; padding: 10px 0; color: #fff; }
}