@charset "UTF-8";
/*==================
共通部分の設定
====================*/
html {
	font-size: 62.5%;
	box-sizing: border-box;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}
body{
	font-size: 16px;
}
.wrap {
	overflow: hidden;
}
/*SPサイズ*/
@media (max-width: 599px){
	.sp_none{
		display: none;
	}
}
/*tbサイズ*/
@media (min-width: 600px) {
	.tb_none{
		display: none;
	}
}
/*PCサイズ*/
@media (min-width: 1025px) {
	.inner_pc01{
		max-width: 1470px;
		margin: 0 auto;
	}
	a[href^="tel:"] {
	pointer-events: none;
	}
}
body{
	font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	color: #604c3f;
	box-sizing: border-box;
	-webkit-font-smoothing:antialiased;/*文字のアンチエイリアス設定*/
	-moz-osx-font-smoothing:grayscale;
	font-feature-settings: "palt";/*文字詰*/
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a{
	color: #604c3f;
	text-decoration: none;
}
@media(hover: hover) {/*ホバーを使う端末のみ*/
	a:hover{
		opacity: 0.8;
		transition: .4s;
	}
}
ul{
	list-style: none;
}
.flex_a{
	display: flex;
	height: auto;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.flex_b{
	display: flex;
	height: auto;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
h2{
	font-size: 2.3rem;
	line-height: 1.8;
	padding-bottom: 6rem;
	text-align: center;
}
h3{
	font-size: 2rem;
	line-height: 1.8;
	text-align: center;
}
p{
	letter-spacing: 0.02em;
	line-height: 2;
}
.sub_ttl01{
	text-align: center;
	font-size: 1.7rem;
	padding-bottom: .5rem;
}
@media (min-width: 600px) {
	h2{
		font-size: 3.5rem;
		padding-bottom: 8rem;
	}
	h3{
		font-size: 2.5rem;
	}
	.sub_ttl01{
		font-size: 2rem;
	}
	.flex_b_pc{
		display: flex;
		height: auto;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
}
/*-----------------
カラー
/*-----------------*/
.color01{
	color: #fff;
	fill: #fff;
}
.color02{
	color: #c79c82;
}
.color03{
	color: #f49000;
}
.color04{
	color: #d1d100;
}
.color05{
	color: #f9f5f2;
}
.color06{
	color: #0088ed;
}
.bg_color01{
	background-color: #fff;
}
.bg_color02{
	background-color: #c79c82;
}
.bg_color03{
	background-color: #f49000;
}
.bg_color04{
	background-color: #66b8f4;
}
.bg_color05{
	background-color: #f9f5f2;
}
.bg_color06{
	background-color: #0088ed;
}
.bg_color07{
	background-color: #d8df21;
}
.staff .sub_ttl01:before, .staff .sub_ttl01:after{
	background-color: #c79c82;/*bg_color02と同じ*/
}
nav.nav_menu ul li a:before{
	background-color: #c79c82;/*bg_color02と同じ*/
}
.Toggle span, 
.Toggle.active span:nth-child(1), 
.Toggle.active span:nth-child(2), 
.Toggle.active span:nth-child(3) {
	border-bottom: solid 2px #c79c82;/*bg_color02と同じ*/
}
.menu01 a::after {
	background: #c79c82;/*bg_color02と同じ*/
}
/*==================
header sp
====================*/
header{
	font-weight: bold;
}
header .logo{
	width: 210px;
	height: auto;
	margin: 0.7rem 1rem;
}
.reserve_btn{
	position: relative;
}
.reserve_btn svg{
	width: 25px;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.contact_btn{
	position: relative
}
.contact_btn svg{
	width: 28px;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
/*ホバー*/
.menu01 a {
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.menu01 a::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
@media(hover: hover) {/*ホバーを使う端末のみ*/
.menu01 a:hover::after {
		transform-origin: left top;
		bottom: -10px;
		transform: scale(1, 1);
	}
}
.insta_text01{
	color: #c62049;
}
nav .hm_menu ul li .insta_text01 img{
	width: 18px;
	position: inherit;
}



@media (max-width: 1024px) {
	header{
		position: fixed;
		background: #fff;
		z-index: 10;
		top: 0;
		width: 100%;
		height: 65px;
		box-shadow: 0 0 4px rgba(90,163,209,0.2);
	}
	header .logo {
		width: 230px;
		margin: 1.3rem 1rem 
	}
/*ナビのスタイル*/
	nav.nav_menu{
		position: fixed;
		z-index: 12;
		top: 65px;
		left: 0;
		background: #fff;
		text-align: center;
		width: 100%;
		height: 100%;
		display: none;
	}
	nav.nav_menu .hm_menu{
		width: 100%;
		height: 100%;
		padding: 0;
		position: relative;
		top: 65px;
		left: 0;
		right: 0;
		margin: auto;
		display: block;
	}
	nav.nav_menu ul li{
		font-size: 18px;
		width: 220px;
		padding-bottom: 0;
		margin: 0 auto;
	}
	nav.nav_menu ul li:last-child{
		padding-bottom: 0;
	}
	nav.nav_menu ul li a{
		display: block;
		letter-spacing: 2px;
		padding: 20px 0 15px;
		text-align: left;
	}
	nav.nav_menu ul li a:before{
		display: inline-block;
		content: "";
		margin-top: 1px;
		margin-right: 15px;
		width: 12px;
		height: 12px;
		vertical-align: top;
		border-radius: 5px;
	}
	nav .hm_menu ul li img{
		position: absolute;
		bottom: 14.5rem;
		right: 1.5rem;
	}
	/*お問い合わせボタン*/
	nav.nav_menu ul li.flex_a{
		display: block;
		width: 250px;
	}
	nav.nav_menu ul li.flex_a a:before{
		content: none;
	}
	.contact_btn svg, .reserve_btn svg {
		left: 2.5rem;
		right: auto;
	}
	nav.nav_menu ul li a.contact_btn,
	nav.nav_menu ul li a.reserve_btn{
		display: block;
		text-align: center;
		height: 60px;
		border-radius: 30px;
		margin: 2rem auto 0;
		position: relative;
	}
	/*ハンバーガーボタンのスタイル*/
	.Toggle {
		position: fixed;
		right:0;
		top: 0;
		width: 65px;
		height: 65px;
		cursor: pointer;
		z-index: 13;
		display: block;
		background: #fff;
	}
	.Toggle span {
		display: block;
		position: absolute;
		width: 35px;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		left: 16px;
	}
	.Toggle span:nth-child(1) {
		top: 19px;
	}
	.Toggle span:nth-child(2) {
		top: 30px;
	}
	.Toggle span:nth-child(3) {
		top: 41px;
	}
	.Toggle.active span:nth-child(1) {
		top: 30px;
		left: 15px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
		}
	.Toggle.active span:nth-child(2),
	.Toggle.active span:nth-child(3) {
		top: 30px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.hmfixed {
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: -1;
	}
}
/*==================
header pc
====================*/
@media (min-width: 1025px) {
	.Toggle{
		display: none;
	}
	header .logo{
		margin: 0 .5rem 0 1rem;
		width: 275px;
	}
	header{
		display: flex;
		justify-content:space-between;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
		height: 110px;
		position: fixed;
		z-index: 10;
		background: #fff;
		box-shadow: 0 0 4px rgba(90,163,209,0.2);
	}
	nav.nav_menu ul{
		min-width: 814px;
		display:flex;
		align-items: center;
		width: 100%;
		height: 100%;
		justify-content: space-between;
		font-size: 1.8rem;
	}
	.header_btn a{
		width: 110px;
		height: 110px;
		text-align: center;
		display: block;
		padding: 2.5rem 0 0;
	}
	.reserve_btn svg{
		top: 60%;
		bottom: auto;
	}
	.contact_btn svg{
		top: 60%;
		bottom: auto;
	}
	.nav_menu{
		display: block!important;/*PCの時ヘッダーが消えないように*/
	}
}
@media screen and (min-width: 1025px) and (max-width: 1110px) {
	nav.nav_menu ul {
		min-width: 760px;
	}
	header .logo{
		width: 240px;
		margin: 0 .5rem 0 1rem;
	}
}


/*==================
footer sp
====================*/
footer{
	text-align: center;
	position: relative;
	z-index: 0;
	padding: 10rem 0;
}
footer p{
	line-height: 2.2;
}
footer .bg_text01{
	position: absolute;
	top: 6rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}
.footer_logo{
	width: 310px;
	margin: 0 auto 3rem;
}
footer .flex_a{
	line-height: 2.2;
}
.copyright{
	color: #e3cdc0;
	font-size: 1.2rem;
}
footer .flex_a{
	display: block;
	margin: 0 auto;
}

.nearest_station{
	padding: 4rem 0;
}
footer .insta_btn01{
	display: block;
	width: 40px;
	height: 40px;
	margin: 1rem auto 3.5rem;
}
/*==================
footer pc
====================*/
@media (min-width: 1025px) {
	footer .flex_a{
		margin: 0 auto;
		display: flex;
		justify-content: center;
	/*	display: inline-flex;*/
	}
	footer .flex_a a{
		padding-right: 1.5rem;
	}
}


/*==================
広告バナー sp
====================*/
.bnr_area01{
	background: #333333;
	padding: 3.5rem 1.5rem 9.5rem;
}
.bnr_area01 img{
	display: block;
	margin: 0 auto;
}
/*
.bnr_area01 img.tb_none{
	display: block;
	margin: 0 auto;
}
.bnr_area01 img.sp_none{
	display: none;
}
*/
/*==================
広告バナー pc
====================*/
@media (min-width: 600px) {
	.bnr_area01{
		padding: 3.5rem 1.5rem;
	}
	/*
	.bnr_area01 img.sp_none{
		display: block;
		margin: 0 auto;
	}
	.bnr_area01 img.tb_none{
		display: none;
	}
*/
}


/*==================
追従ボタン sp
====================*/
.following_btn01{
	position: fixed;
	z-index: 9;
	left: 0;
	bottom: 0;
	width: 50%;
	height: 60px;
}
.following_btn02{
	right: 0;
	left: auto;
}
.following_btn01 a{
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	font-weight: bold;
	text-align: center;
	line-height: 3.8;
	border: solid 1px #fff;
	padding-left: 2rem;
}
.following_btn01 svg{
	width: 25px;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 3rem;
	margin: auto;
}
@media (max-width: 599px) {
	.following_sp_none{
		display: none;
	}
}
/*==================
追従ボタン pc
====================*/
@media (min-width: 600px) {
	.following_btn01{
		right: 0;
		top: 0;
		left: auto;
		margin: auto;
		width: 90px;
		height: 310px;
	}
	.following_btn01 a{
		width: 90px;
		height: 310px;
		-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		line-height: 5;
		border-radius: 10px 0 0 10px;
		padding: 3rem 0 0 0;
	}
	.following_btn01 svg{
		top: 3rem;
		bottom: auto;
		left: 0;
		right: 0;
		margin: auto;
	}
	.following_tb_none{
		display: none;
	}
}


/*==================
 Google Map sp
====================*/
/* Google Mapを囲う要素 */
.map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 50%; /* 比率を2:1に固定 */
}

/* Google Mapのiframe */
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*==================
 Google Map pc
====================*/
@media (min-width: 600px) {
	.map {
		padding-top: 25%; /* 比率を4:1に固定 */
	}
}


/* ==================================
  animation
================================== */
/*アニメーション*/
.fade_right01{
	opacity: 0;
	transform: translateX(64px);
	transition : all 1s;
}
.fade_right01.active{
	opacity: 1;
	transform: translateX(0);
}
.fade_left01{
	opacity: 0;
	transform: translateX(-64px);
	transition : all 1s;
}
.fade_left01.active{
	opacity: 1;
	transform: translateX(0);
}
.fade_bottom01{
	opacity: 0;
	transform: translateY(64px);
	transition : all 1s;
}
.fade_bottom02{
	opacity: 0;
	transform: translateY(64px);
	transition : all 1.5s;
}
.fade_bottom03{
	opacity: 0;
	transform: translateY(64px);
	transition : all 2s;
}
.fade_bottom04{
	opacity: 0;
	transform: translateY(64px);
	transition : all 2s;
}
.fade_bottom05{
	opacity: 0;
	transform: translateY(64px);
	transition : all 2.5s;
}
.fade_bottom01.active,
.fade_bottom02.active,
.fade_bottom03.active,
.fade_bottom04.active,
.fade_bottom05.active{
	opacity: 1;
	transform: translateY(0);
}
.zoomin.active {
	animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.fade--item {
	opacity: 0;
	transform: translate(0,-5rem) scale(0);
	transition : all 1s;
}

.fade--item.active {
	transform: translate(0,0) scale(1);
	opacity: 1;
}


/*==================
下層ページ sp
====================*/
/*メインビジュアル画像の場合
.sub_mv01{
	background-image: url("../images/common/mv_common01.png");
	background-size: cover;
	background-repeat:no-repeat;
	margin-top: 6.5rem;
	padding-top: 48%;
	position: relative;
}
*/
.ttl_block01{
	height: 110px;
	margin-top: 65px;
	text-align: center;
}
.ttl_block01 h1{
	font-size: 1.8rem;
	line-height: 6;
}
/*
.sub_mv01 h1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: center;
}
*/
.sub_page h2.ttl_top01{
	margin: 3rem 0 0;
	font-size: 2.2rem;
	position: relative;
	text-align: left;
	padding: 2.8rem 0 3.5rem;
}
.sub_page h2.ttl_top01::before {
	content: "";
	display: block;
	width: 120px;
	height: 3px;
	position: absolute;
	top: 0;
	left: 0;
}
.bg_sub_area01 {
	opacity: 0.1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.sub_unit01{
	padding: 6rem 1.5rem 6rem;
}

@media (max-width: 599px) {
	.sub_bg01{
		background-color: #fff;
	}
}
/*==================
下層ページ pc
====================*/
@media (min-width: 600px) {
/*メインビジュアル画像の場合
	.sub_mv01{
		background-image: url("../images/common/mv_common01_pc.png");
		background-size: cover;
		background-repeat:no-repeat;
		margin-top: 11rem;
		height: 180px;
		padding: 0;
		background-position: top center;
	}
	@media screen and (-webkit-min-device-pixel-ratio:2),
	(min-resolution: 2dppx){
		.sub_mv01{
			background-image: url("../images/common/mv_common01_pc@2x.png");
		}
	}
*/
	.sub_page h2.ttl_top01{
		margin: 6.5rem 0 0;
		font-size: 2.8rem;
		padding: 3.2rem 0;
	}
	.sub_bg01{
		padding: 5.5rem 1.5rem 10rem;
		position: relative;
	}
	.sub_content{
		max-width: 980px;
		background: #fff;
		border-radius: 10px;
		padding: 3.2rem 4rem;
		margin: 0 auto 0;
	}
	.sub_inner01{
		max-width: 720px;
		margin: 0 auto;
	}
	.sub_unit01{
		padding: 0 0 9rem;
	}
}
/*メインビジュアル画像の場合
@media (max-width: 1024px) {
	.sub_mv01{
			margin-top: 6.5rem;
	}
}
*/
@media (min-width: 1025px) {
	.ttl_block01{
		margin-top: 110px;
	}
}
/*404*/
.error_text01 a{
	border-bottom: solid 1px;
	color: #fd5460;
}


/*==================
reCAPTCHAマーク 非表示
====================*/
.grecaptcha-badge {
	visibility: hidden;
}
.reCAPTCHA_text{
	font-size: 12px;
	padding-top: 3rem;
	line-height: 1.5;
}
.reCAPTCHA_text a{
	text-decoration: underline;
}


/*==================
pdf_area SP
====================*/
.pdf_area{
	background: #666666;
	padding: 4rem 1.5rem 2rem;
}
.pdf_area a{
	color: #fff;
	display: inline-block;
	font-size: 1.4rem;
	text-decoration: underline;
	margin-bottom: 2rem;
}
/*
.pdf_area li{
	display: inline-block;
}
*/
/*==================
pdf_area PC
====================*/
@media (min-width: 600px) {
.pdf_area ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1470px;
	margin: 0 auto;
}
.pdf_area a{
	margin: 0 1.2rem 2rem;
}
}


