@charset "utf-8";

/* reset.css */
* {
    box-sizing: border-box;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, 
p, a, img, dl, dt, dd, ol, ul, li, label, table, 
tbody, tr, th, td{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 14px;
	vertical-align: baseline;
	box-sizing: border-box;
	line-height: 0;
}

h1, h2, h3, h4, h5, h6, p, a, span, dt, dd, li, label, th, td{
	line-height: 1.6;
}

body {
	width: 100%;
	color:#3e3a39;
	font-family: 'Noto Sans JP', sans-serif;
}
 
ol, ul {
	list-style: none;
	font-size: 0;
}

figure {
    font-size: 0;
	margin: 0;
}

table, td, th {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	outline: none;
	text-decoration: none;
	display:inline-block;
	color:#3e3a39;
}

a:hover {
	text-decoration: none;
	opacity: .7;
}

.cf {
	overflow: hidden;
	zoom:1;
}

img {
	width: auto;
	max-width: 100%;
}

img.auto {
	width:auto;
}

.flexBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flexBox.justCenter {
	justify-content: center;
}

.flexBox.itemCenter {
	align-items: center;
}

.center {
	text-align: center;
}

.center img {
	margin-left: auto;
	margin-right: auto;
}

.right {
	text-align: right;
}

.textSmall {
	font-size: 90%;
}

.textBold {
	font-weight: bold;
}

.textBig {
	font-size: 110%;
}

.bgColor01 {
	background: #566a77;
}

.bgColor02 {
	background: #2b3233;
}

.bgColor03 {
	background: #b3ab8c;
}

.bgColor04 {
	background: #2b3233;
}

.bgColor05 {
	background: #eeedec;
}

.bgWhite {
	background: #fff;
}

.textColor {
	color: #93875b;
}

.textColor01 {
	color: #93875b;
}

.textColor02 {
	color: #8c3a4c;
}

.noLink a {
    filter: opacity(0.5);
    pointer-events: none;
    cursor: inherit;
}

/*-----フォント----*/

.notoSans {
	font-family: 'Noto Sans JP', sans-serif;
}

.shingo {
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
}

.yumin {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

.abel {
	font-family: 'Abel', sans-serif;
}

.roboto {
	font-family: "Roboto Condensed",'Helvetica',sans-serif;
}



/*-----ヘッダー----*/

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px 0 0;
	background: #fff;
	height: 100px;
	box-shadow: 0 2px 10px 5px #8d8d8d;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.header h1 {
    line-height: 1;
}

.logoBg {
    background: #eeedec;
    padding: 13px 75px;
    height: 100px;
    box-sizing: border-box;
}

.logo {
	width: 220px;
	background: #fff;
	box-shadow: 0 0 5px 5px #d9d9d9;
}

.logo a {
	padding: 6px 55px;
}

.logo img {
	width: 100%;
}

.rightNav {
	align-items: center;
	margin-right: 20px;
}

.rightNav .textBtn {
	text-align: center;
	margin: 0 10px;
}

.rightNav .textBtn span.en {
    font-size: 24px;
    font-weight: 900;
	display: block;
	color: #000;
	margin-bottom: 3px;
	line-height: 1;
}

.rightNav .textBtn span.jp {
    font-size: 10px;
	display: block;
	color: #595757;
	line-height: 1;
}

.rightNav .textBtn:first-child a {
	border-right: 1px solid #595757;
	padding-right: 20px;
}

.reserveBtn {
    margin: 0 10px 0 20px;
}

.reserveBtn a,.requestBtn a {
	background: #566a77;
	padding: 10px 55px ;
	border-radius: 50px;
	display: inline-block;
	overflow: hidden;
}

.reserveBtn a span,.requestBtn a span {
	letter-spacing: 2px;
	margin-right: -2px;
	color:#fff;
	font-size: 16px;
	text-shadow: 0 0 5px #000;
	display:block;
}

.requestBtn {
	margin: 0 30px 0 0;
}

.requestBtn a {
	background: #2b3233;
}



/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
	height: 85px;
	width: 60px;
	position: relative;
	z-index: 100;/* 重なり順を一番上にする */
	cursor: pointer;
	display: block;
	text-align: center;
}

.drawer_open span {
  width: 70px;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span:before, .drawer_open span:after {
    content: '';
    display: block;
    height: 5px;
    width: 60px;
    background: #595757;
    transition: 0.5s;
    position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  top: 40px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 20px;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  transform: rotate(45deg);
	top: 26px;
}

#drawer_input:checked ~ .drawer_open span::after {
  transform: rotate(-45deg);
	top: 26px;
}

.drawer_open p.abel {
    font-size: 18px;
    letter-spacing: 7px;
    font-weight: 900;
    position: absolute;
    bottom: 0;
}

  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 100px;
  left: -100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #eeedec;
  transition: .5s;
}


.nav_list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
	margin: 80px auto 0;
	width: 50%;
	position: relative;
}

.nav_list:before {
    content: "";
    position: absolute;
    background: url(../-image/common/soken_text.svg) no-repeat 0 0;
    background-size: 420px;
    bottom: -300px;
    left: -35%;
    width: 420px;
    height: 120px;
}

.nav_list li {
    width: 48%;
    text-align: center;
    border-bottom: 1px solid #d3d3d3;
    margin: 0 1%;
}

.nav_list li a {
    padding:18px 0;
	font-size: 20px;
	color: #3e3a39;
	position: relative;
	width: 100%;
	display: block;
}

.nav_list li a:after {
    font-family: 'Material Symbols Outlined';
    content: "\e5cc";
    font-weight: 300;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.nav_list li a .en {
	font-size: 10px;
	display: block;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}


/*-----フッター----*/

.btnList ul {
	justify-content: center;
	max-width: 940px;
	margin: 0 auto 100px;
}

.btnList ul li {
	width: 46%;
	margin: 0 2%;
}

.btnList ul li a {
	color:#fff;
	padding: 6px 16px;
	position: relative;
	text-align: center;
	display: block;
	border-radius: 50px;
}

.btnList ul li a span {
	display: block;
	font-size: 24px;
	letter-spacing: 3px;
}

.btnList ul li a span.textSmall {
	border-bottom: 1px solid #fff;
	font-size: 12px;
	padding: 0 30px 4px;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 1px;
}

.btnList ul li a.bgColor01:before,.btnList ul li a.bgColor02:before {
	content:"";
	background: url("../-image/common/arrow01.svg") no-repeat 50% 50%;
	background-size: 50px;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left:16px;
	transform: translateY(-50%);
}

.btnList ul li a.bgColor02:before {
	background: url("../-image/common/arrow02.svg") no-repeat 50% 50%;
}

.reserveArea h4 {
	font-size: 43px;
	position: relative;
	display: inline-block;
	margin-bottom: 35px;
}

.reserveArea h4:before,.reserveArea h4:after {
	content: "";
	background: url("../-image/common/reserve_border.svg") no-repeat 50% 50%;
	background-size: 140px;
	width: 140px;
	height: 22px;
	position: absolute;
	text-align: center;
	top:50%;
	transform: translateY(-50%);
}

.reserveArea h4:before {
	left: -180px;
}

.reserveArea h4:after {
	right: -180px;
}

.specialSlider {
    margin-bottom: 140px;
}

footer {
	text-align: center;
}

footer .bgColor05 {
    padding: 80px 0;
}

footer .inner {
	width: 90%;
	max-width: 1120px;
	margin: 0 auto 0;
}

footer h2 {
	color:#3e3a39;
	font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
	font-family: "Roboto Condensed",'Helvetica',sans-serif;
	letter-spacing: 3px;
	display: block;
}

footer .h2jp {
	display: inline-block;
	margin: 0 0 40px 0;
}

footer .h2jp span {
    color: #3e3a39;
    font-size: 14px;
    width: 100%;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    letter-spacing: 0;
	position: relative;
}

footer .h2jp span:before,footer .h2jp span:after {
    content:"";
	width: 15px;
	height: 1px;
	background: #3e3a39;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}

footer .h2jp span:before {
	left: -2rem;
}

footer .h2jp span:after {
	right:-2rem;
}

footer .snsArea ul {
    justify-content: center;
	margin-bottom: 80px;
}

footer .snsArea li {
	width: 40%;
	padding: 20px;
}

footer .snsArea li.lunachannel {
	width: 390px;
	margin-top: 40px;
}

footer .snsArea li img {
	width: 100%;
}

footer .contactArea {
    padding: 40px 0;
	margin-bottom: 80px;
}

footer .contactArea .inner {
    margin-bottom: 0;
}

footer .contactArea .name {
	font-size: 24px;
}

footer .contactArea .telephone a {
	display: flex;
	justify-content: center;
	align-items: baseline;
	margin-bottom: 10px;
}

footer .contactArea .telephone a p {
    padding: 0 5px;
    font-size: 60px;
	line-height: 1;
}

footer .contactArea .telephone a img {
	height: 40px;
}

footer .bnrArea div {
    max-width: 840px;
	margin: 0 auto;
}

footer .bnrArea div.mb40 {
    margin: 0 auto 40px;
}

footer .bnrArea img {
    width: 100%;
}

footer .aboutArea {
    padding: 80px 0;
}

footer .aboutArea h2 {
	color: #3e3a39;
}

footer .aboutArea .flexBox {
    justify-content: center;
    position: relative;
}

footer .aboutArea .flexBox:before {
    content: "";
    position: absolute;
    background: url(../-image/common/soken_text.svg) no-repeat 0 0;
    background-size: 420px;
    top: -110px;
    right: 65%;
    width: 420px;
    height: 120px;
}

footer .aboutArea .flexBox li {
	margin: 0 20px;
	position: relative;
}

footer .aboutArea .flexBox li img {
    filter: brightness(0.7);
}

footer .aboutArea .flexBox li .title {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-weight: 600;
	width: 100%;
	font-size: 18px;
}

footer .aboutArea .flexBox li .detail {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    text-align: center;
    border-radius: 50px;
    color: #3e3a39;
    padding: 2px 25px;
}

footer .footerLogoArea {
	width: 90%;
	max-width: 1120px;
	padding: 0 0 40px;
	margin: 0 auto;
}

footer .footerLogoArea .flexBox {
	justify-content: center;
}

footer .footerLogoArea ul.flexBox li {
	width: 40%;
	padding: 0 20px 20px;
}

footer .footerLogoArea .sotodan {
	width: 32%;
	margin: 0 1%;
}

footer .footerLogoArea .sotodan p {
	text-align: left;
	font-size: 10px;
}

footer .footerLogoArea .sokenlogo {
    width: 20%;
	padding: 20px;
	margin: 0 1%;
}

footer .footerLogoArea .sokenlogo a {
	width: 100%;
	display: block;
	font-size: 10px;
}

.footerBg {
	position: fixed;
    bottom: 0;
    width: 100%;
	z-index: 100;
}

.footerBg .flexBox {
	justify-content: center;
}

.copyLight p {
	font-size: 12px;
	margin: 5px auto;
}

/*-----下層ページ----*/
	
	main.underPage {
		padding-top: 80px!important;
	}

	main.underPage h2.pageTitle {
		text-align: center;
		font-size: 28px;
		margin-bottom: 60px;
	}



/*-----YouTube埋め込み----*/

.movieBox {
    width: 100%;
    margin: 0 auto;
}

.movie {
    position: relative;
    width: 100%;
    height: 0;
    padding: 56.2% 0 0 0;
    overflow: hidden;
    margin: 0 auto;
}

.movie iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/*-----アニメーション----*/

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}

.fadein-left{
  transform: translate(-30px,0);
}

.fadein-right{
  transform: translate(30px,0);
}

.fadein-up{
  transform: translate(0,-30px);
}

.fadein-bottom{
  transform: translate(0,30px);
}

.fadein-bottom02{
  transform: translate(0,20px);
}  

.scrollin{
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}



@media screen and (min-width: 320px) and (max-width: 768px)  {	
	img {
		max-width:unset;
		width: 100%;
	}

	.pc,.tb {
		display: none;
	}
	
	.sp.tb {
		display: block;
	}
	

/*-----ヘッダー----*/

	.header {
		height: 60px;
		padding: 0;
		box-shadow: 0 2px 10px 3px #8d8d8d;
	}	

	.logoBg {
		padding: 10px 25px 0;
		height: 60px;
	}	

	.logo {
		width: 135px;
	}	

	.logo a {
		padding: 5px 40px;
	}	

	.drawer_open span:before, .drawer_open span:after {
		height: 3px;
		width: 40px;

	}

	.drawer_open span:before {
		top: 16px;
	}

	.drawer_open span:after {
		top: 30px;
	}	

	#drawer_input:checked ~ .drawer_open span::after {
		top: 20px;
	}	

	#drawer_input:checked ~ .drawer_open span::before {
		top: 20px;
	}	

	.drawer_open p.abel {
		font-size: 14px;
		letter-spacing: 2px;
		bottom: 4px;
	}	

	.drawer_open {
		height: 60px;
		width: 40px;
		margin-right: 12px;
	}	

	.nav_content {
		top: 60px;
	}

	.nav_list {
		width: 90%;
		margin: 20px auto 0;
	}	

	.nav_list li a {
		padding: 10px 0 ;
		font-size: 14px;
	}	

	.nav_list li a .en {
		font-size: 8px;
		margin-left: 0;
	}	

	.nav_list:before {
		content: "";
		background: none;
	}	

	.nav_list li a:after {
		right: -1px;

	}
	
	.nav_list li.tb {
		display: block;
	}
	
	
	main {
		margin-top: 60px;
		margin-bottom: 40px;
	}

	
	/*-----フッター----*/
	
	.btnList ul {
		margin: 0 auto 40px;
	}	

	.btnList ul li {
		width: 80%;
		margin: 0 auto 20px;
	}

	.btnList ul li a.bgColor01:before, .btnList ul li a.bgColor02:before {
		background-size: 30px;
		width: 30px;
		height: 30px;
		left: 10px;
	}	

	.btnList ul li a span {
		font-size: 18px;
	}
	
	.reserveArea h4 {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.reserveArea h4:before,.reserveArea h4:after {
		background-size: 80px;
		width: 80px;
		height: 22px;
	}

	.reserveArea h4:before {
		left: -100px;
	}

	.reserveArea h4:after {
		right: -100px;
	}

	.reserveArea .btnList ul {
		margin: 0 auto;
	}
	
	.reserveArea .btnList ul li{
		margin-bottom: 0;
	}	
	
	.copyLight {
		margin-bottom: 60px;
	}
	
	footer {
		margin-top: 50px;
	}
	
	footer .bgColor05 {
		padding: 40px 0;
	}
	
	footer .inner {
		margin: 0 auto 20px;
	}
	
	footer .bgColor05 {
		padding: 40px 0;
	}
	
	footer h2 span {
		font-size: 65%;
	}
	
	footer .snsArea ul {
		justify-content: center;
		margin-bottom: 40px;
	}

	footer .snsArea li {
		width: 80%;
		padding: 0;
		margin-bottom: 20px;
	}
	
	footer .snsArea li.lunachannel {
		width: 70%;
		margin-top: 10px;
	}
	
	footer .contactArea {
		padding: 30px 0;
		margin-bottom: 40px;
	}
	
	footer .contactArea .name {
		font-size: 16px;
	}	
	
	footer .contactArea .telephone a img {
		height: auto;
		width: 40px;
	}

	footer .contactArea .telephone a p {
		font-size: 36px;
	}	
	
	.telTap.sp {
		border: 1px solid #3e3a39;
		padding: 10px 0;
		margin-bottom: 10px;
	}	
	
	.telTap.sp a {
		position: relative;
		width: 100%;
	}	
	
	.telTap.sp a:before {
		content: "";
		position: absolute;
		width: 12px;
		height: 12px;
		margin-top: -5px;
		border-top: solid 1px #3e3a39;
		border-right: solid 1px #3e3a39;
		transform: rotate(45deg);
		top: 50%;
		right: 5%;
	}	
	
	footer .bnrArea div.mb40 {
		margin-bottom: 20px;
	}
	
	footer .bnrArea {
		margin-bottom: 40px;
	}
	
	.lineup_slide .slick-slide img.sp{display:block;}
	
	.lineup_slide .slick-slide img.pc{display:none;}
	
	footer .aboutArea .flexBox li {
		margin: 2% 2%;
		width: 42%;
	}
	
	footer .aboutArea .flexBox li .title {
		font-weight: 600;
		font-size: 14px;
	}	

	footer .aboutArea .flexBox li .detail {
		bottom: 25px;
		left: 50%;
		padding: 2px 0;
		width: 60%;
		font-size: 10px;
	}
	
	footer .aboutArea .flexBox:before {
		background-size: 300px;
		top: 98%;
		right: 25%;
		width: 300px;
		height: 100px;
	}


	footer .aboutArea {
		padding: 30px 0;
		margin-bottom: 40px;
	}	
	
	#footerSpNavi {
		display: block;
		position: static;
		padding: 0;
		margin: 10px auto 40px auto;
		width: 94%;
	}
	
	#footerSpNavi ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		list-style: none;
	}

	#footerSpNavi li {
		padding: 0;
		color: #fff;
		width:calc(50% - 4px);
		margin: 0 2px 5px 2px;
	}
			
	#footerSpNavi li a {
		padding: 0;
		display: block;
	}
	
	#footerSpNavi li a figure {
		position: relative;
		display: block;
		width: 100%;
		margin: 0;
	}
	
	#footerSpNavi li a img {
		width: 100%;
		border-radius: 10px;
	}
	
	#footerSpNavi li figcaption {
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.4);
		border-radius: 10px;
	}
	
	#footerSpNavi li .text {
		position: absolute;
		text-align: center;
		color: #fff;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-weight: 600;
		text-shadow: 1px 1px 2px #000;
		width: 100%;
	}
	
	#footerSpNavi li .text span {
		font-size: 10px;
		display: block;
	}	
		
	#footerSpNavi li .text span.title {
		font-size: 14px;
		line-height: 1.8;
	}
	
	#footerSpNavi li.nolink a {
		pointer-events: none;
		filter: contrast(0.5);
	}
	
	footer .footerLogoArea {
		width: 90%;
		padding: 20px 0 20px;
	}	
	
	footer .footerLogoArea .sotodan {
		width: 100%;
	}	

	footer .footerLogoArea .sokenlogo {
		width: 70%;
	}

	.footerBg.sp {
		display: block;
		height: 50px;
		background: #fff;
	}
	
	.footerBg.sp .flexBox {
		width: 100%;
	}
	
	.footerBg.sp .flexBox li {
		width: 25%;
	}
	
	.footerBg.sp .flexBox li a {
		display: block;
		text-align: center;
		padding: 6px 0;
	}
	
	.footerBg.sp .flexBox li a span {
		font-size: 10px;
		display: block;
	}
	
	.footerBg.sp .flexBox li.reserve a {
		background: #00b3c4;
		color: #fff;
	}
	
	.footerBg.sp .flexBox li.request a {
		background: #4ba18a;
		color: #fff;
	}
	
	.footerBg.sp .flexBox li img {
		width: 20px;
		margin: 0 auto;
	}

/*-----下層ページ----*/
	
	main.underPage {
		padding-top: 50px!important;
	}
	
	main.underPage h2.pageTitle {
		font-size: 24px;
		margin-bottom: 40px;
	} 	

	main .inner {
		width: 90%;
		margin-left:auto;
		margin-right:auto;
	}
		
		
}

@media screen and (min-width: 769px) and (max-width:1024px)  {
	
/*-----ヘッダー----*/
	
	.header {
		height: 100px;
	}	

	.logo a {
		padding: 6px 50px;
	}	

	.logoBg {
		padding: 10px 50px 0;
		height: 100px;
	}	

	.drawer_open {
		height: 85px;
		width: 60px;
		margin-right: 30px;
	}	

	.drawer_open span:before, .drawer_open span:after {
		height: 4px;
		width: 55px;
	}	

	.drawer_open p.abel {
		font-size: 18px;
		letter-spacing: 5px;
		bottom: 3px;
	}	

	#drawer_input:checked ~ .drawer_open span::before,#drawer_input:checked ~ .drawer_open span::after {
		top: 27px;
	}	
	
	.nav_list {
		width: 90%;
	}
	
	.nav_content {
		top: 100px;
	}	
	
	.nav_list:before {
		left: 0;
	}	
	
	
	
	

	main {
		margin-top: 100px;
	}
	
	
	/*-----フッター----*/
	
	.btnList ul {
		width: 90%;
		margin: 0 auto 60px;
	}	
	
	
	footer .inner {
		margin: 0 auto 40px;
	}
	
	footer .snsArea li {
		width: 49%;
		padding: 20px;
	}	
	
	footer h2 {
		font-size: 2.2rem;
	}	
	
	.bnrArea.inner div {
		width: 70%;
		margin: 0 auto 40px;
	}	

	.bnrArea.inner .pc {
		display: block;
	}
	
	footer .aboutArea .flexBox li {
		width: 28%;
    	margin: 0 15px;
	}
	
	footer .aboutArea .flexBox li .detail {
		bottom: 25px;
		padding: 2px 0;
		width: 60%;
	}	
	
	footer .aboutArea .flexBox:before {
		background-size: 250px;
		top: -75px;
		left: 0;
		right: auto;
		width: 250px;
	}	
	
	footer .footerLogoArea .sotodan {
		width: 40%;
	}	
	
	footer .footerLogoArea .sokenlogo {
		width: 30%;
	}

	.footerBg.pc {
		display: block;
	}
	
	
/*-----下層ページ----*/	
	
	main.underPage h2.pageTitle {
		font-size: 24px;
		margin-bottom: 50px;
	}	
	
	main .inner {
		width: 90%;
		max-width: 1120px;
		margin-left:auto;
		margin-right:auto;
	}
	
		
}


@media screen and (min-width: 769px)  { 	
	.sp,.pc {
		display: none;
	}

	.tb,.pc.tb {
		display: block;
	}
	
	 

	/*-----ヘッダー----*/
		
	
	
	main {
		margin-bottom: 60px;
	}


	
	/*-----フッター----*/
	
	.btnList ul li a.bgColor01:before, .btnList ul li a.bgColor02:before {
		content: "";
		background: url(../-image/common/arrow01.svg) no-repeat 50% 50%;
		background-size: 35px;
		width: 35px;
		height: 35px;
		position: absolute;
		top: 50%;
		left: 16px;
		transform: translateY(-50%);
	}	
	
	footer .contactArea .telephone a {
		pointer-events: none;
	}

	
	
	.reserveArea h4 {
		font-size: 36px;
	}	
	
	
	.footerBg {
		padding: 20px 0;
	}
	
	
		
	#footerSpNavi {
		display: none;
	}
	
	footer .lineup_slide .slick-slide img.sp {
		display:none;
	}
	

	/*-----下層ページ----*/

	main.underPage .inner {
		width: 90%;
		max-width: 1120px;
		margin: 0 auto;
	}

	
	
	
}


@media screen and (min-width:1025px) and (max-width:1150px)  { 

	.rightNav .textBtn span.en {
		font-size: 20px;
	}	

	.reserveBtn a, .requestBtn a {
		padding: 10px 30px;
	}	

	
	.reserveBtn a span, .requestBtn a span {
		font-size: 18px;
	}
	
	
	
}
@media screen and (min-width:1025px)  { 	
	.sp,.tb {
		display: none;
	}
	
	.pc {
		display: block;
	}
	

	html {
	  visibility: hidden;
	}

	html.wf-active, html.wfno-load {
	  visibility: visible;
	}	
	
	
	/*-----ヘッダー----*/
	
	
	main {
		margin-top: 100px;
		margin-bottom: 100px;
	}
	
	/*-----フッター----*/
	
	.footerBg {
		padding: 25px 0;
	}
	
}


/*----------------------------------------
SNSボタン
----------------------------------------*/



	
.navSns {
    text-align: center;
	margin-top: 50px;
}

.navSns h3 {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 15px;
    border: none;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: bold;
	line-height: 1;
}
       
.navSns h3:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 2px;
    height: 100%;
    background: #000;
    border-radius: 3px;
    transform: rotate(-25deg);
}
       
.navSns h3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #000;
    border-radius: 3px;
    transform: rotate(25deg);
}

.navSns ul {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
}

.navSns ul li {
	padding: 0 20px;
}

.navSns ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.navSns ul li.snsYoutube img {
	width: 50px;
}

.navSns ul li.snsInsta img{
	width: 45px;
}

.navSns ul li.snsTiktok img {
	width: 45px;
}
	


/*＝＝＝＝YouTubeバナー＝＝＝＝*/

.youtubeBnr .link_1 {
	display: flex;
	margin-bottom: 100px;
}

.youtubeBnr .link_1:hover .banner_box_1 {
	background: #000c4d;
}

.youtubeBnr .link_1:hover .image_box_1::after {
	background-size: 252px;
}

.youtubeBnr .link_1:hover .film {
	fill: #000c4d;
}

.youtubeBnr .link_1:hover .image_2 {
	right: -60px;
}

.youtubeBnr .link_1 .banner_box_1 {
	position: relative;
	width: 100%;
	max-width: 1120px;
	height: 250px;
	border-radius: 30px;
	background: #1b4d00;
	transition: all 0.3s;
}

.youtubeBnr .link_1 .banner_box_1 .image_box_1 {
	position: absolute;
	left: 35px;
	z-index: 1;
}

.youtubeBnr .link_1 .banner_box_1 .image_box_1::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
}

.youtubeBnr .link_1 .banner_box_1 .image_box_1::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../-image/common/home_youtube_icon_1.svg") no-repeat center;
	background-size: 200px;
	content: "";
	transition: all 0.15s;
}

.youtubeBnr .link_1 .banner_box_1 .parts_1 {
	position: absolute;
	left: 35px;
	z-index: 2;
}

.youtubeBnr .link_1 .banner_box_1 .film {
	transition: all 0.3s;
	fill: #1b4d00;
}

.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 46.7%;
	height: 100%;
	margin-left: auto;
	text-align: left;
}

.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_1 {
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 45px;
    letter-spacing: 0px;
    line-height: 1;
    font-weight: 600;
}

.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_2 {
	position: relative;
	margin-bottom: 20px;
	color: #ffe200;
	font-weight: bold;
	font-size: 20px;
}


.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_3 {
	color: #ffffff;
	font-weight: bold;
	line-height: 1.75;
	font-size: 15px;
}

.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_2::before {
  position: absolute;
  top: 50%;
  left: 184px;
  transform: translateY(-50%);
  width: 227px;
  height: 2px;
  background: url("../-image/common/home_youtube_part_2.svg") no-repeat center;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}


@media screen and (max-width: 768px) {
	
	.youtubeBnr .link_1 {
		position: relative;
		margin-bottom: 40px;
	}

	.youtubeBnr .link_1 .banner_box_1 {
		height: auto;
		padding: 30px 0;
		border-radius: unset;
	} 
	
	.youtubeBnr .link_1 .banner_box_1 .image_box_1 {
        left: 50%;
        transform: translateX(-50%);
		position: inherit;
		margin-bottom: 20px;
    }

	.youtubeBnr .link_1 .banner_box_1 .image_box_1 img {
		width: 90%;
	}
	
	.youtubeBnr .link_1 .banner_box_1 .image_box_1::after {
		background-size: 123px;
	}
	
	.youtubeBnr svg.parts_1 {
		height: auto;
	}
	
	.youtubeBnr .link_1 .banner_box_1 .parts_1 {
        top: 30px;
        left: 50%;
        width: 91%;
		transform: translateX(-50%);
    }
	
	.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 {
		justify-content: flex-end;
		width: 90%;
		height: auto;
		margin: 0 auto;
	}
	
	.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_1 {
        margin-bottom: 13px;
        font-size: 28px;
        text-align: center;
        letter-spacing: 2px;
    }
	
	.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_2 {
		margin-bottom: 10px;
		font-size: 14px;
	}
	
	.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_2::before {
			left: 40%;
			width: 58%;
			height: 2px;
		}

	.youtubeBnr .link_1 .banner_box_1 .banner_box_1_1 .text_3 {
		font-size: 12px;
		line-height: 1.75;
	}
	
}


/*＝＝＝＝
インスタグラム　近隣スポットの情報を発信中！
＝＝＝＝*/


.instaArea {
    text-align: center;
}

.instaArea .instaImg {
	margin-bottom: 35px;
}

.instaArea p {
	font-size: 32px;
	margin-bottom: 30px;
}

.instaArea .instaPhoto {
	justify-content: flex-start;
	max-width: 770px;
	margin: 0 auto 10px;
}

.instaArea .instaPhoto li {
	width:48%;
	max-width: 360px;
	margin:0 50px 50px 0;
	padding: 0;
}

.instaArea .instaPhoto li:nth-child(2n) {
	margin-right: 0;
}

.instaArea .instaPhoto li img {
	vertical-align: bottom;
}

.instaCheckBtn {
	width: 60%;
	max-width: 400px;
	text-align: center;
	margin: 50px auto 100px;
}

.instaCheckBtn a {
    display: block;
	line-height: 0;
    font-size: 0;
	box-shadow: 5px 5px 0 #DCDDDD;
	border-radius: 50px;
	padding: 20px 30px;
	transition: .2s ease-in-out;
}

.instaCheckBtn img {
    max-width: 326px;
}

.instaCheckBtn a:hover {
    box-shadow: none;
	margin: 5px 0 0 5px;
	transition: .2s ease-in-out;
	background: #DCDDDD;
	opacity: 1;
}


@media screen and (max-width: 768px) {
	
	.instaArea .instaImg {
		width: 50%;
		margin: 0 auto 20px;
	}

	.instaArea p {
		font-size: 18px;
        margin-bottom: 20px;
	}

	.instaArea .instaPhoto {
		width: 90%;
		margin: 0 auto 30px;;
	}

	.instaArea .instaPhoto li {
		width:48%;
		margin:0 2% 2% 0;
	}

	.instaCheckBtn img {
		width: 100%;
	}

	.instaCheckBtn {
		width: 85%;
		margin: 50px auto 50px;
	}
	
	
}







