@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
	font-family: 'sns_ico';
	src:
		url('../fonts/sns_ico.ttf?sij4de') format('truetype'),
		url('../fonts/sns_ico.woff?sij4de') format('woff'),
		url('../fonts/sns_ico.svg?sij4de#sns_ico') format('svg');
	font-weight: normal;
	font-style: normal;
}

i.snsIcon {
	font-family: 'sns_ico' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	color: #000;
}

.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-tw:before { content: "\e908";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}


body {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	-webkit-text-size-adjust: 100%;
	color: #333;
    margin-top: 0 !important;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transform: translateY(40px);
	transition: all .8s cubic-bezier(0, 0.55, 0.45, 1);
}
.anim.on {
	opacity: 1;
	transform: translateY(0px);
}


.contentWrap {
	max-width: 1080px;
	margin: 0 auto;
	padding-left: 60px;
	padding-right: 60px;
	position: relative;
/*	z-index: 0;*/
    box-sizing: content-box;
}


.btnWrap {
	display: flex;
	justify-content: center;
}
.btnWrap a {

}
.fixBtnWrap {
	display: flex;
	justify-content: center;
  align-items: flex-start;
	position: fixed;
	z-index: 4000;
    top: 30px;
    right: 300px;
}
.ovalBtnBlue,
.ovalBtnOrange {
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 60px;
	font-size: min(3.8vw, 14px);
	font-weight: bold;
	margin: 0 min(2vw, 10px);
	white-space: nowrap;
}
.ovalBtnBlue {
	background-color: #7DCDCC;
}
.ovalBtnOrange {
	background-color: #F89A27;
}
.ovalBtnOrange.campReserve {
	background-color: #9a52b0;
}

.reservePulldown {
  background-color: #F89A27;
  color: #fff;
  border-radius: 24px;
  font-size: min(3.2vw, 14px);
  font-weight: bold;
  width: 160px;
  overflow: hidden;
}
.reservePulldown .ttl {
  display: flex;
  align-items: center;
  gap: min(1.4vw, 6px);
  padding: min(1vw, 10px) min(1.7vw, 14px);
  cursor: pointer;
}
.reservePulldown .ttl::after {
    content: "";
    display: block;
    width: 0.9em;
    height: 0.9em;
    border-bottom: #fff solid 2px;
    border-right: #fff solid 2px;
    transform: translateY(-60%) rotate(45deg);
    position: absolute;
    top: min(2vw, 22px);
    right: min(3vw, 15px);
    transition: all 0.3s ease-out;
}
.reservePulldown .ttl.on::after {
    transform: translateY(-10%) rotate(-135deg);
}
.reservePulldown > ul {
    display: none;
    padding: 0 min(3vw, 15px) min(3vw, 15px);
}
.reservePulldown > ul li {
    padding: min(1vw, 5px) 0;
    border-bottom: rgba(255,255,255,0.4) solid 1px;
    font-size: min(3.4vw, 13px);
}
.reservePulldown > ul li:first-child {
    border-top: rgba(255,255,255,0.4) solid 1px;
}
.reservePulldown > ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-feature-settings: "palt";
}

main {
	padding-top: 140px;
    overflow: hidden;
    position: relative;
}

.moreBtn {
	margin: 60px auto 0;
	max-width: 270px;
	min-width: fit-content;
}
.moreBtn a {
	display: block;
	background-color: #fff;
	text-align: center;
	/* font-size: 16px; */
	font-size: 14px;
	line-height: 1.6;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #333;
	text-decoration: none;
	/* padding: 15px 20px; */
	padding: 15px 10px;
	border: #888888 solid 1px;
	border-radius: 8px;
}


.topicPath {
	position: absolute;
    top: 100px;
    left: 0;
	width: 100%;
	height: 40px;
	display: flex;
    z-index: 2;
	overflow: hidden;
	background: #f7f7f7;
	padding: 0 42px;
}
.topicPath > div {
	width: 100%;
	height: 40px;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	box-sizing: content-box;
}
.topicPath a,
.topicPath span {
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
	position: relative;
	font-size: 12px;
	white-space: nowrap;
}
.topicPath a + a,
.topicPath a + span {
	padding-left: 40px;
}
.topicPath a + a::before,
.topicPath a + span::before {
	content: "";
	display: block;
	position: absolute;
	left: 15px;
	top: 46%;
	height: 1px;
	width: 10px;
	background-color: #000;
}

.planeWrap {
	padding-top: 60px;
	padding-bottom: 60px;
}

.borderWrap {
	border-top: #ccc solid 1px;
	padding-top: 50px;
	padding-bottom: 30px;
}

.borderBottomWrap {
	border-bottom: #ccc solid 1px;
	padding-top: 50px;
	padding-bottom: 60px;
}
.borderBottomWrap .planeWrap {
	padding-bottom: 0;
}
.borderBottomWrap .flexBox {
	margin-bottom: 0;
}

.contentBlock {
	padding: 40px 0;
}

.whiteBox {
	border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 40px 60px;
    background-color: #fff;
}

@media screen and (min-width: 821px) {

	.sp { display: none;}

	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}

}
@media screen and (max-width: 820px) {

	.pc { display: none;}


	.contentWrap {
		padding-left: min(6vw, 60px);
		padding-right: min(6vw, 60px);
	}

	.btnWrap a {
		width: 42%;
	}

	main {
		padding-top: 95px;
	}
	.moreBtn {
		margin: min(12vw, 60px) auto 0;
	}
	.moreBtn a {
		/* font-size: min(3.8vw, 16px);
		padding: min(3.5vw, 15px) min(4vw, 20px); */
		font-size: min(3.2vw, 16px);
		padding: min(3.5vw, 15px) min(1vw, 10px);
		border-radius: 6px;
	}

	.topicPath {
    	height: 35px;
		top: 60px;
		left: 0;
    	padding: 0 min(5vw, 40px);
	}
	.topicPath > div {
    	height: 35px;
	}

	.topicPath a,
	.topicPath span {
		font-size: 10px;
	}
	.topicPath a + a,
	.topicPath a + span {
		padding-left: 30px;
	}
	.topicPath a + a::before,
	.topicPath a + span::before {
		content: "";
		display: block;
		position: absolute;
		left: 9px;
		top: 46%;
		height: 1px;
		width: 12px;
		background-color: #000;
	}


	.planeWrap {
		padding-top: min(12vw, 80px);
		padding-bottom: min(12vw, 80px);
	}
	.borderWrap {
		padding-top: min(10vw, 50px);
		padding-bottom: min(6vw, 30px);
	}
	.borderBottomWrap {
		padding-top: min(10vw, 50px);
		padding-bottom: min(6vw, 30px);
	}

	.contentBlock {
		padding-top: min(8vw, 40px);
		padding-bottom: min(8vw, 40px);
	}


	.whiteBox {
		border-radius: 10px;
		margin-bottom: 15px;
		padding: min(6vw, 40px) min(6vw, 60px);
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	Header

//////////////////////////////////////////////////////////////////////////////// */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3000;
	background-color: rgba(0,0,0,0);
	transition: all 0.3s ease-out;
}
header.on {
/*	background-color: rgba(0,0,0,0.50);*/
}


header .topLogo {
	opacity: 0;
	transition: all 0.3s ease-out;
}
header.on .topLogo {
	opacity: 1;
}
header .topLogo img {
	width: 100%;
	height: auto;
}

header h1 {
	line-height: 0;
	width: 460px;
	text-align: center;
    padding: 25px 40px;
}
header h1 img.inMenu {
	display: none;
}
.menuOpen h1 img.inMenu {
	display: block !important;
}
.menuOpen h1 img.inheader {
	display: none !important;
}

.menuOpen .topLogo {
	opacity: 1 !important;
}

/*
header.on h1 {
	transition: all 0.3s ease-out;
    padding: 15px 40px;
}
*/

header .hdrMain {
	position: relative;
	display: flex;
	justify-content: space-between;
    align-items: center;
	padding: 0;
	transition: all 0.3s ease-out;
}
/*
header.on .hdrMain {
	padding: 15px 30px;
}
*/
header .hdrMenuWrap {
	display: flex;
	align-items: center;
}

header .btnWrap {
	margin-right: 30px;
}

.menuButton {
	display: block;
	width: 100px;
	height: 100px;
	position: relative;
	background-color: #fff;
	border-radius: 0 0 0 10px;
	z-index: 9999;
}
.menuButton span {
	display: block;
	width: 40px;
	height: 2px;
	position: absolute;
    left: 30px;
	transition: all 0.4s;
	background-color: #000;
/*
	background: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.65);
*/
}

.menuButton span:nth-child(1) { top: 42px;}
.menuButton span:nth-child(2) { bottom: 42px;}
.menuButton.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menuButton.active span:nth-child(2) {
	transform: translateY(-7px) rotate(-45deg);
}

#globalNavi {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #bd8f61;
	z-index: 2000;
	display: none;
}

#globalNavi .gnavPattern {
	width: 40%;
	background-color: #fff;
	padding: 8% 4% 4%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#globalNavi .gnavPattern ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
#globalNavi .gnavPattern ul li {
	width: 45%;
}
#globalNavi .gnavPattern ul li:nth-child(n+3) {
	margin-top: 20px;
}

#globalNavi .gnavPattern ul li > div {
	position: relative;
	text-align: center;
	border-radius: 8px;
	overflow: hidden;
}
#globalNavi .gnavPattern ul li > div::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.0);
}
#globalNavi .gnavPattern ul li.navBnr01 > div { background: url("../images/op_bnr01.jpg") no-repeat center center; background-size: cover;}
#globalNavi .gnavPattern ul li.navBnr02 > div { background: url("../images/op_bnr02.jpg") no-repeat center center; background-size: cover;}
#globalNavi .gnavPattern ul li.navBnr03 > div { background: url("../images/op_bnr03.jpg") no-repeat center center; background-size: cover;}
#globalNavi .gnavPattern ul li.navBnr04 > div { background: url("../images/op_bnr04.jpg") no-repeat center center; background-size: cover;}
#globalNavi .gnavPattern ul li.navBnr05 > div { background: url("../images/op_bnr05.jpg") no-repeat center center; background-size: cover;}
#globalNavi .gnavPattern ul li.navBnr06 > div { background: url("../images/op_bnr06.jpg") no-repeat center center; background-size: cover;}
#globalNavi .gnavPattern ul li.navBnr07 > div { background: url("../images/op_bnr07.jpg") no-repeat center center; background-size: cover;}

#globalNavi .gnavPattern ul li > div a {
	display: block;
	padding: 32px 10px;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.6;
	position: relative;
	z-index: 1;
	background-color: rgba(0,0,0,0.30);
}
#globalNavi .gnavPattern ul li > div a span {
	display: block;
	font-size: 0.6em;
	font-weight: normal;
}
#globalNavi .gnavPattern ul li > p {
	margin-top: 4px;
	font-size: 12px;
	display: block;
	font-weight: bold;
	line-height: 1.4;
}
#globalNavi .gnavPattern ul li > .blank {
	background: url("../images/ico_blank.png") no-repeat right center;
	background-size: 8px;
	padding-right: 15px;
}

#globalNavi .gnavPattern ul li > .season {
	margin-top: 5px;
	font-size: 10px;
}
#globalNavi .gnavPattern ul li > .season.greenS { color: #bdac5a;}
#globalNavi .gnavPattern ul li > .season.winterS { color: #85b3d1;}
#globalNavi .gnavPattern ul li > .season.allS { color: #da9875;}



#globalNavi .gnavMain {
	width: 60%;
	padding: 8% 7% 2%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#globalNavi .gnavMain .gnavListWrap {
	display: flex;
}
#globalNavi .gnavMain .gnavListWrap ul {
	width: 50%;
	margin-bottom: 20px;
}
#globalNavi .gnavMain .gnavListWrap ul li + li {
	margin-top: 10px;
}
#globalNavi .gnavMain .gnavListWrap ul li a {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	line-height: 1.5;
    letter-spacing: 0.2em;
    font-feature-settings: "palt";
}
#globalNavi .gnavMain .gnavListWrap ul li a span {
	display: block;
	font-size: 0.5em;
    letter-spacing: 0.26em;
    text-indent: 0.2em;
	font-weight: normal;
	color: #f7eee5;
}

#globalNavi .gnavMain .subNavi {
	padding: 20px 0;
	border-top: #fff solid 1px;
	border-bottom: #fff solid 1px;
	display: flex;
	flex-wrap: wrap;
}
#globalNavi .gnavMain .subNavi li {
	width: 50%;
}
#globalNavi .gnavMain .subNavi li a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
#globalNavi .gnavMain .subNavi li a span {
	display: block;
	font-size: 0.5em;
    letter-spacing: 0.26em;
	color: #f7eee5;
}
#globalNavi .gnavMain .subNavi li:nth-child(n+3) {
	margin-top: 10px;
}

#globalNavi .gnavMain .gnavSns {
	display: flex;
    margin-top: 20px;
}
#globalNavi .gnavMain .gnavSns li {
	margin-right: 15px;
}
#globalNavi .gnavMain .gnavSns li a {
	text-decoration: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}
#globalNavi .gnavMain .gnavSns li a i {
	color: #fff;
	font-size: 20px;
}
#globalNavi .gnavMain .gnavSns li a img {
    height: 100%;
    width: 100%;
}


.language {
    position: absolute;
    top: 50%;
    right: 130px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 24px;
    transform: translateY(-20px);
    font-size: min(3.2vw, 14px);
    width: 160px;
}
.language .ttl {
    display: flex;
    align-items: center;
    gap: min(1.4vw, 6px);
    padding: min(1vw, 10px) min(1.7vw, 14px);
    cursor: pointer;
}
.language .ttl::before {
    content: "";
    display: block;
    width: 1.6em;
    height: 1.6em;
    background: url("../images/ico_google.png") no-repeat center center;
    background-size: contain;
}
.language .ttl::after {
    content: "";
    display: block;
    width: 0.9em;
    height: 0.9em;
    border-bottom: #fff solid 2px;
    border-right: #fff solid 2px;
    transform: translateY(-60%) rotate(45deg);
    position: absolute;
    top: min(2vw, 22px);
    right: min(3vw, 15px);
    transition: all 0.3s ease-out;
}
.language .ttl.on::after {
    transform: translateY(-10%) rotate(-135deg);
}
.language > ul {
    display: none;
    padding: 0  min(3vw, 15px) min(3vw, 15px);
}
.language > ul li {
    padding: min(1vw, 5px) 0;
    border-bottom: #666 solid 1px;
}
.language > ul li:first-child {
    border-top: #666 solid 1px;
}
.language > ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-feature-settings: "palt";
}

.language > ul li.icoTranslate {
    text-align: right;
    line-height: 0;
    border-bottom: none;
    padding-top: min(2vw, 10px);
    padding-bottom: 0;
}
.language > ul li.icoTranslate img {
    width: 95px;
}

.translateLogo {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 110px;
    line-height: 0;
    z-index: 10;
}

#gt-nvframe {
    display: none !important;
}

@media screen and (min-width: 821px) {
    
	.language { transition: all 0.3s ease-out;}
    .language:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }
	.spPageTop {
		display: none !important;
	}
}
@media screen and (max-width: 820px) {

	header h1 {
		width: min(62vw, 240px);
		padding: min(2vw, 25px) min(5vw, 40px);
	}
	header .topLogo {
		opacity: 1;
	}
	header .hdrMain {
/*		padding: min(3vw, 20px) min(5vw, 30px);*/
		align-items: center;
	}
	header.on .hdrMain {
/*		padding: min(3vw, 15px) min(5vw, 30px);*/
	}
	header .btnWrap {
		margin: 0;
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
    	width: 100vw;
	}
	header .btnWrap {

	}
	header .btnWrap .ovalBtnBlue,
	header .btnWrap .ovalBtnOrange {
		width: 40%;
    	margin: 0;
    	border-radius: 0;
		padding-top: min(10vw, 40px);
    	font-size: min(3.4vw, 14px);
	}
	header .btnWrap .ovalBtnBlue {
		background: #7AA3BD url(../images/ico_about.svg) no-repeat center 24%;
		background-size: 10%;
	}
	header .btnWrap .ovalBtnOrange {
		background: #F89A27 url("../images/ico_reserve.svg") no-repeat center 24%;
    	background-size: 18%;
	}
	header .btnWrap .spPageTop {
		width: 20%;
		background: #fff url(../images/ico_arrow_sptop.svg) no-repeat center 30%;
    	background-size: 26%;
		text-align: center;
		color: #000;
		text-decoration: none;
		font-family: Helvetica, "sans-serif";
		font-size: min(2.6vw, 10px);
		font-weight: bold;
		letter-spacing: 0;
		padding-top: min(10vw, 40px);
	}

	.fixBtnWrap {
		margin: 0;
		position: fixed;
		top: inherit;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
    	width: 100vw;
		gap: 2px;
		background-color: #fff;
	}
	.fixBtnWrap .ovalBtnBlue,
	.fixBtnWrap .ovalBtnOrange {
		width: 50%;
    	margin: 0;
    	border-radius: 0;
    	font-size: min(3.4vw, 14px);
		display: flex;
		justify-content: center;
		align-items: center;
    	padding: 18px 20px;
	}
	.fixBtnWrap .ovalBtnBlue::before {
		content: "";
		display: block;
		width: min(4vw, 20px);
		height: min(6vw, 30px);
		background: url(../images/ico_about.svg) no-repeat center center;
		background-size: contain;
		margin-right: min(3vw, 15px);
	}
	.fixBtnWrap .ovalBtnOrange::before {
		content: "";
		display: block;
		width: min(7vw, 35px);
		height: min(6vw, 30px);
		background: url("../images/ico_reserve.svg") no-repeat center center;
		background-size: contain;
		margin-right: min(3vw, 15px);
	}
  
  
  .reservePulldown {
    width: 50%;
    padding: 18px 20px;
    margin: 0;
    border-radius: 0;
    font-size: min(3.4vw, 14px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
  }
  .reservePulldown .ttl {
    padding: 0;
  }
  .reservePulldown .ttl::after {
    transform: translateY(-10%) rotate(-135deg);
    top: 46%;
    right: min(4vw, 20px);
  }
  .reservePulldown .ttl.on::after {
    transform: translateY(-60%) rotate(45deg);
  }
  .reservePulldown > ul {
    padding: min(1vw, 5px) min(3vw, 15px) 0;
    position: absolute;
    bottom: 100%;
    width: 100%;
    background-color: #F89A27;
  }
  .reservePulldown > ul li:first-child {
    border-top: none;
  }

	.menuButton {
		width: 60px;
    	height: 60px;
	}
	.menuButton span {
		width: 30px;
		height: 2px;
		left: 15px;
	}
	.menuButton span:nth-child(1) { top: 24px;}
	.menuButton span:nth-child(2) { bottom: 24px;}
	.menuButton.active span:nth-child(1) {
		transform: translateY(5px) rotate(45deg);
	}
	.menuButton.active span:nth-child(2) {
		transform: translateY(-5px) rotate(-45deg);
	}

	.spPageTop {
		width: min(18vw, 80px);
		height: min(18vw, 80px);
		background: #fff url(../images/ico_arrow_sptop.svg) no-repeat center 33%;
    	background-size: 26%;
		text-align: center;
		color: #000;
		text-decoration: none;
		font-family: Helvetica, "sans-serif";
		font-size: min(2.6vw, 10px);
		font-weight: bold;
		letter-spacing: 0;
    	text-indent: 0.2em;
		position: fixed;
		bottom: min(24vw, 120px);
		right: min(3vw, 40px);
		display: none;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
    	z-index: 1000;
		box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
		box-sizing: border-box;
    	padding-top: min(4vw, 20px);
	}

	#globalNavi {
		flex-direction: column;
    	overflow: auto;
	}

	#globalNavi .gnavPattern {
    	width: 100%;
    	padding: min(20vw, 100px) 6% 6%;
	}
	#globalNavi .gnavPattern ul li {
		width: 48%;
	}
	#globalNavi .gnavPattern ul li:nth-child(n+3) {
		margin-top: min(2vw, 20px);
	}
	#globalNavi .gnavPattern ul li > div {
		border-radius: 6px;
	}
	#globalNavi .gnavPattern ul li > div a {
		padding: min(5vw, 60px) min(2vw, 10px);
		font-size: min(3.6vw, 18px);
	}
	#globalNavi .gnavPattern ul li > p {
		margin-top: 2px;
		font-size: min(3vw, 14px);
	}

	#globalNavi .gnavMain {
		width: 100%;
		padding: 10% 7% 25%;
	}
	#globalNavi .gnavMain .gnavListWrap {
		display: flex;
	}
	#globalNavi .gnavMain .gnavListWrap ul {
		width: 50%;
		margin-bottom: min(6vw, 20px);
	}
	#globalNavi .gnavMain .gnavListWrap ul li + li {
		margin-top: min(4vw, 15px);
	}
	#globalNavi .gnavMain .gnavListWrap ul li a {
		font-size: min(3.8vw, 24px);
    	line-height: 1;
	}
	#globalNavi .gnavMain .gnavListWrap ul li a span {
		font-size: 0.5em;
	}

	#globalNavi .gnavMain .subNavi {
		padding: min(6vw, 20px) 0;
	}
	/* #globalNavi .gnavMain .subNavi li:nth-child(odd) {
		width: 40%;
	}
	#globalNavi .gnavMain .subNavi li:nth-child(even) {
		width: 60%;
	} */
	#globalNavi .gnavMain .subNavi li a {
		font-size: min(3vw, 16px);
    	line-height: 1.2;
	}
	#globalNavi .gnavMain .subNavi li:nth-child(n+3) {
		margin-top: min(3vw, 15px);
	}

	#globalNavi .gnavMain .gnavSns {
		margin-top: min(6vw, 30px);
	}
	#globalNavi .gnavMain .gnavSns li {
		margin-right: min(4vw, 15px);
	}
    #globalNavi .gnavMain .gnavSns li a {
        width: 15px;
        height: 15px;
    }
	#globalNavi .gnavMain .gnavSns li a i {
		font-size: min(4vw, 20px);
	}

    
    .language {
        right: 70px;
        transform: translateY(-14px);
        width: 70px;
        font-size: min(2.8vw, 14px);
        border-radius: 14px;
    }
    .language .ttl::before {
/*        display: none;*/
    }
    .language .ttl::after {
        display: none;
    }
    .language > ul li {
        padding: min(2vw, 10px) 0;
    }
    .language > ul li a {
        line-height: 1.4;
    }
    
    .translateLogo {
        bottom: 68px;
        width: 100px;
    }
}


/* ////////////////////////////////////////////////////////////////////////////////

	Reserve

//////////////////////////////////////////////////////////////////////////////// */
#reserve {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #f6f6f6;
	padding: min(8vw, 60px) 0;
    z-index: 8000;
    max-height: 100vh;
    max-height: 100svh;
    overflow: auto;
}
#reserve h2 {
	text-align: center;
	font-size: min(4.2vw, 24px);
	margin-bottom: min(6vw, 30px);
}
#reserve h2 span {
	display: block;
	color: #bd8f61;
	font-size: 0.6em;
}

.reserveTab {
	display: flex;
	justify-content: space-between;
	margin-bottom: min(4vw, 25px);
}
.reserveTab li {
	width: 32%;
}
.reserveTab li a {
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: #fff;
	text-align: center;
	padding: min(2.4vw, 15px);
	border: #dddddd solid 2px;
	border-radius: 6px;
	color: #000;
	text-decoration: none;
	font-size: min(3.4vw, 16px);
	font-weight: bold;
	height: 100%;
    box-sizing: border-box;
    line-height: 1.5;
}
.reserveTab li a.current {
	background-color: #f89a27;
	color: #fff;
}

.reserveForm {
	background-color: #fff;
	padding: min(6vw, 50px);
	border-radius: 6px;
}

#reserveAir {
	display: none;
}

.formList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    align-items: flex-end;
	gap: min(4vw, 20px) 0;
	max-width: 820px;
	margin: 0 auto min(6vw, 30px);
}
.formList li {
	width: 30%;
	position: relative;
	font-size: 16px;
}
.formList li p {
	color: #f89a27;
	font-size: min(3.4vw, 14px);
	margin-bottom: min(1vw, 10px);
/*    white-space: nowrap;*/
    line-height: 1.6;
}
.formList li p span {
	font-size: 0.8em;
}
.formList li p.rsvTtlSub {
	font-size: min(3vw, 14px);
    font-weight: bold;
    color: #aaa;
	margin-bottom: 0;
}
.formList li select,
.formList li input[type="text"],
.formList li input[type="date"] {
	width: 100%;
	border: none;
	border-bottom: #ddd solid 2px;
	border-radius: 0;
	font-size: 16px;
	padding: min(1vw, 5px);
    margin-bottom: 0;
    box-sizing: border-box;
}
.formList li select {
    background-image: url(../images/arrow_down.svg);
    background-repeat: no-repeat;
    background-size: min(4vw, 18px);
    background-position: right center;
}
.formList li input[type="radio"] {
	vertical-align: text-bottom;
	margin-right: min(2vw, 10px);
}

.formList li .daySlct {
	display: flex;
    gap: min(2vw, 10px);
    align-items: baseline;
}
.formList li .dayTBD {
    position: absolute;
    top: 0.08em;
    right: 0;
    display: flex;
    gap: min(2vw, 8px);
}
.formList li.rsvPlanSelect {
	width: 100%;
	display: flex;
	gap: min(1vw, 5px) min(6vw, 30px);
}

input[type='button'].reserveSubmit,
input[type='submit'].reserveSubmit {
	display: block;
	color: #fff;
	text-align: center;
	background-color: #000;
	margin: 0 auto;
	padding: min(3vw, 15px);
	width: 100%;
	max-width: 460px;
	font-size: 16px;
	border-radius: 6px;
    box-sizing: border-box;
}
.reserveLink {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: min(4vw, 20px);
	width: 100%;
	max-width: 460px;
	border-radius: 6px;
	background-color: #f6f6f6;
	margin: min(4vw, 20px) auto 0;
	padding: min(3vw, 15px);
    box-sizing: border-box;
}
.reserveLink a {
	font-size: 16px;
	font-weight: bold;
	text-decoration: underline;
	color: #000;
}

.reserveClose {
	position: fixed;
	top: min(4vw, 30px);
	right: min(4vw, 30px);
}
.reserveClose a {
	display: block;
	width: min(6vw, 30px);
	height: min(6vw, 30px);
	position: relative;
}
.reserveClose a::before,
.reserveClose a::after {
	content: "";
	display: block;
	background-color: #000;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
}
.reserveClose a::before {
	transform: translateY(-50%) rotate(45deg);
}
.reserveClose a::after {
	transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width: 821px) {

}
@media screen and (max-width: 820px) {
	.formList li {
		width: 48%;
	}
	.formList li.spWide {
		width: 100%;
	}
	.formList li .dayTBD {
		line-height: 1;
	}
	.formList li.rsvPlanSelect {
		flex-direction: column;
	}
    
    .formList li p span {
        font-size: 0.72em;
        display: block;
        font-feature-settings: "palt";
        letter-spacing: 0;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
	padding: 60px;
}
footer .ftrSns {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	border-top: #ccc solid 1px;
	border-bottom: #ccc solid 1px;
}
footer .ftrSns li {
	margin: 0 15px;
}
footer .ftrSns li a {
	text-decoration: none;
	font-size: 26px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
}
footer .ftrSns li a img {
    height: 100%;
    width: 100%;
}

footer .ftrNavi {
	display: flex;
	justify-content: space-between;
	padding: 60px 0;
}
footer .ftrNavi .ftrNaviList {
	width: calc(100% / 3);
	padding: 0 30px;
}
footer .ftrNavi .ftrNaviList + .ftrNaviList {
	border-left: #ccc solid 1px;
}
footer .ftrNavi .ftrNaviList li + li {
	margin-top: 14px;
}
footer .ftrNavi .ftrNaviList li a {
	color: #000;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.05em;
}
footer .ftrNavi .ftrNaviList li a span {
	color: #999;
	font-family: Helvetica, "sans-serif";
	font-size: 0.7em;
	font-weight: normal;
	margin-left: 10px;
}
footer .groupBtn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: min(4vw, 24px) min(4vw, 24px);
	padding: 60px 0;
	border-top: #ccc solid 1px;
	border-bottom: #ccc solid 1px;
}
footer .groupBtn a {
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	width: 100%;
	max-width: 360px;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	border-radius: 6px;
}
footer .groupBtn a:nth-child(1) {
	background-color: #642b1e;
}
footer .groupBtn a:nth-child(2) {
	background-color: #B29574;
}


/*
footer .ftrNaviWrap {
	width: 30%;
}

footer .ftrNaviWrap h4 {
	font-size: 16px;
	font-family: Helvetica, "sans-serif";
	font-weight: bold;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}
footer .ftrNaviWrap h4 a {
	color: #000;
	text-decoration: none;
}
footer .ftrNaviWrap h4 span {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 0.6em;
	font-weight: normal;
	color: #7AA3BD;
	margin-left: 12px;
}
footer .ftrNaviWrap ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
footer .ftrNaviWrap ul:last-child {
	margin-bottom: 0;
}
footer .ftrNaviWrap ul li {
	width: 50%;
}
footer .ftrNaviWrap ul li a {
	color: #777777;
	text-decoration: none;
	font-size: 11px;
}
*/

footer .pagetop {
	width: 100px;
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 0.2s ease;
	display: none;
}
footer .pagetop a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	position: relative;
	line-height: 0;
}
footer .pagetop a::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../images/pagetop_circle.png") no-repeat center center;
	background-size: contain;
	animation: pagetop 10s linear 0s infinite;
}
@keyframes pagetop {
	0% { transform: rotate(0deg);}
	100% { transform: rotate(360deg);}
}
footer .pagetop a img {
	width: 20px;
	height: auto;
}

footer .ftrCredit {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
    margin-top: 40px;
}
footer .ftrCredit .ftrLogo {
	width: 140px;
}
footer .ftrCredit .copyright {
	font-size: 10px;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 820px) {

	footer {
		padding: min(10vw, 60px) 0 min(26vw, 180px);
	}

	footer .ftrNavi {
		display: block;
		padding: min(10vw, 60px) 0;
		border-bottom: #ccc solid 1px;
		margin-bottom: min(8vw, 60px);
	}

	footer .ftrNavi .ftrNaviList {
		width: 100%;
		padding: 0;
	}
	footer .ftrNavi .ftrNaviList + .ftrNaviList {
		border-left: none;
		border-top: #ccc solid 1px;
		padding-top: min(6vw, 30px);
		margin-top: min(6vw, 30px);
	}
	footer .ftrNavi .ftrNaviList li + li {
		margin-top: min(3vw, 14px);
	}
	footer .ftrNavi .ftrNaviList li a {
		font-size: min(3.4vw, 15px);
	}
	footer .ftrNavi .ftrNaviList li a span {
		margin-left: min(2vw, 10px);
	}
	footer .groupBtn {
		padding: 0 0 min(10vw, 60px);
		border-top: none;
	}
	footer .groupBtn a {
		font-size: min(3.6vw, 18px);
		padding: min(3vw, 15px);
	}
/*
	footer .ftrNaviWrap {
		width: 100%;
		margin-bottom: min(8vw, 40px);
	}

	footer .ftrNaviWrap h4 {
		font-size: min(3.8vw, 16px);
		margin-bottom: min(2vw, 10px);
	}
	footer .ftrNaviWrap ul {
		margin-bottom: min(6vw, 40px);
		padding-bottom: min(6vw, 40px);
		border-bottom: #ccc solid 1px;
	}
	footer .ftrNaviWrap ul li a {
		font-size: min(2.8vw, 11px);
	}
*/

	footer .pagetop {
		display: none !important;

		width: min(24vw, 100px);
		position: static;
		margin: 0 auto;
	}
	footer .pagetop a {
		width: min(24vw, 100px);
		height: min(24vw, 100px);
	}
	footer .pagetop a img {
		width: min(5vw, 20px);
	}

	footer .ftrCredit {
		display: block;
		margin-top: min(8vw, 40px);
	}

	footer .ftrCredit .ftrLogo {
		width: min(30vw, 140px);
		margin: 0 auto min(6vw, 40px);
	}
	footer .ftrCredit .copyright {
		font-size: min(2.6vw, 10px);
		text-align: center;
	}
}


/* ////////////////////////////////////////////////////////////////////////////////

	Not Found

//////////////////////////////////////////////////////////////////////////////// */
.kv_noPic .pageTtl {
	text-align: center;
	font-size: min(7.6vw, 32px);
	margin-bottom: min(6vw, 32px);
}
.notfound p {
	text-align: center;
	font-size: min(3.8vw, 18px);
}
.notfound .backBtn {
	display: flex;
	justify-content: center;
	margin-top: min(4vw, 24px);
}
.notfound .backBtn a {
	display: block;
	background-color: #fff;
	text-align: center;
	font-size: min(3.4vw, 16px);
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #333;
	text-decoration: none;
	padding: min(3.5vw, 15px) min(4vw, 20px);
	border: #888888 solid 1px;
	border-radius: 8px;
	width: 60%;
	max-width: 280px;
}