@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=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


/*初期設定
----------------------------------------------------*/
html {
	min-width: 320px;
	font-size: 62.5%;/*10px*/
}

body {
	padding: 0;
	min-width: 320px;
	line-height: 1.8;
	color: #444;
	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;
}

a:hover {
	transition: 0.5s;
}

.blue {
	color: rgb(3, 98, 187);
}

.mb0 {
	margin-bottom: 0 !important;
}

.fadeup {
	animation: 1s fadeup ease-in-out forwards;
}
  
@keyframes fadeup {
0% {
	opacity: 0;
	transform: translateY(10px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

.slide_left {
	visibility: visible !important;
	animation: slide_left 1s ease 0s 1 both;
	transition: opacity 1.4s 0.1s,transform 1s 0.1s cubic-bezier(0, 0.4, 0.3, 1);
}

@keyframes slide_left {
	0% { opacity: 0; transform: translateX(100px); }
	100% { opacity: 1; transform: translateX(0); }
}

.slide_right {
	visibility: visible !important;
	animation: slide_right 1s ease 0s 1 both;
	transition: opacity 1.4s 0.1s,transform 1s 0.1s cubic-bezier(0, 0.4, 0.3, 1);
}

@keyframes slide_right {
	0% { opacity: 0; transform: translateX(-100px); }
	100% { opacity: 1; transform: translateX(0); }
}

.slide_up {
	visibility: visible !important;
	animation: slide_up 1s ease 0s 1 both;
	transition: opacity 1.4s 0.1s,transform 1s 0.1s cubic-bezier(0, 0.4, 0.3, 1);
}

@keyframes slide_up {
	0% { opacity: 0; transform: translateY(100px); }
	100% { opacity: 1; transform: translateY(0); }
}

.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: 2;
	background: rgba(255,255,255,1.0);
}

header .head_inner {
	padding: 15px;
}

header h1 {
	margin: 0;
	padding: 0;
	font-size: 1em;
	width: 220px;
}

header p.tel {
	opacity: 0.9;
	position: fixed;
	top:   18px;
	right: 45px;
	z-index: 3;
	width: 40px;
	height: 40px;
	margin: 0;
	float: right;
	cursor: pointer;
	font-family: "Spectral", serif;
	font-weight: 400;
}

header p.tel span.num {
	display: none;
}

#menu_btn {
	opacity: 0.9;
	position: fixed;
	top:   10px;
	right: 10px;
	z-index: 3;
	width: 40px;
	height: 40px;
	margin: 0;
	float: right;
	cursor: pointer;
}

.menu__line {
	position: absolute;
	display: block;
	width: 60%;
	height: 2px;
	background: #0362bb;
	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: #0362bb;
}

.menu__line--center.active {
	transform: scaleX(0);
	background: #0362bb;
}

.menu__line--bottom.active {
	bottom: 20px;
	transform: rotate(135deg);
	background: rgb(3, 98, 187);
}

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: #fff;
}

nav#g_nav ul.menu > li a {
	display: block;
	padding: 15px 1em;
	background: #fff;
	border-top: 1px solid rgba(3, 98, 187,0.2);
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	color: #444;
}

nav#g_nav ul.menu > li a .btn__text:nth-child(2) {
	display: none;
}

nav#g_nav ul.menu > li > a:hover{
	background: #e8f3fd;
}

nav#g_nav ul.menu > li a img {
	padding-right: 1em;
}

#mainImage {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

#mainImage::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(/img/slide01.jpg) ;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation: zoom 6s 1;
	animation-fill-mode: forwards;
	z-index: -1;
	background-attachment: fixed;
	overflow: hidden;
	position: fixed;
}
	
@keyframes zoom {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1.0);
	}
}

#mainImage .text_box {
	position: absolute;
	bottom: 7%;
	left: 0;
	width: fit-content;
	max-width: 85%;
	z-index: 1;
	text-align: left;
	color: #0362bb;
	letter-spacing: 0.1em;
	line-height: 1.5;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	background: rgba(255,255,255,0.8);
	padding: 1em 1em 1em 1.5em;
	box-sizing: border-box;
}

#mainImage .text_box .text_mov {
	font-size: 22px;
}

#mainImage .text_box .text_mov p.sub {
	font-size: 0.7em;
}

#mainImage .text_box .text_mov p.sub02 {
	font-size: 0.5em;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

#mainImage .top_img_scroll {
	position: absolute;
	bottom: 7%;
	padding: 0 0 6em;
	left: 90%;
	z-index: 100;
	writing-mode: vertical-rl;
	color: #0362bb;
	display: inline-block;
	font-size: 0.9em;
	font-family: "Spectral", serif;
	font-weight: 600;
	text-shadow:1px 1px 2px rgba(255,255,255,0.7),-1px 1px 2px rgba(255,255,255,0.7),1px -1px 2px rgba(255,255,255,0.7),-1px -1px 2px rgba(255,255,255,0.7);
}

#mainImage .top_img_scroll::after {
	content: "";
	position: absolute;
	display: block;
	width: 2px;
	height: 5em;
	bottom: 0;
	left: 50%;
	background: #0362bb;
	animation: Top_Img_Scroll 2s cubic-bezier(.76,0,.24,1) infinite;
	box-shadow:1px 1px 2px rgba(255,255,255,0.7),-1px 1px 2px rgba(255,255,255,0.7),1px -1px 2px rgba(255,255,255,0.7),-1px -1px 2px rgba(255,255,255,0.7);
}

@keyframes Top_Img_Scroll {
 0% {
  transform-origin:top;
  transform:scaleY(0)
 }
 50% {
  transform-origin:top;
  transform:scaleY(1)
 }
 51% {
  transform-origin:bottom;
  transform:scaleY(1)
 }
 to {
  transform-origin:bottom;
  transform:scaleY(0)
 }
}

.pagetitle {
	padding: 90px 0 20px;
	background: rgba(222, 227, 229, 0.3);
	position: relative;
	text-align: center;
}

.pagetitle p {
	margin: 0;
	line-height: 1.5;
	font-weight: 400;
	font-family: "Zen Old Mincho", serif;
	font-size: 16px;
	font-size: 1.6rem;
}

.pagetitle p.en {
	font-size: 38px;
	font-size: 3.8rem;
	color: #444;
	font-weight: 200;
	color: #0362bb;
	font-family: "Spectral", serif;
}

#wrapper {
	clear: both;
	padding: 0 10px;
	background: #fff;
}

section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
}

section.full {
	max-width: none;
	margin: 0 -10px;
	padding: 50px 0;
}

section.bg_gray,
section.bg_img {
	background: #f9f8f7;
}

section.bg_green {
	background: #f5f9ed;
}

section .inner {
	padding: 0 10px;
	max-width: 1200px;
	margin: 0 auto;
}

.section02 {
	margin: 0 0 30px;
}

h2.title01 {
	margin-bottom: 40px;
	text-align: center;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-size: 15px;
	font-size: 1.5rem;
	position: relative;
	line-height: 1.6;
}

h2.title01 span.en {
	font-size: 2.2em;
	color: #0362bb;
	font-weight: 200;
	font-family: "Spectral", serif;
}

.box {
	padding: 1em;
	box-shadow: 3px 3px rgba(0,0,0,0.1);
}

.box_blue {
	background: #f7fbff;
}

.box_white {
	background: #fff;
}

span.marker {
	background: linear-gradient(transparent 60%, rgba(0, 130, 196, 0.2) 60%);
}

dl.list01 dt,
ul.list01 li {
	padding-left: 1.6em;
	position: relative;
	font-weight: 600;
	margin-bottom: 0.5em;
}

dl.list01 dt::before,
ul.list01 li::before {
	display: block;
	content: "";
	position: absolute;
	background: #427793;
	width: 0.8em;
	height: 3px;
	top: 0;
	left: 0;
	margin-top: 0.8em;
}

br.pc {
	display: none;
}

#banner01 ul li {
	margin-bottom: 1em;
}

#banner01 a {
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 1em;
	font-size: 22px;
	font-size: 2.2rem;
}

footer {
	padding: 0;
	background: #f2f8f9;
	background-size: auto 40px;
}

footer .inner {
	padding: 3em 10px;
	max-width: 1200px;
	margin: 0 auto;
}

footer p.address {
	margin: 2em 0;
	font-size: 1.1em;
}

footer ul.nav {
	margin: 2em 0;
}

footer ul.nav li {
	padding-left: 1.5em;
	position: relative;
	margin-bottom: 1.2em;
	line-height: 1;
}

footer ul.nav li::before {
    content: "";
    display: block;
    width: 0.8em;
    height: 2px;
    border-radius: 0.1em;
    background: #0362bb;
    position: absolute;
    left: 0;
    top: calc( 50% - 1px);
	transition: 0.5s;
}

footer ul.nav li:hover::before {
    left: 3px; 
}

footer ul.nav li a {
	text-decoration: none;
	color: #444;
}

footer ul.nav li a:hover {
	color: #0362bb;
}

footer .clinic_info {
	margin-bottom: 2em;
}

footer .clinic_info table {
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.5;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	background: #fff;
	padding: 0.3em 0.5em;
	font-size: 15px;
	font-size: 1.5rem;
	width: 100%;
	margin-bottom: 0.5em;
}

footer .clinic_info table th,
footer .clinic_info table td {
	padding: 0.3em;
}

footer .clinic_info table tbody td {
	color: #0362bb;
	font-size: 0.8em;
}

footer table tbody tr {
	border-top: 1px solid #ccc;
}

footer .access .gmap{
	position: relative;
	padding: 0 0 56.25%;
	height: 0;
	overflow: hidden;
}

footer .access .gmap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

footer .copy {
	text-align: center;
	padding: 1em;
	font-size: 0.9em;
	background: #0362bb;
	color: #fff;
	height: 40px;
	line-height: 40px;
}

.page_top {
	display:none;
	position: fixed;
	width:100%;
	height:0;
}

.page_top a {
	position: fixed;
	bottom: 120px;
	left: auto;
	padding: 6em 0 0;
	right: 3%;
	margin-left:100%;
	z-index: 2000;
	writing-mode: vertical-rl;
	text-decoration: none;
	color: #0362bb;
	display: inline-block;
	font-size: 0.9em;
	font-family: "Spectral", serif;
	font-weight: 600;
	text-shadow:1px 1px 2px rgba(255,255,255,0.7),-1px 1px 2px rgba(255,255,255,0.7),1px -1px 2px rgba(255,255,255,0.7),-1px -1px 2px rgba(255,255,255,0.7);
}

.page_top a::after {
	content: "";
	position: absolute;
	display: block;
	width: 2px;
	height: 5em;
	top: 0;
	left: 45%;
	background: #427793;
	animation: pageTop-bar 2s cubic-bezier(.76,0,.24,1) infinite;
}

@keyframes pageTop-bar {
 0% {
  transform-origin:bottom;
  transform:scaleY(0)
 }
 50% {
  transform-origin:bottom;
  transform:scaleY(1)
 }
 51% {
  transform-origin:top;
  transform:scaleY(1)
 }
 to {
  transform-origin:top;
  transform:scaleY(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;
	}
}
	
@media only screen and (min-width: 800px) {

	header .head_inner {
		padding: 12px 3%;
		margin: 0 auto;
		transition: .3s;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	header .head_inner.is-animation {
		padding: 6px 3% 3px;
	}
	
	header h1 {
		padding: 0;
		position: relative;
		z-index: 100000;
	}
	
	header h1 img {
		transition:all 0.3s;
	}

	header .is-animation h1 img {
		transform: scale(0.8,0.8);
	}

	header .nav_tel {
		display: flex;
		justify-content: right;
	}

	header p.tel {
		position: relative;
		top:   auto;
		right: auto;
		width: auto;
		font-size: 22px;
		font-size: 2.2rem;
		line-height: 24px;
		padding-top: 0.3em;
		padding-left: 1.5em;
	}
	
	header p.tel a {
		color: #0362bb;
	}
	
	header p.tel span.num {
		display: inline-block;
		padding-left: 0.3em;
	}

	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;
		gap: 2em;
	}

	nav#g_nav ul.menu > li {
		position: relative;
	}

	nav#g_nav ul.menu > li::before {
		display: block;
		content: "";
		width: 100%;
		height: 2px;
		background: #0362bb;
		position: absolute;
		left: 0;
		bottom: 0;
		margin: auto;
		transform-origin: right top;
		transform: scale(0, 1);
		transition: transform .3s;
	}
	
	nav#g_nav ul.menu > li a {
		position: relative;
		float: none;
		display: block;
		border-top: none;
		background: none;
		color: #000;
		padding: 5px 0 0;
		text-shadow: 0 0 10px rgba(255,255,255,0.7);
		text-align: center;
		white-space: nowrap;
		font-size: 14px;
		font-size: 1.4rem;
	}
	
	nav#g_nav ul.menu > li:hover::before {
		transform-origin: left top;
		transform: scale(1, 1);
	}


	nav#g_nav ul.menu > li a:hover {
		color: #0362bb;
		background: none;
		text-shadow: none;
	}
	
	#mainImage .text_box .text_mov {
		font-size: 36px;
		font-size: 3.6rem;
	}

	#mainImage .top_img_scroll {
		right: auto;
		left: 750px;
	}

	.pagetitle {
		padding: 110px 0 40px;
	}

	.pagetitle p {
		font-size: 20px;
		font-size: 2.0rem;
	}

	.pagetitle p.en {
		font-size: 48px;
		font-size: 4.8rem;
	}
	
	h2.title01 {
		margin-bottom: 70px;
		font-size: 18px;
		font-size: 1.8rem;
	}

	.box {
		padding: 5%;
		box-shadow: 7px 7px rgba(0,0,0,0.1);
	}

	br.pc {
		display: inline;
	}

	ul.list01 li {
		font-size: 18px;
		font-size: 1.8rem;
	}

	#banner01 ul {
		display: flex;
		gap: 1em;
	}

	#banner01 ul li {
		flex-grow: 1;
	}

	.title02 {
		font-size: 30px;
		font-size: 3.0rem;
	}

	footer .inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	footer .inner .clinic_info {
		width: 35%;
	}

	footer .inner .access {
		width: 60%;
	}

}


@media only screen and (min-width: 1200px) {

	header h1 {
		width: 250px;
	}

	header p.tel {
		font-size: 30px;
		font-size: 3.0rem;
	}

	nav#g_nav ul.menu > li a {
		font-size: 16px;
		font-size: 1.6rem;
	}

	section {
		font-size: 16px;
		font-size: 1.6rem;
	}
	
}
