@charset "utf-8";
/* CSS Document */
/*
=======================================
  Reset CSS
=======================================
*/
html {
		-webkit-text-size-adjust: 100%;
} /*回転時の文字サイズ自動調整オフ*/
/*
=========================================
  全体　Font TEXT
=========================================
*/
body {
		width: 100%;
		font-size: 18px;
		font-family: "Noto Sans", sans-serif;
		font-optical-sizing: auto;
		font-style: normal;
		font-variation-settings:
				"wdth"100;
}
img {
		display: block;
		/*object-fit: cover;*/
		margin: 0;
		max-width: 100%;
}
section {
		text-align: center;
}
/*
=========================================
  ヘダー＆ロゴ
=========================================
*/
header {
		width: 100vw;
}
.header-container {
		max-width: 1440px;
		display: flex;
		width: 80%;
		margin: 20px auto;
		justify-content: space-around;
		color: #fff;
		/*position: relative;*/
}
@media screen and (min-width:645px) {
		.header-container {
				max-width: 1440px;
				display: flex;
				width: 80%;
				margin: 20px auto;
				justify-content: space-between;
				align-items: center;
				color: #fff;
				/*position: relative;*/
		}
}
a.logo img {
		width: 15vw;
		min-width: 70px;
		max-width: 200px;
		height: auto;
}
h1 {
		display: inline-block;
		width: 5em;
		font-family: "Reggae One", system-ui;
		color: #000B76;
		font-size: 30px;
		font-style: normal;
		text-align: center;
		padding-top: 0;
}
@media screen and (min-width:830px) {
		h1 {
				font-size: 60px;
		}
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
		display: block;
		position: relative;
}
@media screen and (min-width:830px) {
		.slider {
				display: block;
				position: relative;
				height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		}
}
/*　背景画像設定　*/
.slider-item01 {
		background: url(img/TopFuji.jpg);
		z-index: 999;
}
.slider-item02 {
		background: url(img/TopGojo.jpg);
}
.slider-item03 {
		background: url(img/TopKoya1920x1200.jpg);
}
li.slider-item {
		width: 100%;
		height: 50vw;
		background-repeat: no-repeat; /*背景画像をリピートしない*/
		background-position: center; /*背景画像の位置を中央に*/
		background-size: contain; /*背景画像が.slider-item全体を覆い表示*/
		object-fit: contain;
}
@media screen and (min-width:830px) {
		li.slider-item {
				width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
				height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
				background-repeat: no-repeat; /*背景画像をリピートしない*/
				background-position: center; /*背景画像の位置を中央に*/
				background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
				object-fit: contain;
		}
}
/*矢印の設定*/
.slick-prev, .slick-next {
		position: absolute;
		z-index: 3;
		top: 42%;
		cursor: pointer; /*マウスカーソルを指マークに*/
		outline: none; /*クリックをしたら出てくる枠線を消す*/
		border-top: 2px solid #fff; /*矢印の色*/
		border-right: 2px solid #fff; /*矢印の色*/
	
	
	
		width: 25px;
}
.slick-prev { /*戻る矢印の位置と形状*/
		left: 2.5%;
		transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
		right: 2.5%;
		transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
		z-index: 999;
		text-align: center;
		margin: -3px 0 0 0; /*ドットの位置*/
}
.slick-dots li {
		display: inline-block;
		margin: 0 5px;
}
.slick-dots button {
		color: transparent;
		outline: none;
		width: 8px; /*ドットボタンのサイズ*/
		height: 8px; /*ドットボタンのサイズ*/
		display: block;
		border-radius: 50%;
		background: #B7CCC7; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
		background: #333; /*ドットボタンの現在地表示の色*/
}
/*=========================================
 INDEX h2 ヘダー＆ロゴ
=========================================*/
h2 {
		text-align: center;
		margin: 200px auto 60px auto;
		display: inline-block;
		font-family: "Reggae One", system-ui;
		font-size: 1.5em;
		font-style: normal;
		position: relative;
		padding-top: 2.5em;
}
h2.h2-oshirase ::before {
		content: "NEWS";
		font-family: "Rubik Mono One", monospace;
		font-weight: 200;
		font-size: 1.5em;
		font-style: normal;
		position: absolute;
		color: #FFF9F9;
		text-shadow: 0 0 5px #000B76;
		top: -0.5em;
		left: -0.5em;
}
h2.h2-kikan ::before {
		content: "OPEN PERIOD";
		font-family: "Rubik Mono One", monospace;
		font-weight: 200;
		font-size: 1.5em;
		line-height: 0.9em;
		font-style: normal;
		position: absolute;
		color: #FFF9F9;
		text-shadow: 0 0 5px #000B76;
		top: -1.4em;
		left: -1.2em;
}
h2.h2-kokosuki ::before {
		content: "FAVORITE";
		font-family: "Rubik Mono One", monospace;
		font-weight: 200;
		font-size: 1.5em;
		line-height: 0.9em;
		font-style: normal;
		position: absolute;
		color: #FFF9F9;
		text-shadow: 0 0 5px #000B76;
		top: -0.4em;
		left: 0;
}
h2.h2-access ::before {
		content: "ACCESS MAP";
		font-family: "Rubik Mono One", monospace;
		font-weight: 200;
		font-size: 1.5em;
		line-height: 0.9em;
		font-style: normal;
		position: absolute;
		color: #FFF9F9;
		text-shadow: 0 0 5px #000B76;
		top: -1.4em;
		left: -1.2em;
}
h2 .main-icon img {
		position: absolute;
		left: 0.8em;
		top: 0.2em;
}
h2 .h2-kokosuki {
		position: relative;
}
h2 .main-icon-2 img {
		position: absolute;
		left: 4.2em;
		top: 0.2em;
}
p.open-date {
		font-size: 28px;
		line-height: 5em;
}
p.additional-text {
		display: inline-block;
		font-size: 14px;
		text-align: left;
		line-height: 2em;
		color: #000B76;
}
/*
=========================================
  Base Layout
=========================================
*/
/*container & block*/
main { /**/
		max-width: 1440px;
		width: 100vw;
		margin: 0 auto;
}
.top-wrapper img {
		width: 100%;
}
/*
=========================================
Grobal NAVI
=========================================*/
dl.nav-container {
		width: 100%;
		padding: 10px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		margin: 30px auto;
}
button.navbtn {
		background-color: #B7CCC7;
		border-radius: 5px;
		width: 40%;
		height: 30px;
		position: relative;
		overflow: hidden;
		/*ボタンの形状*/
		text-decoration: none;
		display: inline-block;
		/*border: 2px solid #000B76;*/ /* ボーダーの色と太さ */
		padding: 10px 30px;
		text-align: center;
		outline: none;
		/*アニメーションの指定*/
		transition: ease .2s;
}
dd {
		position: relative;
		z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
		color: #000B76;
}
dd:hover {
		color: #fff;
}
.btn-hover:before {
		content: '';
		/*絶対配置で位置を指定*/
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		/*色や形状*/
		background: #000B76;
		width: 100%;
		height: 100%;
		/*アニメーション*/
		transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
		transform: scale(1, 0);
		transform-origin: center;
}
/*hoverした際の形状*/
.btn-hover:hover:before {
		transform: scale(1, 1);
}
button + button {
		margin: 10px;
}
button:nth-child(1) {
		margin-top: 10px;
		margin-left: 10px;
		margin-bottom: 10px;
}
@media screen and (min-width:700px) {
		dl.nav-container {
				display: flex;
				flex-wrap: nowrap;
				justify-content: space-around;
		}
		button.navbtn {
				width: 30%;
				height: 55px;
				margin-top: 5px;
				border-radius: 5px;
		}
}
dd {
		font-size: 13px;
}
@media screen and (min-width:960px) {
		dl.nav-container {
				display: flex;
				justify-content: space-around;
				width: 100%;
				max-width: 1440px;
		}
		button.navbtn {
				width: 15%;
				height: 55px;
				margin-top: 5px;
				border-radius: 5px;
		}
		dd {
				font-size: 16px;
		}
}
/*=========================================
  TOP MESSAGE
=========================================*/
p.top-msg {
		display: block;
		font-family: "Reggae One", system-ui;
		font-style: normal;
		font-size: 0.7em;
		width: 70%;
		background-color: rgba(183, 204, 199, 0.3);
		line-height: 2em;
		height: auto;
		margin: 100px auto 0;
		padding: 10px 30px;
		text-align: center;
		position: relative;
		border-radius: 5px;
}
@media screen and (min-width:645px) {
		p.top-msg {
				font-size: 0.8em;
				width: 70%;
				background-color: rgba(183, 204, 199, 0.3);
				line-height: 2.5em;
				height: auto;
		}
}
@media screen and (min-width:910px) {
		p.top-msg {
				font-size: 1em;
				margin: auto;
				width: 60%;
				margin-top: 100px;
				heght: auto;
		}
}
p.top-msg::after {
		content: "";
		background: url("img/giffycanvas.gif") no-repeat;
		display: block;
		width: 150px;
		height: 150px;
		background-size: contain;
		position: absolute;
		top: 100px;
		right: -90px;
}
p.top-msg::before {
		content: "";
		background: url("img/giffycanvas-tori.gif") no-repeat;
		display: block;
		width: 130px;
		height: 130px;
		background-size: contain;
		position: absolute;
		left: -70px;
		top: -30px;
}
/*=========================================
お知らせsection
=========================================*/
.news-list {
		list-style: none outside;
		padding: 0;
		width: 60%;
		margin: 0 auto;
}
.news-list .item a {
		display: flex;
		flex-wrap: wrap;
		flex-wrap: nowrap;
		text-decoration: none;
		color: #333;
		border-bottom: 2px solid #CCC;
		padding: 30px 30px;
}
.news-list .item:first-child a {
		border-top: 2px solid #CCC;
}
.news-list .item .date {
		margin: 0;
		min-width: 80px;
		font-size: 0.7em;
		font-weight: bold;
		color: #000B76;
		padding: 0 20px 0 0;
}
@media screen and (min-width:645px) {
		.news-list .item .date {
				margin: 0;
				min-width: 120px;
				font-size: 1em;
				font-weight: bold;
				color: #000B76;
				padding: 0 20px 0 0;
		}
}
.news-list .item .title {
		margin: 0;
		width: 80%;
		text-align: left;
		font-size: 0.7em;
}
@media screen and (min-width:645px) {
		.news-list .item .title {
				margin: 0;
				width: 80%;
				text-align: left;
				font-size: 1em;
		}
		.news-list .item a:hover .title {
				color: #000B76;
				font-weight: bold;
		}
}
@media screen and (max-width: 767px) {
		.news-list .item a {
				flex-wrap: wrap;
		}
		.news-list .item .date {
				min-width: 100px;
		}
		.news-list .item .title {
				margin-top: 20px;
		}
}
/*=========================================
  営業期間
=========================================*/
p.open-date {
		display: block;
		font-size: 1em;
		font-weight: bold;
		width: 70%;
		background-color: rgba(183, 204, 199, 0.3);
		line-height: 1.5em;
		height: auto;
		margin: 50px auto;
		padding: 20px 30px;
		text-align: center;
		position: relative;
		border-radius: 5px;
}
@media screen and (min-width:630px) {
		p.open-date {
				font-size: 20px;
				;
				width: 70%;
				background-color: rgba(183, 204, 199, 0.3);
				line-height: 2.5em;
				height: auto;
		}
}
@media screen and (min-width:960px) {
		p.open-date {
				font-size: 1em;
				margin: auto;
				width: 60%;
				margin-top: 100px;
				heght: auto;
		}
}
p.additional-text {
		width: 70%;
		text-align: left;
		margin-top: 0;
		padding: 0 50px;
}
@media screen and (min-width:960px) {
		p.additional-text {
				width: 60%;
				text-align: left;
				padding-left: 50px;
		}
}
/*=========================================
  ここが好き
=========================================*/
div.kokosuki-container {
		width: 100%;
		display: flex;
		align-items: center;
		background-color: rgba(183, 204, 199, 0.3);
		justify-content: center;
		padding: 20px;
		border-radius: 5px;
}
ul .kabephoto-group {
		wiidth: 100%;
		min-width: 350px;
		display: flex;
		justify-content: center;
}
@media screen and (min-width:660px) {
		.kabephoto-group {
				max-width: 1400px;
				display: flex;
				flex-wrap: nowrap;
				justify-content: space-around;
		}
}
li.kabe-photo img {
		max-width: 100%; /*画像はみ出し禁止*/
		box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3)
}
li.kabe-photo {
		width: 100%;
		display: block;
		position: relative; /* 配置(ここを基準に)*/
		cursor: pointer;
}
@media screen and (min-width:660px) {
		li.kabe-photo {
				width: 400px;
				display: block;
				position: relative; /* 配置(ここを基準に)*/
		}
}
div .masktape {
		background-image: repeating-linear-gradient(-40deg, #B7CCC7 0, #B7CCC7 3px, #fafafa 3px, #fafafa 6px); /*ストライプ*/
		border-left: 3px dotted rgba(0, 0, 0, .1); /* ギザギザ左*/
		border-right: 3px dotted rgba(0, 0, 0, .1); /* ギザギザ右*/
		/*transform: rotate(-15deg);*/ /*テープの傾き*/
		font-size: 1em; /*タイトル文字の大きさ*/
		color: #ccc;
		text-shadow: -2px -2px 0 #aaa, 2px 2px 0 #fff;
		font-family: "Kanit", sans-serif;
		font-weight: 700;
		font-style: normal;
		padding: 10px 10px; /*タイトルの余白*/
		line-height: 1.2; /*タイトルの行の高さ*/
		position: absolute; /*配置(ここを動かす)*/
}
/*=========================================
  MAP　アクセス
=========================================*/
div.access-route{
	display:block;
	width:30em;
	text-align: left;
	margin: 0 auto;
}

div.access-route p {
	font-size: 0.8em;
	line-height: 1.8em;
}

div.gmap-iframe {
		margin: 30px auto;
		aspect-ratio: 16 / 9;
		width: 100%;
		height: auto;
}
@media screen and (min-width:600px) {
		div.gmap-iframe {
				margin: 30px auto;
				aspect-ratio: 16 / 9;
				width: 600px;
				height: auto;
		}
}
/*=========================================
  FOOTER　山並み
=========================================*/
/*FOOTER*/
div.yamanami {
		position: relative;
}
div.footer-name {
		position: absolute;
		left: 10%;
		bottom: 50px;
		color: #fff;
		font-family: "Reggae One", system-ui;
}
div .footer-add {
		position: absolute;
		left: 10%;
		bottom: 20px;
		color: #fff;
}

@media screen and (max-width:750px) {
	div.footer-name {
		font-size: 14px;
		left:5%;
		bottom:20px;
	}
	div .footer-add {
		font-size: 12px;
		left:5%;
		bottom:5px;
	}}
div.yamanami::before {
		content: "";
		background: url("img/giffycanvas.gif") no-repeat;
		display: block;
		width: 100px;
		height: 100px;
		background-size: contain;
		position: absolute;
		top: 17%;
		left: 13%;
}
@media screen and (max-width:750px) {
div.yamanami::before {
		content: "";
		background: url("img/giffycanvas.gif") no-repeat;
		display: block;
		width: 50px;
		height: 50px;
		background-size: contain;
		position: absolute;
		top: 20%;
		left: 16%;
	}}

div.yamanami::after {
		content: "";
		background: url("img/giffycanvas-tori.gif") no-repeat;
		display: block;
		width: 50px;
		height: 50px;
		background-size: contain;
		position: absolute;
		top: 25%;
		right: 13%;
}

@media screen and (max-width:750px) {
	div.yamanami::after {
		content: "";
		background: url("img/giffycanvas-tori.gif") no-repeat;
		display: block;
		width: 30px;
		height: 30px;
		background-size: contain;
		position: absolute;
		top: 15%;
		right: 18%;
	}}
/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
input[type="checkbox"] {
		opacity: 0;
		visibility: hidden;
		position: absolute;
}
.hamburger {
		width: 40px;
		height: 40px;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
		position: absolute;
		display: block;
		border-radius: 20px;
		content: "";
		width: 100%;
		height: 3px;
		background-color: #111;
		transition: all 0.5s;
}
.hamburger span::before {
		top: -10px;
}
.hamburger span::after {
		bottom: -10px;
}
input[type="checkbox"]:checked + .hamburger span {
		background-color: transparent;
}
input[type="checkbox"]:checked + .hamburger span::before {
		top: 0;
		transform: rotate(45deg);
}
input[type="checkbox"]:checked + .hamburger span::after {
		bottom: 0;
		transform: rotate(-45deg);
}
/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
		position: fixed;
		width: 100%;
		height: 90vh;
		top: 10vh;
		right: -120%;
		background-color: #0f5474;
		color: #fff;
		padding: 50px 0;
		transition: all 0.5s;
		z-index: 555;
}
@media screen and (min-width:830px) {
.nav {
		position: fixed;
		width: 15%;
		height: 90vh;
		top: 18.7vh;
		right: -120%;
		background-color: #0f5474;
		color: #fff;
		padding: 50px 0;
		transition: all 0.5s;
		z-index: 999;
	}}
.nav__item a {
		display: block;
		font-size: 20px;
		padding: 20px 0 20px 50px;
		text-transform: uppercase;
}
.nav__item a:hover {
		color: #0f5474;
		background-color: #fff;
}
input[type="checkbox"]:checked ~ .nav {
		right: 0;
}
/* ===============================================
TOPに戻るボタン
=============================================== */
/*リンクの形状*/
#page-top a {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #B7CCC7;
		border-radius: 5px;
		width: 60px;
		height: 60px;
		color: #000B76;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		font-size: 0.7rem;
		transition: all 0.3s;
}
#page-top a:hover {
		background: #777;
		color: #fff;
}
/*リンクを右下に固定*/
#page-top {
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 2;
		/*はじめは非表示*/
		opacity: 0;
		transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
		animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
		from {
				opacity: 0;
				transform: translateY(100px);
		}
		to {
				opacity: 1;
				transform: translateY(0);
		}
}
/*　下に下がる動き　*/
#page-top.DownMove {
		animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
		from {
				opacity: 1;
				transform: translateY(0);
		}
		to {
				opacity: 1;
				transform: translateY(100px);
		}
}
/*=========================================
  下層ページ共通　
=========================================*/
/*トップタイトル*/
.h3-container {
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(183, 204, 199, 0.3);
		width: 100%;
		min-width: 300px;
		height: 150px;
		border-radius: 5px;
}
h3 {
		font-family: "Reggae One", system-ui;
		display: inline-block;
		font-style: normal;
		font-size: 1em;
		line-height: 80px;
		text-align: center;
		position: relative;
}
@media screen and (min-width:910px) {
		h3 {
				font-size: 1.2em;
		}
}
h3::before {
		content: "";
		display: block;
		background-image: url("img/tori-leaf.svg");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		width: 50px;
		height: 50px;
		left: -80px;
		position: absolute;
}
h3::after {
		content: "";
		display: block;
		background-image: url("img/usa-leaf.svg");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		width: 65px;
		height: 65px;
		bottom: 10px;
		right: -100px;
		position: absolute;
}
/*=========================================
ここが好き下層　
=========================================*/
#kokosuki .kokosuki-container {
		background-color: #fff;
		margin: auto;
		width: 100%;
		max-width: 900px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
}
#kokosuki .kokosuki-container img {
		width: 400px;
		height: 400px;
}
#kokosuki p {
		font-family: "setofont-sp", sans-serif;
		font-weight: 300;
		font-style: normal;
		line-height: 1.6em;
}
.square, .text-square {
		width: 400px;
		height: 400px;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 5%;
}
h4 {
		text-align: center;
		display: inline-block;
		font-family: "Reggae One", system-ui;
		font-size: 1.5em;
		font-style: normal;
		position: relative;
		margin: 70px auto;
}
h4::before {
		font-family: "Rubik Mono One", monospace;
		font-weight: 200;
		font-size: 1.3em;
		font-style: normal;
		position: absolute;
		color: #FFF9F9;
		text-shadow: 0 0 5px #000B76;
		top: -2.5em;
}
h4.oishi::before {
		content: "TASTY MEAL";
}
h4.view::before {
		content: "BEAUTIFUL VIEW";
		left: -2em;
}
h4.sturb::before {
		content: "CHILLING";
		top: -1.5em;
		left: 1em;
}
/*=========================================
宿泊予約下層
=========================================*/
div.read-text {
	
		margin: 50px auto 80px auto;
		display: flex;
		flex-direction: column;
		justify-content: left;
		align-items: center;
		text-align: left;
		padding: calc(21em * (1.41421356237 - 1) / 2);
		
		width: 60%;
	   font-family: "setofont-sp", sans-serif;
		font-weight: 300;
		font-style: normal;
		line-height: 1.6em;
		font-size: 1.1em;
		border-radius: 100px;
		background: rgba(183, 204, 199, 0.3);
}

.read-text p .text-title{
	font-weight: bold;
	text-align: center;
}

div.read-text .route li{
	font-size:0.5em;
}
table {
		width: 50vw;
		margin: 0 auto;
		border: 2px solid #B7CCC7;
}
tr, th, td {
		border: 2px solid #B7CCC7;
		color: #000B76;
		height: 3em;
		text-align: center;
		vertical-align: middle;
}
th {
		background-color: rgba(183, 204, 199, 0.3);
	width:30vh;
	font-size:14px;
}
h4.read::before {
		content: "REMINDER";
		top: -1em;
		left: 0.8em;
}
h4.form::before {
		content: "RESERVATION FORM";
		left: -2em;
}
p.submit {
		margin: 20px auto;
		font-weight: 500;
		color: #000B76;
		align-content: center;
		border-radius: 5px;
		width: 5em;
		height: 2em;
		background-color: #B7CCC7;
}