@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=Shippori+Mincho&family=Spectral:wght@200;300;400;500;600;700;800&display=swap');



/*初期設定
----------------------------------------------------*/
html {
	min-width: 320px;
	font-size: 62.5%;/*10px*/
}

body {
	padding: 0;
	min-width: 320px;
	line-height: 1.8;
	color: #77726C;
	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: #77726C;
	text-decoration: none;
}

a:hover {
	transition: 0.5s;
}

a.click_img img {
	box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}

a.click_img:hover img {
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	box-shadow: none;
	transition: 0.5s;
	transform: translate(-3px, -3px);
}

.orange {
	color: rgba(241, 96, 33, 1.0);
}

.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;
}

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;
}

header a.telhref {
	position: absolute;
	display: block;
	top: 25px;
	right: 70px;
}

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: #77726C;
	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: #77726C;
}

.menu__line--center.active {
	transform: scaleX(0);
	background: #77726C;
}

.menu__line--bottom.active {
	bottom: 20px;
	transform: rotate(135deg);
	background: #77726C;
}

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(255,255,255,0.1);
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
	text-align: center;
}

nav#g_nav ul.menu > li a .btn__text:nth-child(2) {
	display: none;
}

nav#g_nav ul.menu > li > a:hover {
	background: #eee;
}

#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: 2em;
	overflow: hidden;
}

#mainImage ul#slider li {
	position: relative;
}

#mainImage ul#slider li::before {
	content: "";
	display: block;
	background: linear-gradient( rgba(100, 75, 29, 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: 20%;
	left: 0;
	width: 100%;
	z-index: 1;
	text-align: center;
	color: #fff;
	line-height: 1.5;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-size: 40px;
}

#mainImage .hours_table {
	position: absolute;
	top: 60%;
	right: 0;
	z-index: 1;
	text-align: center;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
	background: rgba(255,255,255,0.9);
	border-radius: 15px;
	color: #77726C;
	padding: 0.5em 2em 1em 1em;
	box-sizing: border-box;
}

#mainImage .hours_table table th,
#mainImage .hours_table table td {
    padding: 0.5em;
    border-bottom: 1px solid rgba(180, 167, 152, 0.5);
}

#mainImage .hours_table table tbody td {
	color: rgba(241, 96, 33, 0.8);
}

#mainImage a.appo {
	position: absolute;
	bottom: 3%;
	left: 7%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	text-align: center;
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-size: 20px;
	font-size: 2.0rem;
	background: rgba(241, 96, 33, 0.9);
	border-radius: 50%;
	box-shadow: 0 5px 3px rgba(0,0,0,0.2);
}

#mainImage a.appo:hover {
	box-shadow: none;
	transition: 0.5s;
	transform: translate(0, -5px);
	background: rgb(240, 148, 11);
}

#mainImage a.appo img {
	width: 40px;
}

#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: "Zen Maru Gothic", serif;
}


/* 丸の描写 */
#mainImage .top_img_scroll:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	left: -4px;
	/*丸の形状*/
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(241, 96, 33, 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;
}

section.bg_gray {
	background: #f3f1ee;
}

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;
}

.title01 span.en {
	font-size: 0.6em;
	color: #B4A798;;
}

.title02 {
	margin: 0 auto 0.5em;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-size: 22px;
	font-size: 2.2rem;
	position: relative;
	color: #77726C;
    text-align: center;
	padding: 0 80px;
	width: fit-content;
	
}

.title02:before, .title02:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 65px;
  height: 2px;
  background-color: rgba(180, 167, 152, 0.7);
}

.title02:before {
  left:0;
}

.title02:after {
  right: 0;
}

.title03 {
	font-family: "Zen Maru Gothic", serif;
	font-size: 17px;
	font-size: 1.7rem;
	margin: 0 0 1em;
	font-weight: 400;
}

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: 15px;
}

.box_round {
	padding: 1.5em;
	border-radius: 15px;
	margin-bottom: 5%;
}

.box_gray {
	background: #f3f1ee;
}

.box_white {
	background: #fff;
}

.box_bo_green {
	border: 2px solid rgba(154, 209, 2, 0.3);
}

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(241, 96, 33, 0.8);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	top: calc(.5lh - 4px);
	left: 0;
}

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 {
	background: #f9f8f7;
	background-size: cover;
	position: relative;
	color: #57524D;
}

footer .inner {
	padding: 2em 1em;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

footer p.tel {
	margin: 1em 0 0.5em;
	font-size: 30px;
	font-size: 3.0rem;
	font-family: "Zen Maru Gothic", serif;
}

footer p.address {
	font-size: 1.2em;
}

footer .gmap {
	position: relative;
	padding: 0 0 80%;
	height: 0;
	overflow: hidden;
	border-radius: 15px;
}

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: #77726c;
	padding: 2em 1em 1em;
}

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: 0 1em;
	background: #57524d;
	color: #fff;
	height: 40px;
	line-height: 40px;
	position: relative;
	z-index: 2;
}


/*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 .head_inner {
		width: 94%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	header h1 {
		max-width: 24%;
		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;
	}

	header a.telhref img {
		height: 22px;
		vertical-align: middle; 
	}

	header a.telhref span.num {
		display: inline-block;
		font-family: "Zen Maru Gothic", serif;
		padding-left: 0.1em;
	}

	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-shadow: 0 0 10px rgba(255,255,255,0.7);
		text-align: center;
		white-space: nowrap;
		height: 40px;
		line-height: 40px;
	}

	nav#g_nav ul.menu > li a::after {
		position: absolute;
		bottom: 0;
		left: calc( 50% - 15px);
		width: 30px;
		height: 0;
		content: "";
		display: block;
		border-top: 0 solid transparent;
		transition: all .3s ease-in-out;
		transition-property: height,border-color,border-top-width;
		border-radius: 3px;
	}

	nav#g_nav ul.menu > li a:hover::after {
		height: 0;
		border-color: rgba(241, 96, 33, 1.0);
		border-top-width: 4px;
	}
	
	nav#g_nav ul.menu > li a:hover {
		background: none;
		text-shadow: none;
	}
	
	#mainImage .bx-wrapper {
		width: 96%;
	}

	#mainImage .text_box {
		font-size: 50px;
		font-size: 5.0rem;
	}

	#mainImage .hours_table {
		font-size: 1.3em;
		border-radius: 15px;
		padding: 0.5em 3em 1em 1.5em;
	}

	#mainImage .hours_table table th,
	#mainImage .hours_table table td {
		padding: 0.7em;
	}

	#mainImage a.appo {
		left: 5%;
		bottom: 6%;
		width: 190px;
		height: 190px;
		font-size: 30px;
		font-size: 3.0rem;
	}

	#mainImage a.appo img {
		width: 60px;
	}

	.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: 20px;
		font-size: 2.0rem;
	}

	p.catch01 {
		font-size: 30px;
		font-size: 3.0rem;
	}

	.box_round {
		padding: 3%;
	}

	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;
	}
}


@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%;
	}
	
}
