@charset "utf-8";
/*
Theme Name: Kurose Clinic theme 
Description: Studio Impala
Auther: Kurose Clinic
Version: 1.0
*/

/*==========================================
LOADING
===========================================*/

#loading {
	width: 100vw;
	height: 100vh;
	background: #fff;
	z-index: 9999;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	transition: all 1s ease-out;
}

.home #loading {
	display: block
}

#loading span {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -25px;
	margin-top: -25px;
	width: 50px;
	height: 50px;
	border: 1px solid #A1946F;
	border-right: 1px solid transparent;
	border-radius: 30px;
	animation: loading 1s linear infinite;
}

@keyframes loading {
	to {}

	from {

		transform: rotate(360deg);
		transform-origin: 50% 50%;
	}
}

#content {

	margin-top: 0;
	padding-top: 0;

}

/*==========================================
 General
===========================================*/
:root {
	--key-color: #998B66;
	--key-color2: #A1946F;
	--bg-color: #FBFAF8;
	--footer-bg-color: #ECE8DF;
	--text-color: #404040;
	--btn-hover-color: #897A4D;
}

html {
	font-size: 62.5%;
	-webkit-overflow-scrolling: touch;
	height: 100%;
	scroll-margin-top: 80px !important;
	/* ヘッダーの高さに合わせて調整 */
}

body {
	font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	margin: 0;
	padding: 0;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch;
	font-size: 1.7rem;
	font-weight: 500;
	background: #fff;
	color: var(--text-color);

}



@media only screen and (max-width: 768px) {
	body {
		min-width: initial;
	}
}

a {
	color: var(--text-color);
	text-decoration: underline;
	transition: all 0.2s linear;
	position: relative;
	display: inline-block;
	text-decoration: none;
	opacity: 1;
}

a:link {
	color: var(--text-color);
}

a:visited {
	color: var(--text-color);
}

a:hover {
	color: var(--text-color);
}

a:active {
	color: var(--text-color);
}

a img {
	transition: all 0.2s linear;
}

a:hover img {
	opacity: 0.8;
}

a.btn {
	min-width: 180px;
	height: 42px;
	padding-top: 12px;
	background: var(--key-color2);
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s linear;
	box-sizing: border-box;
	border-radius: 30px;
	position: relative;
	letter-spacing: 0.05em;
	width: auto;
	padding: 0 30px;
	line-height: 42px;
	height: 42px;
}



a.btn.center {
	text-align: center;
	display: inline-block;
	margin: 0 auto;
}

a.btn:hover {
	background: var(--btn-hover-color)
}

@media only screen and (max-width: 1120px) {
	a.btn {

		margin: 0 auto;
	}
}

p {
	font-size: 1.7rem;
	text-align: left;
	color: var(--text-color);
	line-height: 2;
	margin-bottom: 40px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

p.caption-sub {
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 25px;
}

p.small {
	font-size: 1.3rem;
	text-align: left;
	color: var(--text-color);
	line-height: 2;
	margin-bottom: 30px;
}

p.large {
	font-size: 1.8rem !important;
}

p.x-large {
	font-size: 2rem !important;
}

.x-small {
	font-size: 1.1rem;
	line-height: 1.3;
}

p.last-sentence {
	margin-bottom: 70px !important;
}

p.center {
	text-align: center !important;
}

p.underline {
	text-decoration: underline;
}

.align-left {
	text-align: left !important;
}

.align-right {
	text-align: right !important;
}

.align-center {
	text-align: center;
}

.mgn0 {
	margin-bottom: 0px !important;
}

.mgn20 {
	margin-bottom: 20px !important;
}

.mgn30 {
	margin-bottom: 30px !important;
}

.mgn40 {
	margin-bottom: 40px !important;
}

.mgn50 {
	margin-bottom: 50px !important;
}

.mgn60 {
	margin-bottom: 60px !important;
}

.mgn70 {
	margin-bottom: 70px !important;
}

.mgn80 {
	margin-bottom: 80px !important;
}

.mgn90 {
	margin-bottom: 90px !important;
}

.mgn100 {
	margin-bottom: 100px !important;
}

.mgn120 {
	margin-bottom: 120px !important;
}

.center {
	text-align: center;
}

table caption {
	display: none;
}

/*==========================================
text & link
===========================================*/

h1 {
	display: block;
}

h2 {
	width: 100%;
	display: block;
	position: relative;
	font-size: 3.4rem;
	color: var(--key-color);
	font-weight: 500;
	z-index: 1;
	text-align: center;
	line-height: 1.2;
	padding-top: 120px;
	letter-spacing: 0.07em;
	margin-bottom: 100px;
}

.home h2 {
	padding-top: 70px;
	margin-bottom: 80px;
}

.single-post h2 {
	margin-bottom: 60px;
}

h2::before {
	position: absolute;
	display: block;
	content: '';
	width: 48px;
	height: 48px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

h2.feature::before {
	background-image: url("images/ico_feature.svg");
}

h2.medical::before {
	background-image: url("images/ico_medical.svg");
}

h2.time::before {
	background-image: url("images/ico_schedule.svg");
}

h2.access::before {
	background-image: url("images/ico_access.svg");
}

h2.partner::before {
	background-image: url("images/ico_partner.svg");
}


.title-header h2 {
	text-align: left;
}

.title-header h2::before {
	top: 0;
	left: 0;
	transform: translateX(0);
}

h2 span.page-head-icon {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto 20px;
}

h2 span.page-head-icon img {
	width: 100%;
	height: auto;
}

h2 span.subtitle {
	font-size: 1.7rem;
	font-weight: 600;
	margin-top: 17px;
	letter-spacing: 0.03em;
	display: block;
	font-family: 'Quicksand', "Zen Kaku Gothic New", sans-selif;
}


h3 {
	width: 100%;
	font-size: 3rem;
	font-weight: 500;
	color: var(--key-color);
	margin-bottom: 30px;
	display: inline-block;
	line-height: 1.2;
	text-align: left;
	z-index: 1;
	letter-spacing: 0.05em;
	position: relative;
	padding-left: 20px;
}



h3::before {
	position: absolute;
	display: block;
	content: '';
	width: 4px;
	height: 30px;
	color: var(--key-color);
	background: var(--key-color);
	top: 4px;
	left: 0;
	border-radius: 20px;
}

.page-template-index-product h3 {
	padding-top: 100px;
}

.page-template-page-first h3{
	font-size: 2.7rem;
}

.page-template-page-first h3::before {
	height: 28px;
	top: 4px;
}

h4 {
	width: 100%;
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	font-weight: 500;
	color: var(--key-color);
	margin-bottom: 20px;
	display: inline-block;
	line-height: 1.4;
	border-bottom:1px solid var(--key-color);
	padding-bottom:5px;
	text-align: left;
	z-index: 1

}

h5 {
	width: 100%;
	font-size: 2rem;
	letter-spacing: 0.05em;
	font-weight: 500;
	color: var(--key-color);
	margin-bottom: 20px;
	display: inline-block;
	line-height: 1.4;
	text-align: left;
	z-index: 1
}

h6 {
	width: 100%;
	font-size: 1.7rem;
	letter-spacing: 0.05em;
	font-weight: 600;
	color: var(--key-color);
	margin-bottom: 20px;
	display: inline-block;
	line-height: 1.4;
	text-align: left;
	z-index: 1
}

span.strong {
	font-weight: 500;
}

span.italic {
	font-style: italic;
}

span.caption {
	font-size: 1.6rem;
	display: inline-block;
	margin-bottom: 0;
}

br.sp-none {
	display: block;
}

br.pc-none {
	display: none;
}

span.nowp {
	display: inline-block;
}

span.required {
	display: inline-block;
	color: #D81010;
}

del {
	color: #D81010;
	text-decoration: line-through !important;
}

@media only screen and (max-width: 1120px) {

	h2 {
		font-size: 2.4rem;
		margin-bottom: 60px;
		line-height: 1.6;
		box-sizing: border-box;
		padding-top: 45px !important;
	}

	h2::before {
		width: 40px;
		height: 40px;

	}

	h2 span {
		font-size: 1.4rem;
		margin-top: 0;
	}

	h2 span.subtitle {
		font-size: 1.4rem;
		margin-top: 0;
	}

	h2 span.page-head-icon {
		display: block;
		width: 40px;
		height: 40px;
		margin: 0 auto 10px;
	}

	.home h2 {
		padding-top: 70px;
		margin-bottom: 40px;
	}

	.title-header h2 {
		text-align: center;
		display: block;
	}

	.title-header h2::before {
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	h3 {
		font-size: 2rem;
		padding-left: 20px;
	}

	h3::before {
		width: 4px;
		height: 20px;
		top: 3px;
		left: 0;
	}

	h4 {
		font-size: 2rem;
		line-height: 1.6;
	}

	h5 {
		font-size: 1.7rem;
	}

	h5 {
		font-size: 1.6rem;
	}

	p.x-large {
		font-size: 2.3rem !important;
	}

	br.sp-none {
		display: none;
	}

	br.pc-none {
		display: block;
	}
}

/*==========================================
 header
===========================================*/

header {
	width: 100%;
	z-index: 700;
	transition: 0.3s ease-in-out;
	top: 0;
	left: 0;
	background: #fff;
}

/*
.home header{
	position:absolute;
}*/

#head-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1680px;
	padding: 30px 50px 15px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}


#logo {
	display: inline-block;

}

#logo img {
	width: 100%;
	margin-bottom: 20px;
	vertical-align: baseline;
	max-width: 350px;
}

#logo h1 {
	margin-right: 30px;
}

#logo h1 a {
	display: inline-block;

}

#logo span.tagline {
	display: block;
	font-size: 1.4rem;
}

#logo a img {
	height: auto;
}

#header-right {}

#header-right-upper {
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#header-right-upper .tel {
	font-size: 3.6rem;
	color: var(--key-color);
	display: inline-block;
	line-height: 0.8;
	padding-top: 0;
	position: relative;
	padding-left: 37px;
	font-family: 'Quicksand', "Zen Kaku Gothic New", sans-selif;
	letter-spacing: 0.05em;
}

#header-right-upper .tel::before {
	content: "";
	background-image: url("images/ico_tel.svg");
	height: 30px;
	width: 30px;
	top: 0;
	left: 0;
	display: block;
	position: absolute;
}

#header-right-upper .address {
	font-size: 1.4rem;
	padding-top: -10px;
	margin-right: 50px;
	letter-spacing: 0.05em
}

#header-right-upper .tel a {
	color: var(--key-color);
	text-decoration: none;
}

@media only screen and (max-width: 1350px) {
	#head-inner {
		padding-left: 30px;
		padding-right: 30px;
	}

	#logo img {
		vertical-align: baseline;
		max-width: 300px;
	}

	#logo span.tagline {
		margin-top: 5px;
	}

	#header-right-upper .address {
		margin-right: 30px;
	}

	#header-right-upper .tel {
		margin-top: 5px;
	}
}

@media only screen and (max-width: 1120px) {
	#head-inner {
		padding: 30px 30px 10px;
	}

	#logo img {
		max-width: 240px;
	}

	#logo span.tagline {
		display: none;

	}

	#header-right-upper .tel {
		display: none;
	}

	#header-right-upper .address {
		display: none;
	}

	#header-right-upper .tel {
		margin-right: 50px;
	}
}

@media only screen and (max-width: 768px) {

	#head-inner {

		padding: 15px 10px 15px 30px;
		height: 60px;
	}

	#logo img {
		width: 100%;
		height: auto;
		max-width: 180px;
	}

	#header-right-upper {
		display: none;
	}

}

header.fixed {
	position: fixed;
	top: 0;
	animation: headanime 0.7s forwards;
	background: #fff;
}


@keyframes headanime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


header.fixed #head-inner {
	padding: 30px 30px 10px;
}

header.fixed #head-inner #logo img {
	max-width: 240px;
}

header.fixed #head-inner #logo span.tagline {
	display: none;

}

header.fixed #head-inner #header-right-upper .tel {
	display: none;
}

header.fixed #head-inner #header-right-upper .address {
	display: none;
}

header.fixed nav#nav ul.loot-nav {
	margin: 0;
}



.top-area-fixed {
	padding-top: 135px;
}

.sp-bt-navi {
	display:none;
}

@media only screen and (max-width: 768px) {
.sp-bt-navi {
	position:fixed;
	width: 100%;
	height:54px;
	z-index: 700;
	display:block;
	bottom:0;
	background: var(--key-color2)
}

.sp-bt-navi {
	position:fixed;
	width: 100%;
	height:56px;
	z-index: 700;
	display:block;
	bottom:0;
	background: var(--key-color2);
	padding:0 15px;
	box-sizing:border-box
}

.sp-bt-navi ul{
	display:flex;
	justify-content:space-between
}
.sp-bt-navi ul li{
	width:60px;
	text-align:center;	
}
.sp-bt-navi ul li a{
	display:block;
	text-align:center;
	font-size:1rem;
	color:#fff;
	padding-top:8px;
}
.sp-bt-navi ul li a span{
	display:block;
	margin-bottom:3px;
}
}

/*==========================================
 Navigation
===========================================*/

nav#nav {
	z-index: 999;
	padding: 0;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: right;
}

nav#nav ul.loot-nav {
	margin: 28px 0 0 0;
	padding: 14px 0 0;
	z-index: 900;
	display: flex;
	justify-content: flex-end;
}

nav#nav ul.loot-nav>li {
	padding: 0 40px 0 37px;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	letter-spacing: 0.05em;
	height: 120%;
	padding-bottom: 20px;
}

nav#nav ul.loot-nav>li:last-child {
	padding: 0 0 0 35px;
}

nav#nav ul.loot-nav>li::before {
	content: "";

	height: 30px;
	width: 30px;
	top: -7px;
	left: 0;
	display: block;
	position: absolute;
}

nav#nav ul.loot-nav>li.first::before {
	background-image: url("images/ico_first_visit.svg");
}

nav#nav ul.loot-nav>li.feauture::before {
	background-image: url("images/ico_feature.svg");
}

nav#nav ul.loot-nav>li.doctor::before {
	background-image: url("images/ico_doctor.svg");
}

nav#nav ul.loot-nav>li.medical::before {
	background-image: url("images/ico_medical.svg");
}

nav#nav ul.loot-nav>li.time::before {
	background-image: url("images/ico_schedule.svg");
}

nav#nav ul.loot-nav>li.access::before {
	background-image: url("images/ico_access.svg");
}


nav#nav ul.loot-nav li.home {
	display: none;
}

nav#nav ul li a {
	transition: 0.2s ease-in-out;
	backface-visibility: hidden;
	text-decoration: none;
	color: var(--text-color);
	cursor: pointer;
	width: 100%;
}

/*
nav#nav ul li.menu-item-has-children a.parent:hover{
	color: var(--text-color);
	text-decoration: none;
}
	*/



nav#nav ul li a::after {
	background-color: var(--key-color);
	bottom: -7px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .2s;
	width: 100%;
}

nav#nav ul li a:hover::after {
	transform: scale(1, 1);
}

nav#nav .nav-head {
	display: none;
}



@media only screen and (max-width: 1280px) {
	nav#nav ul.loot-nav {
		padding: 12px 0 0;

	}

	nav#nav ul.loot-nav li {
		padding-right: 22px;
		font-size: 1.4rem;
	}



	nav#nav ul.loot-nav>li::before {
		height: 24px;
		width: 24px;
		top: -5px;
		left: 5px;
	}
}

@media only screen and (max-width: 1120px) {
	nav#nav {
		width: 100%;
		box-sizing: border-box;
	}




	nav#nav ul.loot-nav {
		display: flex;
		flex-direction: column;
		margin-top: 0;
		padding-top: 0;
		margin-bottom: 50px;
		box-sizing: border-box;
		overflow-x: hidden;
	}

	nav#nav ul.loot-nav li {
		padding: 0 0 0 40px;
		font-size: 1.5rem;
		width: 100%;
		text-align: left;
		margin-left: 30px;
		display: block;
		box-sizing: border-box;
	}





	nav#nav ul.loot-nav li a {
		display: block;
		width: 100%;
		padding: 20px 0 10px;
		box-sizing: border-box;
		height: 70px;
	}

	nav#nav ul.loot-nav>li:last-child {
		padding: 0 0 0 40px;

	}

	nav#nav ul.loot-nav>li::before {
		height: 30px;
		width: 30px;
		top: 12px;
		left: 0;
	}

	nav#nav ul.loot-nav li.home {
		display: block;
	}

	nav#nav ul li a::after {
		display: none;
	}
}

@media only screen and (max-width: 480px) {
	nav#nav ul.loot-nav li a {
		height: 55px;
	}

	nav#nav ul.loot-nav {
		margin-bottom: 60px;
		box-sizing: border-box;
		overflow-x: hidden;
	}

	nav#nav ul li a:hover {
		color: var(--text-color);
		text-decoration: none;
	}

}


@media only screen and (max-width: 1120px) {
	.menu {
		position: fixed;
		right: 30px;
		top: 42px;
		width: 22px;
		height: 24px;
		cursor: pointer;
		z-index: 999;
	}

	.menu .bar {
		display: inline-block;
		width: 100%;
		height: 2px;
		background-color: var(--key-color);
		position: absolute;
		top: 0;
		left: 0;
		transition: .15s ease-in-out;
	}

	.menu .black {
		background-color: var(--key-color);
		position: absolute;
	}

	#bar01 {
		top: 0;
	}

	#bar02 {
		top: 7px;
	}

	#bar03 {
		top: 14px;
	}

	.menuOpen #bar01 {
		top: 0;
		left: 0;
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}

	.menuOpen #bar02 {
		opacity: 0;
	}

	.menuOpen #bar03 {
		top: 16px;
		left: 0;

		-webkit-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-8px) rotate(45deg);

	}

	nav#nav {
		overflow-y: scroll;
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		width: 100vw;
		height: 100vh;
		text-align: center;
		padding: 0 0 0 0;
		background: var(--bg-color);
		z-index: 990;
		display: none;
		visibility: hidden;
		margin-top: 0;
		box-sizing: border-box;
	}

	#nav.active {
		opacity: 1;
		visibility: visible;
		display: block;
		animation: fadein 0.3s linear 0s;
	}

	nav#nav .nav-head {
		display: block;
		padding: 30px 30px 30px;
		text-align: left;
		background: #fff;
		margin-bottom: 50px;
		box-sizing: border-box;
	}

	nav#nav .nav-head a img {
		width: 100%;
		height: auto;
		max-width: 180px;
	}

	@keyframes fadein {
		from {
			opacity: 0;
			transform: translateY(0px);
		}

		to {
			opacity: 1;
			transform: translateY(0px);
		}
	}
}

@media only screen and (max-width: 768px) {
	.menu {
		top: 22px;
	}

	nav#nav .nav-head {
		padding: 15px 10px 15px 30px;
	}

	nav#nav .nav-head img {
		max-width: 180px;
	}
}

/* submenu for pc */

@media only screen and (min-width: 1120px) {
	.submenu {
		position: absolute;
		left: 3px;
		top: 100%;
		margin-top: 0 !important;
		max-height: none;
		display: none;
		width: 300px;
		text-align: left;
		background: #F4F3ED;
		z-index: 999;
		padding: 30px 30px 10px 30px;
		border-radius: 12px;
	}

	.nav-menu>ul>li:hover>ul.submenu {
		display: block;

	}

	nav#nav .submenu li a {
		padding-left: 15px;
		display: block;
		margin-bottom: 20px;
		font-size: 1.4rem;
		color: var(--text-color);
		position: relative;
		font-weight: 500;
	}

	nav#nav .submenu li:last-child {
		margin-bottom: 0;
	}

	nav#nav .submenu li a::before {
		content: "";
		height: 1px;
		width: 10px;
		background: var(--key-color);
		top: 7px;
		left: 0;
		display: block;
		position: absolute;
	}

	nav#nav .submenu li a::after {
		display: none;
	}

	nav#nav .submenu li a:hover {
		color: var(--key-color);
	}
}

/* submenu for sp */

@media only screen and (max-width: 1120px) {

	.submenu {
		max-height: 0;
		overflow: hidden;
		width: 100%;
		transition: max-height 0.3s ease;
		display: block;
		text-align: left;
	}

	nav#nav ul.loot-nav li ul.submenu li {
		padding-left: 0;
		display: block;
		font-size: 1.4rem;
		color: var(--text-color);
		position: relative;
		font-weight: 500;
		margin-left: 0;
		line-height: 1;
		margin-bottom: 20px;
		box-sizing: border-box;
	}

	nav#nav ul.loot-nav li ul.submenu li a {
		padding-left: 20px !important;
		display: block;
		margin-bottom: 20px;
		font-size: 1.4rem;
		color: var(--text-color);
		position: relative;
		font-weight: 500;
		margin-left: 0;
		height: auto;
		padding-top: 0;
		box-sizing: border-box;
	}

	nav#nav ul.loot-nav li ul.submenu li:first-child {
		padding-top: 10px;

	}

	nav#nav .submenu li a::before {
		content: "";
		height: 1px;
		width: 10px;
		background: var(--key-color);
		top: 7px;
		left: 0;
		display: block;
		position: absolute;
	}



	.nav-menu>ul>li:hover>ul.submenu {
		display: block;
		/* hoverで表示 */
	}

	/* + icon */

	.toggle-icon::before,
	.toggle-icon::after {
		content: "";
		position: absolute;
		background: var(--text-color);
		left: 100px;
		top: 29px;
		transform: translate(-50%, -50%);
	}

	.toggle-icon::before {
		width: 12px;
		height: 2px;
	}

	.toggle-icon::after {
		width: 2px;
		height: 12px;
	}

	/* + icon open */
	.open>a .toggle-icon::after {
		display: none;
	}

	.open>.submenu {
		max-height: 500px;
	}
}

/* reserve for sp */

nav#nav ul.reserve-sp {
	display: none;
}

nav#nav .tel-sp {
	display: none;
}

@media only screen and (max-width: 1120px) {
	nav#nav ul.reserve-sp {
		padding: 0 0 80px 30px;
		display: flex;
		align-items: flex-start;
		width: 100%;
		box-sizing: border-box;
	}

	nav#nav ul.reserve-sp li {
		margin-right: 15px;
	}

	nav#nav ul.reserve-sp li a.btn {
		color: #fff;
		font-size: 1.4rem;
		line-height: 1;
		padding: 0;
		height: 38px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	nav#nav ul.reserve-sp li a.btn span {
		display: inline-block;
		margin-top: 2px;
		margin-right: 10px;


	}

	nav#nav .tel-sp {
		display: block;
	}

	nav#nav .tel {
		font-size: 2.2rem;
		color: var(--key-color);
		line-height: 0.8;
		padding-left: 40px;
		position: relative;
		display: flex;
		align-items: flex-start;
		margin-left: 30px;
		font-family: 'Quicksand', "Zen Kaku Gothic New", sans-selif;
		letter-spacing: 0.05em;
	}

	nav#nav .tel a {
		color: var(--key-color);
		text-decoration: none;
	}

	nav#nav .tel::before {
		content: "";
		background-image: url("images/ico_tel.svg");
		height: 30px;
		width: 30px;
		top: -5px;
		left: 0;
		display: block;
		position: absolute;
	}
}

@media only screen and (max-width: 768px) {
	nav#nav ul.reserve-sp {
		margin: 0 0 50px 0;
		padding: 0 20px 40px;
		justify-content: space-between;
		align-items: unset;
	}

	nav#nav ul.reserve-sp li {
		width: 48%;
		margin-right: 0;
		box-sizing: border-box;
	}

	nav#nav ul.reserve-sp li a.btn {
		min-width: 165px;
		color: #fff;
	}

}

/*  Reserve tab
================================================== */
.reserveArea {
	position: fixed;
	right: 0;
	top: 140px;
	z-index: 500;
}

ul.linkTab li a {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	text-orientation: upright;
	background: var(--key-color2);
	padding: 55px 20px 10px 0;
	margin-bottom: 20px;
	text-align: center;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	width: 56px;
	height: 180px;
	box-sizing: border-box;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.linkTab a.upper {
	background: url(images/ico_line.svg) no-repeat 12px 20px var(--key-color2);
	background-size: 36px 36px;
}

.linkTab a.bottom {
	background: url(images/ico_web.svg) no-repeat 12px 20px var(--key-color2);
	background-size: 36px 36px;
	padding: 42px 20px 10px 0;
}

.linkTab span {
	display: inline-block;
	letter-spacing: 0;
	margin-bottom: 0.3em;
}

.linkTab a:link {
	text-decoration: none !important;
	color: #fff;
}

.linkTab a:hover {
	background: var(--btn-hover-color);
}

.linkTab a.upper:hover {
	background: url(images/ico_line.svg) no-repeat 12px 20px var(--btn-hover-color);
}

.linkTab a.bottom:hover {
	background: url(images/ico_web.svg) no-repeat 12px 20px var(--btn-hover-color);
	background-size: 36px 36px;
}

.linkTab a::after {
	display: none;
}

@media only screen and (max-width: 768px) {
	.reserveArea {
		display: none;
	}
}

/*  top main image slider
================================================== */

#topVisual {
	position: relative;
	width: 100vw;
	height: calc(100dvh - 138px);
	overflow: hidden;
}

.slider {
	opacity: 0;
	box-sizing: border-box;
	position: relative;
	z-index: 0;
	z-index: 100;
	transition: opacity .5s linear;
}

.slider.pc-only {
	display: block;
}

.slider.sp-only {
	display: none;
}

.slider.slick-initialized {
	opacity: 1;

}

.slick-slide {
	position: relative;
	text-align: center;

}

.slick-slide img {
	width: 100% !important;
	height: 100dvh;
	object-fit: cover;
	display: block;
	object-position: 70% 0 !important;
}

#topVisual .hero-copy {
	font-size: 3.8rem;
	position: absolute;
	top: 25%;
	left: 10%;
	color: var(--key-color);
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.07em;
	z-index: 300
}



@media only screen and (max-width: 768px) {
	#topVisual {
		height: calc(100dvh - 60px);
	}

	.slider {
		width: 100% !important;
		height: 100dvh !important;
		max-height: initial;
		min-height: initial;
	}

	.slick-slide img {
		width: 100% !important;
		height: 100dvh !important;
		object-fit: cover;
		display: block;

	}

	#topVisual .hero-copy {
		font-size: 5vw;
		top: 30%;
		left: 10%;
	}

	.slider.pc-only {
		display: none;
	}

	.slider.pc-only.slick-initialized {
		display: none;
	}

	.slider.sp-only {
		display: block;
	}

	.slider.sp-only.slick-initialized {
		display: block;
	}

	.slider img {
		height: 100vh;
	}


}


/*shchedule table
================================================== */
.hero-schedule-area {
	position: absolute;
	bottom: 30px;
	right: 0;
	width: 40%;
	max-width: 500px;
	min-width: 300px;
	background-color: rgba(255, 255, 255, 0.9) !important;
	border-radius: 24px 0 0 24px;
	z-index: 400;
	padding: 15px 40px 10px;
}

@media only screen and (max-width: 1350px) {
	.hero-schedule-area {}
}

@media only screen and (max-width: 1120px) {
	.hero-schedule-area {
	
	}
}

@media only screen and (max-width: 768px) {
	.hero-schedule-area {
		bottom: 5%;
		display: none;
	}
}


.hero-schedule-area .tablepress th,
.hero-schedule-area .tablepress td {
	border: none;
	font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background-color: rgba(255, 255, 255, 0.9) !important
}

/* table thead */
.hero-schedule-area .tablepress>:where(thead, tfoot)>tr>* {
	background-color: rgba(255, 255, 255, 0.0) !important;
	border-bottom: 1px solid var(--key-color) !important;
	padding: 15px !important;
	font-size: 1.5rem !important;
	width: 100% !important;
	color: #4E4E4E !important;
	font-weight: 500 !important;
	text-align: center !important;
	vertical-align: middle !important;
}



@media only screen and (max-width: 1120px) {
	.hero-schedule-area .tablepress>:where(thead, tfoot)>tr>* {
		padding: 10px !important;
		font-size: 1.5rem !important;

	}
}

/* table tr 1行目 */
.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
	background-color: rgba(255, 255, 255, 0.0) !important;
	border-bottom: 1px solid var(--key-color) !important;
	padding: 20px 15px !important;
	font-size: 2.2rem !important;
	width: 100% !important;
	color: var(--key-color) !important;
	text-align: center !important;
	vertical-align: middle !important;
}


@media only screen and (max-width: 1120px) {

	.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
		font-size: 1.8rem !important;
		padding: 10px !important;
	}

}


/* table tr 2行目 */
.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
	background-color: rgba(255, 255, 255, 0.0) !important;
	border-bottom: 1px solid var(--key-color) !important;
	padding: 15px !important;
	font-size: 2.2rem !important;
	width: 100% !important;
	color: var(--key-color) !important;
	text-align: center !important;
	vertical-align: middle !important;
}



@media only screen and (max-width: 1120px) {

	.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.hero-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
		font-size: 1.8rem !important;
		padding: 10px !important;
	}

}

.hero-schedule-area .tablepress tr.row-1 .column-1 {
	white-space: nowrap !important;
	color: #4e4e4e !important;
	text-align: left !important;
	font-weight: 500 !important;
}

.hero-schedule-area .tablepress tr.row-2 .column-1,
.hero-schedule-area .tablepress tr.row-3 .column-1 {
	font-size: 1.5rem !important;
	white-space: nowrap !important;
	color: #4e4e4e !important;
	text-align: left !important;
	font-weight: 500 !important;
	background-color: rgba(255, 255, 255, 0.0) !important;
}

.hero-schedule-area .tablepress tr.row-3 .column-5 {
	text-align: left !important;
	padding: 0 0 0 15px !important;
}

@media only screen and (max-width: 1120px) {

	.hero-schedule-area .tablepress tr.row-1 .column-1,
	.hero-schedule-area .tablepress tr.row-2 .column-1,
	.hero-schedule-area .tablepress tr.row-3 .column-1 {
		width: 10% !important;
		padding: 15px 5px !important;
		word-break: break-all !important;
		overflow-wrap: break-word !important;
	}


	.hero-schedule-area .tablepress tr.row-3 .column-5 sup {
		position: absolute;
	}

	.hero-schedule-area .tablepress tr.row-3 .column-5 {
		text-align: center !important;
		position: relative;
		padding: 0 0 0 0 !important;
	}
}



.hero-schedule-area .tablepress sup {
	color: #4e4e4e !important;
	font-size: 2.2rem !important;
	vertical-align: top;
	display: inline-block !important;
	margin-top: -7px;
	font-weight: 500;
}


@media only screen and (max-width: 1120px) {

	.hero-schedule-area .table-caption {
		margin: 20px 15px 10px;
	}

	.table-caption .doctor {
		margin-bottom: 20px;
	}

	.hero-schedule-area .table-caption div {
		font-size: 1.4rem !important;
		font-weight: 500;

	}

	.hero-schedule-area .table-caption div .large {
		font-size: 1.4rem !important;
		font-weight: 500;
	}

	.hero-schedule-area.foot-only p.caption-sub {
		font-size: 1.3rem !important;
		font-weight: 500;
		margin-bottom: 20px;
	}

	.hero-schedule-area p.close {
		font-size: 1.3rem !important;
		font-weight: 500;
		line-height: 1;
		margin-bottom: 0;
	}
}

.tablepress th,
td {
	border: none;
	font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.common-schedule-area .tablepress {
	margin-bottom: 20px !important;
}

.common-schedule-area {
	width: 100%;
	background: #F6F5F1;
	border-radius: 24px;
	z-index: 100;
	padding: 40px 12% 60px;
	box-sizing: border-box;
}

.common-schedule-area.foot-only {
	border-radius: 0;
	padding: 0;
	max-width: 500px;
	background: var(--footer-bg-color);
}

.common-schedule-area.post-only {
	background: #ECE8DF;
}

@media only screen and (max-width: 1120px) {
	.common-schedule-area.foot-only {
		margin-bottom: 50px;
		color: var(--text-color)
	}

}

@media only screen and (max-width: 768px) {
	.common-schedule-area {
		border-radius: 12px;
		padding: 15px 5% 30px;
	}

}

/* table thead */
.common-schedule-area .tablepress>:where(thead, tfoot)>tr>* {
	background-color: #F6F5F1 !important;
	border-bottom: 1px solid var(--key-color) !important;
	padding: 15px !important;
	font-size: 1.7rem !important;
	width: 100% !important;
	color: #4e4e4e !important;
	font-weight: 500 !important;
	text-align: center !important;
	vertical-align: middle !important;
}

.common-schedule-area.foot-only .tablepress>:where(thead, tfoot)>tr>* {
	font-size: 1.5rem !important;
	padding: 15px !important;
	background: var(--footer-bg-color) !important;
}

.common-schedule-area.post-only .tablepress>:where(thead, tfoot)>tr>* {
	background-color: #ECE8DF !important;
}



@media only screen and (max-width: 768px) {
	.common-schedule-area .tablepress>:where(thead, tfoot)>tr>* {
		padding: 10px !important;
		font-size: 1.5rem !important;
	}

	.common-schedule-area.foot-only .tablepress>:where(thead, tfoot)>tr>* {
		padding: 10px !important;
		font-size: 1.5rem !important;

	}
}

@media only screen and (max-width: 480px) {
	.common-schedule-area .tablepress>:where(thead, tfoot)>tr>* {

		padding: 5px !important;
		font-size: 1.4rem !important;

	}
}

/* table tr 1行目 */
.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
	background-color: #F6F5F1 !important;
	border-bottom: 1px solid var(--key-color) !important;
	padding: 20px 15px !important;
	font-size: 2.6rem !important;
	width: 100% !important;
	color: var(--key-color) !important;
	text-align: center !important;
	vertical-align: middle !important;
}

.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
	font-size: 2.2rem !important;
	background: var(--footer-bg-color) !important;
}

.common-schedule-area.post-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.common-schedule-area.post-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
	background-color: #ECE8DF !important;
}


@media only screen and (max-width: 768px) {

	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
		padding: 20px 10px !important;
		font-size: 2.2rem !important;
	}

	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
		font-size: 2rem !important;
	}
}

@media only screen and (max-width: 480px) {

	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
		padding: 20px 5px !important;
		font-size: 1.8rem !important;
	}

	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(odd of :where(:not(.child, .dtrg-group)))>* {
		font-size: 1.8rem !important;
	}
}

/* table tr 2行目 */
.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
	background-color: #F6F5F1 !important;
	border-bottom: 1px solid var(--key-color) !important;
	padding: 20px 15px !important;
	font-size: 2.6rem !important;
	width: 100% !important;
	color: var(--key-color) !important;
	text-align: center !important;
	vertical-align: middle !important;
}

.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
	font-size: 2.2rem !important;
	background: var(--footer-bg-color) !important;
}

.common-schedule-area.post-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.common-schedule-area.post-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
	background-color: #ECE8DF !important;
}

@media only screen and (max-width: 768px) {

	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
		padding: 20px 10px !important;
		font-size: 2.2rem !important;
	}

	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
		font-size: 2rem !important;
	}

}

@media only screen and (max-width: 480px) {

	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
		padding: 20px 5px !important;
		font-size: 1.8rem !important;
	}

	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
	.common-schedule-area.foot-only .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
		font-size: 1.8rem !important;
	}

}

.common-schedule-area .tablepress tr th {}

.common-schedule-area .tablepress tr.row-1 .column-1 {
	white-space: nowrap !important;
	color: #4e4e4e !important;
	text-align: left !important;
	font-weight: 500 !important;
	width: 30px !important;

}

.common-schedule-area .tablepress tr.row-1 .column-1,
.common-schedule-area .tablepress tr.row-2 .column-1,
.common-schedule-area .tablepress tr.row-3 .column-1 {
	width: 15% !important;
	padding: 30px 30px !important;
}

.common-schedule-area.foot-only .tablepress tr.row-1 .column-1,
.common-schedule-area.foot-only .tablepress tr.row-2 .column-1,
.common-schedule-area.foot-only .tablepress tr.row-3 .column-1 {
	width: 15% !important;
	padding: 15px 20px !important;
}


.common-schedule-area .tablepress tr.row-1 th,
.common-schedule-area .tablepress tr.row-2 td,
.common-schedule-area .tablepress tr.row-3 td {
	width: 10% !important;
}

.common-schedule-area .tablepress tr.row-2 .column-1,
.common-schedule-area .tablepress tr.row-3 .column-1 {
	font-size: 1.7rem !important;
	white-space: nowrap !important;
	color: #4e4e4e !important;
	text-align: left !important;
	font-weight: 500 !important;
}

.common-schedule-area.foot-only .tablepress tr.row-2 .column-1,
.common-schedule-area.foot-only .tablepress tr.row-3 .column-1 {
	font-size: 1.5rem !important;
	white-space: nowrap !important;
	color: #4e4e4e !important;
	text-align: left !important;
	font-weight: 500 !important;
}

.common-schedule-area .tablepress tr.row-3 .column-5 {
	text-align: center !important;
	position: relative;
	padding: 0 0 0 0 !important;
}

.common-schedule-area .tablepress tr.row-3 .column-5 sup {
	top: 20px;
	right: 10%;
	position: absolute;
}

@media only screen and (max-width: 768px) {

	.common-schedule-area .tablepress tr.row-1 .column-1,
	.common-schedule-area .tablepress tr.row-2 .column-1,
	.common-schedule-area .tablepress tr.row-3 .column-1 {
		font-size: 1.5rem !important;
		width: 10% !important;
		padding: 20px 10px !important;
	}

	.common-schedule-area.foot-only .tablepress tr.row-1 .column-1,
	.common-schedule-area.foot-only .tablepress tr.row-2 .column-1,
	.common-schedule-area.foot-only .tablepress tr.row-3 .column-1 {
		width: 15% !important;
		padding: 20px 10px !important;
	}

	.common-schedule-area .tablepress tr.row-3 .column-5 {
		text-align: center !important;
		position: relative;
		padding: 0 0 0 0 !important;
	}

	.common-schedule-area .tablepress tr.row-3 .column-5 sup {
		top: 20px;
		right: 10%;
		position: absolute;
	}
}

@media only screen and (max-width: 480px) {

	.common-schedule-area .tablepress tr.row-1 .column-1,
	.common-schedule-area .tablepress tr.row-2 .column-1,
	.common-schedule-area .tablepress tr.row-3 .column-1 {
		width: 10% !important;
		padding: 20px 5px !important;
		word-break: break-all !important;
		overflow-wrap: break-word !important;
	}

	.common-schedule-area.foot-only .tablepress tr.row-1 .column-1,
	.common-schedule-area.foot-only .tablepress tr.row-2 .column-1,
	.common-schedule-area.foot-only .tablepress tr.row-3 .column-1 {
		width: 10% !important;
		padding: 20px 5px !important;
		word-break: break-all !important;
		overflow-wrap: break-word !important;
	}

	.common-schedule-area .tablepress tr.row-3 .column-5 sup {
		top: 20px;
		right: -2px;
		position: absolute;
	}
}

.common-schedule-area .tablepress sup {
	color: #4e4e4e !important;
	font-size: 2.2rem !important;
	vertical-align: top;
	display: inline-block !important;
	margin-top: -7px;
	font-weight: 500;
}

.table-caption {
	display: flex;
	justify-content: space-between;
	font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	letter-spacing: 0.05em;
	margin-top: 18px;
	margin-bottom: 20px;
}

.table-caption div {
	font-size: 1.4rem !important;
	font-weight: 500;
}

.table-caption div span.circle {
	color: var(--key-color);
	font-size: 2rem;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 0 0;
	margin-top: -3px;
}

.table-caption sup {
	color: var(--text-color) !important;
	font-size: 2.2rem !important;
	vertical-align: top;
	display: inline-block !important;
	margin-top: -7px;
}

.common-schedule-area.foot-only .table-caption {
	margin-bottom: 15px;
}

.common-schedule-area .table-caption div {
	font-size: 1.5rem !important;
	font-weight: 500;
}

.common-schedule-area .table-caption div .large {
	font-size: 1.6rem !important;
	font-weight: 500;
}

.common-schedule-area.foot-only p.caption-sub {
	font-size: 1.5rem !important;
	font-weight: 500;
	margin-bottom: 20px;
}

.common-schedule-area p.close {
	font-size: 1.5rem !important;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0 !important;
}

.common-schedule-area p.close span {
	color: #fff;
	padding: 5px 20px 7px;
	margin-right: 10px;
	background: var(--key-color);
	display: inline-block;
	border-radius: 30px;
}

.common-schedule-area .table-caption sup {
	color: var(--text-color);
	font-size: 2.2rem !important;
	vertical-align: top;
	display: inline-block !important;
	margin-top: -7px;
}

.common-schedule-area p.caption-sub {
	font-size: 1.5rem !important;
	line-height: 1.4 !important;
	margin-bottom: 15px !important;
}

.common-schedule-area p {
	line-height: 1.4 !important;
}

@media only screen and (max-width: 768px) {
	.table-caption {
		flex-direction: column;
		margin-bottom: 20px;

	}

	.table-caption .doctor {
		margin-bottom: 10px;
		font-size: 1.4rem;
	}

	.common-schedule-area .table-caption {
		margin-bottom: 20px;
	}



	.common-schedule-area .table-caption div {
		font-size: 1.35rem !important;
		font-weight: 500;
	}

	.common-schedule-area .table-caption div .large {
		font-size: 1.3rem !important;
		font-weight: 500;
	}

	.table-caption div span.circle {
		font-size: 1.6rem;
		margin-top: -1px;
	}

	.common-schedule-area p.caption-sub {
		font-size: 1.4rem !important;
		line-height: 1.4 !important;
		margin-bottom: 15px !important;
	}

	.common-schedule-area.foot-only p.caption-sub {
		font-size: 1.3rem !important;
		font-weight: 500 !important;
		margin-bottom: 15px !important;
	}

	.common-schedule-area p.close {
		font-size: 1.3rem !important;
		font-weight: 500;
		line-height: 1;
		margin-bottom: 0;
	}

}

.common-schedule-area.foot-only p.close {
	font-size: 1.4rem !important;
}

.common-schedule-area.foot-only .table-caption div {
	font-size: 1.4rem !important;
}

.common-schedule-area.foot-only .table-caption div .large {
	font-size: 1.5rem !important;
}

.common-schedule-area.foot-only p.caption-sub {
	font-size: 1.4rem !important;

}

@media only screen and (max-width: 768px) {
	.common-schedule-area.foot-only .table-caption div .large {
		font-size: 1.4rem !important;
	}
}


/*shchedule table
================================================== */
.sp-top-resrve {
	display: none;
}

@media only screen and (max-width: 768px) {
	.sp-top-reserve {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		padding:0 20px;
		box-sizing:border-box;
		text-align: center;
		z-index: 600;
	}

	.sp-top-reserve ul.reserve-sp {
		margin: 0;
		padding: 0 0 40px;
		display: flex;
		justify-content: space-between;
		align-items: unset;
		width: 100%;
		box-sizing: border-box;
	}

	.sp-top-reserve ul.reserve-sp li {
		width: 48%;
		margin-right: 0;

		box-sizing: border-box;
	}

	.sp-top-reserve ul.reserve-sp li a.btn {
		width: 100%;

		min-width: unset;
		color: #fff;
		font-size: 1.4rem;
		line-height: 1;
		padding: 0;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.sp-top-reserve ul.reserve-sp li a.btn span {
		display: inline-block;
		margin-top: 2px;
		margin-right: 10px;


	}
}


.scrolldown {
	position: absolute;
	left: 50%;
	bottom: 10px;
	height: 50px;
	transition: opacity .3s .5s linear;
}


.scrolldown span {
	font-family: 'Quicksand', "Zen Kaku Gothic New", sans-selif;
	position: absolute;
	left: -15px;
	top: -15px;
	color: var(--key-color);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after {
	content: "";
	position: absolute;
	top: 0;
	left: 7px;
	width: 1px;
	height: 30px;
	background: var(--key-color);
	animation: pathmove 2s ease-in-out infinite;
	opacity: 0;
}

@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.scrolldown {
		display: none;
	}
}

/*Layout
================================================== */
#breadcrumb.top-area-fixed {
	margin-top: 138px !important
}

.contentsArea .wrapper {
	width: 100%;
	background: #fff;
	padding: 120px 0 120px 0;
}

.contentsArea.page-contents {
	width: 100%;
	height: auto;
	background: var(--bg-color);
	padding-bottom: 60px;
	box-sizing: border-box;
}

.contentsArea .bg-color {
	background: var(--bg-color);

}

.contentsArea section {
	box-sizing: border-box;
	padding: 0 30px;
	width: 100%;

}

.contentsArea section.right-edge {
	padding: 0 0 0 20px;
}

.contentsArea section.wfull {
	padding: 0;
}

.contentsArea.blue {
	background: #262626;
}

.contentsArea.gray {
	background: #F1F1F1;
	padding-top: 40px;
}

.contentsArea.blue>section,
.contentsArea.gray>section {
	margin-bottom: 0 !important;
	padding-bottom: 80px;
}

.contentsArea.full>section {
	padding-left: 0;
	padding-right: 0;
}

.contentsArea.blue h2 {
	color: #fff;
}

.contentsArea .w-common {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;

	box-sizing: border-box;
}

.contentsArea .w-narrow {
	width: 100%;
	max-width: 930px;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
}

.contentsArea .w1280 {
	max-width: 1280px;
	margin: 0 auto;
}

.contentsArea .w1200 {
	max-width: 1200px;
	margin: 0 auto;
}

.contentsArea .w1080 {
	max-width: 1180px;
	margin: 0 auto;
}

.contentsArea .w980 {
	max-width: 980px;
	margin: 0 auto;
}

.contentsArea .w900 {
	max-width: 900px;
	margin: 0 auto;
}

.contentsArea .w800 {
	max-width: 800px;
	margin: 0 auto;
}

.fullImg img {
	width: 100%;
	height: auto;
}


@media screen and (max-width: 768px) {
	.contentsArea {
		width: 100%;
	}

	.contentsArea .wrapper {
		padding: 60px 0 60px 0;
	}

	.contentsArea section p {
		font-size: 1.6rem;
	}

	.contentsArea section.right-edge {
		padding: 0 0 0 0;
	}

}


.contentsArea .right-edge-image {
	display: flex;
	justify-content: right;
}

.contentsArea .right-edge-image .content-box {
	width: 46%;
	max-width: 560px;
	padding-right: 4%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.contentsArea .right-edge-image .content-box .feature-btn {
	margin-top: auto;
}

.contentsArea .right-edge-image .img-box {
	width: 49%;
	padding-left: 1%;
	min-height: 600px;
}

.contentsArea .right-edge-image .img-box img {
	width: 100%;
	height: auto;
	min-height: 600px;
	border-radius: 24px 0 0 24px;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.contentsArea .right-edge-image {
		justify-content: center;
		flex-direction: column;
		flex-direction: column-reverse;
	}

	.contentsArea .right-edge-image .content-box {
		width: 100%;
		max-width: none;
		padding: 0 30px;
	}

	.contentsArea .right-edge-image .img-box {
		width: 100%;
		padding-left: 0;

	}

	.contentsArea .right-edge-image .img-box img {
		width: 100%;
		height: auto;

		border-radius: 0;
		object-fit: contain;
	}
}


.contentsArea .right-edge-wide {
	display: flex;
	justify-content: right;
}

.contentsArea .right-edge-wide .content-box {
	width: 25%;
	max-width: 320px;
	padding-right: 3%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.contentsArea .right-edge-wide .img-box {
	width: 65%;
	padding-left: 1%;
}

.contentsArea .right-edge-wide .img-box img {
	width: 100%;
	height: auto;
	border-radius: 24px 0 0 24px;
}

@media screen and (max-width: 768px) {
	.contentsArea .right-edge-wide {
		justify-content: center;
		flex-direction: column;
		flex-direction: column-reverse;
	}

	.contentsArea .right-edge-wide .content-box {
		width: 100%;
		max-width: none;
		padding: 0 30px;

	}

	.contentsArea .right-edge-wide .img-box {
		width: 100%;
		padding: 0 30px;
		box-sizing: border-box;
		margin-bottom: 40px;
	}
}

/*BreadCrumb
================================================== */


/*  top news
================================================== */

.top-news-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;

}

.top-news-wrapper .title-header {
	width: 25%;
	display: flex;
	flex-direction: column;
}

.top-news-wrapper .title-header h2::before {
	top: 0;
	left: 0;
	background-image: url("images/ico_info.svg");
}

.top-news-wrapper .title-header .info-btn {
	margin-top: auto;
	justify-content: flex-start;
	display: block;
}

.top-news-wrapper .title-header h2 span {
	display: block;
}

.top-news-wrapper .top-news-list {
	width: 69%;
	box-sizing: border-box;
}

.top-news-list a {
	border-top: 1px solid #ACACAC;
	letter-spacing: 0.05em;
	padding: 40px 20px;
	font-size: 1.7rem;
	color: var(--text-color);
	font-weight: 500;
	position: relative;
	display: block;

}

.top-news-list a:last-child {
	border-bottom: 1px solid #ACACAC;
}

.top-news-list li span.date {
	display: inline;
	font-size: 1.6rem;
	color: var(--key-color);
	padding-right: 70px;
	font-weight: 500;
}

.top-news-list li span.title {
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 1.7rem;
}

.top-news-list a {
	text-decoration: none;
}

.top-news-list a:hover {
	text-decoration: none;
	color: var(--key-color);
}



.top-news-list li .info-text {
	width: 85%;
}

.top-news-list li a span.title:hover {
	text-decoration: underline;
}



.top-news-wrapper .info-btn.for-sp {
	display: none;
	margin-top: 40px;
}

.top-news-list a::after {
	content: "";
	background-image: url("images/ico_arrow_right.svg");
	height: 30px;
	width: 30px;
	top: 36px;
	right: 20px;
	display: block;
	position: absolute;
}

.news-list-wrapper {
	margin-bottom: 140px;
}

.top-news-list.index-news a {
	font-size: 1.6rem;

}

.top-news-list.index-news li span.date {
	font-size: 1.6rem;
}



@media only screen and (max-width: 1120px) {
	.top-news-wrapper {
		flex-direction: column;
	}

	.top-news-wrapper .title-header {
		width: 100%;
	}

	.top-news-wrapper .title-header h2::before {
		top: 0;
		left: 50%;
		background-image: url("images/ico_info.svg");
	}

	.top-news-wrapper .title-header .info-btn {
		display: none;
	}

	.top-news-wrapper .top-news-list {
		width: 100%;
		margin-bottom: 40px;
	}

	.top-news-wrapper .info-btn.for-sp {
		display: block;
		margin: 0 auto;
	}

	.top-news-list li {
		padding: 10px 0;
	}

	.top-news-wrapper .top-news-list .info-text .date {
		display: block;
		margin-bottom: 16px;
	}

	.top-news-wrapper .top-news-list a {
		padding: 20px 0;
		display: block;
	}
	.top-news-list li span.title {
	font-size: 1.6rem;
}

	.top-news-list li span.date {
		margin-bottom: 10px;
		display: block;
	}

	.top-news-list a::after {
		top: 38%;
		right: 0;
	}
}

/* top Features
================================================== */

.contentsArea .feature-wrapper .right-edge-image .img-box {
	min-height: 640px;
}

.contentsArea .feature-wrapper .img-box img {
	min-height: 642px;
	object-fit:cover;
	object-position: 0 100%
}

ul.features-headline li {
	font-size: 2.1rem;
	position: relative;
	padding: 0 0 20px 90px;
	line-height: 1.8;
	font-weight: 500;
	margin-bottom: 50px;
}

ul.features-headline li:before {
	position: absolute;
	display: block;
	content: '';
	font-family: 'Quicksand';
	font-size: 4.8rem;
	width: 64px;
	height: 64px;
	background: #fff;
	color: var(--key-color);
	border: 2px solid var(--key-color);
	top: 4px;
	left: 0;
	border-radius: 50%;
	text-align: center;
	line-height: 1.3
}

ul.features-headline li.first:before {
	content: '1';
}

ul.features-headline li.second:before {
	content: '2';
}

ul.features-headline li.third:before {
	content: '3';
}

ul.features-headline li.forth:before {
	content: '4';
}


@media only screen and (max-width: 768px) {
	.contentsArea .feature-wrapper .right-edge-image .img-box {
		min-height: auto;
		margin-bottom: 40px;
	}

	.contentsArea .feature-wrapper .img-box img {
		min-height: auto;
	}

	ul.features-headline li {
		font-size: 1.7rem;
		position: relative;
		padding: 0 0 20px 40px;
		padding-left: 60px;
		margin-bottom: 40px;
	}

	ul.features-headline li:before {
		width: 48px;
		height: 48px;
		font-size: 3.4rem;
		background: #fff;
		top: 2px;
		left: 0;
		line-height: 1.4;
	}

}

@media only screen and (max-width: 480px) {
	ul.features-headline li:last-child {
		margin-bottom: 40px;
	}
}

/* top medical list
================================================== */

ul.list-culumn {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: -30px;
}

ul.list-culumn::after {
	display: block;
	content: "";
	width: 30%;
}

ul.list-culumn li {
	width: 30%;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	transition: all 1s ease;
	opacity: 1;
	transform: translateY(30px);
	border: 2px solid var(--key-color);
	border-radius: 24px;
	background: #fff;
	padding: 45px 20px 30px 20px;
	box-sizing: border-box;
	line-height: 1;
	color: var(--key-color);
}



ul.list-culumn li.active {
	opacity: 1;
	transform: translateY(0);
}

ul.list-culumn li img {
	width: 100%;
	height: auto;
	max-width: 120px;
	margin-bottom: 25px;
	vertical-align: top;
}


ul.list-culumn li span {
	font-size: 1.8rem;
	font-weight: 500;
	display: block;

}

ul.list-culumn li a {
	text-decoration: none;
	color: var(--text-color) !important;

}

ul.list-top-medical {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: -30px;
}

ul.list-top-medical::after {
	display: block;
	content: "";
	width: 30%;
}

ul.list-top-medical li {
	width: 30%;
	margin-bottom: 50px;
	position: relative;
}

ul.list-top-medical li a {
	width: 100%;
	height: auto;
	display: block;
	text-align: center;
	position: relative;
	transition: all 1s ease;
	border: 2px solid var(--key-color);
	border-radius: 24px;
	background: #fff;
	padding: 45px 20px 30px 20px;
	box-sizing: border-box;
	line-height: 1;
	color: var(--key-color);
}

ul.list-top-medical li a:hover {

	background: #F6F5F1
}



ul.list-top-medical li img {
	width: 100%;
	height: auto;
	max-width: 120px;
	margin-bottom: 25px;
	vertical-align: top;
}


ul.list-top-medical li span {
	font-size: 1.8rem;
	font-weight: 500;
	display: block;

}

ul.list-top-medical li a {
	text-decoration: none;
	color: var(--text-color) !important;

}


@media screen and (max-width: 768px) {

	ul.list-culumn {
		margin-bottom: 20px;
	}


	ul.list-culumn::after {
		display: block;
		content: "";
		width: 48%;
	}

	ul.list-culumn li {
		width: 48%;
		margin-bottom: 20px;
		padding: 20px 10px;
	}

	ul.list-culumn li img {
		max-width: 80px;
		margin-bottom: 10px;
	}

	ul.list-culumn li span {
		font-size: 1.4rem;
		font-weight: 500;
		display: block;
	}

	ul.list-top-medical {
		margin-top: 0px;
	}

	ul.list-top-medical li a {
		border-radius: 24px;
		padding: 20px 0 20px 0;
	}

	ul.list-top-medical li {
		width: 48%;
		margin-bottom: 20px;
	}

	ul.list-top-medical li img {
		width: 70%;
		max-width: 74px;
		margin-bottom: 20px;
		vertical-align: top;
	}

	ul.list-top-medical li span {
		font-size: 1.4rem;

	}

}


/* top access
================================================== */

.access-content .title {
	max-width: 250px;
}

.access-content .title {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 30px;
	display: block;
}

.access-content p.address {
	padding-bottom: 45px;
	border-bottom: 1px solid #ACACAC;
}

.access-content p.address {
	padding-bottom: 35px;
	border-bottom: 1px solid #ACACAC;
}

.access-content .align-bottom {
	margin-top: auto;
}


iframe[src*="www.google.com/maps/embed"] {
	aspect-ratio: 16 / 7;
	width: 100%;
	height: auto;
	border-radius: 24px 0 0 24px;
}

#post iframe[src*="www.google.com/maps/embed"] {
	border-radius: 24px;
}

@media screen and (max-width: 768px) {

	.access-content .title {
		font-size: 1.6rem;

	}

	.access-content .align-bottom {
		margin: 0 auto;
	}

	iframe[src*="www.google.com/maps/embed"] {
		aspect-ratio: 1 / 1;
		border-radius: 24px;
	}
}


/* top partner list
================================================== */

p.patner-text {
	margin-bottom: 60px !important;
}

ul.partner-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

ul.partner-list::after {
	display: block;
	content: "";
	width: 30%;
}

ul.partner-list li {
	width: 30%;
	color: var(--text-color);
	font-size: 1.6rem;
	padding-bottom: 20px;
	font-weight: 500;
	padding-left: 20px;
	position: relative;
	line-height: 1.3;
}

ul.partner-list li a {
	text-decoration: none;
	color: var(--text-color);
}

ul.partner-list li a:hover {
	text-decoration: underline;
}

ul.partner-list li:last-child {
	
}

ul.partner-list li:before {
	position: absolute;
	display: block;
	content: '・';
	top: 0;
	left: 0;
}

ul.partner-list li:last-child:before {
	
}

ul.partner-list li span {
	display: inline-block;
	margin-left: 16px;
	margin-top: -2px;
	vertical-align: middle;
}

.jikou-link {
	margin-top: 80px;
	text-align: center;
}

.jikou-link a {
	text-decoration: none;
	color: var(--key-color);
}

.jikou-link a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {

	ul.partner-list li {
		width: 42%;
		font-size: 1.6rem;
	}

	ul.partner-list li:last-child {
		padding-left: 20px;
	}
}

@media screen and (max-width: 480px) {
	ul.partner-list {
		flex-direction: column;
	}

	ul.partner-list li:last-child:before {
		left: 0;
	}

	ul.partner-list li {
		width: 100%;
	}
}

/*==========================================
/*page-header
==========================================*/

.page-head-img {
	width: 100%;

}

.page-head-img img {
	width: 100% !important;
	height: auto;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.page-head-img img {
		width: 100%;
		height: 20vh;
	}
}

/*==========================================
/*ニュースページ
==========================================*/

.single-post #post {
	max-width: 900px;

}

.single-post-head {
	margin: 0 auto;
	padding-top: 120px;
	text-align: center;
	display: block;

}

.single-post-head .page-head-icon {
	width: 48px;
	display: inline-block;
	margin-bottom: 10px;
}

.single-post-head .page-head-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post-head .page-head-parent {
	color: var(--key-color);
	display: block;
	font-size: 2.1rem;
	letter-spacing: 0.05em;
}

.single-post p {
	margin-bottom: 40px !important;
}

.single-post p:last-child {
	margin-bottom: 100px !important;
}

.single-post .date {
	display: block;
	font-size: 1.6rem !important;
	color: var(--key-color);
	font-weight: 500;
	text-align: center;
	margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
	.single-post #post p:last-child {
	
}
}

ul.pegination {
	list-style-type: none;
	width: 100%;
	max-width: 420px !important;
	display: flex;
	justify-content: space-between;
	padding-bottom: 100px;
	margin: 0 auto;
	
}

ul.pegination li {
	
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	position: relative;

}

ul.pegination li a.btn {
	text-decoration: none !important;
	min-width: 140px

}

ul.pegination li a {
	text-decoration: none !important;
}


ul.pegination li a:hover {
	text-decoration: none !important;

}

ul.pegination li.pegination-center {
	text-align: center !important;

}

ul.pegination li.pegination-center::before {
	display: none !important;
}

ul.pegination li.pegination-left {
	text-align: left;
	padding-left: 30px;
	
}

ul.pegination li.pegination-right {
	text-align: right !important;
	padding-right: 30px;
	

}

ul.pegination li.pegination-left a::before {
	position: absolute;
	content: '';
	background: url(images/ico_prev.svg) no-repeat !important;
	background-size: 42px 42px !important;
	width: 42px !important;
	height: 42px !important;
	display: block;
	top:-14px;
	left: -35px;
}

ul.pegination li.pegination-right a::after {
	position: absolute;
	content: '';
	background: url(images/ico_next.svg) no-repeat !important;
	background-size: 42px 42px !important;
	width: 42px !important;
	height: 42px !important;
	display: block;
	top:-14px;
	right: -35px !important;
}


@media screen and (max-width: 768px) {
	ul.pegination {
	padding-bottom: 60px;
}

}
/*==========================================
/*当院について
==========================================*/

#post ul.features-headline {
	margin-top: 30px;
}

#post ul.features-headline li {
	font-size: 2.6rem;
	position: relative;
	padding: 18px 0 20px 90px;
	line-height: 1.8;
	font-weight: 500;
	margin-bottom: 30px;
	letter-spacing: 0.05em;
}

#post ul.features-headline li+p {
	margin-bottom: 120px;
}

#post ul.features-headline li:before {
	position: absolute;
	display: block;
	content: '';
	font-family: 'Quicksand';
	font-size: 4.8rem;
	width: 64px;
	height: 64px;
	background: #fff;
	color: var(--key-color);
	border: 2px solid var(--key-color);
	top: 9px;
	left: 0;
	border-radius: 50%;
	text-align: center;
	line-height: 1.3
}

#post ul.features-headline li.first:before {
	content: '1';
}

#post ul.features-headline li.second:before {
	content: '2';
}

#post ul.features-headline li.third:before {
	content: '3';
}

#post ul.features-headline li.forth:before {
	content: '4';
}


@media only screen and (max-width: 768px) {

	#post ul.features-headline {
		margin-top: 0;
	}

	#post ul.features-headline li {
		font-size: 1.7rem;
		position: relative;
		padding: 0 0 20px 40px;
		padding-left: 60px;
		margin-bottom: 0;
	}

	#post ul.features-headline li+p {
		margin-bottom: 60px;
	}

	#post ul.features-headline li:before {
		width: 48px;
		height: 48px;
		font-size: 3.4rem;
		background: #fff;
		top: 2px;
		line-height: 1.35;
		left: 0;
	}

}

@media only screen and (max-width: 480px) {
	#post ul.features-headline li:last-child {
		margin-bottom: 40px;
	}
}

h3.shisetsu {
	margin-top: 100px;
}

@media only screen and (max-width: 768px) {
	h3.shisetsu {
		margin-top: 0;
	}
}

ul.full-gallery {
	margin: 40px 0 80px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto 40px;
	width: 100%;
	padding: 40px 20px;
}

ul.full-gallery li {
	width: 32%;
	margin-bottom: 80px;
}

ul.full-gallery li img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 24px;
}

ul.full-gallery li span {
	text-align: center;
	display: block;
	font-size: 1.7rem;
}

.shisetsu-btn {
	text-align: center;
	margin-bottom: 140px;
}

@media only screen and (max-width: 768px) {

	ul.full-gallery {
		margin-top: 0;
		padding-top: 10px;

	}

	ul.full-gallery li {
		width: 49%;
		margin-bottom: 70px;
	}

	.shisetsu-btn {
		text-align: center;
		margin-bottom: 70px;
	}
}


@media only screen and (max-width: 480px) {

	ul.full-gallery li {
		width: 100%;
		margin-bottom: 40px;
	}

}

/*==========================================
/*診療科目トップ
==========================================*/
.page-medical-parent.naika,
.page-medical-child.naika {
	background-image: url("images/ico_medical_naika_bg.svg");
	background-size: 40%;
	background-position: 95% 55%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.page-medical-parent.kokyuki,
.page-medical-child.kokyuki {
	background-image: url("images/ico_medical_kokyuki_bg.svg");
	background-size: 40%;
	background-position: 95% 55%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.page-medical-parent.allergy,
.page-medical-child.allergy {
	background-image: url("images/ico_medical_allergy_bg.svg");
	background-size: 40%;
	background-position: 95% 55%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.page-medical-parent.hatsunetsu,
.page-medical-child.hatsunetsu {
	background-image: url("images/ico_medical_hatsunetsu_bg.svg");
	background-size: 40%;
	background-position: 95% 55%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.page-medical-parent.kenkoushindan,
.page-medical-child.kenkoushindan {
	background-image: url("images/ico_medical_kenkoushindan_bg.svg");
	background-size: 40%;
	background-position: 95% 55%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.page-medical-parent.yobousesshu,
.page-medical-child.yobousesshu {
	background-image: url("images/ico_medical_yobousesshu_bg.svg");
	background-size: 40%;
	background-position: 95% 55%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}


.page-medical-parent #post ul {
	width: 55%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.page-medical-parent #post ul li {
	width: 45%;
	font-size: 1.7rem;
}

.page-medical-parent.yobousesshu #post ul {
	width: 90%;
}

.page-medical-parent.yobousesshu #post ul li {
	width: 45%;
	font-size: 1.7rem;
}

@media only screen and (max-width: 1120px) {
	.page-medical-parent #post ul {
		width: 100%;
	}

	.page-medical-parent #post ul li {
		width: 45%;
	}
}

@media only screen and (max-width: 768px) {



	.page-medical-parent.naika,
	.page-medical-child.naika {
		background-image: none;
	}


	.page-medical-parent.kokyuki,
	.page-medical-child.kokyuki {
		background-image: none;
	}

	.page-medical-parent.allergy,
	.page-medical-child.allergy {
		background-image: none;
	}

	.page-medical-parent.hatsunetsu,
	.page-medical-child.hatsunetsu {
		background-image: none;
	}

	.page-medical-parent.kenkoushindan,
	.page-medical-child.kenkoushindan {
		background-image: none;
	}

	.page-medical-parent.yobousesshu,
	.page-medical-child.yobousesshu {
		background-image: none;
	}

	.page-medical-parent #post p:first-child {
		margin-bottom: 70px;
	}


	.page-medical-parent #post ul {
		flex-direction: column;
	}

	.page-medical-parent #post ul li {
		width: 100%;
	}
.page-medical-parent.yobousesshu #post ul {
	width: 90%;
}

.page-medical-parent.yobousesshu #post ul li {
	width: 100%;
	
}
	
	
}

nav#medical-nav ul {
	margin: 0 0 140px 0;
	padding-top: 0;
	display: flex;
	justify-content: space-between;
}

nav#medical-nav ul li {

	font-size: 1.6rem !important;
	font-weight: 6500;
	color: var(--key-color);
	margin-right: 30px;
	position: relative;
	letter-spacing: 0.05em;
	padding-left: 35px;
}

nav#medical-nav ul li::before {
	content: "";
	background-image: url("images/ico.svg");
	height: 30px;
	width: 30px;
	font-weight: 500;
	top: -7px;
	left: 0;
	display: block;
	position: absolute;
}

nav#medical-nav ul li.naika::before {
	background-image: url("images/ico_medical_naika.svg");
}

nav#medical-nav ul li.kokyuki::before {
	background-image: url("images/ico_medical_kokyuki.svg");
}

nav#medical-nav ul li.allergy::before {
	background-image: url("images/ico_medical_allergy.svg");
}

nav#medical-nav ul li.hatsunetsu::before {
	background-image: url("images/ico_medical_hatsunetsu.svg");
}

nav#medical-nav ul li.kenkoushindan::before {
	background-image: url("images/ico_medical_kenkoushindan.svg");
}

nav#medical-nav ul li.yobousesshu::before {
	background-image: url("images/ico_medical_yobousesshu.svg");
}


nav#medical-nav ul li a {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	backface-visibility: hidden;
	text-decoration: none;
	color: var(--text-color);
	cursor: pointer;
}

nav#medical-nav ul li a {
	text-decoration: none;

}

nav#medical-nav ul li a:hover {
	text-decoration: none;
	color: var(--key-color);
}

nav#medical-nav ul li a::after {
	background-color: var(--key-color);
	bottom: -7px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
	width: 100%;
}

nav#medical-nav ul li a:hover::after {
	transform: scale(1, 1);
}

@media only screen and (max-width: 1280px) {

	nav#medical-nav ul li {
		font-size: 1.5rem !important;
		margin-right: 20px;
	}
}

@media only screen and (max-width: 980px) {

	nav#medical-nav ul {
		flex-direction: column;
		margin: 0 0 70px 0;
	}

	nav#medical-nav ul li {
		margin: 0 0 50px 0;
		padding-left: 40px;
	}

}

/*==========================================
/*診療科目詳細
==========================================*/
.medical-child-head {
	margin: 0 auto;
	padding-top: 75px;
	text-align: center;
	display: block;

}

.medical-child-head .page-head-icon {
	width: 48px;
	display: inline-block;
	margin-bottom: 10px;
}

.medical-child-head .page-head-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.medical-child-head .page-head-parent {
	color: var(--key-color);
	display: block;
	font-size: 2.1rem;
	letter-spacing: 0.05em;
}

.single-post-head {
	margin: 0 auto;
	padding-top: 120px;
	text-align: center;
	display: block;

}

.single-post-head .page-head-icon {
	width: 48px;
	display: inline-block;
	margin-bottom: 10px;
}

.single-post-head .page-head-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post-head .page-head-parent {
	color: var(--key-color);
	display: block;
	font-size: 2.1rem;
	letter-spacing: 0.05em;
}

.page-medical-child h2 {
	padding-top: 55px;
}

.page-medical-child #post table {
	width: 100%;
	margin-bottom: 60px;
	border-spacing: 0;
	background-color: #fff;
}

.single-post #post table {
	width: 100%;
	margin-bottom: 40px;
	border-spacing: 0;
	background-color: #fff;
}

.page-medical-child #post table th,
.page-medical-child #post table td,
.single-post #post table th,
.single-post #post table td {
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 15px;
	text-align: center;
	border-bottom: 4px solid var(--bg-color);
	border-left: 4px solid var(--bg-color);
}



.page-medical-child #post table tr:first-child,
.single-post #post table tr:first-child {
	color: #4e4e4e;
	background-color: #e3ded2 !important;
	opacity: 1;
}

.page-medical-child a.center,
.single-post a.center {
	text-align: center !important;
	margin: 0 auto 100px !important;
	display: inline-block;
}

.btn-ctr-wrap {
	width: 100%;
	text-align: center;
}

@media only screen and (max-width: 980px) {

	.page-medical-child a.center {
		margin: 0 auto 70px !important;
	}

	.single-post a.center {
		margin: 0 auto 70px !important;
	}

	.medical-child-head {
	padding-top: 45px;

}
}




/*==========================================
/*医師の紹介
==========================================*/

#post .doctor-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #acacac;
	margin-bottom: 120px;
	box-sizing: content-box;
	padding: 0 0 120px 0 !important;
	margin: 0 20px 120px;
}

#post .doctor-wrapper:last-child {
	margin-bottom: 0;
	padding-bottom: 0 !important;
	border-bottom: none;
}

#post .doctor-wrapper .left {
	width: 37%;
}

#post .doctor-wrapper .left img {
	width: 100%;
	height: auto;
}

#post .doctor-wrapper .right {
	width: 53%;
}

#post .doctor-wrapper h3 {
	font-size: 2.4rem;
	color: var(--text-color);
	padding: 0;
	margin-bottom: 50px;
}

#post .doctor-wrapper h3::before {
	display: none;
}

#post .doctor-wrapper h3 span {
	display: block;
	font-size: 2rem;
	margin-bottom: 10px;
}

#post .doctor-wrapper h4 {
	font-size: 2rem;
	margin-bottom: 10px;
	border:none;
}

#post .doctor-wrapper p:has(+ h4) {
	margin-bottom: 72px;
}

#post .doctor-wrapper h5 {
	color: var(--key-color);
	margin-bottom: 20px;
	font-size:1.8rem;
}

#post .doctor-wrapper p:has(+ .career_wrapper) {
	margin-bottom: 72px;
}

#post .doctor-wrapper .career_wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
}

#post .doctor-wrapper .career_wrapper div {
	width: 45%;
}

#post .doctor-wrapper ul li {
	font-size:1.5rem;
	margin-bottom: 7px;
}


@media only screen and (max-width: 768px) {
	#post .doctor-wrapper {
		flex-direction: column;
		width: 100%;
		box-sizing: border-box;
		padding-bottom: 40px !important;
		margin-left: 0;
		margin-right: 0;
	}

	#post .doctor-wrapper .left {
		width: 100%;
	}

	#post .doctor-wrapper .left img {
		width: 100%;
		height: auto;
	}

	#post .doctor-wrapper .right {
		width: 100%;
	}

	#post .doctor-wrapper h3 {
		font-size: 2rem;
		margin-bottom: 40px;
	}

	#post .doctor-wrapper h3 span {
		font-size: 1.7rem;
		margin-bottom: 10px;
	}

	#post .doctor-wrapper h4 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}

	#post .doctor-wrapper p:has(+ h4) {

		margin-bottom: 60px;
	}

	#post .doctor-wrapper h5 {
		font-size: 1.7rem;
		margin-bottom: 20px;
	}

	#post .doctor-wrapper p:has(+ .career_wrapper) {
		margin-bottom: 60px;
	}

	#post .doctor-wrapper .career_wrapper {
		flex-flow: column
	}

	#post .doctor-wrapper .career_wrapper div {
		width: 100%;
	}

}



#post .title-access {
	margin-top: 50px;
	display: block;
	font-size: 1.8rem;

}

@media only screen and (max-width: 768px) {
	#post .title-access {
		margin-bottom: 50px;
	}

	.access-btn {
		width: 100%;
		text-align: center;
	}

}

/*==========================================
/*POST　投稿
==========================================*/

#post {
	text-align: left !important;
	width: 100%;
	margin: 0 auto 100px;
}

#post .post-culumn2 {
	display: flex;
	margin-bottom: 60px;
}

#post .post-culumn2 h3 {
	width: 23%;
	padding-right: 30px;
	box-sizing: border-box;
}

#post .post-culumn2 .right-culumn {
	width: 77%;
}

#post #ez-toc-container {
	margin-bottom: 180px;
}

#post #ez-toc-container ul li {
	font-size: 1.7rem;
	margin-bottom: 20px;
}

#post #ez-toc-container ul li a {

	text-decoration: underline;
	transition: 0.3s linear;
}

#post #ez-toc-container ul li:hover {
	opacity: 0.8
}

@media only screen and (max-width: 768px) {
	#post {
		margin: 0 auto 60px;
	}


	#post .post-culumn2 {
		display: flex;
		flex-flow: column;
		margin-bottom: 0;
	}

	#post .post-culumn2 h3 {
		width: 100%;
		padding-right: 0;
		box-sizing: border-box;
	}

	#post .post-culumn2 .right-culumn {
		width: 100%
	}
}

#post p {
	width: 100%;
	line-height: 2.1;
	text-align: left;
	font-size: 1.7rem;
	font-weight: 500;
	margin-bottom: 40px;
}

#post p:has(+ h3) {
	margin-bottom: 100px;
}

#post ul:has(+ h3) {
	margin-bottom: 100px;
}

#post ol:has(+ h3) {
	margin-bottom: 100px;
}

#post p:has(+ h4) {
	margin-bottom: 60px;
}

#post ul:has(+ h4) {
	margin-bottom: 60px;
}

#post ol:has(+ h4) {
	margin-bottom: 60px;
}

#post p:has(+ h5) {
	margin-bottom: 60px;
}

#post ul:has(+ h5) {
	margin-bottom: 60px;
}

#post ol:has(+ h5) {
	margin-bottom: 60px;
}

#post .align-center {
	text-align: center;
}

#post a {

	text-decoration: underline;
	transition: all 0.2s linear;
}

#post a:link {
	color: var(--key-color);
}


#post a:visited {
	color: var(--key-color);
}

#post a:hover {
	color: var(--key-color);
	text-decoration: underline;
}

#post a:active {
	color: var(--key-color);
}

#post a.btn:link {
	width: auto;
	padding: 0 20px;
	line-height: 42px;
	height: 42px;
	text-decoration: none;
	display: inline-block;
}

#post a.btn:link {
	color: #fff !important;
}

#post a.btn:visited {
	color: #fff !important;
}

#post a.btn:hover {
	color: #fff !important;
}

#post a.btn:active {
	color: #fff !important;
}

#post img.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

#post .m-height-large {
	margin-bottom: 100px;
}

#post ul,
#post ol {
	margin-bottom: 40px;
	margin-left:0;
}

#post ul {
	margin-left: 5px;
}

#post ol {
	margin-left: 20px;
}

#post ul li,
#post ol li {
	font-size: 1.7rem;
	margin-bottom: 15px;
	line-height: 2;
	text-align: left;
	position: relative;
	padding-left: 20px;
}

#post ul li::before {
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	left: 0;
	width: 4px;
	height: 4px;
	background: var(--key-color);
	border-radius: 10px;
}

.page-medical-parent #post ul li::before {
	top: 16px;
}

#post ol {
	list-style-type: decimal
}

#post ol li {
	font-size: 1.7rem;
	margin-bottom: 15px;
	line-height: 1.8;
	text-align: left;
	position: relative;
	margin-left:-5px;
	padding-left:5px;
	list-style-type: decimal;
}

#post ul li ul {
	margin-top: 20px;
	margin-bottom: 30px;
}



#post dl {
	margin-bottom: 60px;
}

#post dl dt {
	padding: 0;
	margin-bottom: 20px;
	margin-right: 10px;
	line-height: 1.6;
	clear: left;
	float: left;
	font-weight: bold;
	position: relative;
}

#post dl dd {
	font-size: 1.7rem;
	text-align: left;
	margin-bottom: 20px;
	line-height: 1.6;
	margin-left: 8em;
}

#post img.radius {
	border-radius: 24px;
}

#post .addressWrap {
	display: flex;
	justify-items: flex-start;
}

#post .addressWrap p {
	width: 320px;
}

@media only screen and (max-width: 768px) {
	#post p {
		font-size: 1.6rem;
		line-height: 2;

	}

	#post .align-center {
		text-align: left;
	}

	#post .m-height-large {
		margin-bottom: 60px;
	}

	#post ul {
		margin-bottom: 60px;
	}

	#post ul li,
	#post ol li {
		font-size: 1.6rem;
	}
	#post ol {
	margin-left: 30px;
}

	#post p:has(+ h3) {
		margin-bottom: 70px;
	}

	#post ul:has(+ h3) {
		margin-bottom: 70px;
	}

	#post ol:has(+ h3) {
		margin-bottom: 70px;
	}

	#post p:has(+ h4) {
		margin-bottom: 40px;
	}

	#post ul:has(+ h4) {
		margin-bottom: 40px;
	}

	#post ol:has(+ h4) {
		margin-bottom: 40px;
	}

	#post p:has(+ h5) {
		margin-bottom: 40px;
	}

	#post ul:has(+ h5) {
		margin-bottom: 40px;
	}

	#post ol:has(+ h5) {
		margin-bottom: 40px;
	}


	#post caption {
		margin-bottom: 20px !important;
	}

	#post img {
		width: 100%;
		height: auto;
		margin: 0 auto 30px !important;
	}

	table.border th,
	table.border td {
		display: block;
	}

	table.border th {
		border: none;
	}

	table.border th,
	table.border td {
		padding-left: 0;
	}

	#post .addressWrap {
		flex-direction: column;
	}

	#post .addressWrap p {
		width: 100%;
	}
}

#post section div:last-of-type {
	margin-bottom: 0;
}

#post a.common {
	background: url(images/circle_arrow_s.png) no-repeat 0 5px;
	background-size: 20px;
	display: inline-block;
	padding-left: 22px;
}

#post .pagenation {
	width: 100%;
	margin-bottom: 60px;
	display: block;
}

#post .pagenation i {
	color: #E11E1E;
}

#post .pagenation .oldpage {
	width: 50%;
	float: left;
	text-align: left;
}

#post .pagenation .newpage {
	width: 50%;
	float: right;
	text-align: right;
}



/* 追加（）editor style css Images */


#post img.size-medium {
	height: auto;
	width: 100%;
	max-width: 360px;
}

#post img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

#post .alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}

#post .alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}

#post .aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

#post table {
	width: 100% !important;
	;
}





@media only screen and (max-width: 768px) {

	#post img[class*="wp-image-"] {
		height: auto;
		width: 100%;
	}

	.alignleft {
		float: none;
		margin: 0 auto;
		width: 100%;
	}

	.alignright {
		float: none;
		margin: 0 auto;
		width: 100%;
	}

	.aligncenter {
		clear: both;
		display: block;
		margin: 0 auto 1.75em;
	}
}


/*WP-pagenavi
-------------------------------------------------------------- */

.wp-pagenavi {

	margin: 60px 0 72px;
	text-align: center;
	overflow: hidden;

}

.wp-pagenavi a,
.wp-pagenavi span {
	text-decoration: none !important;
	padding: 12px 14px;
	margin-right: 8px;
	color: var(--text-color) !important;
	font-size: 2rem;
	display: inline-block;
	border-radius: 5px;
	font-family: 'Quicksand', "Zen Kaku Gothic New", sans-selif;
}

.wp-pagenavi span.current {
	color: var(--key-color) !important;

	padding: 12px 14px;

}

.wp-pagenavi span.extend {
	color: var(--key-color) !important;
	border: none;
	padding: 0;
	background: #fff;
}

.wp-pagenavi a {
	color: var(--text-color) !important;
	margin-right: 8px;

}

.wp-pagenavi a:hover {
	text-decoration: underline !important;
	color: var(--key-color) !important;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	.wp-pagenavi {
		margin-bottom: 40px;
	}

	.wp-pagenavi a,
	.wp-pagenavi span {
		font-size: 1.4rem;
		margin-right: 8px;
	}

	.wp-pagenavi a:hover {
		margin-right: 8px;
	}
}

/* Go Page Top
================================================== */

#page-top {
	border-radius: 50%;
	height: 148px;
	width: 50px;
	padding: 10px;
	position: fixed;
	bottom: 0px;
	right: 30px;
	text-align: center;
	cursor: pointer;
	z-index: 500;
}



@media only screen and (max-width: 768px) {

	#page-top {
		display: none !important;
	}

	#page-top img {
		height: 100px;
		width: 40px;
		bottom: 20px;
		right: 20px;
	}
}


/*footer
================================================== */

footer {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
	background-color: #ECE8DF
}

footer #footInner {
	width: 100%;
	padding: 80px 100px 30px;
	box-sizing: border-box;
	margin: 0 auto;

}

footer #footInner .foot-upper {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

footer #footInner .foot-upper .foot-upper-left {
	width: 40%;
}

footer #footInner .foot-upper .foot-upper-right {
	width: 35%;
}

footer #footInner .foot-upper .foot-upper-left span {
	display: block;
}

footer #footInner .foot-upper .foot-upper-left .logo {
	width: 350px;
	margin-bottom: 25px;
}

footer #footInner .foot-upper .foot-upper-left .logo img {
	width: 100%;
	height: auto;
}

footer #footInner .foot-upper .foot-upper-left .tagline {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	font-weight: 500;
	margin-bottom: 40px;
}

footer #footInner .foot-upper .foot-upper-left .tel {
	font-size: 3.6rem;
	letter-spacing: 0.05em;
	color: var(--key-color);
	font-weight: 500;
	margin-bottom: 30px;
	position: relative;
	padding-left: 40px;
	font-family: 'Quicksand', "Zen Kaku Gothic New", sans-selif;
}

footer #footInner .foot-upper .foot-upper-left .tel a {
	text-decoration: none;
	color: var(--key-color);
}

footer #footInner .foot-upper .foot-upper-left .tel::before {
	content: "";
	background: url("images/ico_tel.svg");
	height: 30px;
	width: 30px;

	top: 4px;
	left: 0;
	display: block;
	position: absolute;
}

footer #footInner .foot-upper .foot-upper-left .address {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 15px;
}

footer #footInner .foot-upper .foot-upper-left .station {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 30px;
}

footer #footInner .foot-bottom {
	margin-bottom: 50px;
}

footer #footInner span.copyright {
	font-size: 1.2rem;
	letter-spacing: 0.05em;

	display: block;
	text-align: center
}

@media only screen and (max-width: 1350px) {
	footer #footInner .foot-upper .foot-upper-right {
		width: 45%;
	}
}


@media only screen and (max-width: 1120px) {

	footer #footInner {
		width: 100%;
		padding: 40px 5% 40px;
		box-sizing: border-box;
		margin: 0 auto;

	}

	footer #footInner .foot-upper {
		flex-direction: column;
	}

	footer #footInner .foot-upper .foot-upper-left {
		width: 100%;
	}

	footer #footInner .foot-upper .foot-upper-right {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {


	footer #footInner .foot-upper .foot-upper-right {
		display: block;
	}

	nav#foot-nav {
		margin-bottom: 60px;

	}

	footer #footInner .foot-upper .foot-upper-left .logo {
		width: 220px;
		margin-bottom: 25px;
	}

	footer #footInner .foot-upper .foot-upper-left .station {

		margin-bottom: 45px;
	}

	footer #footInner .foot-upper .foot-upper-left .tel {
		font-size: 3rem;
		margin-bottom: 60px;
	}
}





/*==========================================
 Navigation
===========================================*/

nav#nav {}

nav#foot-nav ul {
	margin: 20px 0 0 0;
	padding-top: 0;
	display: flex;
	z-index: 999;
}

nav#foot-nav ul li {
	padding: 0 20px 0 38px;
	font-size: 1.6rem !important;
	font-weight: 500;
	color: var(--text-color);
	margin-right: 30px;
	position: relative;
	letter-spacing: 0.05em;
}

nav#foot-nav ul li a:hover {
	text-decoration: none;
	color: var(--key-color);
}

nav#foot-nav ul li:last-child {
	padding: 0 0 0 40px;
}

nav#foot-nav ul li::before {
	content: "";
	height: 30px;
	width: 30px;
	font-weight: 500;
	top: -7px;
	left: 0;
	display: block;
	position: absolute;
}

nav#foot-nav ul li.first::before {
	background-image: url("images/ico_first_visit.svg");
}

nav#foot-nav ul li.feauture::before {
	background-image: url("images/ico_feature.svg");
}

nav#foot-nav ul li.doctor::before {
	background-image: url("images/ico_doctor.svg");
}

nav#foot-nav ul li.medical::before {
	background-image: url("images/ico_medical.svg");
}

nav#foot-nav ul li.time::before {
	background-image: url("images/ico_schedule.svg");
}

nav#foot-nav ul li.access::before {
	background-image: url("images/ico_access.svg");
}

nav#foot-nav ul li.news::before {
	background-image: url("images/ico_info.svg");
}





nav#foot-nav ul li a {
	text-decoration: none;
	color: var(--text-color);
	cursor: pointer;
	transition: 0.2s linear;
}


nav#foot-nav ul li a:hover {
	text-decoration: none;


}

nav#foot-nav ul li a::after {
	background-color: var(--key-color);
	bottom: -7px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .2s;
	width: 100%;
}

nav#foot-nav ul li a:hover::after {
	transform: scale(1, 1);
}



nav#foot-nav ul li.menu-item-has-children ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 30px;
	width: 190px;
	margin-left: -35px;
}

nav#foot-nav ul li.menu-item-has-children {
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
}


nav#foot-nav ul li.menu-item-has-children ul li {
	margin-bottom: 20px;
	font-size: 1.4rem !important;
	color: var(--text-color);
	padding-left: 20px;
	margin-right: 0;

}

nav#foot-nav ul li.menu-item-has-children ul li a {
	color: var(--text-color)
}

nav#foot-nav ul li.menu-item-has-children ul li a:hover {
	color: var(--key-color)
}

nav#foot-nav ul li.menu-item-has-children ul li a::after {
	display: none;
}

nav#foot-nav ul li.menu-item-has-children ul li::before {
	content: "ー";
	font-weight: 400;
	color: var(--key-color);
	background-image: none;
	height: 1px;
	width: 30px;
	top: 0;
	left: 0;
	display: block;
	position: absolute;
}



nav#foot-nav ul li {
	padding: 0 20px 0 38px;
	font-size: 1.6rem !important;
	font-weight: 500;
	color: var(--text-color);
	margin-right: 30px;
	position: relative;
	letter-spacing: 0.05em;
}

@media only screen and (max-width: 1350px) {
	nav#foot-nav ul li {
		font-size: 1.4rem !important;
		margin-right: 15px !important;
	}
}

@media only screen and (max-width: 1120px) {
	nav#foot-nav ul {
		margin: 20px 0 0 0;
		padding-top: 0;
		display: flex;
		flex-direction: column;
	}

	nav#foot-nav ul li {
		padding: 0 20px 40px 38px;
		font-size: 1.6rem !important;
	}

	nav#foot-nav ul li.menu-item-has-children ul li {
		margin-bottom: 0;
		padding: 0 20px 30px 48px;
	}

	nav#foot-nav ul li.menu-item-has-children ul li::before {
		left: 30px;
	}

	nav#foot-nav ul li.menu-item-has-children ul {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	nav#foot-nav ul {
		flex-direction: column;
	}
}



@media only screen and (max-width: 768px) {
	nav#foot-nav ul {
		flex-direction: column;
	}
}

footer ul.reserve-sp {
	display: none;
}


@media only screen and (max-width: 1120px) {
	footer ul.reserve-sp {
		margin: 0 0 40px 0;
		display: flex;
		align-items: flex-start;
		width: 100%;
	}

	footer ul.reserve-sp li {

		margin-right: 15px;
	}

	footer ul.reserve-sp li a.btn {
		width: 150px;
		color: #fff;
		font-size: 1.4rem;
		line-height: 1;
		padding: 0;
		height: 38px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	footer ul.reserve-sp li a.btn span {
		display: inline-block;
		margin-top: 2px;
		margin-right: 10px;


	}

}

@media only screen and (max-width: 768px) {
	footer ul.reserve-sp {

		margin: 0;
		padding: 0 0 40px;
		display: flex;
		justify-content: space-between;
		align-items: unset;
		width: 100%;
		box-sizing: border-box;
	}

	footer ul.reserve-sp li {
		width: 48%;
		margin-right: 0;

		box-sizing: border-box;
	}

	footer ul.reserve-sp li a.btn {
		width: 100%;

		min-width: unset;
		color: #fff;
		font-size: 1.4rem;
		line-height: 1;
		padding: 0;
		height: 38px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	footer ul.reserve-sp li a.btn span {
		display: inline-block;
		margin-top: 2px;
		margin-right: 10px;


	}
}