@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: "UD新ゴ R", "UD Shin Go Regular", "UD新ゴ M", "UD Shin Go Medium", sans-serif; }
img{ border:none; font-size:0; vertical-align:top; }
ul{ list-style-type:none; }
a{ text-decoration:none; color:#333; }
a:hover{ text-decoration:none; }
/*a:hover img{ opacity: 0.5; transition:all 0.3s ease; }*/
h1{ font-size: 14px; font-weight:normal; }
address{ font-style:normal; }

/* margin
****************************************************/
/* top */
.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; }
.mt1em{ margin-top: 1em; }
.mt2em{ margin-top: 2em; }
@media (width <= 599px) {
	.sp_mt10 { margin-top: 10px; }
}
/* right */
@media (width >= 600px) {
	.pc_mr10 { margin-right: 10px; }
	.pc_mr20 { margin-right: 20px; }
}
/* left */
@media screen and (min-width: 600px) {
	.pc_ml20 { margin-left: 20px; }
	.pc_ml30 { margin-left: 30px; }
	.pc_ml40 { margin-left: 40px; }
	.pc_ml50 { margin-left: 50px; }
}

/* padding
****************************************************/
/* right */
@media screen and (min-width: 600px) {
	.pc_pr30 { padding-right: 30px; }
}
/* bottom */
.pb30 { padding-bottom: 30px; }
@media screen and (min-width: 600px) {
	.pc_pb30 { padding-bottom: 30px; }
}

/* 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:#FF96AB; }
.col2, .col2ul li:before, .col2icon:before{ color:#37C8DB; }

/* background
****************************************************/
/* color */
.bg1col{ background-color: #FFD8D3; }
.bg2col{ background-color: #FAA8B9; }
.bg3col{ background-color: #FFFDE5; }

/* 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; }
.fs12{ font-size:12px; }
.fs14{ font-size:14px; }
.fs15{ font-size:15px; }
.fs16{ font-size:16px; }
.fs20{ font-size:20px; }
.fs24{ font-size:24px; }
.fs26{ font-size:26px; font-weight: bold; }
.fs15em { font-size: 1.5em; }

/* line-height
****************************************************/
.lh140per { line-height: 140%; }

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

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

.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.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
****************************************************/
.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; }

/* headline
****************************************************/
h1, h2, h3, h4{ font-family: "UD新ゴ R", "UD Shin Go Regular", "UD新ゴ M", "UD Shin Go Medium", sans-serif; }
.hl1, .hl2{ text-align: center; }
.hl1 span{ color: #333; display: block; background-color: #fff; }
.hl1 span:first-child, .hl2 span:first-child{ width: 300px; font-size: 28px; padding: .5em 0; }
.hl1 span:last-child, .hl2 span:last-child{ width: 120px; font-size: 14px; }
.hl2 span{ color: #fff; display: block; background-color: #37C8DB; }
.hl3{ border: solid #37C8DB; border-width: 0 0 2px 5px; padding-left: 15px; }
.hl4{ background-color: #37C8DB; color: #fff; padding: 10px; }
.hl5{ border-bottom: 2px solid #FF96AB; padding-bottom: 10px; }
.hl6 span{ background-color: #37C8DB; display: inline-block; color: #fff; padding: 10px; }
.hl7{ background-color: #37C8DB; color: #fff; padding: 10px; text-align: center; }

/* link
****************************************************/
.lnk1:hover{ opacity: .8; }
.lnk1btn{ display: inline-block; border: 1px solid #333; color: #333; font-size: 16px; line-height: 20px; padding: 10px 0; text-align: center; background-color: #fff; }
.lnk1btn:hover{ background-color: #E3FCFF; }
.lnk2btn{ display: inline-block; border: 2px solid #37C8DB; color: #37C8DB; font-size: 16px; line-height: 20px; padding: 10px 15px; text-align: center; background-color: #fff; }
.lnk2btn:hover{ background-color: #37C8DB; color: #fff; }

/* title
****************************************************/
.pp1ttl{ background:url("images/pt1bg.png") repeat-y center top; background-size: 100% auto; color: #fff; }

/* content
****************************************************/
/* notice */
#notice{ height:200px; 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: #FF96AB;
	-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{ padding: .5em 0; margin-right: 30px;  border-bottom: 1px dotted #707070; }
/* index */
#index .sec2 .w300{ border: 3px solid #FF96AB; background-color: #fff; position: relative; padding: 1em; }
#index .sec2 .icon{
	position: absolute;
	top: -35px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.notice_list{ margin-bottom: 50px; }
.notice_list li{ border-bottom: 1px dotted #707070; }
.notice_list a{ display: block; padding: 20px 0 10px; }
.accordion dd{ display:none; }
.accordion dt{
    cursor:pointer;
	background-color: #FFFDE5;
    border-bottom:1px dotted #cccccc;
	padding: 10px 20px;
    }
.accordion dd{ padding: 20px; }
.accordion dt:before{ content: url(images/index3no3.png); margin-right: 20px; }
.accordion dt.active:before{ content: url(images/index3no4.png); }
#index .sec4 .name{ font-size: 28px; margin-top: 100px; }
#index .sec4 .name span{ font-size: 20px; margin-right: 1em; }
/* greeting */
#greeting .sec1 .name{ font-size: 28px; }
#greeting .sec1 .name span{ font-size: 20px; margin-right: 1em; }
/* access */
#access .sec3 figcaption{ margin-top: 20px; }
#access .sec3 figcaption img{ margin-right: 10px; }

/* width
****************************************************/
.w180{ width: 180px; }

/* common custom
****************************************************/
.box1com{
	border: 2px solid #FF96AB;
	background-color: #FFFDE5;
	padding: 40px;
	margin-top: 40px;
	justify-content: space-between;
	align-items: center;
}
.round{
	background-color: #FF96AB;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	line-height: 160px;
}
.square span{
	display: inline-block;
	background-color: #FF96AB;
	width: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
	line-height: 40px;
	margin-right: 1em;
}

/* symptom
****************************************************/
/* symptom */
#symptom li a{ display: block; }
#symptom li a:before{ content: '＞'; margin-right: .5em; color: #37C8DB; }
#symptom li a:hover{ color: #37C8DB; }
#symptom li a, #symptom2 li a{ color: #000; }
/* symptom2 */
#symptom2 li a:before{ content:"＞"; margin-right: .5em; color: #37C8DB; }
#symptom2 li a:hover{ color: #37C8DB; }
#symptom2 li a{ color:#333 }
#symptom2 li a:hover{ color: #37C8DB }
#symptom2 ul{ border-top: 1px solid #333; }
/* symptom3 */
#symptom3 .outline h4{ color: #fff; background-color: #37C8DB; padding: 10px; }
#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{ background-color: #FFDBD5; padding: 8px; width: 300px; }
#disease li a{
	color:#333;
	display:block;
	font-size:20px;
	letter-spacing:.5em;
	text-align: center;
	border: 2px solid #fff;
}
#disease dt{ background-color: #37C8DB; color: #fff; padding: 5px 10px; }
#disease dd{ padding-top: 1em; }
/* table
****************************************************/
.offer__table { border: 1px solid #FF96AB; border-collapse: collapse; width: 100%; margin-top: 35px; font-size: 95%; }
.offer__table .cel1 { background: #FF96AB; border: 1px solid #FF96AB; }
.offer__table .cel2 { color: #fff; padding: 3px 10px; border: 1px solid #FF96AB; }
.offer__table .cel3 { padding: 15px 27px 20px; border: 1px solid #FF96AB; }

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

/* sitemap
****************************************************/
#sitemap .parent{ margin-top: -30px; }
#sitemap .parent li{ margin-top: 30px; }
#sitemap .child li{ margin-top: 15px; }
#sitemap .parent li:before{ content:"●"; color: #37C8DB; 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{ padding: 40px 0; }
footer .sec2{ padding-top: 15px; }
address{ padding: 1em 0; text-align: center; }

/* 404
****************************************************/
.error404{ text-align:center; color:red; padding:100px 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; }

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





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

	600px over

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

	/* common
	****************************************************/
	.wrap{ margin-left:auto; margin-right:auto; width:1000px; }
	.sp{ display:none!important; }
	.logo1var, .logo2var{ background-image: url("images/back@2x.png"); background-repeat: no-repeat; background-size: 1920px 1148px; }
	.logo1var{ background-position: top center; }
	.logo2var{ background-position: top 100px center; min-height: 1200px; }

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

	/* flexBox
	****************************************************/
	.fb1pc, .fb2pc{ display: flex; flex-wrap: wrap; }
	.fb2pc{ justify-content: space-between; }

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

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

	/* width
	****************************************************/
	.w300{ width: 300px; }
	.w480{ width: 480px; }
	.w650{ width: 650px; }
	.w700{ width: 700px; }
	.w50per { width: 50%; }
	.w50p_list li{ width: 50%; }

	/* main
	****************************************************/
	.mv{ background: url("images/pc_main.png") no-repeat center #FFFDE5; height: 500px; }

	/* header
	****************************************************/
	header{ position: relative; height: 160px; margin-bottom: 10px; }
	header [class^="ads"]{ position: absolute; }
	header .ads1{ left: 350px; top: 0; font-size: 14px; }
	header .ads2{ left: 0; top: 50px; }
	header .ads3{ right: 0; top: 50px; }
	header .ads4{ right: 367px; top: 105px; }
	header .ads5{ right: 0; top: 105px; }

	/* nav
	****************************************************/
	.gNav{ line-height: 20px; width: 100%; padding: 10px 0; background-color: #fff; background-color: #FFFDE5; }
	.gNav ul{ overflow:hidden; text-align: center; }
	.gNav li{ float:left; width: 170px; }
	.gNav li:first-child{ width: 150px; }
	.gNav ul a{ display:block; color: #333; padding: 15px 0; font-size: 16px; border-radius: 10px; }
	.gNav ul a:hover, .gNav ul .stay{ background-color: #FFFABC; color: #333; }
	.fixed{ position:fixed; top:0px; left:0px; z-index:9999; }
	.space{ margin-top: 70px; }
	.none{ display:none; }

	/* title
	****************************************************/
	.pp1ttl{ line-height: 30px; padding-top: 75px; text-align: center; height: 180px; }

	/* content
	****************************************************/
	/* common */
	.spa1{ padding-top: 100px; }
	.spa2{ padding: 60px 0 100px; }
	.spa3{ padding: 100px 0; }
	/* index */
	#index .sec1{ background: url("images/index1bg.png") no-repeat top center; height: 380px; padding-top: 73px; }
	#index .sec1 .fr{ padding-top: 15px; }
	#notice li{ padding: 1em 0; }
	#index .sec2{ background: url("images/index2bg.png") no-repeat top center; height: 796px; padding-top: 150px; }
	#index .sec3{ background: url("images/index3bg.png") no-repeat top center; min-height: 426px; padding-top: 40px; }
	#index .sec2 .msg{ font-size: 28px; margin-top: 30px; line-height: 40px; }
	#index .sec2 .w300{ margin-top: 95px; }
	#index .sec2 h3{
		padding-top: 50px;
		font-size: 26px;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 140px;
		display: flex;
	}
	#index .sec3 ul a{ background-repeat: no-repeat; background-position: center center; background-size: contain; text-align: center;}
	#index .sec3 ul .box1{ background-image: url(images/index3no1.png); }
	#index .sec3 ul .box2{ background-image: url(images/index3no2.png); }
	#index .sec3 .pt1{ margin-top: 170px; }
	#index .sec3 h3{
		background: url("images/top_attention@2x.png") no-repeat left 80px  center #FF96AB;
		background-size: 70px 63px;
		color: #fff;
		text-align: center;
		padding: .5em;
		margin-top: 60px;
	}
	#index .sec3 ul a{ display: flex; align-items: center; justify-content: center; width: 220px; height: 120px; }
	#index .sec3 li{ margin-top: 20px; margin-right: 40px; }
	#index .sec3 li:nth-child(4n){ margin-right: 0; }
	#index .sec3 .lnk1btn{ margin-top: 60px; }
	#index .sec4{ background: url("images/top_goaisatsu-bg.png") no-repeat top center; min-height: 1100px; padding-top: 200px; }
	#index .sec4 h3{ font-size: 28px; }
	/* greeting */
	.greeting1bg{ background: url("images/greeting1bg.png") no-repeat top center; }
	#greeting{ background: url("images/greeting3bg.png") no-repeat bottom center; padding-bottom: 100px; }
	#greeting .sec2 .wrap{ padding: 40px; }
	#greeting .sec2 li{ padding-left: 200px; overflow: hidden; }
	#greeting .sec2 li div{ display: block; float:left; width: 200px; margin-left: -200px; }
	#greeting .sec2 li span{ display: inline-block; width: 1.5em; text-align: right; }
	/* medical */
	#medical .attention__info .attention__info-title { background: url("images/top_attention@2x.png") no-repeat left 80px  center #FF96AB; background-size: 70px 63px; color: #fff; text-align: center; padding: .5em; margin-top: 60px; }
	/* access */
	#access .sec1{ padding: 0 100px; }
	#access .sec2{ padding: 40px 100px; }
	#access .sec3 figcaption{ font-size: 16px; }
	#access .sec3 figcaption img{ vertical-align: -22px; }
	#access .sec3 .arr1{ background: url("images/access3no1.png") no-repeat center top 50px; }
	#access .sec3 .arr2{ background: url("images/access3no2.png") no-repeat center top 50px; }

	/* symptom
	****************************************************/
	/* symptom */
	#symptom li{ width: 25%; margin-top: 1.5em; padding-left: .5em; }
	/* symptom2 */
	#symptom2 ul{ margin-top: 75px; padding: 30px 0 50px 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; }

	/* disease
	****************************************************/
	#disease ul{ margin-bottom: 35px; }
	#disease li{ margin: 15px 50px 15px 0; }
	#disease li:nth-child(3n){ margin-right:0; }
	#disease li a{ width:100%; padding: 50px 0; line-height:20px; }
	#disease h3{ font-size: 30px; }
	#disease dt{ font-size: 21px; }
	#disease dl{ padding-top: 80px; }

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

	/* footer
	****************************************************/
	footer{ font-size: 16px; margin-top: 100px; }
	footer .sec1 .bnr{ justify-content: space-between; }
	footer .sec2{ font-size: 16px; text-align: center; }
	footer .sec2 a{ display: block; min-width: 140px; }
	address{ font-size: 16px; }

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

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





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

	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; }
	.sp1spa{ margin-top: 20px; }

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

	/* width
	****************************************************/
	.wp1{ width: 220px; }
	.wp2{ width: 300px; }

	/* width
	****************************************************/
	.lnk3btn:after{ margin-top: -4%; }

	/* header
	****************************************************/
	header .wrap{ padding: 0; }
	.mv{ background: url("images/sp_main.png") no-repeat center center #FFFDE5; padding-top: 66.5%; background-size: contain; }

	/* headline
	****************************************************/
	.hl1, .hl2{ padding: 0 10%; }
	.hl1 span:first-child, .hl2 span:first-child{ width: 100%; }
	.hl1 span:last-child, .hl2 span:last-child{ width: 50%; }

	/* nav
	****************************************************/
	html{ overflow-x: hidden; }
	#headerSp{ width:100%; border-collapse:collapse; background-color: #fff; position:fixed; top: 0px; left: 0px; z-index: 999; }
	#headerSp .inner{ padding: 2% 5%; }
	#headerSp figure{ padding: 2% 25% 0 25%; margin-bottom: 10px; }
	#headerSp img{ width: 100%; }
	/* nav */
	.gNav{
		background:rgba(250, 168, 185, 1.0);
		position: fixed;
		height: 100%;
		width: 100%;
		z-index: 998;
		padding: 0;
		transition: all 0.6s;
		right: -100%;
		top: 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.gNav.active{ right: 0%; }
	.gNav ul{ margin-top: 20%; }
	.gNav li{ margin: 0 15%; }
	.gNav li a{ display: block; padding: 20px 0; color: #333; text-align: center; border-bottom: 1px solid #fff; }
	.gNavBk{
		position: fixed;
		background:rgba(0, 0, 0, .8);
		right: -100%;
		top: 0;
		height: 100%;
		width: 100%;
	}
	.gNavBk.active{ right: 0%; }

	/*=============================
	.btn-trigger
	=============================*/
	.btn-trigger{
		position: fixed;
		top: 3%;
		right: 4%;
		z-index: 9999;
		background: #FF96AB;
		cursor: pointer;
		width: 50px;
		height:50px;
		border-radius: 5px;
		border: 1px solid #FF96AB;
	}
	.btn-trigger span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  	width: 45%;
	}
	.btn-trigger span:nth-of-type(1){ top:15px; }
	.btn-trigger span:nth-of-type(2){ top:23px; }
	.btn-trigger span:nth-of-type(3){ top:31px; }

	/*=============================
	#btn01
	=============================*/
	#btn01.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
	}
	#btn01.active span:nth-of-type(2) { opacity: 0; }
	#btn01.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
	}

	/* title
	****************************************************/
	.pp1ttl{ ine-height: 30px; padding: 30px 0 20px; text-align: center; }

	/* content
	****************************************************/
	/* common */
	.spa1, .spa2, .spa3{ padding-top: 50px; padding-bottom: 50px; }
	/* index */
	#index .wrap{ padding: 0; }
	#index .sec1 .fl{ background: url("images/bg1sp.png") repeat-y center; background-size: 100% auto; padding: 20px; }
	#index .sec1 .fr{ background-color: #FFFDE5; padding: 20px 20px 50px; }
	#index .sec2 .msg{ font-size: 24px; line-height: 40px; margin-top: 1em; text-align: center; background: url(images/sp_touin@2x.png) no-repeat bottom center; padding-bottom: 57%; background-size: contain; }
	#index .sec2 .fb2pc{ padding: 0 35px; }
	#index .sec2 .w300{ margin-top: 60px; padding-top: 80px; }
	#index .sec2 h3{ margin-bottom: 1em; }
	#index .sec3sp{ background: url(images/sp_shinryo@2x.png) no-repeat top center; background-size: contain; padding: 55% 25px 0; margin-top: 30px; text-align: center; }
	#index .sec3sp p{ margin-top: 20px; }
	#index .sec3 h3{ background-color: #FF96AB; padding: 10px 0; margin-top: 30px; }
	#index .sec3sp2{
		display: block;
		background: url("images/top_attention@2x.png") no-repeat left 7.5px center;
		background-size: 15%;
		color: #fff;
		padding: 0 5px 0 20%;
		font-size: 16px;
	}
	#index .sec3 .fb1{ justify-content: space-around; }
	#index .sec3 ul a{ display: flex; align-items: center; justify-content: center; width: 100%; height: 90px; border: 2px solid #fff; }
	#index .sec3 li{ margin-top: 20px; width: 47%; padding: 8px; }
	#index .sec3 li:nth-child(-n+4){ background-color: #B9EAFF; }
	#index .sec3 li:nth-child(n+5){ background-color: #FFDBD5; }
	#index .sec3 .lnk1btn{ margin: 30px 0 60px; }
	#index .sec4{ background:url("images/bg2sp.png") repeat-x top; padding: 30px 20px 50px; }
	#index .sec4 .fl, #index .sec4 .fr{ width: 48%; margin-top: 4%; }
	#index .sec4 h3{ font-size: 24px; margin-top: 30px; text-align: center; line-height: 150%; }
	#index .sec4 .name{ margin-top: 80px; text-align: center; }
	/* greeting */
	#greeting .sec1 .name{ margin-top: 75px; }
	/* medical */
	#medical .sec2 .w480{ padding: 20px; }
	#medical .attention__info .attention__info-title { background-color: #FF96AB; padding: 10px 0; margin-top: 30px; }
	/* access */
	#access .sec2{ padding: 20px; }
	#access .sec3 figcaption{ text-align: center; }
	#access .sec3 figcaption img{ margin-bottom: 10px; }

	/* common custom
	****************************************************/
	.round{ margin-left: auto; margin-right: auto; }

	/* symptom
	****************************************************/
	/* symptom */
	#symptom li{ margin-top:1em; }
	/* symptom2 */
	#symptom2 h3{ margin-bottom: 1em; }
	#symptom2 ul{ margin-top:30px; padding-top:10px; }
	#symptom2 li{ margin-top:10px; }
	/* symptom3 */
	#symptom3 h4{ font-size:18px; margin-top:20px; }
	#symptom3 .outline{ margin-top: 40px; }

	/* disease
	****************************************************/
	#disease .fb1pc{ margin-top: -30px; }
	#disease li{ margin-top:20px; width: 100%; }
	#disease li:first-child{ margin-top:0; }
	#disease li a{ padding:15px; }
	#disease dl{ padding-top: 40px; }

	/* footer
	****************************************************/
	footer .sec1 .fl{ padding-left: 15px; padding-right: 15px; }
	footer .sec1 .fr{ margin: 30px -15px; }
	footer .bnr{ text-align: center; margin: -40px 0 -15px; }
	footer .sec2 ul{ overflow: hidden; margin-top: -20px; }
	footer .sec2 li{ width: 50%; float: left; margin-top: 1em; }
	address{ font-size: 10px; padding-bottom: 1em; }

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

	/* gmap
	****************************************************/
	.gmap{
		position: relative;
		padding-bottom: 80%;
		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:990; bottom:0px; left:0px; }
	#footerSp tr td:nth-of-type(1){ width: 50%; background-color:#37C8DB; border-right: 1px solid #fff; }
	#footerSp tr td:nth-of-type(2){ width: 50%; background-color:#FF96AB; border-left: 1px solid #fff; }
	#footerSp a{ display: block; text-align:center; padding: 10px 30px; color: #fff; }
	#footerSp a img{ vertical-align: -5px; }
}