@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Zen+Maru+Gothic&display=swap');



/*初期設定
----------------------------------------------------*/
html {
	min-width: 320px;
	font-size: 62.5%;/*10px*/
}

body {
	padding: 0;
	min-width: 320px;
	line-height: 1.8;
	color: #111;
	font-size: 14px;
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	background: #fff;
}

img {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	vertical-align: bottom;
}

.ie8 img{
	width: auto;
}

h1,h2,h3,h4,h5,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

i {
	padding: 0 0.5em 0 0;
}

p {
	margin: 0 0 10px;
}

a {
	transition: 0.5s;
	color: #111;
	text-decoration: none;
}

a:hover {
	transition: 0.5s;
}

a.button {
	display: block;
	background: rgb(86, 173, 226);
	width: fit-content;
	padding: 0.3em 1.5em;
	border-radius: 1.5em;
	transition: 0.5s;
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
	font-size: 1.2em;
	font-weight: 600;
}

a.button:hover {
	background: rgba(86, 173, 226, 0.8);
}

.blue {
	color: rgb(86, 173, 226);
}

.mb0 {
	margin-bottom: 0 !important;
}

.fadeup {
	animation: 1s fadeup ease-in-out forwards;
}
  
@keyframes fadeup {
0% {
	opacity: 0;
	transform: translateY(1em);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

.slide_right.active { 
	visibility: visible !important;
	animation: slide_right 1.5s 0.1s forwards;
	opacity: 0;
}

@keyframes slide_right {
	0% {
	opacity: 0;
	transform: translatex(100px);
	}
	100%{
	opacity: 1;
	transform: translatex(0);
	}
}

.slide_left.active { 
	visibility: visible !important;
	animation: slide_left 2.0s cubic-bezier(.8, 0, .2, 1) 0.5s forwards;
	clip-path: inset(0 100% 0 0);
}

@keyframes slide_left {
	0% {
	clip-path: inset(0 100% 0 0);
	}
	100%{
	clip-path: inset(0 0 0 0);
	}
}

.slide_up.active { 
	visibility: visible !important;
	animation: slide_up 1.5s 0.5s forwards;
	opacity: 0;
}

@keyframes slide_up {
	0% {
	opacity: 0;
	transform: translateY(40px);
	}
	100%{
	opacity: 1;
	transform: translateY(0);
	}
}

.zoomIn.active {
	visibility: visible !important;
	animation-name: zoomInAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

@keyframes zoomInAnime{
  from {
    opacity: 0;
	transform: scale(0.8);
  }

  to {
  opacity: 1;
      transform: scale(1);
  }
}

.img_big {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.img_big img {
  	transition: 0.3s;
}
 
.img_big img:hover {
	transform: scale(1.03);
}



/*layout
----------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;	
	width: 100%;
	z-index: 1000;
	background: rgba(255,255,255,1.0);
	height: 80px;
}

header.is-animation {
	height: 70px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.1);
	transition: .5s;
	background: rgba(255,255,255,0.9);
}

header.is-animation h1 img {
	transform: scale(0.9,0.9);
	transition: .5s;
}

header .head_inner {
	height: 80px;
}

header.is-animation .head_inner {
	height: 70px;
}

header h1 {
	margin: 0;
	padding: 10px;
	max-width: calc(100% - 120px);
}

header a.telhref {
	position: absolute;
	display: block;
	top: 25px;
	right: 60px;
	font-family: "Elms Sans", sans-serif;
}

header a.telhref span.num {
	display: none;
}

#menu_btn {
	opacity: 0.9;
	position: fixed;
	top:   20px;
	right: 15px;
	z-index: 3;
	width: 40px;
	height: 40px;
	margin: 0;
	float: right;
	cursor: pointer;
}

.menu__line {
	position: absolute;
	display: block;
	width: 60%;
	height: 2px;
	background: #56ade2;
	border-radius: 2px;
	transition: transform .3s;
}

.menu__line--top {
	top: 10px;
	left: 8px;
}

.menu__line--center {
	top: 18px;
	left: 8px;
}

.menu__line--bottom {
	bottom: 11px;
	left: 8px;
}

.menu__line--top.active {
	top: 18px;
	transform: rotate(45deg);
	background: #56ade2;
}

.menu__line--center.active {
	transform: scaleX(0);
	background: #56ade2;
}

.menu__line--bottom.active {
	bottom: 20px;
	transform: rotate(135deg);
	background: #56ade2;
}

nav#g_nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100000;
}

nav#g_nav ul.menu {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 75px 0 0;
	background: rgba(86, 173, 226, 1.0);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

nav#g_nav ul.menu > li a {
	display: block;
	padding: 15px 1em;
	background: rgba(86, 173, 226, 1.0);
	border-top: 1px solid rgba(255,255,255,0.1);
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 600;
	font-family: "Zen Maru Gothic", serif;
	text-align: center;
	color: #fff;
}

nav#g_nav ul.menu > li a .btn__text:nth-child(2) {
	display: none;
}

nav#g_nav ul.menu > li > a:hover {
	background: rgb(88, 182, 240);
}

nav#g_nav ul.menu > li div.sub {
	display: none;
}

nav#g_nav ul.menu > li div.sub p {
	margin: 0;
}

nav#g_nav ul.menu > li div.sub p a {
	background: rgb(120, 189, 231)
}

nav#g_nav ul.menu > li div.sub p a:hover {
	background: rgb(131, 202, 247)
}

#mainImage {
	margin: 0;
	position: relative;
}

#mainImage .bx-wrapper {
	border: none;
	box-shadow: none;
	margin: 80px auto 30px;
	width: 92%;
	height: calc( 100vh - 110px);
	box-sizing: border-box;
	border-radius: 4em;
	overflow: hidden;
}

#mainImage ul#slider li {
	position: relative;
}

#mainImage ul#slider li::before {
	content: "";
	display: block;
	background: linear-gradient( rgba(155, 155, 155, 0.3));
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	mix-blend-mode: luminosity;
}

#mainImage ul#slider li img {
	width: 100%;
	height: calc( 100vh - 110px);
	object-fit: cover;
}

#mainImage .text_box {
	position: absolute;
	top: 10%;
	left: 10%;
	width: 90%;
	z-index: 1;
	text-align: left;
	color: #fff;
	line-height: 1.5;
	font-family: "Elms Sans", sans-serif;
	font-weight: 400;
	font-size: 40px;
}

#mainImage .hours_table {
	position: absolute;
	bottom: 12%;
	right: 0;
	z-index: 1;
	text-align: center;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
	background: rgba(255,255,255,1.0);
	border-radius: 30px 0 0 30px;
	padding: 0.8em 2em 1.5em 1.5em;
	box-sizing: border-box;
}

#mainImage .hours_table table {
	width: 100%;
}

#mainImage .hours_table table caption {
	background: rgba(86, 173, 226, 1.0);
	color: #fff;
	padding: 0.1em 0.5em 0.2em;
	border-radius: 0.3em;
	font-size: 15px;
	font-weight: 600;
	margin: 1em 0 0.5em;
}

#mainImage .hours_table table.color02 caption {
	background: rgba(128, 188, 87, 1.0);
}

#mainImage .hours_table table th,
#mainImage .hours_table table td {
    padding: 0.2em;
	font-weight: 600;
}

#mainImage .hours_table table th {
	background: #f3f3f3;
	border-radius: 1.5em;
	padding: 0 0.5em;
	border-top: 7px solid #fff;
}

#mainImage .hours_table table tbody td {
	padding-left: 0.5em;
	color: rgba(86, 173, 226, 1.0);
	font-family: "Elms Sans", sans-serif;
}

#mainImage .hours_table table.color02 tbody td {
	color: rgba(128, 188, 87, 1.0);
}

#mainImage .hours_table p {
	font-size: 0.9em;
}

#mainImage .top_img_scroll {
	position: absolute;
	bottom: 10px;
	padding: 0 0 0 5px;
	left: 50%;
	z-index: 100;
	writing-mode: vertical-rl;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 600;
	font-family: "Elms Sans", sans-serif;
}


/* 丸の描写 */
#mainImage .top_img_scroll:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	left: -4px;
	/*丸の形状*/
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(86, 173, 226, 0.8);
	z-index: 5;
	/*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
	0% {
		bottom: 45px;
	}
	100% {
		bottom: -5px;
	}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1;
	}

	80% {
		opacity: 0.9;
	}

	100% {
		opacity: 0;
	}
}

/* 線の描写 */
#mainImage .top_img_scroll:after {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	left: 0;
	/*線の形状*/
	width: 2px;
	height: 55px;
	background: #eee;
}

.pagetitle {
	padding: 2em 0;
	background: url(/img/slide03.jpg) 50% 30% no-repeat;
	background-size: cover;
	margin: 80px auto 30px;
	width: 92%;
	position: relative;
	border-radius: 2em;
	letter-spacing: 0.2em;
}

.pagetitle::before {
	content: "";
	display: block;
	background: linear-gradient( rgba(100, 75, 29, 0.4));
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	mix-blend-mode: luminosity;
	border-radius: 2em;
}

.pagetitle p {
	margin: 0 auto;
	width: fit-content;
	line-height: 1.5;
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
	position: relative;
	z-index: 101;
	font-size: 18px;
	font-size: 1.8rem;
}

.pagetitle p.ja {
	font-size: 36px;
	font-size: 3.6rem;
}

#wrapper {
	clear: both;
	padding: 0 10px;
	background: #fff;
}

section {
	max-width: 1600px;
	margin: 0 auto;
	padding: 50px 0;
}

section.full {
	max-width: none;
	margin: 0 -10px;
	padding: 50px 0;
    border-radius: 4em 4em 0 0;
}

section.bg_gray {
	background: #f3f3f3;
}

section.bg_img {
	background: url(/img/outpatient_bg.jpg) 0 0 no-repeat;
	background-size: cover;
	color: #fff;
	position: relative;
}

section.bg_img::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(5px);
}

section.bg_img .inner {
	z-index: 1;
	position: relative;
}

section .inner {
	padding: 0 10px;
	max-width: 1600px;
	margin: 0 auto;
}

.section02 {
	margin: 0 0 30px;
}

.title01 {
	margin-bottom: 40px;
	text-align: center;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-size: 40px;
	font-size: 4.0rem;
	position: relative;
	line-height: 1.2;
	color: #56ade2;
}

.title01 span.en {
	font-size: 0.6em;
	color: #111;;
	font-family: "Elms Sans", sans-serif;
}

.title02 {
	margin: 0 auto 0.5em;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-size: 22px;
	font-size: 2.2rem;
	position: relative;
    text-align: center;
	padding: 0 80px;
	width: fit-content;
	background: rgba(86, 173, 226, 0.2);
	border-radius: 0.5em;
}

.title02.color02 {
	background: rgba(128, 188, 87, 0.3);
}

.title02:before {
  left:0;
}

.title02:after {
  right: 0;
}

.title03 {
	font-family: "Zen Maru Gothic", serif;
	font-size: 18px;
	font-size: 1.8rem;
	margin: 0 0 1em;
	font-weight: 6
	00;
	color: #56ade2;
}

p.catch01 {
	font-family: "Zen Maru Gothic", serif;
	font-size: 24px;
	font-size: 2.4rem;
	color: #9ad102;
	text-align: center;
	margin-bottom: 1em;
}

.img.round img {
	border-radius: 3em;
}

.box_round {
	padding: 1.5em;
    border-radius: 3em;
	margin-top: 3%;
}

.box_gray {
	background: #f3f1ee;
}

.box_white {
	background: #fff;
}

.box_bo_blue {
	border: 1px solid #56ade2;
}

span.marker {
	background:linear-gradient(transparent 70%, rgba(255, 172, 78, 0.5) 70%);
}

dl.list01 dt,
ul.list01 li {
	padding-left: 1em;
	position: relative;
	margin-bottom: 0.5em;
}

dl.list01 dt::before,
ul.list01 li::before {
	display: block;
	content: "";
	position: absolute;
	background: rgba(86, 173, 226, 0.8);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	top: calc(.5lh - 4px);
	left: 0;
}

.img_text .img {
    margin: 1.5em auto 0;
    text-align: center;
    max-width: 80%;
}

br.pc {
	display: none;
}

footer {
	background: #f9f8f7;
	background-size: cover;
	position: relative;
}

footer .inner {
	padding: 3em 1em;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

footer p.subject {
	margin: 1em 0 0.5em;
	font-size: 1.1em;
	background: #fff;
	padding: 0.2em 1em;
	border-radius: 1em;
	width: fit-content;
}

footer p.tel {
	margin: 1em 0 0.5em;
	font-size: 30px;
	font-size: 3.0rem;
	font-family: "Elms Sans", sans-serif;
}

footer p.address {
	font-size: 1.2em;
}

footer p.access {
	text-decoration: underline;
	text-decoration-color: rgba(86, 173, 226, 0.4);
	text-decoration-thickness: 4px;
	text-underline-offset: 5px;
}

footer .gmap {
	position: relative;
	padding: 0 0 80%;
	height: 0;
	overflow: hidden;
	border-radius: 3em;
}

footer .gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

footer ul.banner {
	display: flex;
	gap: 1em;
	margin: 2em 0;
}

footer ul.nav {
	margin: 1.5em 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	background: #56ade2;
	padding: 2em 1em 1em;
    border-radius: 4em 4em 0 0;
}

footer ul.nav > li {
	padding-left: 1.5em;
	position: relative;
	margin: 0 0 1.5em;
	line-height: 1;
	font-size: 1.1em;
	width: 40%;
	box-sizing: border-box;
}

footer ul.nav li::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-3px) rotate(45deg);
	position: absolute;
    top: .5lh;
	left: 0;
	transition: 0.5s;
}

footer ul.nav li:hover::before {
    left: 5px; 
}

footer ul.nav li a {
	text-decoration: none;
	color: #fff;
}

footer .copy {
	text-align: center;
	padding: 2em 1em;
	background: #56ade2;
	color: #fff;
	height: 40px;
	line-height: 40px;
	position: relative;
	z-index: 2;
    border-radius: 4em 4em 0 0;
}


/*media Queries
----------------------------------------------------*/
@media only screen and (min-width: 600px) {
	
	br.sp {
		display: none;
	}

	#wrapper {
		padding: 0 20px;
	}
	
	section {
		margin: 0 auto;
		padding: 5% 20px;
	}

	section.full {
		margin: 0 -20px;
		padding: 5% 0;
	}
	
	section .inner {
		padding: 0 20px;
	}

	footer ul.nav {
		gap: 3em;
		justify-content: center;
	}

	footer ul.nav > li {
		width: fit-content;
	}

}
	
@media only screen and (min-width: 800px) {

	header {
		padding-top: 15px;
		height: 100px;
	}

	header.is-animation {
		height: 90px;
	}

	header .head_inner {
		width: 94%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	header h1 {
		max-width: 30%;
		padding: 0;
	}
	
	header h1 img {
		transition: all 0.3s;
		vertical-align: top; 
	}

	header a.telhref {
		position: relative;
		top: auto;
		right: auto;
		font-size: 24px;
		font-size: 2.4rem;
		display: block;
		text-align: right;
		color: rgb(86, 173, 226);
	}

	header a.telhref img {
		height: 30px;
		vertical-align:-5px; 
	}

	header a.telhref span.num {
		display: inline-block;
		padding-left: 0.2em;
	}

	nav#g_nav {
		position:relative;
		top: auto;
		left: auto;
		width: auto;
	}
		
	nav#g_nav.fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: rgba(255,255,255,0.9);
		z-index: 100000;
	}	
	
	nav#g_nav #menu_btn{
		display: none;
	}
	
	nav#g_nav ul.menu {
		position: relative;	
		display: flex;
		box-shadow: none;
		padding: 0 0 0;
		background: none;
		justify-content: flex-end;
		align-items: center;
		gap: 1em;
	}
	
	nav#g_nav ul.menu > li a {
		font-size: 12px;
		font-size: 1.2rem;
		position: relative;
		float: none;
		display: block;
		border-top: none;
		background: none;
		padding: 0 0.5em;
		text-align: center;
		white-space: nowrap;
		height: 40px;
		line-height: 40px;
		transition: all .5s ease-in-out;
		color: #111;
	}
	
	nav#g_nav ul.menu > li a:hover {
		background: none;
		text-shadow: none;
		color: rgba(86, 173, 226, 1.0);
	}

	nav#g_nav ul.menu > li div.sub {
		display: none;
		position: absolute;
	}

	nav#g_nav ul.menu > li div.sub p a {
		padding: 5px 10px;
		background-color: rgba(86, 173, 226, 1.0);
		color: #fff;
		height: auto;
		border-top: 1px solid rgba(255, 255, 255, 0.5);
		font-size: 14px;
		font-size: 1.4rem;
		border-right: none;
	}
	
	nav#g_nav ul.menu > li div.sub p:first-child a {
		border-radius: 1em 1em 0 0;
	}

	nav#g_nav ul.menu > li div.sub p:last-child a {
		border-radius: 0 0 1em 1em;
	}

	#mainImage .bx-wrapper {
		width: 96%;
		margin-top: 115px;
		height: calc( 100vh - 155px);
	}

	#mainImage .text_box {
		font-size: 50px;
		font-size: 5.0rem;
	}

	.pagetitle {
		padding: 5em 0;
		width: 96%;
	}

	.pagetitle p {
		font-size: 22px;
		font-size: 2.2rem;
	}

	.pagetitle p.ja {
		font-size: 45px;
		font-size: 4.5rem;
	}
		
	.title01 {
		margin-bottom: 70px;
		font-size: 50px;
		font-size: 5.0rem;
	}

	.title02 {
		font-size: 34px;
		font-size: 3.4rem;
	}

	.title03 {
		font-size: 24px;
		font-size: 2.4rem;
	}

	p.catch01 {
		font-size: 30px;
		font-size: 3.0rem;
	}

	.box_round {
		padding: 3%;
	}

    .img_text {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .img_text.left {
		flex-direction: row-reverse;
	}

   .img_text .img {
        width: 30%;
    }

    .img_text .text {
        width: 65%;
        font-size: 1.2em;
    }

	br.pc {
		display: inline;
	}

	footer .inner {
		display: flex;
		justify-content: space-around;
		align-items: center;
	}

	footer .inner .text {
		width: 40%;
	}

	footer .inner .footer_map {
		width: 55%;
	}

	footer ul.nav {
		margin: 0;
	}

}


@media only screen and (min-width: 1000px) {
	header a.telhref {
		font-size: 34px;
		font-size: 3.4rem;
	}

	header a.telhref img {
		height: 34px;
	}

	nav#g_nav ul.menu > li a {
		font-size: 16px;
		font-size: 1.6rem;
		padding: 0 1em;
	}

	#mainImage .hours_table table caption  {
		font-size: 18px;
	}

	#mainImage .hours_table table th {
		padding: 0.4em 1.2em;
		font-size: 1.2em;
	}

	#mainImage .hours_table table td {
		padding: 0.4em 0 0.4em 2em;
		font-size: 1.4em;
	}


}


@media only screen and (min-width: 1400px) {
	
	#mainImage .text_box {
		font-size: 60px;
		font-size: 6.0rem;
	}

	section {
		font-size: 16px;
		font-size: 1.6rem;
	}

	p.catch01 {
		font-size: 44px;
		font-size: 4.4rem;
	}

	footer .gmap {
		padding: 0 0 60%;
	}
	
}
