@charset "utf-8";
@import url('https://www.nta.co.jp/akafu/east/common/css/common.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500&family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');
@import url('https://fonts.googleapis.com/css?family=Exo:400,700');


/* CSS Document */
html {
	scroll-behavior: smooth;
}

#wrapper {
	width: 100%;
	font-size: 16px;
	line-height: 1.8;
	font-family: 'Hiragino Maru Gothic ProN W4', 'Yu Gothic UI';
	overflow: hidden;
	background-color: #fbf2ca;
}

#wrapper * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#wrapper a {
	word-break: break-all;
}

#wrapper h2,
#wrapper h3,
#wrapper h4 {
	font-weight: bold;
}

/*#wrapper p {
	color: #333;
}

#wrapper li {
	color: #333;
}*/

@media screen and (min-width: 760px) {
	.pc_none {
		display: none;
	}
}

@media screen and (max-width: 759.9px) {
	.sp_none {
		display: none;
	}
}

.disnon {
	display: none;
}

.text_red {
	color: #E7180F;
}

.text_bold {
	font-weight: bold;
}

.text_normal {
	font-weight: normal;
}

.text_center {
	text-align: center;
}

.text_font_sans {
	font-family: 'Hiragino Maru Gothic ProN W4', 'Yu Gothic UI';
}

.attention {
	font-size: 90%;
	text-indent: -1.5em;
	margin-left: 1em;
}

.marker {
	background: linear-gradient(transparent 80%, #ffd22c 80%);
	font-weight: bold;
}

a.godetail {
	height: 60px;
	padding-bottom: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	background: no-repeat center bottom;
	background-color: #ffc66c;
	border-radius: 50px;
	background-size: 100%;
	color: #333;
	font-size: 120%;
	font-weight: bold;
}

a.godetail.gopamph {
	background-color: #ff6f00;
	color: #fff;
	margin: 10px;
}

a.godetail span {
	font-size: 120%;
	font-weight: bold;
}

a.godetail:hover {
	color: #333 !important;
	text-decoration: none !important;
	opacity: 0.8;
}

.bookquickly {
	color: #E7180F;
	font-weight: 600;
	/* text-decoration: underline; */
}

.slash span {
	display: inline-block;
	padding: 0 20px;
	background: url("../images/slash_left.svg") no-repeat center left, url("../images/slash_right.svg") no-repeat center right;
	background-size: 12px;
}

@media screen and (max-width: 759.9px) {
	a.godetail {
		height: 50px;
		font-size: 100%;
	}

	.slash span {
		padding: 0 18px;
		background: url("../images/slash_left.svg") no-repeat center left, url("../images/slash_right.svg") no-repeat center right;
		background-size: 12px;
	}
}

/*--------.page_roof-------------*/
.page_roof {
	width: 100%;
	height: 500px;
	background: url("../images/top_bg.jpg")no-repeat center;
	background-size: cover;
}

.page_roof .inner {
	width: 100%;
	max-width: 950px;
	height: 100%;
	margin: 0 auto;
}

.page_roof h2 {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;

}

.page_roof h2 img {
	width: auto;
	height: 95%;
	margin-top: 40px;
}

@media screen and (max-width: 759.9px) {
	.page_roof {
		/* background: url("../images/sp_topbg.jpg")no-repeat center; */
		background-size: cover;
		height: 30vh;
	}

	.page_roof h2 img {
		margin-top: 10px;
	}
}

/*-------------headナビ --------------*/
nav.areaNav {
	width: 98%;
	margin: 30px auto 0;
}

nav.areaNav ul {
	width: 100%;
	margin: 0 auto;
	max-width: 950px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

nav.areaNav ul li {
	width: 49.8%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	position: relative;
	border-radius: 20px 20px 0 0;
	font-size: 140%;
	color: #FFFFFF;
	line-height: 1.5;
}

nav.areaNav ul li.selected {
	height: 80px;
	border-radius: 20px 20px 0 0;
}

nav.areaNav ul li:first-child {
	background: #d5ac00;
}

nav.areaNav ul li:nth-child(2) {
	background: #d79511;
	margin: 0 5px;
}

nav.areaNav ul li:nth-child(2) {
	background: #f3b33a;
	margin: 0 5px;
}

nav.areaNav ul li:last-child {
	background: #d76600;
}

/* nav点滅 */
.blinking {
	-webkit-animation: blink 1.5s ease-in-out infinite alternate;
	-moz-animation: blink 1.5s ease-in-out infinite alternate;
	animation: blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@media screen and (max-width: 759.9px) {
	nav.areaNav ul li {
		height: 50px;
	}

	nav.areaNav ul li.selected {
		height: 65px;
	}

	nav.areaNav ul li p {
		font-size: 100%;
	}
}


/*-------------タブラップ--------------*/
.tab_wrap {
	width: 100%;
	background: #f7ecac;
}

/* #tab01 {
	background: #f7ecac;
}

#tab02 {
	background: #fff3a4;
} */


/*-------------ページコンテンツ   --------------*/
.pageContent {
	width: 100%;
	margin: 0;
	z-index: 1000;
	padding-bottom: 40px;
}

.pageContent .inner {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
}

.content_flex {
	display: flex;
}

.pamph {
	margin-right: 30px;
}

.info_recommend {
	background-color: #ffe278;
	padding: 15px 20px;
	border-radius: 15px;
	line-height: 150%;
}

.info_recommend h4 {
	color: #1B1BA7;
	font-size: 120%;
	margin-bottom: 10px;
}

.point {
	margin: 20px 5px 20px 20px;
}

.point_wrap h4 {
	background: linear-gradient(transparent 50%, #ffee00 10%);
	font-size: 160%;
	color: #555555;
	text-align: center;
	margin-top: 20px;
}

.point li {
	text-indent: -1.5em;
	font-weight: 600;
	font-size: 100%;
	line-height: 150%;
	margin: 10px 0;
}

.number {
	font-size: 120%;
	color: #FF9D00;
}

.reqest ul {
	margin-left: 1em;
	font-size: 110%;
	color: #333;
}

.reqest li {
	text-indent: -1.3em;
	line-height: 150%;
	margin: 5px 0;
}


@media screen and (max-width: 759.9px) {
	.pageContent .inner {
		padding: 30px 0;
	}

	.content_flex {
		display: block;
	}

	.pamph {
		margin: 0 0 20px 0;
	}

	.pamph img {
		width: 100%;
	}

	.point_wrap h4 {
		font-size: 130%;
	}
}

/*-------施設一覧-------------*/

.inn_unit {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0;
	align-items: flex-start;
}

.inn_list {
	display: flex;
	flex-wrap: wrap;
}

.inn_list li {
	width: 100%;
	display: flex;
	/*align-items: center; 親にこれを指定すると背景が縦方向に伸びない*/
	justify-content: center;
	position: relative;
	/*flex-grow: 1;　たぶん横方向に目いっぱい伸ばすとき*/
	/*vertical-align: middle;これは主にtableで使う*/
	/* 垂直方向に中央揃え */
}

.inn_list li p {
	margin: 0 1px 2px;
	background: #ffffff;
	text-align: center;
	font-size: 90%;
	padding: 5px;
	/*--- pを縦中央・横中央にする 3行----*/
	display: flex;
	align-items: center;
	justify-content: center;
}

.inn_unit .inn_list .midashi p {
	background: #ffdb58;
}

.addition {
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}


@media screen and (min-width: 760px) {
	.inn_list {
		margin: 20px 0.5%;
		width: 48%;
	}

	.inn_list li .inn_area {
		width: 45%;
	}

	.inn_list li .inn_name {
		width: 65%;
	}

	.addition {
		font-size: 120%;
		width: 50%;
	}
}

@media screen and (max-width: 759.9px) {
	#tour h3 {
		font-size: 130%;
	}

	#tour p {
		font-size: 100%;
	}

	#tour .calendar_unit .calendar {
		width: 100%;
		margin: 0 0 20px;
	}

	.inn_unit {
		display: block;
	}


	.inn_list {
		margin: 20px 0;
		width: 100%;
	}

	.inn_list li .inn_area {
		width: 90%;
	}

	.inn_list li .inn_name {
		width: 90%;
	}

}


/*--------予約--------------*/

.yoyaku_wrap {
	width: 100%;
}

.yoyaku_wrap h3 {
	font-size: 180%;
	color: #E5D55F;
	margin-bottom: 30px;
	text-align: center;
}

.yoyaku_wrap p.attention {
	font-size: 100%;
	display: flex;
	justify-content: center;
}

.yoyaku_unit {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
}

a.godetail {
	min-width: 280px;
	max-width: 320px;
	/* margin: 0 2% 20px; */
	margin: 10px;
}

.les p {
	margin: 0 auto;
	text-align: center;
}

@media screen and (max-width: 759.9px) {
	.yoyaku_wrap h3 {
		font-size: 120%;
	}

	.yoyaku_wrap p.attention {
		font-size: 90%;
	}
}

/* ----------- 背景水玉 ------------ */

.bg_circles {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	padding-left: 0px;
}

.bg_circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	animation: animate 15s linear infinite;
	bottom: -1050px;
}

.bg_circles li:nth-child(1) {
	left: 25%;
	width: 50px;
	height: 50px;
	animation-delay: 0s;
}

.bg_circles li:nth-child(2) {
	left: 1%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.bg_circles li:nth-child(3) {
	left: 90%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.bg_circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.bg_circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.bg_circles li:nth-child(6) {
	left: 75%;
	width: 70px;
	height: 70px;
	animation-delay: 3s;
}

.bg_circles li:nth-child(7) {
	left: 35%;
	width: 90px;
	height: 90px;
	animation-delay: 7s;
}

.bg_circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.bg_circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.bg_circles li:nth-child(10) {
	left: 85%;
	width: 90px;
	height: 90px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {

	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 150px;
		background-color: #ffffff;
	}

	100% {
		background-color: #ffffff;
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0.1;
		border-radius: 50%;
	}

}