	@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: "Jun 201", "じゅん 201", 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:12px; font-weight:normal; }
address{ font-style:normal; }

/* Flexbox --old
*****************************************************/
.flex-row > .flex-column { margin-top: 20px; }
@media screen and (min-width: 600px) {
	.flex-row { display: flex; }
	.flex-column.half { width: 48%; }
	.flex-wrap_wrap { flex-wrap: wrap; }	
	.justify-content_space-between { justify-content: space-between; }
	.justify-content_center { justify-content: center; }
}
/* Flexbox --new
****************************************************/
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.flex1 { flex: 1; }
@media screen and (min-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%; }
}

/* 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; }
.mt1em{ margin-top: 1em; }
.mt2em{ margin-top: 2em; }

/* 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; }
.col_green { color: #009B70; }
.col1, .col1ul li:before, .col1icon:before{ color:#584512; }
.col2, .col2ul li:before, .col2icon:before{ color:#76C937; }
.col3, .col3ul li:before, .col3icon:before{ color:#F5951D; }

.col4, .col4ul li:before, .col4icon:before{ color:#FFFFD5; }
.col5{ color:#FFFFFF; }
.col6{ color:#FFEDED; }
.col7{ color:#D64747; }
.col8{ color:#333333; }
.col9{ color:#F4F4F4; }

/* background
****************************************************/
/* color */
.bg1col{ background-color: #FFF9CB; }
.bg2col{ background-color: #E8F7E7; }
.bg3col{ background-color: #FFFFFF; }

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

/* 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
****************************************************/
.lst1{ margin-left:1.5em; }
.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
****************************************************/

/* band
****************************************************/
.band1{ background-color: #584512; color: #fff; padding: 0 .5em; display: block; border-radius:15px; text-align: center; }

/* headline
****************************************************/
h1, h2, h3, h4{ font-family: "Jun 501", "じゅん 501"; }
.hl1{ text-align: center; }
.hl1 img{ margin-bottom: 10px; }
.hl2{ background-color: #E8F7E7; padding: .5em; }
.hl3{ text-align: center; }
.hl3:before{ content: url("images/flower.svg"); vertical-align: middle; margin-right: 1em; }
.hl3:after{ content: url("images/flower.svg"); vertical-align: middle; margin-left: 1em; }
.headline3-typeB { padding: 8px 10px; color: #009B70; border-bottom: 1px solid #009B70; }
.headline3-typeC { color: #DD6B5C; font-weight: bold; }

/* page title
****************************************************/
.pp1ttl{ color: #584512; }
.pp1ttl h2 { font-size: 1.3em; }
@media screen and (min-width: 600px) {
	.pp1ttl h2 { font-size: 1.4em; }
}

/* content
****************************************************/
/* notice */
#notice{ height:265px; 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:#F2C358;
	-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: 15px 0; border-bottom: 1px dotted #707070; margin-right: 30px; }
.notice_list li{ padding-bottom: 1em; margin-bottom: 1.5em; border-bottom: 1px dotted #707070; }
/* index */
#index .sec1 .box1{ border: 2px solid #584512; padding: 25px 30px 30px; }
#index .sec3 .ofh2 a{ display: block; border: 2px solid #584512; background-color: #FFF9CB; color: #584512; padding: 20px 0; text-align: center; border-radius:50px; }
#index .sec3 .ofh2 .btn{ display: block; border: 2px solid #584512; background-color: #FFF9CB; color: #584512; padding: 20px 0; text-align: center; border-radius:50px; }
#index .sec3 .ofh2 a:hover{ background-color: #FDFBE8; }

#index .green__area { margin-top: 50px; }
#index .green__area .green__area-title { background: #009B70; color: #fff; padding: 20px 10px; text-align: center; font-size: 18px; }
#index .green__area .green__area-list .button { width: calc(100% / 2 - 10px); margin-top: 20px; text-align: center; }
#index .green__area .green__area-list { display: flex; flex-wrap: wrap; justify-content: space-between; }
#index .green__area .green__area-list .button a { display: block; border: 2px solid #009B70; background: #E8F7E7; color: #009B70; padding: 20px 0; border-radius: 50px; }
#index .green__area .green__area-list .button a:hover { background: #fff; }
#index .green__area .green__area-list.add { justify-content: center; }
#index .green__area .green__area-list.add .button { width: 100%; }

#index .button__list-item .link { display: inline-block; width: 300px; padding: 0.5rem; color: #fff; font-size: 1.2rem; background-color: #009B70; border: 2px solid #009B70; border-radius: 50px; text-align: center; transition: color 0.8s, background-color 0.8s; }
#index .button__list-item .link:hover { background-color: #fff; color: #009B70; } 

@media screen and (min-width: 600px) {
	#index .green__area .green__area-list .button { width: calc(100% / 2 - 30px); }
	#index .green__area .green__area-title { font-size: 1.1em; }
	#index .green__area .green__area-list.add .button { width: 50%; }
}

/*  */
/* #index .read_write__area .button { margin-top: 20px; text-align: center; }
#index .read_write__area .button a { display: block; border: 2px solid #009B70; background: #E8F7E7; color: #009B70; padding: 20px 0; border-radius: 50px; }
#index .read_write__area .button a:hover { background: #fff; } */

/* greeting */
/* medical */
#medical .sec2 .box1{ border: 2px solid #584512; background-color: #fff; }
#medical .sec2 h3{ text-align: center; }
/* guide */
#guide .sec2 figure{
	text-align: center;
	background-color: #fff;
	border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	width: 300px;
	height: 300px;
	padding-top: 35px;
}
#guide .sec2 h3{ text-align: center;  color: #009B70; border-bottom: 1px solid #009B70; }
/* access */
#access h3{ background-color: #9AD1B7; color: #fff; text-align: center; padding: .25em; }
/* etc */
.name span{ font-size: 24px; margin-left: .5em; }
/* vptest */
#vptest .about__symptoms__list + .about__symptoms__list { margin-top: 40px; }
#vptest .about__symptoms__list-title { font-weight: 700; color: #009B70; }
#vptest .about__symptoms__list-desc__list-item { font-size: 16px; }
#vptest .about__symptoms__list-desc__list-item::before { content: "\02022"; color: #009B70; margin-right: 8px; }
#vptest .about__symptoms__image { text-align: center; }
#vptest .about__viewing { margin-top: 50px; padding: 20px 30px; background-color: #FFEDED; }
#vptest .about__viewing__list { margin-top: 20px; }
#vptest .about__viewing__list-item + .about__viewing__list-item { margin-top: 10px; }
#vptest .about__viewing__list-item::before { content: "\02022"; color: #DD6B5C; margin-right: 8px; }
@media screen and (min-width: 600px) {
	#vptest .about__symptoms__image { text-align: right; }
}
/* read_write */
#read_write .text { margin-top: 20px; }
#read_write .text p:not(:first-child) { margin-top: 10px; }
#read_write .initial__area { display: flex; flex-wrap: wrap; justify-content: space-between; }
#read_write .initial__area .initial__card { background: #fff; margin-top: 30px; padding: 20px; border-radius: 10px; }
#read_write .initial__area .initial__card .title { font-weight: 700; color: #009B70; }
#read_write .initial__area .initial-item li { font-size: 16px; }
#read_write .initial__area .initial-item li::before { content: "●"; color: #009B70; margin-right: 8px; }
#read_write .about .text:first-of-type { background: #fff; margin-top: 30px; padding: 20px; border-radius: 10px; }
#read_write .about .text .attention { color: #DD6B5C; }
#read_write .about .image p { margin-top: 20px; text-align: center; }
#read_write .about .image p a:hover { opacity: .8; }

@media screen and (min-width: 600px) {
	#read_write .initial__area .initial__card { width: calc(100% / 2 - 10px); }
}

/* visual-perception */
#visual-perception .catch { padding-top: 40px; }
#visual-perception .symptoms , #visual-perception .reserve_flow .reserve_flow__area { padding: 50px 15px 100px; }

.symptoms__area .symptoms__area-card { background: #E8F7E7; margin-top: 30px; padding: 15px; border-radius: 20px; } 
.symptoms__area .symptoms__area-card .list { margin-top: 10px; }
.symptoms__area .symptoms__area-card .list .item::before { content: "\02022"; margin-right: 8px; color: #009B70; }
.symptoms__area .symptoms__area-card .title { color: #009B70; }

.border-gr { padding-top: 1em; border-top: 2px dotted #009B70; }
.arrow-gr { color: #009B70; font-size: 3em; }

.reserve_flow .reserve_flow__area-box { padding: 40px 15px; }


@media screen and (min-width: 600px) {
	#visual-perception .catch { padding-top: 75px; }
	#visual-perception .symptoms , #visual-perception .reserve_flow .reserve_flow__area { padding: 60px 0px 100px; }

	.symptoms__area { display: flex; flex-wrap: wrap; justify-content: space-between; }
	.symptoms__area:first-of-type .symptoms__area-card { height: 290px; } 
	.symptoms__area .symptoms__area-card { width: calc(100% / 2 - 10px); height: 360px; padding: 20px; } 

	.reserve_flow .reserve_flow__area-box { padding: 50px; }
	.reserve_flow .reserve_flow__area-box:first-of-type { padding-top: 50px; }
}

/* symptom
****************************************************/
/* symptom */
#symptom h3{ background-color: #9AD1B7; color: #fff; position: relative; padding: .5em 1em .5em 180px; }
#symptom h3 img{ position: absolute; left: 50px; bottom: 0; }
#symptom li a{ display: block; }
#symptom li a:before{ content: '>'; margin-right: .5em; }
#symptom li a:hover{ color: #009B70; }
#symptom li a, #symptom2 li a{ color: #000; }
/* symptom2 */
#symptom2 h3{ text-align: center; color: #584512; }
#symptom2 h3:before{ content: url("images/flower.svg"); vertical-align: middle; margin-right: 1em; }
#symptom2 h3:after{ content: url("images/flower.svg"); vertical-align: middle; margin-left: 1em; }
#symptom2 li a:before{ content:"▶"; margin-right: .5em; }
#symptom2 li a:hover{ color: #00a73c; }
#symptom2 li a{ color:#333 }
#symptom2 li a:hover{ color:#009B70 }
#symptom2 ul{ border-top: 1px solid #707070; }
/* symptom3 */
#symptom3 h3{ text-align: center; color: #584512; }
#symptom3 h3:before{ content: url("images/flower.svg"); vertical-align: middle; margin-right: 1em; }
#symptom3 h3:after{ content: url("images/flower.svg"); vertical-align: middle; margin-left: 1em; }
#symptom3 .outline h4{ color: #009B70; border-bottom: 1px solid #009B70; }
#symptom3 .outline 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{
	color:#000;
	display:block;
	font-size:20px;
	letter-spacing:.5em;
	text-align: center;
	border-radius:10px;
	background-color: #E8F7E7;
}
#disease li a:hover{ text-decoration: none; background-color: #CBE3C9; }
#disease dt{ margin-top: 2em; padding: .5em 1em; background-color: #E8F7E7; }
#disease dd{ padding-top: 1em; }

/* about
****************************************************/
#about dt:before{ content:"▶ "; color: #F5951D; }
#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: #F5951D; 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{ border-top: 1px solid #D6D6D6; }
footer .sec1 .fr p{ margin-top: 25px;}
address{ margin: 1em 0; text-align: center; }
footer .right { margin-top: 20px; }
footer .right .access__area { 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:#76C937;
	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
****************************************************/
.lnk1:hover{ opacity: .8; }
.lnk1btn{ display: block; border: 1px solid #333; font-size: 16px; line-height: 20px; padding: 10px 0; }
.lnk1btn:hover{ background-color: #F4F4F4; }
.lnk2btn{ display: inline-block; background-color: #DD6B5C; color: #fff; line-height: 20px; padding: 20px 0; }
.lnk2btn:hover{ opacity: .6; }

/* guide
****************************************************/
.mainArea img {
	width : 100% !important;
	object-fit: contain !important;
}
.sideImgList li img {
	width: 175px !important;
	cursor: pointer !important;
	object-fit: contain !important;
	border: 5px solid #9ad1b7;
}
.sideImgList img { opacity: 0.6 !important; }
.sideImgList img:hover{ opacity: 1.0 !important; transition:all 0.3s ease; }
#mainText{ margin-top: 1em; }







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

	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{ display:inline-block; letter-spacing:normal; vertical-align:top; }

	/* width
	****************************************************/
	.w430{ width: 430px; }
	.w480{ width: 480px; }
	
	/* main
	****************************************************/
	.mv{ background: url(images/main.png) repeat-x center center; height: 500px; }
	
	/* header
	****************************************************/
	header{ font-size: 16px; background: url(images/h_line@2x.png) no-repeat top center #fff; padding-top: 36px; width:100%; height: 200px; }
	header .fr{ position: relative; width: 800px; height: 150px; text-align: right; }
	header .fr nav{ position: absolute; bottom: 0; right: 0; }
	header .band1{ display: inline-block; }
	
	/* nav
	****************************************************/
	.gNav{ font-size:16px; line-height: 20px; }
	.gNav ul{ overflow:hidden; text-align: center; }
	.gNav li{ float:left; width: 120px; margin-left: 10px; }
	.gNav ul a{ display:block; color: #333; padding: 14px 0; border-radius:15px; background-color: #FFF9CB; }
	.gNav ul a:hover, .gNav ul .stay{ background-color: #F2C358; color: #fff; }
	.fixed{ position:fixed; top:0px; left:0px; z-index:9999; }
	.space{ margin-top: 200px; }
	.none{ display:none; }	
	
	/* title
	****************************************************/
	.hl3{ font-size: 26px; }
	.pp1ttl{ background: url(images/title_back.png) no-repeat top center; height: 250px; margin-top: 20px; padding-top: 150px; text-align: center; }

	/* content
	****************************************************/
	/* common */
	.spa1{ padding: 60px 0 100px; }
	.spa2{ padding: 100px 0; }
	.spa3{ padding: 60px 0; }
	/* index */
	#index .sec1 h2{ background: url(images/top_oshirase_illust.svg) no-repeat center top; -ms-writing-mode: tb-rl; writing-mode: vertical-rl; width: 60px; padding: 80px 15px 0 0; }
	#index .sec1 .box1{ width: 560px; margin-left: 30px; height: 380px; }
	#index .sec3{ background: url(images/index3bg.png) no-repeat top center; }
	#index .sec3 .ofh2{ margin-top: 30px; }
	#index .sec3 .ofh2 li{ width: 300px; margin-right: 50px; }
	#index .sec3 .ofh2 li:nth-child(3n){ margin-right: 0; }
	#index .sec3 .ofh2 a{ width: 300px; }
	#index .sec4{ background: url(images/index4bg.png) no-repeat top center #e8f7e7; }
	/* greeting */
	#greeting .sec1 figure{ background: url(images/greeting1bg.png) no-repeat bottom center; }
	#greeting .prof{ width:470px; }
	/* medical */
	#medical .sec1{ background: url(images/shinryoannai_illust.svg) no-repeat bottom 100px right 100px; }
	#medical .sec2 .box1{ width: 470px; padding: 40px; margin-top: 60px; }
	#medical .sec2 .hl3{ font-size: 22px; }
	/* guide */
	.sideImgList li{ margin-top: 30px; margin-right: 30px; }
	.sideImgList li:nth-child(4n){ margin-right: 0; }
	#guide .sec1{ padding-left: 105px; padding-right: 105px; }
	#guide .sec2 .fl, #guide .sec2 .fr{ width:300px; height: 600px; margin-top:50px; }	
	#guide .sec2 .fl{ margin-right:50px; }
	#guide .sec2 h3{ font-size:20px; line-height:125%; height:70px; display:table-cell; vertical-align:middle; width:300px; }
	/* access */
	#access{ background: url("images/access1bg.png") no-repeat top center; }
	#access .wrap{ width: 776px; }
	#access .row{ margin: 60px 30px 0; }
	
	
	/* symptom
	****************************************************/
	/* symptom */
	#symptom li{ width: 25%; margin-top: 1.5em; }
	/* symptom2 */
	#symptom2 h3{ font-size: 26px; margin-bottom: 75px; }
	#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; }
	#symptom3 dl{ padding: 0 1em; }
	#symptom3 .dis{ margin-top: 1em; }
	#symptom3 .des{ padding: 1em 0; }
		
	/* 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:300px; padding:40px 0; line-height:20px; }
	#disease dl{ padding-top: 30px; }

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

	/* footer
	****************************************************/
	footer{ font-size: 16px; }
	footer .sec1 .fl, footer .sec1 .fr{ width: 480px; }
	footer .sec1 .fl{ position:relative; height: 619px; }
	footer .tel{ position:absolute;	bottom: 0; left: 0; }
	footer .sec1{ padding: 50px 0; }
	footer .sec1 ul{ line-height: 150%; }
	footer .sec2 ul{ background: url(images/f_kuma.svg) no-repeat right bottom; height: 100px; padding: 1em 100px 0 0; }
	footer .sec2 li{ margin-right: 50px; }
	footer .left img { max-width: 100%; height: auto; }
	footer .right { margin-top: 0; }
	footer .right .access__area { text-align: left; }
 
	/* breadcrumbs
	****************************************************/
	.breadcrumbs ol{ margin: 5px 0 0 0; }

	/* gmap
	****************************************************/
	.gmap{
		width:100%;
		position: relative;
		padding-bottom:550px;
		height: 0;
		overflow: hidden;
		border: 2px solid #584512;
		
	}
	.gmap.pb645 { padding-bottom: 645px; }
	.gmap iframe, .gmap object, .gmap embed{
		position: absolute;
		top:0;
		left:0;
		width:100%;
		height:550px;
	}
	.gmap.pb645 iframe { height: 645px; }
}





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

	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; }
	.mv{ background: url(images/sp_main@2x.png) no-repeat top center; padding-top: 80%; background-size: cover; }

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

	/* nav
	****************************************************/
	html{ overflow-x: hidden; }
	#headerSp{ width:100%; border-collapse:collapse; background-color: #fff; position:fixed; top:0px; left:0px; z-index:99; }
	#headerSp img{ width: 100%; }
	/* nav */
	.gNav{
		background:rgba(255, 255, 255, 1.0);
		position: fixed;
		height: 100%;
		width: 100%;
		z-index: 998;
		padding: 20px 7.5% 100px;
		transition: all 0.6s;
		right: -100%;
		top: 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.gNav.active{ right: 0%; }
	.gNav ul{ margin-top: 30px; }
	.gNav li{ margin-top: 10px; }
	.gNav li a{ display: block; padding: .75em 0; color: #333; background-color: #FFF9CB; text-align: center; border-radius:10px; }
	
	/*=============================
	.btn-trigger
	=============================*/
	.btn-trigger {
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 9999;
		background: #009B70;
		cursor: pointer;
		width: 50px;
		height:50px;
		border-radius: 5px;
		border: 1px solid #009B70;
	}
	.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
	****************************************************/
	.hl3{ font-size: 18px; }
	.pp1ttl{ background: url(images/sp_title_back@2x.png) no-repeat top center; background-size: cover; padding: 30% 0 10%; text-align: center; }

	/* content
	****************************************************/
	/* common */
	.spa1{ padding-bottom: 100px; }
	.spa2, .spa3{ padding-top: 60px; padding-bottom: 60px; }
	/* index */
	#index .sec1{ padding-top: 20px; }
	#index .sec1 .box1{ margin-top: 15px; }
	#index .sec1 h2{ background: url(images/top_oshirase_illust.svg) no-repeat left center; padding: 25px 0 20px 75px; }
	#index .sec1 .fr{ margin-top: 40px; }
	#index .sec2 .fr{ margin-top: 50px; }
	#index .sec3{ background: url(images/top_sinryoannai_back01.svg) no-repeat center bottom; padding-bottom: 72%; }
	#index .sec3 .fr{ margin-top: 10px; }
	#index .sec3 .ofh2{ margin-top: 30px; }
	#index .sec3 .ofh2 li{ width: 48%; }
	#index .sec3 .ofh2 li:nth-child(odd){ float: left; }
	#index .sec3 .ofh2 li:nth-child(even){ float: right; }
	#index .sec4{ background: url(images/top_goaisatsu_back01.svg) no-repeat bottom center #e8f7e7; padding-bottom: 65%; }
	#index .sec4 .fr{ margin-top: 30px; }
	/* greeting */
	#greeting{ background: url(images/sp_goaisatsu_back.svg) no-repeat left bottom; padding-bottom: 200px; }
	/* medical */
	#medical .sec1{ padding-top: 0; }
	#medical .sec1 .fr{ padding-top: 20px; }
	#medical .sec2 .box1{ padding: 20px; margin-top: 40px; }
	/* guide */
	#guide .sec1 li{ margin-top: 4%; }
	#guide .sec2 .fl, #guide .sec2 .fr{ margin-top: 50px; }
	#guide .sec2 figure{ margin-left: auto; margin-right: auto; }
	#guide .sec2 h3{ margin-top: 1em; }
	/* access */
	#access .row{ margin: 40px 15px 0; }
	
	/* symptom
	****************************************************/
	/* symptom */
	#symptom{ padding-top: 50px; }
	#symptom li{ margin-top:1em; }
	/* symptom2 */
	#symptom2 h3{ margin-bottom: 2em; }
	#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{ padding-top: 30px; padding-bottom: 50px; }
	footer .sec1 .tel{ margin-top: 30px; }
	footer .sec1 .fr{ margin-top: 30px; text-align: center; }
	footer .sec2 ul{ overflow: hidden; }
	footer .sec2 li{ width: 50%; float: left; }
	footer .sec2 ul{ background: url(images/f_kuma.svg) no-repeat right bottom; padding-bottom: 30%; }
	address{ font-size: 10px; padding-bottom: 1em; }
	
	/* breadcrumbs
	****************************************************/
	.breadcrumbs ol{ font-size: 10px; }
	
	/* gmap
	****************************************************/
	.gmap{
		position: relative;
		padding-bottom: 80%;
		padding-top:30px;
		height: 0;
		overflow: hidden;
		border: 2px solid #584512;
	}
	.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:#009B70; border-right: 1px solid #fff; }
	#footerSp tr td:nth-of-type(2){ width: 50%; background-color:#009B70; border-left: 1px solid #fff; }
	#footerSp a{ display: block; text-align:center; padding: 10px 30px; color: #fff; }
}