/* @group base --------------------------------------------------------*/
html {
	display: block;
	width: 100%;
	height: 100%;
	-webkit-text-size-adjust: 100%;
}
html * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	display: block;
	width: 100%;
	height: 100%;
	font-family: "ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Verdana,Arial,sans-serif;
	color: #666;
	font-size: 15px;
	line-height: 1.8;
	position: relative;
	background: #eef5e3;
}
body.navi_open {
	overflow: hidden;
}


.serif {
	font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

.font_face{
	font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

::selection {
	background: rgba(200,230,250,0.8); /* Safari */
}
::-moz-selection {
	background: rgba(200,230,250,0.8); /* Firefox */
}

a {
	color: #EC5F00;
	text-decoration: underline;
	-webkit-tap-highlight-color: transparent;
}
a:link, a:visited, a:active {
	text-decoration: underline;
}
a:hover {
	color: #EC5F00;
	text-decoration: none;
}

a.over,
.over,
a.pjax {
	text-decoration: none;
	cursor: pointer;
}

img {
	display: block;
}

span {
	display: inline-block;
}

body.leave {
}

body > #wrapper {
	display: block;
	width: 100%;
	height: 100%;
	min-width: 320px;
}

body.modal,
body.entry {
	overflow: hidden;
}
body #entry {
	transition-property: opacity,z-index;
	transition-delay: 0s,1s;
	transition-duration: 0.5s,0s;

	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	min-width: 320px;
	background: #FFF;

	z-index: -1;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}
body.modal #entry,
body.entry #entry {
	transition-delay: 0s,0s;
	transition-duration: 0.5s,0.5s;

	z-index: 50;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
#entry > div.inner {
	transition-property: opacity;
	transition-duration: 0.5s;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";

	margin: 0 !important;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translateZ(0px);
	width: 100%;
	height: 100%;
}
#entry > div.inner.pending {
	transition-duration: 0s;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}
#entry > div.inner > article {
	max-width: 1000px;
	margin: 0 auto;
	padding: 150px 5% 170px;
}

body > #wrapper > #container {
	position: relative;
	display: block;
	width: 100%;

	transition-property: opacity;
	transition-duration: 2s;
	transition-timing-function: ease-out;
	height: 100%;
	z-index: 1;
}

html.stand body > #wrapper > #container {
/*
	transition-duration: 0.1s;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
*/
}


#return_top {
	transition-property: bottom;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;

	position: fixed;
	bottom: -80px;
	cursor: pointer;
	z-index: 40;
	display: block;
	background: #018ad3;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	margin: 15px;
	left: 0;
}
#return_top::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7px 12px 7px;
	border-color: transparent transparent #ffffff transparent;
	position: absolute;
	top: -3px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
html.scrolled #return_top {
	bottom: 0px;
}
html.scrolled.scrollend #return_top {
	bottom: 0px;
}
#debug {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1000;
}
#google_maps {
	height: 350px;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}

.spinner,
.spinner:after {
	border-radius: 50%;
	width: 5em;
	height: 5em;
}
.spinner {
	margin: auto;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-indent: -9999em;
	border-top: 0.8em solid rgba(200, 200, 200, 0.2);
	border-right: 0.8em solid rgba(200, 200, 200, 0.2);
	border-bottom: 0.8em solid rgba(200, 200, 200, 0.2);
	border-left: 0.8em solid #CCC;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: spinner_loading 1.1s infinite linear;
	animation: spinner_loading 1.1s infinite linear;
	font-size: 1px;
}
@-webkit-keyframes spinner_loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinner_loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.gradient {
	background: rgb(143,195,31);
	background: -moz-linear-gradient(left, rgb(143,195,31) 0%, rgb(0,138,212) 100%);
	background: -webkit-linear-gradient(left, rgb(143,195,31) 0%,rgb(0,138,212) 100%);
	background: linear-gradient(to right, rgb(143,195,31) 0%,rgb(0,138,212) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fc31f', endColorstr='#008ad4',GradientType=1 );
}

/* @end */



/* @group preload --------------------------------------------------------*/

#preloader {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: #FFF;
}
#preloader > div.bg {
	width: 100%;
	height: 100%;

	transition-duration: 1s;
	transition-timing-function: ease-out;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}
#preloader > div.bg.show {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
#preloader > div.bg > div.logo_wrapper > #progress_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 120px;
	width: 180px;
	z-index: 2;
}
#preloader > div.bg > div.logo_wrapper > #progress_bg > div.progress {
	position: absolute;
	background: #000000;
	z-index: 1;

	left: 0;
	width: 0%;
	height: 3px;
	bottom: 0;
}
#preloader > div.bg > div.logo_wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 2;
	top: 0;
	left: 0;
	margin: auto;
	right: 0;
	bottom: 0;

}
#preloader > div.bg > div.logo_wrapper > img.logo {
	position: absolute;
	height: auto;
	width: 180px;
	z-index: 1;
	top: 0;
	left: 0;
	margin: auto;
	right: 0;
	bottom: 0;
}
img.preload {
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";

	transition-property: opacity;
	transition-duration: 0.8s;
	transition-timing-function: ease-out;
}
img.preload.loaded {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
/* @end */



/* @group header --------------------------------------------------------*/
body #header {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 170px;
	width: 100%;
	margin: auto;
	right: 0;
	background: #FFF;
}
body #header > div {
	position: relative;
	margin: 0 auto;
	height: 100%;
	width: 100%;
}
body #header > div > header {
	height: 100%;
	width: 40%;
	min-width: 300px;
	position: relative;
	z-index: 3;
}
body #header > div > header > h1 {
	height: 100%;
	position: relative;
}
body #header > div > header > h1 > a {
	display: block;
	height: 95px;
	width: 315px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
body #header > div > header > h1 > a > img {
	height: 100%;
}
#header > a#logo {
	display: block;
	height: 100%;
	width: 360px;
	white-space: nowrap;
	margin: 0 auto;
	line-height: 70px;
	text-align: center;
	letter-spacing: 0.1em;
	color: #000;
	text-decoration: none;
}
/* @end */




/* @group nav --------------------------------------------------------*/
#navi {
	width: 100%;
	position: absolute;
	z-index: 60;
	top: 170px;
}
#navi.show {
	position: fixed;
	top: 0;
}
div#menu_toggle {
	display: none;
	position: fixed;
	top: 0;
	height: 70px;
	width: 70px;
	z-index: 110;
	right: 0;
}
div#navi > nav {
	padding: 0 15px;
	text-align: center;
	line-height: 0;
}
div#navi > nav > ul {
}
div#navi > nav > ul li {
	position: relative;
	display: inline-block;
	letter-spacing: normal;
}
div#navi > nav > ul li > a {
	display: none;

	transition-property: background;
	transition-duration: 0.25s;
	transition-timing-function: ease-out;

	color: #FFF;
	text-decoration: none;
	height: 60px;
	line-height: 60px;
	background: rgba(255, 255, 255, 0);
	position: relative;
	overflow: hidden;
}
div#navi > nav > ul li > a > span {
	display: block;
	height: 100%;
	text-indent: 100%; 
	white-space: nowrap; 
	overflow: hidden;
	position: absolute;
	top: 0; 
	background: #FFF;

	transition-property: opacity;
	transition-duration: 0.8s;
	transition-timing-function: ease-out;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)"; 

}
div#navi > nav > ul li > a.on > span,
div#navi > nav > ul li.active > a > span {
	transition-duration: 0.1s;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
div#navi > nav > ul li > a img{
	height: 200%;
	
}
div#navi > nav > ul li > a > img{
	
}
div#navi > nav > ul li > a > span > img{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: auto;
	
}
div#navi > nav > ul li > a.on {
}
div#navi > nav > ul li.on > a {
}
div#navi > nav > ul > li a.active {
}

div#navi > nav > ul > li > ul {
	display: inline-block;
	letter-spacing: -.40em;
	line-height: 0;
}
div#navi > nav > ul > li.on > ul {
	top: 100%;

	transition-delay: 0s,0s;
	transition-duration: 0s,0s;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}

div#navi > nav > ul > li > ul > li {
}
div#navi > nav > ul > li > ul > li > a {
	display: block;
}
div#navi > nav > a.link_tel {
	position: absolute;
	top: auto;
	right: 8%;
	width: 300px;
	height: 95px;
	bottom: 160%;
	margin: auto;
	z-index: 2;
	padding: 0 30px;
}
div#navi > nav > a.link_tel > img {
	width: 100%;
	display: block;
}

div#menu_toggle > div > img {
}
div#menu_toggle #menu_toggle_open {
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 0;
	height: 20px;
	width: 70px;
	z-index: 2;
	line-height: 20px;
	letter-spacing: 0.1em;
	overflow: hidden;
	transform: scale(0.5);
	-moz-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-ms-transform: scale(0.5);

	transition-duration: 0.2s;
	transition-timing-function: linear;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
	text-align: center;
	font-weight: bold;
}
div#menu_toggle #menu_toggle_close {
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 0;
	height: 20px;
	width: 70px;
	z-index: 2;
	line-height: 20px;
	letter-spacing: 0.1em;
	overflow: hidden;
	transform: scale(0.5);
	-moz-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-ms-transform: scale(0.5);

	transition-duration: 0.2s;
	transition-timing-function: linear;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
	text-align: center;
	color: #1191be;
	font-weight: bold;
}
body.navi_open div#menu_toggle > #menu_toggle_open {
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";

	z-index: 9;
}
body.navi_open div#menu_toggle > #menu_toggle_close {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";

	z-index: 9;
}
#navi > .modal_overlay {
	display: none;

	transition-property: width,opacity,z-index;
	transition-delay: 0.5s,0s,0s;
	transition-duration: 0s,0.5s,0.5s;

	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
	z-index: -1;
	cursor: pointer;
}
body.navi_open #navi > .modal_overlay {
	transition-delay: 0s,0s,0s;
	transition-duration: 0s,0.5s,0.5s;

	z-index: 90;

	opacity: 0.7;
	-moz-opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
div#menu_toggle > button.toggle_switch {
	z-index: 10;
	display: block;
	position: absolute;
	right: 0;
	overflow: hidden;
	padding: 0;
	width: 50px;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;

	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
div#menu_toggle > button.toggle_switch:focus {
	outline: none;
}
div#menu_toggle > button.toggle_switch span {
	display: block;
	position: absolute;
	top: 9px;
	left: 0;
	right: 0;
	height: 5%;
	background: #000;
	bottom: 0;
	margin: auto;
	width: 50%;
}
div#menu_toggle > button.toggle_switch span::before,
div#menu_toggle > button.toggle_switch span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	content: "";
}
div#menu_toggle > button.toggle_switch {
	background-color: transparent;
}
div#menu_toggle > button.toggle_switch span {
	-webkit-transition: background 0s 0.3s;
					transition: background 0s 0.3s;
}
div#menu_toggle > button.toggle_switch span::before,
div#menu_toggle > button.toggle_switch span::after {
	-webkit-transition-duration: 0.3s, 0.3s;
					transition-duration: 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0s;
					transition-delay: 0.3s, 0s;
}
div#menu_toggle > button.toggle_switch span::before {
	-webkit-transition-property: top, -webkit-transform;
					transition-property: top, transform;
}
div#menu_toggle > button.toggle_switch span::after {
	-webkit-transition-property: bottom, -webkit-transform;
					transition-property: bottom, transform;
}
div#menu_toggle > button.toggle_switch span::before {
	top: -7px;
}
div#menu_toggle > button.toggle_switch span::after {
	bottom: -7px;
}
button.toggle_switch {
	background-color: #FFF;
}
button.toggle_switch span {
	-webkit-transition: background 0s 0.3s;
					transition: background 0s 0.3s;
}
button.toggle_switch span::before,
button.toggle_switch span::after {
	-webkit-transition-duration: 0.3s, 0.3s;
					transition-duration: 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0s;
					transition-delay: 0.3s, 0s;
}
button.toggle_switch span::before {
	-webkit-transition-property: top, -webkit-transform;
					transition-property: top, transform;
}
button.toggle_switch span::after {
	-webkit-transition-property: bottom, -webkit-transform;
					transition-property: bottom, transform;
}


body.navi_open div#menu_toggle > button.toggle_switch {
}

body.navi_open div#menu_toggle > button.toggle_switch span {
	background: none;
	background: rgba(255, 255, 255, 0);
	top: 7px;
	width: 40%;
}
body.navi_open div#menu_toggle > button.toggle_switch span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
					transform: rotate(45deg);
}
body.navi_open div#menu_toggle > button.toggle_switch span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
					transform: rotate(-45deg);
}
body.navi_open div#menu_toggle > button.toggle_switch span::before,
body.navi_open div#menu_toggle > button.toggle_switch span::after {
	-webkit-transition-delay: 0s, 0.3s;
					transition-delay: 0s, 0.3s;
	background: #1191be;
}


/* active state, i.e. menu open */
#navi + div#menu_toggle > button.toggle_switch__htra.active {
	background-color: #FFF;
}

#navi + div#menu_toggle > button.toggle_switch__htra.active span {
	-webkit-transform: rotate(180deg);
			-ms-transform: rotate(180deg);
					transform: rotate(180deg);
	background: #FFF;
}

#navi + div#menu_toggle > button.toggle_switch__htra.active span::before,
#navi + div#menu_toggle > button.toggle_switch__htra.active span::after {
	width: 50%;
	background: #FFF;
}

#navi + div#menu_toggle > button.toggle_switch__htra.active span::before {
	top: 0;
	-webkit-transform: translateX(-6px) translateY(3px) rotate(-45deg);
			-ms-transform: translateX(-6px) translateY(3px) rotate(-45deg);
					transform: translateX(-6px) translateY(3px) rotate(-45deg);
}

#navi + div#menu_toggle > button.toggle_switch__htra.active span::after {
	bottom: 0;
	-webkit-transform: translateX(-6px) translateY(-3px) rotate(45deg);
			-ms-transform: translateX(-6px) translateY(-3px) rotate(45deg);
					transform: translateX(-6px) translateY(-3px) rotate(45deg);
}

/* @end */





/* @group container article --------------------------------------------------------*/
#container > div#base {
	display: block;
	width: 100%;
	min-height: 100%;

	transition-property: opacity;
	transition-duration: 0.8s;
	transition-timing-function: ease-out;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
#container > div#base.hide {
	transition-duration: 0.8s;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}
body #container > div#base > article {
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	padding: 100px 0;
	position: relative;
	text-align: center;
	z-index: 1;
	top: 0;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";

	transition-property: opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0,.7,.3,1);
}
body #container > div#base > article.leave {
	z-index: 2;
	position: absolute;
	top: 0;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}
body #container > div#base > article > article {
	margin: 0 30px;
	padding: 80px 0 0;
}
body #container > div#base > article > article.ground {
}


body.index #container > div#base > article {
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0,.7,.3,1);

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";

	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}
body.index.leave #container > div#base > article {
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";

	-webkit-transform: translateY(25%);
	-moz-transform: translateY(25%);
	-o-transform: translateY(25%);
	transform: translateY(25%);
}
body.index #container > div#base > article.hide {
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";

	-webkit-transform: translateY(25%);
	-moz-transform: translateY(25%);
	-o-transform: translateY(25%);
	transform: translateY(25%);
}

#container > div#base > article > div.content {
	position: relative;
	height: 100%;
}
#container > div#base > article > div.content > div.body > header {
	position: relative;
	letter-spacing: 0.1em;
	padding-bottom: 30px;
	text-align: center;
	z-index: 1;
}
#container > div#base > article > div.content > div.body > header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 2px;
	width: 20px;
	background: #000;
	max-width: 30px;
}
#container > div#base > article > div.content > div.body > header > h2 {
	letter-spacing: 0.1em;
}
/* @end */



/* common --------------------------------------------------------*/
article > header {
}
article > header > h1 {
}
article > header > h2 {
}
body #container > div#base > article > article > header {
	height: 135px;
	position: relative;
}
body #container > div#base > article > article > header > h1 {
	height: 90px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	overflow: hidden;
	padding-left: 20px;
}
body #container > div#base > article > article > header > h1 > img {
	height: 100%;
	display: block;
}

article > div.body {
	padding: 30px 350px 30px 40px;
	background: #FFF;
	text-align: left;
}
article > div.index {
	width: 100%;
}
article > div.index > ul {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	letter-spacing: -.40em;
	text-align: left;
	padding: 30px 5%;
}
article > div.index > ul > li {
	display: inline-block;
	width: 33.333%;
	vertical-align: top;
	text-align: center;
	letter-spacing: normal;
	padding: 5%;
}
article > div.index > ul > li > a {
	display: block;
	width: 100%;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";

	transition-property: opacity;
	transition-duration: 1s;
	transition-timing-function: ease-out;
}
article > div.index > ul > li > a.on {
	transition-duration: 0.1s;
	opacity: 0.7;
	-moz-opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
article > div.index > ul > li > a > div.img {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
}
article > div.index > ul > li > a > div.img > img {
	position: absolute;
	display: block;
	top: -100%;
	left: -100%;
	right: -100%;
	bottom: -100%;
	margin: auto;
}
article > div.index > ul > li > a > div.img > img.vertical {
	width: 100%;
	height: auto;
}
article > div.index > ul > li > a > div.img > img.horizontal {
	height: 100%;
	width: auto;
}
article > div.index > ul > li > a > div.text_wrapper {
	line-height: 1.5;
}
article > div.index > ul > li > a > div.text_wrapper > div.title {
	padding: 5px 0;
}
article > div.index > ul > li.load_more {
	position: relative;
	display: block;
	margin: 30px auto 0;
	background: #FFF;
	padding: 0;
	overflow: hidden;
}
article > div.index > ul > li.load_more > a {
	position: relative;
	z-index: 1;
	background: #555;
	color: #FFF;
	padding: 15px 0;

	transition-property: opacity;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}
article > div.index > ul > li.load_more > a > div {
}
article > div.index > ul > li.load_more.loading::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 5;
}
article > div.index > ul > li.load_more.loading > a {
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}
article > div.index > ul > li.load_more.loading > a > div {
}

div.image_list {
	width: 100%;
}
div.image_list > figure {
	display: block;
	width: 100%;
	margin-bottom: 2px;
}
div.image_list > figure > a {
	display: block;
	width: 100%;
}
div.image_list > figure > a > div.img {
	width: 100%;
}
div.image_list > figure > a > div.img > img {
	display: block;
	width: 100%;
}
div.image_list > figure > div.text_wrapper {
}
div.image_list > figure > div.text_wrapper > figcaption {
}
div.image_list > figure > div.text_wrapper > figcaption > p.title {
}
div.image_list > figure > div.text_wrapper > figcaption > div.description {
}


div#entry > div.inner > article {
}
div#entry > div.inner > article > div.body {
}
div#entry > div.inner > article > div.body > header {
	padding-bottom: 30px;
}
div#entry > div.inner > article > div.body > header > h1 {
	display: inline-block;
	padding-right: 15px;
	vertical-align: middle;
}
div#entry > div.inner > article > div.body > header > div.date {
	display: inline-block;
	font-size: 70%;
	vertical-align: middle;
	margin-right: 15px;
}
div#entry > div.inner > article > div.body > header > div.date > time {
}
div#entry > div.inner > article > div.body > header > div.date > time > span {
}
div#entry > div.inner > article > div.body > header > div.date > time > span.year {
}
div#entry > div.inner > article > div.body > header > div.date > time > span.month {
}
div#entry > div.inner > article > div.body > header > div.date > time > span.day {
}
div#entry > div.inner > article > div.body > header > div.date > time > span.week {
}
div#entry > div.inner > article > div.body > header > div.social {
	letter-spacing: -.40em;
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
}
div#entry > div.inner > article > div.body > header > div.social > a {
	display: inline-block;
	width: 30px;
	border-radius: 50%;
	overflow: hidden;
	background: #000;
	margin-right: 10px;
}
div#entry > div.inner > article > div.body > header > div.social > a > div {
	width: 100%;
	padding: 20%;
}
div#entry > div.inner > article > div.body > header > div.social > a > div > img {
	display: block;
	width: 100%;
}
div#entry > div.inner > article > div.body > header > div.social > a.twitter {
}
div#entry > div.inner > article > div.body > header > div.social > a.twitter > div {
}
div#entry > div.inner > article > div.body > header > div.social > a.twitter > div > img {
}
div#entry > div.inner > article > div.body > header > div.social > a.facebook {
}
div#entry > div.inner > article > div.body > header > div.social > a.facebook > div {
}
div#entry > div.inner > article > div.body > header > div.social > a.facebook > div > img {
}
div#entry > div.inner > article > div.body > div.description {
	padding: 15px 0;
}
div#entry > a.close {
	position: fixed;
	top: 70px;
	height: 70px;
	width: 70px;
	z-index: 1100;
	left: 0;
	text-indent: -9999em;
}
div#entry > a.close::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 50%;
	height: 50%;
	border: solid #333;
	border-width: 2px 2px 0 0;
	transform: rotate(225deg);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
div#entry > a.close::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 70%;
	height: 0;
	border: solid #333;
	border-width: 2px 0 0 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
div#entry > div.inner > article > a.next_entry {
	float: left;
}
div#entry > div.inner > article > a.next_entry::before {
	content: "＜ ";
}
div#entry > div.inner > article > a.prev_entry {
	float: right;
}
div#entry > div.inner > article > a.prev_entry::after {
	content: " ＞";
}
div#entry > div.inner > div#footer {
}
div#entry > div.inner > div#footer > a {
}
div#entry > div.inner > div#footer > footer {
}
div#entry > div.inner > div#footer > footer > small {
}
div#entry > div.inner > div#footer > footer > small > span {
}
/* @end */




/* root --------------------------------------------------------*/
body #container > div#base > article#root {
	padding-top: 230px;
	padding-bottom: 0;
	max-width: 1110px;
	position: relative;
}
body #container > div#base > article#root > header {
	display: block;
	width: 100%;
	position: relative;
	z-index: 10;
	height: 250px;
}
body #container > div#base > article#root > header > h1 {
	position: absolute;
	top: 0;
	left: 7%;
	right: auto;
	bottom: 0;
	margin: auto;
	height: 290px;
	width: 290px;
}
body #container > div#base > article#root > header > h1 > img {
	width: 100%;
	display: block;
}
body #container > div#base > div#slide_wrapper {
	position: absolute;
	top: 230px;
	width: 100%;
	background: #EEE;
	overflow: hidden;
	z-index: -1;
	height: 250px;
}
body #container > div#base > div#slide_wrapper > div#SLIDE {
	position: relative;
	width: 100%;
	height: 100%;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 1;

	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";

	transition-property: z-index, opacity;
	transition-duration: 0s, 3s;
	transition-timing-function: ease-out;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active {
	z-index: 3;

	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.pending.active {
	z-index: 2;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a {
	display: block;
	width: 100%;
	height: 100%;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img {
	position: relative;
	width: 100%;
	height: 100%;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img > img {
	max-width: none;
	max-height: none;
	width: auto;
	height: auto;
	display: block;
	position: absolute;
	top: -100%;
	left: -100%;
	right: -100%;
	bottom: -100%;
	margin: auto;

	-moz-transform-property: -moz-transform;
	-webkit-transform-property: -webkit-transform;
	-o-transform-property: -o-transform;
	-ms-transform-property: -ms-transform;
	transition-property: transform;

	-moz-transition-delay: 1s;
	-webkit-transition-delay: 1s;
	-o-transition-delay: 1s;
	-ms-transition-delay: 1s;
	transition-delay: 1s;

	-moz-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	-ms-transition-duration: 0s;
	transition-duration: 0s;

	-moz-transition-timing-function: linear;
	-webkit-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	transition-timing-function: linear;

	-moz-transform: matrix(1.3, 0, 0, 1.3, 0, 0);
	-webkit-transform: matrix(1.3, 0, 0, 1.3, 0, 0);
	-o-transform: matrix(1.3, 0, 0, 1.3, 0, 0);
	-ms-transform: matrix(1.3, 0, 0, 1.3, 0, 0);
	transform: matrix(1.3, 0, 0, 1.3, 0, 0);
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img > img {
	-moz-transition-delay: 0s;
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	-ms-transition-delay: 0s;
	transition-delay: 0s;

	-moz-transition-duration: 14s;
	-webkit-transition-duration: 14s;
	-o-transition-duration: 14s;
	-ms-transition-duration: 14s;
	transition-duration: 14s;

	-moz-transform: matrix(1, 0, 0, 1, 0, 0);
	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
	-o-transform: matrix(1, 0, 0, 1, 0, 0);
	-ms-transform: matrix(1, 0, 0, 1, 0, 0);
	transform: matrix(1, 0, 0, 1, 0, 0);
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.horizontal > a > div.img > img {
	height: 100%;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.vertical > a > div.img > img {
	width: 100%;
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a {
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img {
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_jp {
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_en {
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_jp {
}
body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_en {
}
/* @end */


/* details --------------------------------------------------------*/
body #container > div#base > article > div.float {
	z-index: 20;
	margin: 0;

	position: absolute;
	top: auto;
	bottom: auto;
	height: 0;
	width: 100%;
	max-width: 1110px;
}
body #container > div#base > article > div.float.fixed {
	position: fixed;
	top: 60px;
	bottom: auto;
}
body #container > div#base > article > div.float.bottom {
	position: absolute;
	top: auto;
	bottom: 0;
}
body #container > div#base > article > div.float.bottom > article#details {
	bottom: 0;
}
body #container > div#base > article > div.float > article#details {
	padding: 40px 40px;
	text-align: left;
	background: rgba(255, 255, 255, 0.85);
	width: 350px;
	right: 30px;
	position: absolute;
}
body #container > div#base > article > div.float > article#details > * {
	width: 100%;
}
body #container > div#base > article > div.float > article#details > * > h2 {
	display: inline-block;
	font-size: 200%;
	border-bottom: 9px solid #cce198;
	line-height: 1.6;
}
body #container > div#base > article > div.float > article#details > h1 {
}
body #container > div#base > article > div.float > article#details > h1 > img {
	display: block;
	width: 100%;
}
body #container > div#base > article > div.float > article#details > div.schedule {
	padding-top: 20px;
}
body #container > div#base > article > div.float > article#details > div.schedule > div.img {
	width: 100%;
	margin-top: 10px;
}
body #container > div#base > article > div.float > article#details > div.schedule > div.img > img {
	display: block;
	width: 100%;
}
body #container > div#base > article > div.float > article#details > div.schedule > div.note {
	background: #008ad4;
	color: #FFF;
	line-height: 1.7;
	padding: 12px 17px;
	font-size: 90%;
	text-align: justify;
}
body #container > div#base > article > div.float > article#details > div.access {
	margin-top: 30px;
}
body #container > div#base > article > div.float > article#details > div.access > h2 {
}
body #container > div#base > article > div.float > article#details > div.access > div.gmap {
	position: relative;
	margin-top: 15px;
	height: 185px;
}
body #container > div#base > article > div.float > article#details > div.access > div.gmap > iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	display: block;
}
body #container > div#base > article > div.float > article#details > div.access > a {
	display: block;
	text-align: center;
	line-height: 40px;
	color: #FFF;
	background: #008ad4;
	text-decoration: none;
	font-size: 85%;
	margin: 10px 0;
}
body #container > div#base > article > div.float > article#details > div.access > div.img {
	width: 100%;
}
body #container > div#base > article > div.float > article#details > div.access > div.img > img {
	display: block;
	width: 100%;
}
/* @end */



/* top --------------------------------------------------------*/
body #container > div#base > article#root > article#top {
	padding: 0;
}
body #container > div#base > article#root > article#top > div.body {
}
body #container > div#base > article#root > article#top > div.body > header {
	min-height: 60px;
}
body #container > div#base > article#root > article#top > div.body > header > h1 {
	display: inline-block;
	font-size: 200%;
	border-bottom: 9px solid #cce198;
	line-height: 1.6;
}
body #container > div#base > article#root > article#top > div.body > section.news {
}
body #container > div#base > article#root > article#top > div.body > section.news > div.header {
	margin-top: -40px;
	min-height: 40px;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.header > a {
	width: 150px;
	display: block;
	margin: 0 0 0 auto;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.header > a > img {
	display: block;
	width: 100%;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index {
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul {
	padding-bottom: 30px;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li {
	border-bottom: 1px solid #bbb;
	padding-bottom: 20px;
	padding-top: 20px;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title {
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.date {
	display: inline-block;
	padding-right: 10px;
	font-size: 90%;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > h3 {
	font-weight: bold;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.newmark {
	display: inline-block;
	font-size: 80%;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description {
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.text {
	line-height: 1.5;
	font-size: 90%;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img {
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a {
	display: inline-block;
	height: 150px;
	margin: 10px 10px 0 0;
}
body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a > img {
	display: block;
	height: 100%;
	width: auto;
}

/* greeting --------------------------------------------------------*/
body #container > div#base > article#root > article#greeting {
}
body #container > div#base > article#root > article#greeting > header {
}
body #container > div#base > article#root > article#greeting > header > h1 {
}
body #container > div#base > article#root > article#greeting > header > h1 > img {
}
body #container > div#base > article#root > article#greeting > div.body {
}
body #container > div#base > article#root > article#greeting > div.body > h2 {
	display: inline-block;
	font-size: 200%;
	border-bottom: 9px solid #cce198;
	line-height: 1.6;
}
body #container > div#base > article#root > article#greeting > div.body > div.description {
	margin-top: 20px;
	max-width: 1000px;
}
body #container > div#base > article#root > article#greeting > div.body > div.description > div.text {
	background: #fef9e8;
	padding: 30px 30px 40px;
	font-size: 95%;
	line-height: 2;
	color: #595757;
	letter-spacing: 0.05em;
	text-align: justify;
}
body #container > div#base > article#root > article#greeting > div.body > div.description > div.text > div.name {
	text-align: right;
	padding-top: 30px;
}
body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail {
	letter-spacing: -.40em;
	font-size: 90%;
	padding: 50px 0 30px;
	margin: 0 -2%;
}
body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl {
	display: inline-block;
	letter-spacing: normal;
	width: 46%;
	margin: 0 2%;
	vertical-align: top;
}
body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > * {
}
body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dt {;
	border: 1px solid #595757;
	text-align: center;
	padding: 2px;
}
body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dd {
	line-height: 2;
	padding-top: 15px;
}

/* medical --------------------------------------------------------*/
body #container > div#base > article#root > article#medical {
}
body #container > div#base > article#root > article#medical > header {
}
body #container > div#base > article#root > article#medical > header > h1 {
}
body #container > div#base > article#root > article#medical > header > h1 > img {
}
body #container > div#base > article#root > article#medical > div.body {
}
body #container > div#base > article#root > article#medical > div.body > h2 {
	display: inline-block;
	font-size: 200%;
	border-bottom: 9px solid #cce198;
	line-height: 1.6;
}
body #container > div#base > article#root > article#medical > div.body > div.description {
	margin-top: 20px;
	letter-spacing: 0.05em;
	font-size: 95%;
	padding-bottom: 80px;
	max-width: 1000px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.service {
	letter-spacing: -.40em;
	margin: 0 -1.5%;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl {
	display: inline-block;
	width: 47%;
	margin: 1.5%;
	letter-spacing: 0.05em;
	background: #fef9e8;
	padding: 2% 3%;
	vertical-align: top;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > * {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dt {
	color: #0099cc;
	text-align: center;
	font-size: 160%;
	padding: 10px 0;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dd {
	border-top: 2px solid #0099cc;
	padding-top: 10px;
	min-height: 120px;
	text-align: justify;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.service > p {
	letter-spacing: 0.05em;
	text-align: center;
	color: #0099cc;
	font-size: 110%;
	padding: 20px 0;
	line-height: 1.4;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.service > p span {
	display: inline-block;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.text {
	letter-spacing: 0.05em;
	padding-bottom: 30px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl {
	padding: 10px 0 30px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > * {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dt {
	border: 1px solid #0099cc;
	display: inline-block;
	color: #0099cc;
	width: 200px;
	text-align: center;
	font-size: 105%;
	margin-bottom: 10px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul {
	font-size: 90%;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li {
	padding-left: 25px;
	padding-top: 5px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li::before {
	content: "●";
	display: inline-block;
	margin-left: -20px;
	width: 20px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow {
	letter-spacing: -.40em;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step {
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
	width: 106px;
	height: 106px;
	text-align: center;
	border: 3px solid #0099cc;
	border-radius: 50%;
	color: #0099cc;
	padding-top: 15px;
	margin: 0 20px 10px 0;
	position: relative;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > i {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -22px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > i::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 50%;
	height: 50%;
	border: solid #82bfe9;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > i::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 70%;
	height: 0;
	border: solid #82bfe9;
	border-width: 2px 0 0 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > * {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dt {
	background: #0099cc;
	color: #FFF;
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	border-radius: 50%;
	margin-bottom: 8px;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dd {
	font-size: 150%;
	line-height: 1.1;
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dt {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dd {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dt {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dd {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dt {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dd {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dt {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dd {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dt {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dd {
}
body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > img {
	display: block;
	width: 100%;
}

/* clinic --------------------------------------------------------*/
body #container > div#base > article#root > article#clinic {
}
body #container > div#base > article#root > article#clinic > header {
}
body #container > div#base > article#root > article#clinic > header > h1 {
}
body #container > div#base > article#root > article#clinic > header > h1 > img {
}
body #container > div#base > article#root > article#clinic > div.body {
}
body #container > div#base > article#root > article#clinic > div.body > div.photo {
	letter-spacing: -.40em;
}
body #container > div#base > article#root > article#clinic > div.body > div.photo > a {
	display: inline-block;
	letter-spacing: normal;
	text-align: center;
	width: 33.333%;
	padding: 2%;
}
body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img {
	width: 100%;
}
body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img > img.example-image {
	display: block;
	width: 100%;
}
body #container > div#base > article#root > article#clinic > div.body > div.photo > a > p {
	color: #555;
	font-size: 80%;
}

/* access --------------------------------------------------------*/
body #container > div#base > article#root > article#access {
}
body #container > div#base > article#root > article#access > header {
}
body #container > div#base > article#root > article#access > header > h1 {
}
body #container > div#base > article#root > article#access > header > h1 > img {
}
body #container > div#base > article#root > article#access > div.body {
}
body #container > div#base > article#root > article#access > div.body > div.description {
	max-width: 1000px;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail {
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl {
	padding: 20px 0;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > * {
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dt {
	border: 1px solid #0099cc;
	display: inline-block;
	color: #0099cc;
	text-align: center;
	font-size: 105%;
	margin-bottom: 10px;
	padding: 0 20px;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd {
	width: 100%;
	display: block;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap {
	position: relative;
	width: 100%;
	height: 320px;
	background: #EEE;
	margin-top: 10px;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap > iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > img {
	display: block;
	width: 100%;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr {
	margin-top: 30px;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > * {
	display: inline-block;
	vertical-align: middle;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dt {
	border: 1px solid #595757;
	color: #595757;
	text-align: center;
	font-size: 105%;
	padding: 0 10px;
	margin-right: 10px;
	border-radius: 5px;
}
body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dd {
}







/* footer --------------------------------------------------------*/
div#footer {
	padding: 20px 60px 80px;
	font-size: 80%;
}
div#footer span {
	display: inline-block;
}
div#footer > footer {
	letter-spacing: -.40em;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
div#footer > footer > div {
	display: inline-block;
	width: 50%;
	letter-spacing: normal;
	vertical-align: top;
	position: relative;
	min-height: 110px;
}
div#footer > footer > div.left {
	padding-right: 30px;
	
}
div#footer > footer > div.left::after {
	content: "";
	background: url("../elements/dot.png") top left repeat-y;
	background-size: auto 7.5px;
	position: absolute;
	right: 0;
	height: 100%;
	width: 30px;
	bottom: 0;
	
}
div#footer > footer > h1 {
	width: 240px;
}
div#footer > footer > h1 > img {
	display: block;
	width: 100%;
}
div#footer > footer > div > address {
	padding: 10px 0 20px;
	font-style: normal;
}
div#footer > footer > div > address > div {
}
div#footer > footer > div > address > div > a.link_tel {
	color: #000;
	text-decoration: none;
}
div#footer > footer > div > small {
}
div#footer > footer > div > div {
}
div#footer > footer > div > div > h2 {
	float: left;
	border: 1px solid #666666;
	padding: 2px 10px;
	line-height: 1.2;
	margin-right: 15px;
	margin-bottom: 15px;
}
div#footer > footer > div > div > div.inner {
	overflow: hidden;
	line-height: 1.5;
	float: left;
}
div#footer > footer > div > div > div.inner > dl {
	letter-spacing: -.40em;
	padding-bottom: 10px;
}
div#footer > footer > div > div > div.inner > dl > * {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
}
div#footer > footer > div > div > div.inner > dl > dt {
	width: 105px;
}
div#footer > footer > div > div > div.inner > dl > dd {
}
/* @end */




/* @group slide --------------------------------------------------------*/
body #container > div#base > div#slide_wrapper > ul {
	width: 100%;
	height: 100%;
	opacity: 0;

	transition-property: opacity;
	transition-duration: 0.6s;
	transition-timing-function: ease-out;
}
body #container > div#base > div#slide_wrapper > ul.show {
	opacity: 1;
}
body #container > div#base > div#slide_wrapper > ul > li {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: 0;

	transition-property: z-index, opacity;
	transition-duration: 0.6s;
	transition-timing-function: ease-out;
}
body #container > div#base > div#slide_wrapper > ul > li.active {
	z-index: 5;
	opacity: 1;
}

body #container > div#base > div#slide_wrapper > ul > li > img {
	display: block;
	width: 100%;
	position: absolute;
	top: -100%;
	left: -100%;
	right: -100%;
	bottom: -100%;
	margin: auto;
}
/* @end */




/* ==========================================================================
   Media Queries
   ========================================================================== */


/* @group If <= 1300 --------------------------------------------------------*/
@media only screen and (max-width: 1300px) {


}
/* @end */


/* @group If <= 1000 --------------------------------------------------------*/
@media only screen and (max-width: 1000px) {


	/* common --------------------------------------------------------*/
	div#entry > a.close {
		top: 0;
		width: 50px;
		height: 50px;
		margin: 10px;
	}
	/* @end */


	/* @group header --------------------------------------------------------*/
	body #header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 70px;
		width: auto;

		transition-property: top;
		transition-duration: 0.4s;
		transition-timing-function: linear;
		z-index: 20;
		background: rgba(255, 255, 255, 0.85);
	}
	body #header > div > header {
		height: 100%;
	}
	body #header > div > header > h1 {
		height: 100%;
		position: relative;
	}
	body #header > div > header > h1 > a {
		display: block;
		height: 70px;
		width: 232px;
		margin: 0 auto;
	}
	body #header > div > header > h1 > a > img {
		height: 90%;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	#header > a#logo {
		display: block;
		height: 100%;
		width: 360px;
		white-space: nowrap;
		margin: 0 auto;
		line-height: 70px;
		text-align: center;
		letter-spacing: 0.1em;
		color: #000;
		text-decoration: none;
	}
	/* @end */


	/* @group nav --------------------------------------------------------*/
	div#menu_toggle {
		display: block;
	}
	#navi {
		width: auto;
		padding-left: 0;
		position: relative;
		background: none;
		z-index: 100;
	}
	div#navi > nav {
		padding: 0;
		text-align: left;

		transition-property: transform;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0,1,0,1);

		width: 280px;
		z-index: 100;
		position: fixed;
		top: 0;
		height: 100%;

		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		-webkit-transform: translateZ(0px);

		transform: matrix(1, 0, 0, 1, 280, 0);
		-moz-transform: matrix(1, 0, 0, 1, 280, 0);
		-webkit-transform: matrix(1, 0, 0, 1, 280, 0);
		-o-transform: matrix(1, 0, 0, 1, 280, 0);
		-ms-transform: matrix(1, 0, 0, 1, 280, 0);
		right: 0;
	}
	div#navi > nav::-webkit-scrollbar{
		width: 5px;
	}
	div#navi > nav::-webkit-scrollbar-track{
		width: 5px;
	}
	div#navi > nav::-webkit-scrollbar-thumb{
		background: #888;
		border-radius: 0;
	}
	div#navi > nav::-webkit-scrollbar-track-piece:start{
		background: #EEE;
	}
	div#navi > nav::-webkit-scrollbar-track-piece:end{
		background: #EEE;
	}
	body.navi_open #navi > nav {
		transform: matrix(1, 0, 0, 1, 0, 0);
		-moz-transform: matrix(1, 0, 0, 1, 0, 0);
		-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
		-o-transform: matrix(1, 0, 0, 1, 0, 0);
		-ms-transform: matrix(1, 0, 0, 1, 0, 0);
	}

	div#navi > nav > ul {
		width: 100%;
		letter-spacing: -.40em;
		display: block;
		line-height: 0;
		position: relative;
		padding-top: 70px;
		background: #FFF;
	}
	div#navi > nav > a.link_tel {
		position: relative;
		right: auto;
		display: block;
		bottom: auto;
		padding: 20px 20px;
		width: 100%;
		background: #FFF;
		height: auto;
	}

	div#navi > nav > ul li {
		position: relative;
		display: block;
		padding: 0;
	}
	div#navi > nav > ul li a {
		transition-property: background;
		transition-duration: 0.25s;
		transition-timing-function: ease-out;

		display: block;
	}
	div#navi > nav > ul > li a.on {
		transition-duration: 0s;
		background: rgba(255, 255, 255, 0.35);
	}
	div#navi > nav > ul > li a.active {
		background: rgba(255, 255, 255, 0.6);
		cursor: default;
	}
	#navi > nav > ul > li > a {
		display: none !important;
	}
	div#navi > nav > ul > li > ul {
		display: block !important;
		background: none;
		top: 0;
		position: relative;

		opacity: 1;
		-moz-opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha(opacity=100)";

		background: rgb(143,195,31);
		background: -moz-linear-gradient(left, rgb(143,195,31) 0%, rgb(0,138,212) 100%);
		background: -webkit-linear-gradient(left, rgb(143,195,31) 0%,rgb(0,138,212) 100%);
		background: linear-gradient(to right, rgb(143,195,31) 0%,rgb(0,138,212) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fc31f', endColorstr='#008ad4',GradientType=1 );

	}
	div#navi > nav > ul > li > ul > li > a {
	}
	#navi > .modal_overlay {
		display: block;
		width: 0%;
	}
	body.navi_open #navi > .modal_overlay {
		width: 100%;
	}
	/* @end */


	/* common --------------------------------------------------------*/
	article > header {
	}
	article > header > h1 {
	}
	article > header > h2 {
	}
	body #container > div#base > article > article > header {
	}
	body #container > div#base > article > article > header > h1 {
	padding-left: 0;
	}
	body #container > div#base > article > article > header > h1 > img {
	}
	article > div.body {
	padding: 20px 310px 30px 20px;
	}
	body #container > div#base > article > article {
	margin: 0 10px;
	}
	article > div.index {
	}
	article > div.index > ul {
	}
	article > div.index > ul > li {
	}
	article > div.index > ul > li > a {
	}
	article > div.index > ul > li > a.on {
	}
	article > div.index > ul > li > a > div.img {
	}
	article > div.index > ul > li > a > div.img > img {
	}
	article > div.index > ul > li > a > div.img > img.vertical {
	}
	article > div.index > ul > li > a > div.img > img.horizontal {
	}
	article > div.index > ul > li > a > div.text_wrapper {
	}
	article > div.index > ul > li > a > div.text_wrapper > div.title {
	}
	article > div.index > ul > li.load_more {
	}
	article > div.index > ul > li.load_more > a {
	}
	article > div.index > ul > li.load_more > a > div {
	}
	article > div.index > ul > li.load_more.loading::after {
	}
	article > div.index > ul > li.load_more.loading > a {
	}
	article > div.index > ul > li.load_more.loading > a > div {
	}
	div.image_list {
	}
	div.image_list > figure {
	}
	div.image_list > figure > a {
	}
	div.image_list > figure > a > div.img {
	}
	div.image_list > figure > a > div.img > img {
	}
	div.image_list > figure > div.text_wrapper {
	}
	div.image_list > figure > div.text_wrapper > figcaption {
	}
	div.image_list > figure > div.text_wrapper > figcaption > p.title {
	}
	div.image_list > figure > div.text_wrapper > figcaption > div.description {
	}
	div#entry > div.inner > article {
	}
	div#entry > div.inner > article > div.body {
	}
	div#entry > div.inner > article > div.body > header {
	}
	div#entry > div.inner > article > div.body > header > h1 {
	}
	div#entry > div.inner > article > div.body > header > div.date {
	}
	div#entry > div.inner > article > div.body > header > div.date > time {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.year {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.month {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.day {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.week {
	}
	div#entry > div.inner > article > div.body > header > div.social {
	}
	div#entry > div.inner > article > div.body > header > div.social > a {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div > img {
	}
	div#entry > div.inner > article > div.body > div.description {
	}
	div#entry > a.close {
	}
	div#entry > a.close::before {
	}
	div#entry > a.close::after {
	}
	div#entry > div.inner > article > a.next_entry {
	}
	div#entry > div.inner > article > a.next_entry::before {
	}
	div#entry > div.inner > article > a.prev_entry {
	}
	div#entry > div.inner > article > a.prev_entry::after {
	}
	div#entry > div.inner > div#footer {
	}
	div#entry > div.inner > div#footer > a {
	}
	div#entry > div.inner > div#footer > footer {
	}
	div#entry > div.inner > div#footer > footer > small {
	}
	div#entry > div.inner > div#footer > footer > small > span {
	}
	/* @end */


	/* root --------------------------------------------------------*/
	body #container > div#base > article#root {
	padding-top: 70px;
	}
	body #container > div#base > article#root > header {
	height: 400px;
	}
	body #container > div#base > article#root > header > h1 {
	}
	body #container > div#base > article#root > header > h1 > img {
	}
	body #container > div#base > div#slide_wrapper {
	top: 70px;
	height: 400px;
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.pending.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.horizontal > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.vertical > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_en {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_en {
	}
	/* @end */

	/* details --------------------------------------------------------*/
	body #container > div#base > article > div.float {
	}
	body #container > div#base > article > div.float.fixed {
		top: 0;
	}
	body #container > div#base > article > div.float.bottom {
	}
	body #container > div#base > article > div.float.bottom > article#details {
	}
	body #container > div#base > article > div.float > article#details {
		right: 10px;
		padding: 70px 20px 20px;
		width: 310px;
	}
	body #container > div#base > article > div.float > article#details > * {
	}
	body #container > div#base > article > div.float > article#details > * > h2 {
	}
	body #container > div#base > article > div.float > article#details > h1 {
	}
	body #container > div#base > article > div.float > article#details > h1 > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.note {
	}
	body #container > div#base > article > div.float > article#details > div.access {
	}
	body #container > div#base > article > div.float > article#details > div.access > h2 {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap > iframe {
	}
	body #container > div#base > article > div.float > article#details > div.access > a {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img > img {
	}
	/* @end */

	/* top --------------------------------------------------------*/
	body #container > div#base > article#root > article#top {
	}
	body #container > div#base > article#root > article#top > div.body {
	padding-top: 70px;
	}
	body #container > div#base > article#root > article#top > div.body > header {
	}
	body #container > div#base > article#root > article#top > div.body > header > h1 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a > img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.date {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > h3 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.newmark {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.text {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a > img {
	}

	/* greeting --------------------------------------------------------*/
	body #container > div#base > article#root > article#greeting {
	}
	body #container > div#base > article#root > article#greeting > header {
	}
	body #container > div#base > article#root > article#greeting > header > h1 {
	}
	body #container > div#base > article#root > article#greeting > header > h1 > img {
	}
	body #container > div#base > article#root > article#greeting > div.body {
	}
	body #container > div#base > article#root > article#greeting > div.body > h2 {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text > div.name {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dd {
	}

	/* medical --------------------------------------------------------*/
	body #container > div#base > article#root > article#medical {
	}
	body #container > div#base > article#root > article#medical > header {
	}
	body #container > div#base > article#root > article#medical > header > h1 {
	}
	body #container > div#base > article#root > article#medical > header > h1 > img {
	}
	body #container > div#base > article#root > article#medical > div.body {
	}
	body #container > div#base > article#root > article#medical > div.body > h2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > p {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li::before {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dd {
	}

	/* clinic --------------------------------------------------------*/
	body #container > div#base > article#root > article#clinic {
	}
	body #container > div#base > article#root > article#clinic > header {
	}
	body #container > div#base > article#root > article#clinic > header > h1 {
	}
	body #container > div#base > article#root > article#clinic > header > h1 > img {
	}
	body #container > div#base > article#root > article#clinic > div.body {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img > img.example-image {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > p {
	}

	/* access --------------------------------------------------------*/
	body #container > div#base > article#root > article#access {
	}
	body #container > div#base > article#root > article#access > header {
	}
	body #container > div#base > article#root > article#access > header > h1 {
	}
	body #container > div#base > article#root > article#access > header > h1 > img {
	}
	body #container > div#base > article#root > article#access > div.body {
	}
	body #container > div#base > article#root > article#access > div.body > div.description {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap > iframe {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > img {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dd {
	}

}
/* @end */



/* @group If <= 900 --------------------------------------------------------*/
@media only screen and (max-width: 900px) {

	/* common --------------------------------------------------------*/
	article > header {
	}
	article > header > h1 {
	}
	article > header > h2 {
	}
	body #container > div#base > article > article > header {
		height: 80px;
	}
	body #container > div#base > article > article > header > h1 {
		height: 60px;
	}
	body #container > div#base > article > article > header > h1 > img {
	}
	article > div.body {
		padding: 20px 260px 30px 20px;
	}
	body #container > div#base > article > article {
	}
	article > div.index {
	}
	article > div.index > ul {
	}
	article > div.index > ul > li {
	}
	article > div.index > ul > li > a {
	}
	article > div.index > ul > li > a.on {
	}
	article > div.index > ul > li > a > div.img {
	}
	article > div.index > ul > li > a > div.img > img {
	}
	article > div.index > ul > li > a > div.img > img.vertical {
	}
	article > div.index > ul > li > a > div.img > img.horizontal {
	}
	article > div.index > ul > li > a > div.text_wrapper {
	}
	article > div.index > ul > li > a > div.text_wrapper > div.title {
	}
	article > div.index > ul > li.load_more {
	}
	article > div.index > ul > li.load_more > a {
	}
	article > div.index > ul > li.load_more > a > div {
	}
	article > div.index > ul > li.load_more.loading::after {
	}
	article > div.index > ul > li.load_more.loading > a {
	}
	article > div.index > ul > li.load_more.loading > a > div {
	}
	div.image_list {
	}
	div.image_list > figure {
	}
	div.image_list > figure > a {
	}
	div.image_list > figure > a > div.img {
	}
	div.image_list > figure > a > div.img > img {
	}
	div.image_list > figure > div.text_wrapper {
	}
	div.image_list > figure > div.text_wrapper > figcaption {
	}
	div.image_list > figure > div.text_wrapper > figcaption > p.title {
	}
	div.image_list > figure > div.text_wrapper > figcaption > div.description {
	}
	div#entry > div.inner > article {
	}
	div#entry > div.inner > article > div.body {
	}
	div#entry > div.inner > article > div.body > header {
	}
	div#entry > div.inner > article > div.body > header > h1 {
	}
	div#entry > div.inner > article > div.body > header > div.date {
	}
	div#entry > div.inner > article > div.body > header > div.date > time {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.year {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.month {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.day {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.week {
	}
	div#entry > div.inner > article > div.body > header > div.social {
	}
	div#entry > div.inner > article > div.body > header > div.social > a {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div > img {
	}
	div#entry > div.inner > article > div.body > div.description {
	}
	div#entry > a.close {
	}
	div#entry > a.close::before {
	}
	div#entry > a.close::after {
	}
	div#entry > div.inner > article > a.next_entry {
	}
	div#entry > div.inner > article > a.next_entry::before {
	}
	div#entry > div.inner > article > a.prev_entry {
	}
	div#entry > div.inner > article > a.prev_entry::after {
	}
	div#entry > div.inner > div#footer {
	}
	div#entry > div.inner > div#footer > a {
	}
	div#entry > div.inner > div#footer > footer {
	}
	div#entry > div.inner > div#footer > footer > small {
	}
	div#entry > div.inner > div#footer > footer > small > span {
	}
	/* @end */


	/* root --------------------------------------------------------*/
	body #container > div#base > article#root {
	}
	body #container > div#base > article#root > header {
	}
	body #container > div#base > article#root > header > h1 {
	}
	body #container > div#base > article#root > header > h1 > img {
	}
	body #container > div#base > div#slide_wrapper {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.pending.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.horizontal > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.vertical > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_en {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_en {
	}
	/* @end */

	/* details --------------------------------------------------------*/
	body #container > div#base > article > div.float {
	}
	body #container > div#base > article > div.float.fixed {
	}
	body #container > div#base > article > div.float.bottom {
	}
	body #container > div#base > article > div.float.bottom > article#details {
	}
	body #container > div#base > article > div.float > article#details {
	width: 260px;
	}
	body #container > div#base > article > div.float > article#details > * {
	}
	body #container > div#base > article > div.float > article#details > * > h2 {
	}
	body #container > div#base > article > div.float > article#details > h1 {
	}
	body #container > div#base > article > div.float > article#details > h1 > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.note {
	}
	body #container > div#base > article > div.float > article#details > div.access {
	}
	body #container > div#base > article > div.float > article#details > div.access > h2 {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap > iframe {
	}
	body #container > div#base > article > div.float > article#details > div.access > a {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img > img {
	}
	/* @end */

	/* top --------------------------------------------------------*/
	body #container > div#base > article#root > article#top {
	}
	body #container > div#base > article#root > article#top > div.body {
	}
	body #container > div#base > article#root > article#top > div.body > header {
	}
	body #container > div#base > article#root > article#top > div.body > header > h1 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a > img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.date {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > h3 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.newmark {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.text {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a > img {
	}

	/* greeting --------------------------------------------------------*/
	body #container > div#base > article#root > article#greeting {
	}
	body #container > div#base > article#root > article#greeting > header {
	}
	body #container > div#base > article#root > article#greeting > header > h1 {
	}
	body #container > div#base > article#root > article#greeting > header > h1 > img {
	}
	body #container > div#base > article#root > article#greeting > div.body {
	}
	body #container > div#base > article#root > article#greeting > div.body > h2 {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text > div.name {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dd {
	}

	/* medical --------------------------------------------------------*/
	body #container > div#base > article#root > article#medical {
	}
	body #container > div#base > article#root > article#medical > header {
	}
	body #container > div#base > article#root > article#medical > header > h1 {
	}
	body #container > div#base > article#root > article#medical > header > h1 > img {
	}
	body #container > div#base > article#root > article#medical > div.body {
	}
	body #container > div#base > article#root > article#medical > div.body > h2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > p {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li::before {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dd {
	}

	/* clinic --------------------------------------------------------*/
	body #container > div#base > article#root > article#clinic {
	}
	body #container > div#base > article#root > article#clinic > header {
	}
	body #container > div#base > article#root > article#clinic > header > h1 {
	}
	body #container > div#base > article#root > article#clinic > header > h1 > img {
	}
	body #container > div#base > article#root > article#clinic > div.body {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a {
		width: 50%;
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img > img.example-image {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > p {
	}

	/* access --------------------------------------------------------*/
	body #container > div#base > article#root > article#access {
	}
	body #container > div#base > article#root > article#access > header {
	}
	body #container > div#base > article#root > article#access > header > h1 {
	}
	body #container > div#base > article#root > article#access > header > h1 > img {
	}
	body #container > div#base > article#root > article#access > div.body {
	}
	body #container > div#base > article#root > article#access > div.body > div.description {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap > iframe {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > img {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dd {
	}

	/* footer --------------------------------------------------------*/
	div#footer {
		padding: 20px 30px 80px;
	}
	div#footer span {
	}
	div#footer > footer {
	}
	div#footer > footer > div {
	}
	div#footer > footer > div.left {
	}
	div#footer > footer > div.left::after {
	}
	div#footer > footer > h1 {
	}
	div#footer > footer > h1 > img {
	}
	div#footer > footer > div > address {
	}
	div#footer > footer > div > address > div {
	}
	div#footer > footer > div > address > div > a.link_tel {
	}
	div#footer > footer > div > small {
	}
	div#footer > footer > div > div {
	}
	div#footer > footer > div > div > h2 {
	}
	div#footer > footer > div > div > div.inner {
	}
	div#footer > footer > div > div > div.inner > dl {
	}
	div#footer > footer > div > div > div.inner > dl > * {
	}
	div#footer > footer > div > div > div.inner > dl > dt {
	}
	div#footer > footer > div > div > div.inner > dl > dd {
	}
	/* @end */

}
/* @end */



/* @group If <= 800 --------------------------------------------------------*/
@media only screen and (max-width: 800px) {

	/* footer --------------------------------------------------------*/
	div#footer {
	}
	div#footer span {
	}
	div#footer > footer {
	}
	div#footer > footer > div {
	}
	div#footer > footer > div.left {
	min-height: 200px;
	}
	div#footer > footer > div.left::after {
	}
	div#footer > footer > h1 {
	}
	div#footer > footer > h1 > img {
	}
	div#footer > footer > div > address {
	}
	div#footer > footer > div > address > div {
	}
	div#footer > footer > div > address > div > a.link_tel {
	}
	div#footer > footer > div > small {
	}
	div#footer > footer > div > div {
	}
	div#footer > footer > div > div > h2 {
	float: none;
	display: inline-block;
	margin-bottom: 10px;
	}
	div#footer > footer > div > div > div.inner {
	float: none;
	}
	div#footer > footer > div > div > div.inner > dl {
	}
	div#footer > footer > div > div > div.inner > dl > * {
	}
	div#footer > footer > div > div > div.inner > dl > dt {
	display: block;
	}
	div#footer > footer > div > div > div.inner > dl > dd {
	}
	/* @end */

}
/* @end */


/* @group If <= 740 = iphone landscape --------------------------------------------------------*/
@media only screen and (max-width: 740px) {

	body {
		font-size: 80%;
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		-o-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}

	/* common --------------------------------------------------------*/
	article > header {
	}
	article > header > h1 {
	}
	article > header > h2 {
	}
	body #container > div#base > article > article > header {
	}
	body #container > div#base > article > article > header > h1 {
	}
	body #container > div#base > article > article > header > h1 > img {
	}
	article > div.body {
	padding: 20px 225px 30px 20px;
	}
	body #container > div#base > article > article {
	margin: 0 4px;
	}
	article > div.index {
	}
	article > div.index > ul {
	}
	article > div.index > ul > li {
	}
	article > div.index > ul > li > a {
	}
	article > div.index > ul > li > a.on {
	}
	article > div.index > ul > li > a > div.img {
	}
	article > div.index > ul > li > a > div.img > img {
	}
	article > div.index > ul > li > a > div.img > img.vertical {
	}
	article > div.index > ul > li > a > div.img > img.horizontal {
	}
	article > div.index > ul > li > a > div.text_wrapper {
	}
	article > div.index > ul > li > a > div.text_wrapper > div.title {
	}
	article > div.index > ul > li.load_more {
	}
	article > div.index > ul > li.load_more > a {
	}
	article > div.index > ul > li.load_more > a > div {
	}
	article > div.index > ul > li.load_more.loading::after {
	}
	article > div.index > ul > li.load_more.loading > a {
	}
	article > div.index > ul > li.load_more.loading > a > div {
	}
	div.image_list {
	}
	div.image_list > figure {
	}
	div.image_list > figure > a {
	}
	div.image_list > figure > a > div.img {
	}
	div.image_list > figure > a > div.img > img {
	}
	div.image_list > figure > div.text_wrapper {
	}
	div.image_list > figure > div.text_wrapper > figcaption {
	}
	div.image_list > figure > div.text_wrapper > figcaption > p.title {
	}
	div.image_list > figure > div.text_wrapper > figcaption > div.description {
	}
	div#entry > div.inner > article {
	}
	div#entry > div.inner > article > div.body {
	}
	div#entry > div.inner > article > div.body > header {
	}
	div#entry > div.inner > article > div.body > header > h1 {
	}
	div#entry > div.inner > article > div.body > header > div.date {
	}
	div#entry > div.inner > article > div.body > header > div.date > time {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.year {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.month {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.day {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.week {
	}
	div#entry > div.inner > article > div.body > header > div.social {
	}
	div#entry > div.inner > article > div.body > header > div.social > a {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div > img {
	}
	div#entry > div.inner > article > div.body > div.description {
	}
	div#entry > a.close {
	}
	div#entry > a.close::before {
	}
	div#entry > a.close::after {
	}
	div#entry > div.inner > article > a.next_entry {
	}
	div#entry > div.inner > article > a.next_entry::before {
	}
	div#entry > div.inner > article > a.prev_entry {
	}
	div#entry > div.inner > article > a.prev_entry::after {
	}
	div#entry > div.inner > div#footer {
	}
	div#entry > div.inner > div#footer > a {
	}
	div#entry > div.inner > div#footer > footer {
	}
	div#entry > div.inner > div#footer > footer > small {
	}
	div#entry > div.inner > div#footer > footer > small > span {
	}
	/* @end */

	/* root --------------------------------------------------------*/
	body #container > div#base > article#root {
	}
	body #container > div#base > article#root > header {
	height: 300px;
	}
	body #container > div#base > article#root > header > h1 {
	height: 200px;
	width: 200px;
	}
	body #container > div#base > article#root > header > h1 > img {
	}
	body #container > div#base > div#slide_wrapper {
	height: 300px;
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.pending.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.horizontal > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.vertical > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_en {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_en {
	}
	/* @end */

	/* details --------------------------------------------------------*/
	body #container > div#base > article > div.float {
	}
	body #container > div#base > article > div.float.fixed {
	}
	body #container > div#base > article > div.float.bottom {
	}
	body #container > div#base > article > div.float.bottom > article#details {
	}
	body #container > div#base > article > div.float > article#details {
	width: 220px;
	padding: 70px 10px 20px;
	right: 4px;
	}
	body #container > div#base > article > div.float > article#details > * {
	}
	body #container > div#base > article > div.float > article#details > * > h2 {
	font-size: 160%;
	border-bottom: 5px solid #cce198;
	}
	body #container > div#base > article > div.float > article#details > h1 {
	}
	body #container > div#base > article > div.float > article#details > h1 > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.note {
	}
	body #container > div#base > article > div.float > article#details > div.access {
	}
	body #container > div#base > article > div.float > article#details > div.access > h2 {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap > iframe {
	}
	body #container > div#base > article > div.float > article#details > div.access > a {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img > img {
	}
	/* @end */



	/* top --------------------------------------------------------*/
	body #container > div#base > article#root > article#top {
	}
	body #container > div#base > article#root > article#top > div.body {
	}
	body #container > div#base > article#root > article#top > div.body > header {
	}
	body #container > div#base > article#root > article#top > div.body > header > h1 {
		font-size: 160%;
		border-bottom: 5px solid #cce198;
	}
	body #container > div#base > article#root > article#top > div.body > section.news {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header {
		margin-top: -50px;
		min-height: 50px;
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a > img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.date {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > h3 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.newmark {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.text {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a > img {
	}

	/* greeting --------------------------------------------------------*/
	body #container > div#base > article#root > article#greeting {
	}
	body #container > div#base > article#root > article#greeting > header {
	}
	body #container > div#base > article#root > article#greeting > header > h1 {
	}
	body #container > div#base > article#root > article#greeting > header > h1 > img {
	}
	body #container > div#base > article#root > article#greeting > div.body {
	}
	body #container > div#base > article#root > article#greeting > div.body > h2 {
		font-size: 160%;
		border-bottom: 5px solid #cce198;
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text {
		padding: 3% 3% 4%;
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text > div.name {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dd {
	}

	/* medical --------------------------------------------------------*/
	body #container > div#base > article#root > article#medical {
	}
	body #container > div#base > article#root > article#medical > header {
	}
	body #container > div#base > article#root > article#medical > header > h1 {
	}
	body #container > div#base > article#root > article#medical > header > h1 > img {
	}
	body #container > div#base > article#root > article#medical > div.body {
	}
	body #container > div#base > article#root > article#medical > div.body > h2 {
	font-size: 160%;
	border-bottom: 5px solid #cce198;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dt {
	font-size: 130%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > p {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li::before {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dd {
	}

	/* clinic --------------------------------------------------------*/
	body #container > div#base > article#root > article#clinic {
	}
	body #container > div#base > article#root > article#clinic > header {
	}
	body #container > div#base > article#root > article#clinic > header > h1 {
	}
	body #container > div#base > article#root > article#clinic > header > h1 > img {
	}
	body #container > div#base > article#root > article#clinic > div.body {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img > img.example-image {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > p {
	}

	/* access --------------------------------------------------------*/
	body #container > div#base > article#root > article#access {
	}
	body #container > div#base > article#root > article#access > header {
	}
	body #container > div#base > article#root > article#access > header > h1 {
	}
	body #container > div#base > article#root > article#access > header > h1 > img {
	}
	body #container > div#base > article#root > article#access > div.body {
	}
	body #container > div#base > article#root > article#access > div.body > div.description {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap > iframe {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > img {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dd {
	}

	/* footer --------------------------------------------------------*/
	div#footer {
	}
	div#footer span {
	}
	div#footer > footer {
	}
	div#footer > footer > div {
	}
	div#footer > footer > div.left {
	}
	div#footer > footer > div.left::after {
	}
	div#footer > footer > h1 {
	}
	div#footer > footer > h1 > img {
	}
	div#footer > footer > div > address {
	}
	div#footer > footer > div > address > div {
	}
	div#footer > footer > div > address > div > a.link_tel {
	}
	div#footer > footer > div > small {
	}
	div#footer > footer > div > div {
	}
	div#footer > footer > div > div > h2 {
	}
	div#footer > footer > div > div > div.inner {
	}
	div#footer > footer > div > div > div.inner > dl {
	}
	div#footer > footer > div > div > div.inner > dl > * {
	}
	div#footer > footer > div > div > div.inner > dl > dt {
	}
	div#footer > footer > div > div > div.inner > dl > dd {
	}
	/* @end */

}

/* @group If <= 560 --------------------------------------------------------*/
@media only screen and (max-width: 560px) {


	/* common --------------------------------------------------------*/
	article > header {
	}
	article > header > h1 {
	}
	article > header > h2 {
	}
	body #container > div#base > article > article > header {
	}
	body #container > div#base > article > article > header > h1 {
		height: 50px;
	}
	body #container > div#base > article > article > header > h1 > img {
	}
	article > div.body {
		padding: 20px 5% 30px;
	}
	body #container > div#base > article > article {
		margin: 0 8%;
	}
	article > div.index {
	}
	article > div.index > ul {
	}
	article > div.index > ul > li {
	}
	article > div.index > ul > li > a {
	}
	article > div.index > ul > li > a.on {
	}
	article > div.index > ul > li > a > div.img {
	}
	article > div.index > ul > li > a > div.img > img {
	}
	article > div.index > ul > li > a > div.img > img.vertical {
	}
	article > div.index > ul > li > a > div.img > img.horizontal {
	}
	article > div.index > ul > li > a > div.text_wrapper {
	}
	article > div.index > ul > li > a > div.text_wrapper > div.title {
	}
	article > div.index > ul > li.load_more {
	}
	article > div.index > ul > li.load_more > a {
	}
	article > div.index > ul > li.load_more > a > div {
	}
	article > div.index > ul > li.load_more.loading::after {
	}
	article > div.index > ul > li.load_more.loading > a {
	}
	article > div.index > ul > li.load_more.loading > a > div {
	}
	div.image_list {
	}
	div.image_list > figure {
	}
	div.image_list > figure > a {
	}
	div.image_list > figure > a > div.img {
	}
	div.image_list > figure > a > div.img > img {
	}
	div.image_list > figure > div.text_wrapper {
	}
	div.image_list > figure > div.text_wrapper > figcaption {
	}
	div.image_list > figure > div.text_wrapper > figcaption > p.title {
	}
	div.image_list > figure > div.text_wrapper > figcaption > div.description {
	}
	div#entry > div.inner > article {
	}
	div#entry > div.inner > article > div.body {
	}
	div#entry > div.inner > article > div.body > header {
	}
	div#entry > div.inner > article > div.body > header > h1 {
	}
	div#entry > div.inner > article > div.body > header > div.date {
	}
	div#entry > div.inner > article > div.body > header > div.date > time {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.year {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.month {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.day {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.week {
	}
	div#entry > div.inner > article > div.body > header > div.social {
	}
	div#entry > div.inner > article > div.body > header > div.social > a {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div > img {
	}
	div#entry > div.inner > article > div.body > div.description {
	}
	div#entry > a.close {
	}
	div#entry > a.close::before {
	}
	div#entry > a.close::after {
	}
	div#entry > div.inner > article > a.next_entry {
	}
	div#entry > div.inner > article > a.next_entry::before {
	}
	div#entry > div.inner > article > a.prev_entry {
	}
	div#entry > div.inner > article > a.prev_entry::after {
	}
	div#entry > div.inner > div#footer {
	}
	div#entry > div.inner > div#footer > a {
	}
	div#entry > div.inner > div#footer > footer {
	}
	div#entry > div.inner > div#footer > footer > small {
	}
	div#entry > div.inner > div#footer > footer > small > span {
	}
	/* @end */

	/* root --------------------------------------------------------*/
	body #container > div#base > article#root {
	}
	body #container > div#base > article#root > header {
	}
	body #container > div#base > article#root > header > h1 {
	}
	body #container > div#base > article#root > header > h1 > img {
	}
	body #container > div#base > div#slide_wrapper {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.pending.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.horizontal > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.vertical > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_en {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_en {
	}
	/* @end */

	/* details --------------------------------------------------------*/
	body #container > div#base > article > div.float {
		position: static !important;
		height: auto !important;
	}
	body #container > div#base > article > div.float.fixed {
	}
	body #container > div#base > article > div.float.bottom {
	}
	body #container > div#base > article > div.float.bottom > article#details {
	}
	body #container > div#base > article > div.float > article#details {
		position: static !important;
		background: #FFF;
		margin: 0 8%;
		width: auto;
		padding: 20px 5% 30px;
	}
	body #container > div#base > article > div.float > article#details > * {
	}
	body #container > div#base > article > div.float > article#details > * > h2 {
		font-size: 180%;
	}
	body #container > div#base > article > div.float > article#details > h1 {
	}
	body #container > div#base > article > div.float > article#details > h1 > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.note {
	}
	body #container > div#base > article > div.float > article#details > div.access {
	}
	body #container > div#base > article > div.float > article#details > div.access > h2 {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap > iframe {
	}
	body #container > div#base > article > div.float > article#details > div.access > a {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img > img {
	}
	/* @end */



	/* top --------------------------------------------------------*/
	body #container > div#base > article#root > article#top {
	}
	body #container > div#base > article#root > article#top > div.body {
	}
	body #container > div#base > article#root > article#top > div.body > header {
	}
	body #container > div#base > article#root > article#top > div.body > header > h1 {
		font-size: 180%;
	}
	body #container > div#base > article#root > article#top > div.body > section.news {
		font-size: 120%;
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a > img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.date {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > h3 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.newmark {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.text {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a > img {
	}

	/* greeting --------------------------------------------------------*/
	body #container > div#base > article#root > article#greeting {
	}
	body #container > div#base > article#root > article#greeting > header {
	}
	body #container > div#base > article#root > article#greeting > header > h1 {
	}
	body #container > div#base > article#root > article#greeting > header > h1 > img {
	}
	body #container > div#base > article#root > article#greeting > div.body {
	}
	body #container > div#base > article#root > article#greeting > div.body > h2 {
		font-size: 180%;
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description {
		font-size: 120%;
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text > div.name {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dd {
	}

	/* medical --------------------------------------------------------*/
	body #container > div#base > article#root > article#medical {
	}
	body #container > div#base > article#root > article#medical > header {
	}
	body #container > div#base > article#root > article#medical > header > h1 {
	}
	body #container > div#base > article#root > article#medical > header > h1 > img {
	}
	body #container > div#base > article#root > article#medical > div.body {
	}
	body #container > div#base > article#root > article#medical > div.body > h2 {
		font-size: 180%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description {
		font-size: 100%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dt {
		font-size: 120%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > p {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li::before {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step {
		width: 80px;
		height: 80px;
		padding-top: 10px;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dd {
		font-size: 110%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dd {
	}

	/* clinic --------------------------------------------------------*/
	body #container > div#base > article#root > article#clinic {
	}
	body #container > div#base > article#root > article#clinic > header {
	}
	body #container > div#base > article#root > article#clinic > header > h1 {
	}
	body #container > div#base > article#root > article#clinic > header > h1 > img {
	}
	body #container > div#base > article#root > article#clinic > div.body {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img > img.example-image {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > p {
	}

	/* access --------------------------------------------------------*/
	body #container > div#base > article#root > article#access {
	}
	body #container > div#base > article#root > article#access > header {
	}
	body #container > div#base > article#root > article#access > header > h1 {
	}
	body #container > div#base > article#root > article#access > header > h1 > img {
	}
	body #container > div#base > article#root > article#access > div.body {
	}
	body #container > div#base > article#root > article#access > div.body > div.description {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap > iframe {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > img {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dd {
	}



	/* footer --------------------------------------------------------*/
	div#footer {
		padding: 20px 10% 80px;
	}
	div#footer span {
	}
	div#footer > footer {
	padding-bottom: 140px;
	position: relative;
	}
	div#footer > footer > div {
	padding-top: 20px;
	width: 100%;
	}
	div#footer > footer > div.left {
	padding: 0 0 40px;
	min-height: 0;
	position: absolute;
	bottom: 0;
	}
	div#footer > footer > div.left::after {
	display: none;
	}
	div#footer > footer > h1 {
	}
	div#footer > footer > h1 > img {
	}
	div#footer > footer > div > address {
	}
	div#footer > footer > div > address > div {
	}
	div#footer > footer > div > address > div > a.link_tel {
	}
	div#footer > footer > div > small {
	}
	div#footer > footer > div > div {
	}
	div#footer > footer > div > div > h2 {
	}
	div#footer > footer > div > div > div.inner {
	}
	div#footer > footer > div > div > div.inner > dl {
	}
	div#footer > footer > div > div > div.inner > dl > * {
	}
	div#footer > footer > div > div > div.inner > dl > dt {
		float: left;
	}
	div#footer > footer > div > div > div.inner > dl > dd {
		width: 230px;
	}
	/* @end */

	#return_top {
		left: auto;
		right: 0;
	}

}
/* @group If <= 440 --------------------------------------------------------*/
@media only screen and (max-width: 440px) {

	body #header > div > header {
		width: 210px;
		min-width: 0;
		margin-left: 10px;
	}
	body #header > div > header > h1 > a {
		width: 210px
	}

	body #container > div#base > div#slide_wrapper > ul > li > img {
		width: auto;
		height: 100%;
	}

	/* common --------------------------------------------------------*/
	article > header {
	}
	article > header > h1 {
	}
	article > header > h2 {
	}
	body #container > div#base > article > article > header {
	}
	body #container > div#base > article > article > header > h1 {
	}
	body #container > div#base > article > article > header > h1 > img {
	}
	article > div.body {
	padding: 20px 3% 30px;
	}
	body #container > div#base > article > article {
	margin: 0 3%;
	}
	article > div.index {
	}
	article > div.index > ul {
	}
	article > div.index > ul > li {
	}
	article > div.index > ul > li > a {
	}
	article > div.index > ul > li > a.on {
	}
	article > div.index > ul > li > a > div.img {
	}
	article > div.index > ul > li > a > div.img > img {
	}
	article > div.index > ul > li > a > div.img > img.vertical {
	}
	article > div.index > ul > li > a > div.img > img.horizontal {
	}
	article > div.index > ul > li > a > div.text_wrapper {
	}
	article > div.index > ul > li > a > div.text_wrapper > div.title {
	}
	article > div.index > ul > li.load_more {
	}
	article > div.index > ul > li.load_more > a {
	}
	article > div.index > ul > li.load_more > a > div {
	}
	article > div.index > ul > li.load_more.loading::after {
	}
	article > div.index > ul > li.load_more.loading > a {
	}
	article > div.index > ul > li.load_more.loading > a > div {
	}
	div.image_list {
	}
	div.image_list > figure {
	}
	div.image_list > figure > a {
	}
	div.image_list > figure > a > div.img {
	}
	div.image_list > figure > a > div.img > img {
	}
	div.image_list > figure > div.text_wrapper {
	}
	div.image_list > figure > div.text_wrapper > figcaption {
	}
	div.image_list > figure > div.text_wrapper > figcaption > p.title {
	}
	div.image_list > figure > div.text_wrapper > figcaption > div.description {
	}
	div#entry > div.inner > article {
	}
	div#entry > div.inner > article > div.body {
	}
	div#entry > div.inner > article > div.body > header {
	}
	div#entry > div.inner > article > div.body > header > h1 {
	}
	div#entry > div.inner > article > div.body > header > div.date {
	}
	div#entry > div.inner > article > div.body > header > div.date > time {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.year {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.month {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.day {
	}
	div#entry > div.inner > article > div.body > header > div.date > time > span.week {
	}
	div#entry > div.inner > article > div.body > header > div.social {
	}
	div#entry > div.inner > article > div.body > header > div.social > a {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.twitter > div > img {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div {
	}
	div#entry > div.inner > article > div.body > header > div.social > a.facebook > div > img {
	}
	div#entry > div.inner > article > div.body > div.description {
	}
	div#entry > a.close {
	}
	div#entry > a.close::before {
	}
	div#entry > a.close::after {
	}
	div#entry > div.inner > article > a.next_entry {
	}
	div#entry > div.inner > article > a.next_entry::before {
	}
	div#entry > div.inner > article > a.prev_entry {
	}
	div#entry > div.inner > article > a.prev_entry::after {
	}
	div#entry > div.inner > div#footer {
	}
	div#entry > div.inner > div#footer > a {
	}
	div#entry > div.inner > div#footer > footer {
	}
	div#entry > div.inner > div#footer > footer > small {
	}
	div#entry > div.inner > div#footer > footer > small > span {
	}
	/* @end */

	/* root --------------------------------------------------------*/
	body #container > div#base > article#root {
	}
	body #container > div#base > article#root > header {
	}
	body #container > div#base > article#root > header > h1 {
	}
	body #container > div#base > article#root > header > h1 > img {
	}
	body #container > div#base > div#slide_wrapper {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.pending.active {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.horizontal > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.vertical > a > div.img > img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li.active > a > div.img {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.caption_en {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_jp {
	}
	body #container > div#base > div#slide_wrapper > div#SLIDE > ul > li > a > div.description_en {
	}
	/* @end */

	/* details --------------------------------------------------------*/
	body #container > div#base > article > div.float {
	}
	body #container > div#base > article > div.float.fixed {
	}
	body #container > div#base > article > div.float.bottom {
	}
	body #container > div#base > article > div.float.bottom > article#details {
	}
	body #container > div#base > article > div.float > article#details {
	margin: 0 3%;
	padding: 20px 3% 30px;
	}
	body #container > div#base > article > div.float > article#details > * {
	}
	body #container > div#base > article > div.float > article#details > * > h2 {
	}
	body #container > div#base > article > div.float > article#details > h1 {
	}
	body #container > div#base > article > div.float > article#details > h1 > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.img > img {
	}
	body #container > div#base > article > div.float > article#details > div.schedule > div.note {
	}
	body #container > div#base > article > div.float > article#details > div.access {
	}
	body #container > div#base > article > div.float > article#details > div.access > h2 {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.gmap > iframe {
	}
	body #container > div#base > article > div.float > article#details > div.access > a {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img {
	}
	body #container > div#base > article > div.float > article#details > div.access > div.img > img {
	}
	/* @end */



	/* top --------------------------------------------------------*/
	body #container > div#base > article#root > article#top {
	}
	body #container > div#base > article#root > article#top > div.body {
	}
	body #container > div#base > article#root > article#top > div.body > header {
	}
	body #container > div#base > article#root > article#top > div.body > header > h1 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header {
		margin-top: 0;
		min-height: 0;
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.header > a > img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.date {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > h3 {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.title > div.newmark {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.text {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a {
	}
	body #container > div#base > article#root > article#top > div.body > section.news > div.index > ul > li > div.description > div.img > a > img {
	}

	/* greeting --------------------------------------------------------*/
	body #container > div#base > article#root > article#greeting {
	}
	body #container > div#base > article#root > article#greeting > header {
	}
	body #container > div#base > article#root > article#greeting > header > h1 {
	}
	body #container > div#base > article#root > article#greeting > header > h1 > img {
	}
	body #container > div#base > article#root > article#greeting > div.body {
	}
	body #container > div#base > article#root > article#greeting > div.body > h2 {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.text > div.name {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl {
	width: 96%;
	margin-bottom: 30px;
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#greeting > div.body > div.description > div.detail > dl > dd {
	}

	/* medical --------------------------------------------------------*/
	body #container > div#base > article#root > article#medical {
	}
	body #container > div#base > article#root > article#medical > header {
	}
	body #container > div#base > article#root > article#medical > header > h1 {
	}
	body #container > div#base > article#root > article#medical > header > h1 > img {
	}
	body #container > div#base > article#root > article#medical > div.body {
	}
	body #container > div#base > article#root > article#medical > div.body > h2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description {
	font-size: 120%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl {
	width: 97%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > dl > dd {
		min-height: 0;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.service > p {
		font-size: 100%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.text {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail {
	font-size: 110%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > ul > li::before {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step {
		width: 120px;
		height: 120px;
		padding-top: 20px;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > * {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step > dl > dd {
		font-size: 130%;
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_1 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_2 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_3 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_4 > dl > dd {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dt {
	}
	body #container > div#base > article#root > article#medical > div.body > div.description > div.detail > dl > dd > div.flow > div.step.step_5 > dl > dd {
	}

	/* clinic --------------------------------------------------------*/
	body #container > div#base > article#root > article#clinic {
	}
	body #container > div#base > article#root > article#clinic > header {
	}
	body #container > div#base > article#root > article#clinic > header > h1 {
	}
	body #container > div#base > article#root > article#clinic > header > h1 > img {
	}
	body #container > div#base > article#root > article#clinic > div.body {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > div.img > img.example-image {
	}
	body #container > div#base > article#root > article#clinic > div.body > div.photo > a > p {
	}

	/* access --------------------------------------------------------*/
	body #container > div#base > article#root > article#access {
	}
	body #container > div#base > article#root > article#access > header {
	}
	body #container > div#base > article#root > article#access > header > h1 {
	}
	body #container > div#base > article#root > article#access > header > h1 > img {
	}
	body #container > div#base > article#root > article#access > div.body {
	}
	body #container > div#base > article#root > article#access > div.body > div.description {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > * {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > div.gmap > iframe {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > img {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dt {
	}
	body #container > div#base > article#root > article#access > div.body > div.description > div.detail > dl > dd > dl.jr > dd {
	}



	/* footer --------------------------------------------------------*/
	div#footer {
		padding: 40px 6% 80px;
		font-size: 95%;
	}
	div#footer span {
	}
	div#footer > footer {
		padding-bottom: 220px;
	}
	div#footer > footer > div {
	padding-top: 40px;
	}
	div#footer > footer > div.left {
	}
	div#footer > footer > div.left::after {
	}
	div#footer > footer > h1 {
	}
	div#footer > footer > h1 > img {
	}
	div#footer > footer > div > address {
	}
	div#footer > footer > div > address > div {
	}
	div#footer > footer > div > address > div > a.link_tel {
	}
	div#footer > footer > div > small {
	}
	div#footer > footer > div > div {
	}
	div#footer > footer > div > div > h2 {
	}
	div#footer > footer > div > div > div.inner {
	}
	div#footer > footer > div > div > div.inner > dl {
	}
	div#footer > footer > div > div > div.inner > dl > * {
	}
	div#footer > footer > div > div > div.inner > dl > dt {
	width: 100%;
	}
	div#footer > footer > div > div > div.inner > dl > dd {
	width: 100%;
	}
	/* @end */


}

