@charset "utf-8";

/*-------------------------------
	基本設定
-------------------------------*/

*,
*::before,
*::after{
	box-sizing: border-box;
	line-height: var(--line-height);
	word-wrap: break-word;
}
html{
	font-size: var(--root-font-size);
}
body{
	opacity: 0;
	width: 100%;
	font-size: var(--font-size);
	/* letter-spacing: .05em; */
	letter-spacing: 0;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	color: var(--blackcolor);
	/* font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
	font-family: var(--jp);
}

/*----- 画像関連 */
img{
	height: auto;
	vertical-align: bottom;
}

/* SVG表示されないとき */
.svg{
	line-height: 1;
	display: block;
}
.svg img{
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
}

/*----- ホバー系 */
a,
.a{
	transition: var(--transition);
	color: var(--blackcolor);
}
*:not(.not-a) > a:hover,
*:not(.not-a) > .a:hover{
	opacity: var(--opacity);
}

/*----- コンテンツ */
.sec{
	padding-top: var(--padding-topbottom);
	padding-bottom: var(--padding-topbottom);
}
.sec:first-child{
	padding-top: 0;
}
.sec:last-child{
	padding-bottom: 16.5rem;
}
.sec__body{
	padding-left: 6.8rem;
	padding-right: 6.8rem;
}
.main{
	display: block;
}
	main .sec:nth-of-type(1){		
		padding-top: 1.4rem;
	}

@media screen and (min-width:769px) , print{

	a[href^="tel:"]{
		pointer-events: none;
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.maxwidth{
		width: 100%;
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.sec:last-child{
	}
	.sec__body{
		padding-left: 5rem;
		padding-right: 5rem;
	}
}
@media screen and (max-width:768px){

	html{
		font-size: var(--root-font-size);
	}
	body{
		min-width: 100%;
		font-size: var(--font-size);
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.sp_maxwidth{
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}

	.sec{
		padding-top: var(--padding-topbottom);
		padding-bottom: var(--padding-topbottom);
	}
	.sec:last-child{
		padding-bottom: 11.55rem;
	}
	.sec__body{
		padding-left: 3rem;
		padding-right: 3rem;
	}
	main .sec:nth-of-type(1){		
		padding-top: 1.4rem;
	}
}



/*-------------------------------
	パーツ
-------------------------------*/

/*----- 見出し */
/* 大見出し */
.C-Title{
	width: 100%;
	margin-bottom: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.C-Title__jp{
	font-size: 4.4rem;
	margin-bottom: 2.8rem;
	line-height: 1;
	display: block;
	color: #424549;
}
.C-Title__en{
	font-size: 5.65rem;
	line-height: 1;
	display: block;
}

/* 中見出し */
.C-Sub-title{
	font-family: var(--jp2);
	height: 5rem;
	font-size: 3.2rem;
	margin-bottom: 3rem;
	letter-spacing: .1em;
	line-height: 1;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

/*----- ぱんくず */

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){
	.C-Title__jp{
		font-size: 3.8rem;
        margin-bottom: 2rem;
	}
	.C-Title__en{
		font-size: 4.9rem;
   		text-align: center;
	}

	/* 中見出し */
	.C-Sub-title{
		height: 4.6rem;
		font-size: 2.9rem;
		margin-bottom: 2.8rem;
	}
}



/*-------------------------------
	ヘッダー
-------------------------------*/
body{
	position: relative;
}
.header{
	width: 100%;
	/*padding-bottom: 5.5rem;*/
	padding-bottom: 1.6rem;
	background: #fff;
	position: fixed;
		top: 0;
		z-index: 9999;

}
.header-top{
	width: calc(100% - 1.7rem) /*margin-left分*/;
		margin-left: 1.7rem;
	padding-right: 1.2rem;
	/*padding-bottom: 2rem;
	padding-top: 3.2rem;
	margin-bottom: 4.2rem;*/
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	/*width: 50.2rem;*/
	width: 27rem;
	margin-left: -1.7rem;
}
.header-logo a{
	display: block;
}
.header-logo img{
	width: 100%;
}
.header-data{
	display: flex;
	/*align-items: flex-end;*/
	align-items: center;
	justify-content: space-between;
}
.header-data__icon{
	/*margin-right: 3rem;*/
	margin-right: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-data__icon-item:not(:last-child){
	/*margin-right: 4rem;*/
	margin-right: 3rem;
}
.header-data__icon-item.-instagram{
	padding-top: 1.6rem;
}

.header-data__language-item{
	/*font-size: 4.1rem;*/
	font-size: 2rem;
	text-align: center;
}
.header-data__language-item:not(:last-child){
	/*margin-bottom: 3rem;*/
	margin-bottom: 1.2rem;
}
.header-data__language-item a{
	line-height: 1;
	display: block;
}
.header-data__icon-item.-instagram a img{
	width: 5.5rem;
	
}
.header-data__icon-item.-googlemap a img{
	width: 5.5rem;
}

.header-nav__inner{
	width: 100%;
    padding: 0 3rem;
	display: flex;
		align-items: center;
		justify-content: space-between;
}
.header-nav__item a{
	/*font-size: 2.8rem;*/
	font-size: 1.8rem;
	line-height: 1;
	display: block;
	text-align: center;
}
.header-nav__item a::after{
	content: attr(data-en);
	/*margin-top: 3.2rem;*/
	margin-top: 0.8rem;
	font-size: 1.6rem;
	line-height: 1;
	display: block;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.header-top{
	}
	.header-logo{
		margin-right: 2rem;
	}
	.header-data{
		align-items: center;
	}
	.header-data__icon{
		margin-right: 1.5rem;
	}
	.header-data__icon-item:not(:last-child){
		margin-right: 2.5rem;
	}

}

@media screen and (max-width:768px){
	.header {
		/*padding-bottom: 5rem;*/
		padding-bottom: unset;
	}
	.header__inner{
		position: relative;
	}
	.header-top{
		padding-right: unset;
		/*padding-bottom: 3rem;
		padding-top: 3.2rem;
		margin-bottom: 0;*/		
		padding-bottom: 1rem;
		padding-top: 2.5rem;
    	margin-bottom: 1.5rem;
		flex-direction: column;
			align-items: flex-start;
	}
	.header-logo{
        /*width: 40rem;*/
		width: 30rem;
        margin-right: 7rem; /*.menu-button用余白*/
	}
	.header-data{
		width: 100%;
		/*padding-top: 3rem;*/
		padding-top: 2.5rem;
		justify-content: center;
		align-items:center;
	}
	.header-data__icon-item.-instagram{
    	padding-top: 0;
	}
	.header-data__icon-item.-instagram a img{
		/*width: 12rem;*/
		width: 9rem;
	}
	.header-data__icon-item.-googlemap{
    	padding-bottom: 2.5rem;
	}
	.header-data__icon-item.-googlemap a img{
		/*width: 10rem;*/
		width: 7.5rem;
	}

	.header-data__language-item{
		/*font-size: 3.5rem;*/
		font-size: 2.5rem;
	}
	.header-data__language-item:not(:last-child){
		/*margin-bottom: 2rem;*/
		margin-bottom: 1.2rem;
	}


	/*----- ナビ */
	.header-nav{
		display: none;
	}

	/*----- ハンバーガー */
	.menu-button {
		/*width: 12rem;
		height: 12rem;
		padding: 4rem 3rem;*/
		width: 10.5rem;
		height: 10.5rem;
		padding: 3rem 2.4rem;
		box-sizing: border-box;
		display: block !important;
		z-index: 9900;
		cursor: pointer;
		background: #3C3C3C;
		position: fixed;
		right: 0;
		top: 0;
        z-index: 9999;
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: .4rem;
		background: #fff;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: 1.8rem;
	}
	.menu-button i:before,
	.menu-button i:after{
		content: "";
		display: block;
		width: 100%;
		height: .4rem;
		background: #fff;
		position: absolute;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.3s !important;
		transition: all 0.3s !important;
	}
	.menu-button i:before{
		-webkit-transform: translateY(1.8rem);
		-ms-transform: translateY(1.8rem);
		transform: translateY(1.8rem);;
	}
	.menu-button i:after{
		-webkit-transform: translateY(-1.8rem);
		-ms-transform: translateY(-1.8rem);
		transform: translateY(-1.8rem);
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		transform:translateY(0px) rotate(-45deg);
	}
	.is_open i:before{
		transform:translateY(0px) rotate(45deg);
	}
		.header-nav{	
		width: 100%;
        height: auto;
			padding: unset;
			background: rgba(255,255,255,0.9);
        border-bottom: 2px solid #000;
        position: fixed;
			right: 0;
			top: 0;
        z-index: 8888;
	}
	.header-nav__inner{
		width: 100%;
			padding-left: var(--padding-leftright);
			padding-right: var(--padding-leftright);
		flex-wrap: wrap;
		justify-content: center;
	}
	.header-nav__item{
		width: 50%;
		padding: 3rem 1rem;
        display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
	}
	.header-nav__item:not(:last-of-type){
		/*margin-bottom: 6rem;*/
		margin-bottom: unset;
	}
	.header-nav__item:not(:nth-of-type(2n)){
        border-right: 1px solid #000;
	}
	.header-nav__item:not(:nth-last-of-type(-n + 2)){
        border-bottom: 1px solid #000;
	}
	
	.header-nav__item a{
		margin-bottom: unset;
		font-size: 3rem;
	}
	.header-nav__item a::after{
		margin-top: 1.6rem;
		font-size: 2.8rem;
	}
}



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

.footer{
	padding-bottom: 8.5rem;
}
.footer__logo{
	width: 100%;
	margin-bottom: 10rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer__logo-item{
	width: 50%;
}
.footer__logo-item a{
	width: 100%;
	display: flex;
	align-items: center;
}
.footer__logo-item img{
	max-width: 100%;
}
.footer-bottom{
	font-size: 2.2rem;
	text-align: center;
}

.footer__logo-item.-hakone a{
	justify-content: flex-start;
}
.footer__logo-item.-kasityo a{
	justify-content: flex-end;
}

/* pagetop */
.pageTOP{
	position: fixed;
		right: 0;
		bottom: 0;
}
button#js-backToTop{
	width: 8rem;
	height: 8rem;
	background: #000;
	display: flex;
		align-items: center;
		justify-content: center;
	cursor: pointer;
	opacity: 0;
	z-index: 9999;
	visibility: hidden;
		transition: .3s;
}
	button#js-backToTop::before{
		width: 0;
		height: 0;
		border-style: solid;
			border-right: 1.6rem solid transparent;
			border-left: 1.6rem solid transparent;
			border-bottom: 2.2rem solid #fff;
			border-top: 0;
		position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%,-50%);
			-webkit-transform: translate(-50%,-50%);
		display: block;
		content: "";
	}
/* クラス付与時の指定 */
button#js-backToTop.is-active{
	opacity: 1;
	visibility: visible;
}
@media screen and (min-width:769px) , print{

}

@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1180px) and (min-width: 769px){

	.footer__logo-item{
		width: 48%;
	}
}
@media screen and (max-width:960px) and (min-width: 769px){

	.footer{
	}
	.footer-bottom{
		font-size: 1.8rem;
	}
}
@media screen and (max-width:768px){
	.footer{
		padding-bottom: 6rem;
	}
	.footer__logo{
		margin-bottom: 7rem;
	}
	.footer__logo-item{
		width: 48%;
	}
	.footer-bottom{
		font-size: 2rem;
	}	
	/* pagetop */
	button#js-backToTop{
		width: 10.5rem;
		height: 10.5rem;
	}
		button#js-backToTop::before{
				border-right: 2rem solid transparent;
				border-left: 2rem  solid transparent;
				border-bottom: 3.2rem solid #ffffff;
		}
}



/*-------------------------------
	キービジュアル
-------------------------------*/

.Keyvisual{
	width: 100%;
	margin-bottom: 5rem;
	text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
}
.Keyvisual img{
	width: calc(100% + 10rem);
}


@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1180px) and (min-width: 769px){
	
}
@media screen and (max-width:960px) and (min-width: 769px){
	
}
@media screen and (max-width:768px){

	.Keyvisual img{
		width: calc(100% + 8rem);
	}

}


/*-------------------------------
	メニュー
-------------------------------*/

.Menu__message{
	font-family: var(--jp2);
	margin-bottom: 4rem;
}

.Menu-table{
	font-family: var(--jp2);
	padding-bottom: 4.5rem;
}
.Menu-table__list{
	width: 100%;
	letter-spacing: .1em;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Menu-table__list:not(:first-child){
	padding-top: 3rem;
}
.Menu-table__list:not(:last-child){
	padding-bottom: 3rem;
	border-bottom: .5rem solid #b1afb1;
}
.Menu-table__list-title{
	padding-right: 1em;
	letter-spacing: .05em;
}
.Menu-table__list-text{
	letter-spacing: .05em;
}
.Menu-table__list-text a{
	font-weight: 700;
}

.Menu-setsumei{
	min-width: 35.5rem;
	height: 8.6rem;
	margin-bottom: 8rem;
	color: #fff;
    display: inline-block;
	text-align: center;
}
.Menu-setsumei__text{
	width: 100%;
	height: 100%;
	padding: .2rem 1rem;
	font-size: 2.4rem;
	line-height: 1;
	font-weight: 900;
	background: #4c4d4d;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
}
.Menu-setsumei__text span{
	font-size: 3.6rem;
	line-height: 1.25;
	font-weight: 900;
	display: block;
}

.Menu-reservation{
	max-width: 33.4rem;
	margin-bottom: 8.2rem;
	height: 10.2rem;
	font-size: 3.6rem;
	letter-spacing: .05em;
	border: .4rem solid #009de2;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

.Menu-movie__title{
	font-size: 3.6rem;
	margin-bottom: 2.5rem;
	line-height: 1;
	text-align: center;
}

.Menu-movie__body{
	max-width: 59rem;
	height: 33.6rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.Menu-movie__body iframe{
	width: 100%;
	height: 100%;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Menu__message{
		line-height: 1.3;
	}

	.Menu-table{
	}
	.Menu-table__list{
		flex-direction: column;
	}
	.Menu-table__list-title{
		padding-right: 0;
		margin-bottom: 0.8em;
	}
	.Menu-setsumei{
		margin-bottom: 6rem;
	}
	.Menu-setsumei__text{
		font-size: 2.2rem;
	}
	.Menu-setsumei__text span{
		font-size: 3.1rem;
	}

	.Menu-reservation{
		margin-bottom: 6.5rem;
		height: 9.5rem;
		font-size: 3.1rem;
	}

	.Menu-movie__title{
		font-size: 3.1rem;
	}

	.Menu-table__list-text{
			line-height: 1.3;
	}
	
}