@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=Nanum+Myeongjo:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&family=Noto+Serif+JP:wght@200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');



/*初期設定
----------------------------------------------------*/
html {
	min-width: 320px;
	font-size: 62.5%;/*10px*/
}

body {
	padding: 0;
	min-width: 320px;
	line-height: 1.8;
	color: #222;
	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;
}

.pink {
	color: #ebaaa3;
}

.brown {
	color: #554837;
}

.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_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_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);
}

.pc {
	display: none;
}

/*layout
----------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;	
	width: 100%;
	z-index: 2;
}

header .head_inner.is-animation {
	backdrop-filter: blur(1.5625rem);
	background-color: color-mix(in srgb,#554837 30%,transparent);
}

header h1 {
	margin: 0;
	padding: 10px;
	width: 200px;
}

header p.tel {
	opacity: 0.9;
	position: fixed;
	top:   20px;
	right: 55px;
	z-index: 3;
	width: 40px;
	height: 40px;
	margin: 0;
	cursor: pointer;
}

#menu_btn {
	opacity: 0.9;
	position: fixed;
	top:   15px;
	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: #fff;
	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: #554837;
}

.menu__line--center.active {
	transform: scaleX(0);
	background: #554837;
}

.menu__line--bottom.active {
	bottom: 20px;
	transform: rotate(135deg);
	background: #554837;
}

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;
	backdrop-filter: blur(1.5625rem);
	background-color: color-mix(in srgb,#f7f5f5 85%,transparent);
	text-align: center;
}

nav#g_nav ul.menu > li a {
	display: block;
	padding: 15px 1em;
	border-top: 1px solid rgba(255,255,255,0.1);
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	color: #554837;
}

nav#g_nav ul.menu > li a .btn__text:nth-child(2) {
	display: none;
}

nav#g_nav ul.menu > li > a:hover {
	background: #fff;
}

nav#g_nav ul.menu > li a img {
	padding-right: 1em;
}

#mainImage {
	margin: 0;
	position: relative;
}

#mainImage ul {
	position: relative;
	z-index: 0;
}

#mainImage .bx-wrapper {
	border: none;
	box-shadow: none;
	margin-bottom: 0;
	width: 100%;
}

#mainImage ul#slider li {
	position: relative;
}

#mainImage ul#slider li::before {
	content: "";
	display: block;
	background: linear-gradient( rgba(100, 75, 29, 0.2));
	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: 100vh;
	object-fit: cover;
	object-position: 30% 50%;
}

#mainImage .table_cover {
	position: absolute;
	bottom: 18%;
	right: 5%;
	z-index: 1;
	border-radius: 10px;
    padding: 0 0.5em;
    margin-bottom: 1em;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	backdrop-filter: blur(1.5625rem);
	background-color: color-mix(in srgb,#fff 70%,transparent);
}

#mainImage .table_cover table {
	width: 100%;
	text-align: center;
}

#mainImage .table_cover table tbody tr {
    border-top: 1px solid rgba(158, 153, 147, 0.5);
}

#mainImage .table_cover table th,
#mainImage .table_cover table td {
    padding: 0.3em;
}

#mainImage .table_cover table th {
	color: #554837;
}

#mainImage .text_mov {
	position: absolute;
	top: calc(40% - 1lh);
	right: 5%;
	z-index: 1;
	color: #fff;
	letter-spacing: 0.1em;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 40px;
	font-size: 4.0rem;
}

#mainImage .text_en {
	position: absolute;
	bottom: -0.25em;
	left: 0;
	z-index: 1;
    background: linear-gradient( rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	letter-spacing: 0.1em;
	line-height: 1.2;
	font-family: "Nanum Myeongjo", serif;
	font-weight: 700;
	mix-blend-mode: overlay;
	font-size: 60px;
	font-size: 6.0rem;
	letter-spacing: 0;
	text-align: right;
	width: 100%;
}

#mainImage .text_en span {
	letter-spacing: -0.3em;
}

.pagetitle {
	background: url(/share/img/pagetitle_bg.jpg) 50% 50% no-repeat;
	padding: 90px 10% 30px;
	position: relative;
}

.pagetitle::before {
	content: "";
	display: block;
	background: linear-gradient( rgba(100, 75, 29, 0.7));
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	mix-blend-mode: luminosity;
}

.pagetitle .text {
	position: relative;
	z-index: 1;
}

.pagetitle p {
	margin: 0;
	line-height: 1.5;
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	text-align: center;
}

.pagetitle p.en {
	font-size: 46px;
	font-size: 4.6rem;
	font-family: "Nanum Myeongjo", serif;
	font-weight: 400;
	text-transform:capitalize;
	line-height: 1.2;
}

#wrapper {
	clear: both;
	padding: 0 10px;
	background: #fff;
}

section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

section.full {
	max-width: none;
	margin: 0 -10px;
	padding: 50px 0;
}

section.bg_gray {
	background: #f9f8f7;
}

section .inner {
	padding: 0 10px;
	max-width: 1400px;
	margin: 0 auto;
}

.section02 {
	margin: 0 0 30px;
}

h2.title01 {
	margin-bottom: 40px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	position: relative;
	line-height: 1.4;
	color: #554837;
	font-size: 16px;
	font-size: 1.6rem;
}

h2.title01 span.ja {
	display: inline-block;
	padding-left: 1.3em;
	position: relative;
}

h2.title01 span.ja::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 3px;
	background: linear-gradient(90deg, rgba(235, 170, 163, 1.0), rgba(235, 170, 163,0.3));
	position: absolute;
	left: 0;
	top: .5lh;
	translate: 0 -50%;
}

h2.title01 span.en {
	font-size: 0.6em;
	font-family: "Nanum Myeongjo", serif;
	font-weight: 400;
	font-size: 40px;
	font-size: 4.0rem;
}

.title02 {
	background: #EDE9E9;
	border-radius: 10px;
	padding: 0.4em 1em;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 18px;
	font-size: 1.8rem;
	margin: 3em 0 1.5em;
	color: #554837;
}

span.marker {
	background: linear-gradient(transparent 70%, rgba(0, 130, 196, 0.4) 70%);
}

dl.list01 > dt,
ul.list01 > li {
	padding-left: 1.3em;
	position: relative;
	margin-bottom: 0.5em;
}

dl.list01 > dt {
	font-weight: bold;
}

dl.list01 > dt::before,
ul.list01 > li::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: #ebaaa3;
	position: absolute;
	left: 0;
	top: .5lh;
	translate: 0 -50%;
}

dl.list02 > dt,
ul.list02 > li {
	padding-left: 1em;
	position: relative;
	margin-bottom: 0.2em;
}

dl.list02 > dt {
	font-weight: bold;
}

dl.list02 > dt::before,
ul.list02 > li::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #554837;
	position: absolute;
	left: 0;
	top: .5lh;
	translate: 0 -50%;
}

dl.list03 > dt {
    font-weight: bold;
    padding-left: 1.7em;
    position: relative;
    margin: 1.5em 0 0.5em;
}

dl.list03 > dt::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #ebaaa3;
    position: absolute;
    left: 0;
	top: calc(.5lh - 0.4em);
}

footer {
	padding: 2em 0 0;
	background: linear-gradient(#ECEAEA, #f9f8f7);
    border-top: 1px solid #DBD7D3;
}

footer .inner {
	padding: 0 10px 50px;
	max-width: 1400px;
	margin: 0 auto;
}

footer p.tel {
	font-size: 26px;
	font-size: 2.6rem;
	font-family:  "Nanum Myeongjo", serif;
	color: #554837;
	font-weight: 500;
	margin: 1.5em 0 0;
}

footer p.address {
	font-size: 1.1em;
	margin-bottom: 1.5em;
}

footer p.insta a {
	padding: 8px 15px;
	width: fit-content;
	border-radius: 10px;
	display: block;
	background: #fff;
	text-decoration: none;
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 35px;
	height: 35px;
	font-family:  "Nanum Myeongjo", serif;
	color: #554837;
	font-weight: 500;
	box-shadow: 0 1px 0.7px rgba(5,5,5,0.1);
	transition: 0.7s;
}

footer p.insta a:hover {
	box-shadow: none;
	background: #ece9e9;
}

footer p.insta a img {
	padding-right: 0.5em;
}

footer ul.nav {
	margin: 2em 0;
	font-size: 0.9em;
}

footer ul.nav li {
	padding-left: 1.2em;
	position: relative;
	margin: 0 1em 1.2em 0;
	line-height: 1;
	font-size: 1.1em;
	display: inline-block;
}

footer ul.nav li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
	border-top: 2px solid #ebaaa3;
	border-left: 2px solid #ebaaa3;
    position: absolute;
    left: 0;
	top: .5lh;
	translate: 0 -50%;;
	transition: 0.5s;
	transform: rotate(135deg);
}

footer ul.nav li:hover::before {
    left: 3px; 
}

footer ul.nav li a {
	text-decoration: none;
	color: #554837;
}

footer ul.nav li a:hover {
	color: #ebaaa3;
}

footer .clinic_info h3 {
	margin: 0 0 0.3em;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 1.2em;
    padding-left: 1.5em;
    position: relative;
    line-height: 1;
}

footer .clinic_info h3::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #2d9629;
    position: absolute;
    left: 0;
    top: calc( 50% - 0.5em);
}

footer .clinic_info .gmap {
	position: relative;
	padding: 0 0 55%;
	height: 0;
	overflow: hidden;
	width: 100%;
	border-radius: 10px;
}

footer .clinic_info .gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

footer .copy {
	text-align: center;
	margin-top: 2em;
	padding: 0 1em;
	font-size: 0.9em;
	background: #ece9e9;
	color: #554837;
	height: 40px;
	line-height: 40px;
}



/*media Queries
----------------------------------------------------*/
@media only screen and (min-width: 800px) {

	.sp {
		display: none;
	}

	.pc {
		display: inline-block;
	}

	#wrapper {
		padding: 0 20px;
	}
	
	section {
		margin: 0 auto;
		padding: 5% 20px;
	}

	section.full {
		margin: 0 -20px;
		padding: 5% 0;
	}
	
	section .inner {
		padding: 0 20px;
	}

	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 {
		width: auto;
		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 p.tel,
	nav#g_nav {
		position:relative;
		top: auto;
		left: auto;
		width: auto;
	}

	header p.tel {
		text-align: right;
		top: 0;
		right: 0;
		line-height: 1;
		font-family: "Nanum Myeongjo", serif;
	}

	header p.tel a {
		color: #fff;
		font-size: 30px;
		font-size: 3.0rem;
	}
		
	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;
		backdrop-filter: none;
		background-color: none;
	}
	
	nav#g_nav ul.menu > li a {
		position: relative;
		float: none;
		display: block;
		border-top: none;
		background: none;
		padding: 0;
		text-align: center;
		white-space: nowrap;
		color: #fff;
	}

	nav#g_nav ul.menu > li a::after {
		background: #ebaaa3;
		content: '';
		width: 100%;
		height: 3px;
		border-radius: 2px;
		position: absolute;
		left: 0;
		bottom: -4px;
		transform-origin: right top;
		transform: scale(0, 1);
		transition: transform .5s;
	}

	nav#g_nav ul.menu > li a:hover {
		background: none;
	}

	nav#g_nav ul.menu > li a:hover::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
	
	#mainImage .table_cover table th,
	#mainImage .table_cover table td {
		padding: 0.5em 0.7em;
		font-size: 120%;
	}

	#mainImage .text_mov {
		font-size: 50px;
		font-size: 5.0rem;
	}

	#mainImage .text_en {
		font-size: 80px;
		font-size: 8.0rem;
	}

	.pagetitle {
		padding-top: 135px;
	}

	.pagetitle p {
		font-size: 16px;
		font-size: 1.6rem;
	}

	.pagetitle p.en {
		font-size: 70px;
		font-size: 7.0rem;
	}
		
	h2.title01 {
		margin-bottom: 70px;
		font-size: 20px;
		font-size: 2.0rem;
	}

	h2.title01 span.en {
		font-size: 70px;
		font-size: 7.0rem;
	}

	.title02 {
		font-size: 28px;
		font-size: 2.8rem;
	}

	.box_round {
		padding: 5%;
		border-radius: 2em;	
	}

	br.pc {
		display: inline;
	}

	footer .inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	footer .inner .logo_nav {
		width: 35%;
	}

	footer .inner .clinic_info {
		width: 60%;
	}

	footer .inner .clinic_info {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 60%;
	}
}

@media only screen and (min-width: 1100px) {
	.tel_nav {
		display: flex;
		flex-direction: row-reverse;
		gap: 3em;
	}

	#mainImage .text_mov {
		font-size: 64px;
		font-size: 6.4rem;
	}

	#mainImage .text_en {
		font-size: 120px;
		font-size: 12.0rem;
	}

	section {
		font-size: 16px;
		font-size: 1.6rem;
	}
}

@media only screen and (min-width: 1400px) {
	#mainImage .text_en {
		font-size: 150px;
		font-size: 15.0rem;
	}
}	
