@charset "utf-8";
@import url('https://www.nta.co.jp/akafu/east/common/css/common.css');
/*Noto Sans（ゴシック）　と　Noto Serif(明朝)　*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500&family=Noto+Serif+JP:wght@400;700&display=swap');
/*fontawesome*/
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');

/* CSS Document */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

#wrapper {
	width: 100%;
	margin: 0 auto 10px;
	padding: 0 0 50px;
	font-size: 14px;
	line-height: 1.6;
	font-family: 'Noto Serif JP', serif;
	overflow: hidden;
}

#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 img {
	vertical-align: bottom;
}

#wrapper h2,
#wrapper h3,
#wrapper h4 {
	font-weight: bold;
}

@media screen and (min-width: 760px) {
	.pc_none {
		display: none;
	}
}

@media screen and (max-width: 759.9px) {
	.sp_none {
		display: none;
	}
}

.marker {
	background: linear-gradient(transparent 70%, rgba(255, 210, 44, 0.6) 70%);
	font-weight: bold;
	padding-bottom: 0.1em;
}

.slash {
	width: fit-content;
	margin: 0 auto 20px;
	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;
	font-size: 120%;
}

@media screen and (max-width: 759.9px) {
	.slash {
		padding: 0 12px;
		background-size: 8px;
		font-size: 110%;
	}
}

p.credit {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 10px 2px;
	font-size: 12px;
	background: rgba(0, 0, 0, 0.4);
	color: #FFFFFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
	width: fit-content;
	margin: 5px 5px 5px auto;
	border-radius: 15px;
}

.disnon {
	display: none;
}

/*--------予約ボタン-------------*/
.yoyaku {
	margin-bottom: 40px;
}

.yoyaku ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media screen and (max-width: 759.9px) {
	.yoyaku ul {
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
}

a.godetail {
	background: #e47368;
	border-radius: 3px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #FFF;
	transition: 0.2s ease-in-out;
	text-decoration: none;
	text-align: center;
	font-size: 16px;
	line-height: 1.4;
	border: solid 2px;
	font-family: 'Noto Sans JP', sans-serif;
}

a.godetail:hover {
	opacity: 0.8;
	background: #FFF;
	color: #e47368;
	border: solid 3px #e47368;
}

@media screen and (max-width: 759.9px) {
	a.godetail {
		font-size: 14px;
	}

	.yoyaku {
		margin-bottom: 30px;
	}
}


/*--------.page_roof-------------*/
.page_roof {
	width: 100%;
	height: 600px;
	position: relative;
}

.page_roof ul {
	width: 100%;
	height: 100%;
	display: flex;
}

.page_roof ul li {
	width: 50%;
	height: 100%;
}

.page_roof ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page_roof .inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.page_roof h2 {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 2s;
}

.page_roof h2 img {
	width: 100%;
	height: 90%;
	object-fit: contain;
}

@media screen and (max-width: 759.9px) {
	.page_roof {
		height: 50vh;
	}

	.page_roof ul {
		margin-bottom: 20px;
		flex-direction: column-reverse;
	}

	.page_roof ul li {
		width: 100%;
		height: 50%;
	}

	.page_roof h2 {}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*-------------fix--------------*/
.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 20;
}

/*-------------ナビ--------------*/
#pageNav {
	background: #e62310;
	width: 100%;
	z-index: 20;
	padding: 0;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
	margin-bottom: 2px;
}

#pageNav ul a,
#pageNav ul a:hover {
	color: #FFFFFF !important;
	text-decoration: none !important;
}

#pageNav ul {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	font-family: 'Noto Sans JP', sans-serif;
}

#pageNav ul a {
	flex-grow: 1;
	height: 80px;
	background: url("../images/menu_line.svg") no-repeat center right;
	background-size: 1px;
}

#pageNav ul a:last-child {
	background: none;
}

#pageNav ul a li {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 120%;
}

#pageNav ul a:hover {
	opacity: 0.75;
}

@media screen and (max-width: 759.9px) {
	#pageNav ul a {
		height: 60px;
		font-size: 11px;
		text-align: center;
		line-height: 1.4;
	}
}

/*-------------トップリード--------------*/
.toplead .inner {
	width: 90%;
	max-width: 950px;
	margin: 0 auto;
	padding: 30px 0;
	text-align: center;
}

.toplead p {
	font-size: 140%;
}

@media screen and (max-width: 759.9px) {
	.toplead .inner {
		padding: 20px 0;
	}

	.toplead p {
		font-size: 120%;
	}
}

/*-------------ページコンテンツ   --------------*/
.pageContent {
	width: 100%;
	padding-top: 50px;
}

.pageContent .inner {
	width: 95%;
	max-width: 950px;
	margin: 0 auto;
	position: relative;
}

.pageContent .ind1 {
	text-indent: -1em;
	margin-left: 1em;
	font-size: 90%;
}

/*-------------タイトル-------------*/
#plan .title_unit {
	margin-bottom: 50px;
}

#plan .title_unit h2 {
	background: url("../images/ribbon.png")repeat-x center;
	background-size: auto 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	gap: 5px;
	width: fit-content;
	padding: 0 20px 10px 0;
	margin: 0 auto;
	font-size: 200%;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	color: #FFFFFF;
	z-index: 2;
}

#plan .title_unit h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: -60px;
	right: -60px;
	bottom: 0;
	background: url("../images/ribbon_left.png")no-repeat left center,
		url("../images/ribbon_right.png")no-repeat right center;
	background-size: auto 100%, auto 100%;
	z-index: -1;
}

.title_unit h2 img.icon {
	width: 100px;
	height: 100px;
	object-fit: contain;
	margin-bottom: 20px;
}

@media screen and (max-width: 759.9px) {
	#plan .title_unit h2 {
		height: 80px;
		padding: 0 15px 10px 15px;
		margin: 0 auto;
		font-size: 150%;
	}

	#plan .title_unit h2::before {
		content: "";
		position: absolute;
		top: 0;
		left: -40px;
		right: -40px;
		bottom: 0;
		background: url("../images/ribbon_left.png")no-repeat left center,
			url("../images/ribbon_right.png")no-repeat right center;
		background-size: auto 100%, auto 100%;
		z-index: -1;
	}

	.title_unit h2 img.icon {
		width: 70px;
		height: 70px;
		object-fit: contain;
		margin-bottom: 10px;
	}

}

/*-------------特集--------------*/
.special {
	margin: 0 0 80px 0;
	text-align: center;
	align-items: center;
}

.special img {
	width: 90%;
	margin: 0 0 40px;
	box-shadow: 8px 6px 10px rgb(237 219 219);
}

@media screen and (max-width: 759.9px) {
	.special {
		margin: 0 0 40px 0;
	}

	.special img {
		width: 100%;
		margin: 0 0 20px;
		box-shadow: 6px 4px 8px rgb(237 219 219);
	}
}


/*-------------キャンペーン--------------*/
#plan {
	position: relative;
	padding: 40px 0;
}

#plan .planlead {
	width: 80%;
	margin: 0 auto 30px;
}

#plan .planlead p {
	font-size: 140%;
	text-align: center;
}

#plan .photo {
	text-align: center;
	margin-bottom: 30px;
}

#plan .photo img {
	width: 80%;
	height: auto;
}

#ichioshi {
	border: 1px solid #f47da8;
	padding: 30px 20px 20px;
	margin-bottom: 80px;
}

#ichioshi h3 {
	text-align: center;
	font-size: 200%;
}


#ichioshi a.godetail {
	width: 30%;
	height: 60px;
	margin: 0 1%;
}

@media screen and (max-width: 759.9px) {
	#ichioshi h3 {
		font-size: 150%;
		margin-bottom: 20px;
	}

	#plan .planlead p {
		font-size: 120%;
	}

	#ichioshi a.godetail {
		width: 90%;
		height: 40px;
		margin-bottom: 5px;
	}
}

#recommend a.godetail {
	width: 100%;
	height: 40px;
	margin-bottom: 5px;
	border-radius: 12px;
}

@media screen and (max-width: 759.9px) {
	#recommend a.godetail {
		width: 100%;
		height: 40px;
		margin-bottom: 5px;
	}
}

#allplan a.godetail {
	width: 45%;
	height: 60px;
	margin: 0 1%;
}

@media screen and (max-width: 759.9px) {
	#allplan a.godetail {
		width: 90%;
		height: 60px;
		margin: 0 auto 8px;
	}
}

/*-----その他おすすめプラン　スマホのみswiper---------------*/
@media screen and (min-width: 760px) {

	.otherplans_wrapper,
	.swiper-container {
		width: 100%;
	}

	.otherplans_wrapper .swiper-wrapper {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: center;
	}

	.otherplans_wrapper .swiper-wrapper .swiper-slide {
		width: 29%;
		max-width: 280px;
		margin: 0 2% 50px;
	}

	.otherplans_wrapper .swiper-button-prev.otherplans,
	.otherplans_wrapper .swiper-button-next.otherplans {
		display: none;
	}

	.otherplans_wrapper .swiper-pagination.otherplans {
		display: none;
	}

	.otherplans_wrapper .swiper-wrapper .swiper-slide dl {
		width: 100%;
	}

	.otherplans_wrapper .swiper-wrapper dl dt {
		width: 100%;
		box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
		margin-bottom: 10px;
	}

	.otherplans_wrapper .swiper-wrapper dl dt img {
		width: 100%;
	}

	.otherplans_wrapper .swiper-wrapper dl dd {
		width: 100%;
	}
}

@media screen and (max-width: 759.9px) {
	.otherplans_wrapper {
		width: 100%;
		margin: 0 auto 30px;
		position: relative;
	}

	.otherplans_wrapper .swiper-container.otherplans {
		width: 90%;
		margin: 0 auto;
		padding-bottom: 30px;
	}

	.otherplans_wrapper .swiper-container.otherplans .swiper-slide dl {
		width: 100%;
	}

	.otherplans_wrapper .swiper-container.otherplans .swiper-wrapper dl dt {
		width: 100%;
		box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
		margin-bottom: 10px;
	}

	.otherplans_wrapper .swiper-container.otherplans .swiper-wrapper dl dt img {
		width: 100%;
	}

	.otherplans_wrapper .swiper-container.otherplans .swiper-wrapper dl dd {
		width: 100%;
	}

	.otherplans_wrapper .swiper-pagination.otherplans {
		bottom: 5px;
	}

	.swiper-pagination.otherplans .swiper-pagination-bullet-active {
		background: #079FE2;
	}

	.otherplans_wrapper .swiper-button-prev.otherplans::after,
	.otherplans_wrapper .swiper-button-next.otherplans::after {
		display: none;
	}

	.otherplans_wrapper .swiper-button-prev.otherplans,
	.otherplans_wrapper .swiper-button-next.otherplans {
		font-size: 20px;
		line-height: 1;
		cursor: pointer;
		color: #FFFFFF;
		z-index: 20;
		background: #e62310;
		width: 30px;
		height: 30px;
		border-radius: 15px;
	}

	.otherplans_wrapper .swiper-button-prev.otherplans {
		left: -5px;
	}

	.otherplans_wrapper .swiper-button-next.otherplans {
		right: -5px;
	}
}

/*-----おすすめスポット---------------*/
#spot {
	background: #F1EFEF;
	padding: 50px 0;
}

#spot .title_unit h2 {
	width: 75%;
	max-width: 500px;
	margin: 0 auto;
	font-size: 200%;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
}

#spot .title_unit h2 img {
	width: 100%;
	height: auto;
}

#spot h3 {
	width: 30%;
	max-width: 150px;
	margin: 0 auto;
}

#spot h3 img {
	width: 100%;
	height: auto;
}

#spot .inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

#spot .title_unit {
	text-align: center;
	margin-bottom: 40px;
}

#spot .title_unit h2 {
	font-size: 300%;
	text-decoration: underline;
	text-underline-offset: 10px;
}

#spot h3 {
	font-size: 200%;
	text-align: center;
	margin-bottom: 20px;
}

@media screen and (max-width: 759.9px) {}

/*-----スポットスライダー-----------------*/
.spot_wrapper {
	width: 100%;
	position: relative;
}

.swiper-container.spot {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 30px;
}

.swiper-container.spot .swiper-slide {
	border-width: 3px;
	border-style: solid;
	padding: 20px 40px;
	height: auto;
	background: rgba(255, 255, 255, 0.2);
}

#aizu .swiper-slide {
	border-color: rgba(66, 147, 244, 1.00);
}

#nakadori .swiper-slide {
	border-color: rgba(230, 141, 16, 1.00);
}

#hamadori .swiper-slide {
	border-color: rgba(147, 195, 32, 1.00);
}

.swiper-container.spot .swiper-slide h4 {
	font-size: 200%;
	text-align: center;
	padding: 10px;
	margin-bottom: 20px;
}

#aizu .swiper-slide h4 {
	color: rgba(66, 147, 244, 1.00);
	background: rgba(66, 147, 244, 0.2);
}

#nakadori .swiper-slide h4 {
	color: rgba(230, 141, 16, 1.00);
	background: rgba(230, 141, 16, 0.2);
}

#hamadori .swiper-slide h4 {
	color: rgba(147, 195, 32, 1.00);
	background: rgba(147, 195, 32, 0.2);
}

.swiper-container.spot .swiper-slide .photo {
	position: relative;
}

.swiper-container.spot .swiper-slide .photo img {
	width: 100%;
}

.swiper-container.spot .swiper-slide .comment {
	padding: 10px;
}

.swiper-container.spot .swiper-slide .comment p {
	font-size: 140%;
}

.swiper-button-prev.spot::after,
.swiper-button-next.spot::after {
	display: none;
}

.swiper-button-prev.spot,
.swiper-button-next.spot {
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	color: #FFFFFF;
	z-index: 20;
	width: 60px;
	height: 60px;
	border-radius: 30px;
}

#aizu .swiper-button-prev.spot,
#aizu .swiper-button-next.spot {
	background: rgba(66, 147, 244, 1.00);
}

#nakadori .swiper-button-prev.spot,
#nakadori .swiper-button-next.spot {
	background: rgba(230, 141, 16, 1.00);
}

#hamadori .swiper-button-prev.spot,
#hamadori .swiper-button-next.spot {
	background: rgba(147, 195, 32, 1.00);
}

.swiper-button-prev.spot {
	left: 0;
}

.swiper-button-next.spot {
	right: 0;
}

.swiper-pagination.spot {
	display: none;
}

@media screen and (max-width: 759.9px) {
	.swiper-container.spot {
		width: 100%;
		margin: 0 auto;
		padding-bottom: 30px;
	}

	.swiper-button-prev.spot,
	.swiper-button-next.spot {
		font-size: 20px;
		width: 30px;
		height: 30px;
		border-radius: 15px;
	}

	.swiper-container.spot .swiper-slide {
		border: 2px solid #969595;
		padding: 10px 10px;
	}

	.swiper-container.spot .swiper-slide h4 {
		font-size: 140%;
		padding: 5px;
	}

	.swiper-container.spot .swiper-slide .comment p {
		font-size: 100%;
	}

}

/*-------------グルメ--------------*/
#gourmet {
	padding: 50px 0;
}

#gourmet .title_unit {
	text-align: center;
	margin-bottom: 40px;
}

#gourmet .title_unit h2 {
	width: 50%;
	max-width: 300px;
	margin: 0 auto;
}

#gourmet .title_unit h2 img {
	width: 100%;
	height: auto;
}

#gourmet dl {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	background: #FFFFFF;
	border: 3px solid #e62310;
	border-bottom: none;
}

#gourmet dl:last-of-type {
	border: 3px solid #e62310;
	margin-bottom: 60px;
}

#gourmet dl:nth-child(even) {
	flex-direction: row-reverse;
}

#gourmet dl dt {
	width: 60%;
}

#gourmet dl dt img {
	width: 100%;
	height: auto;
}

#gourmet dl dd {
	width: 40%;
	padding: 20px;
}

#gourmet h3 {
	font-size: 200%;
	text-align: center;
	margin-bottom: 20px;
}

#gourmet p {
	font-size: 120%;
	margin-bottom: 20px;
}

@media screen and (max-width: 759.9px) {

	#gourmet dl,
	#gourmet dl:nth-child(even) {
		width: 90%;
		display: flex;
		flex-direction: column;
	}

	#gourmet dl dt {
		width: 100%;
	}

	#gourmet dl dd {
		width: 100%;
	}

	#gourmet h3 {
		font-size: 140%;
	}

	#gourmet p {
		font-size: 120%;
		text-align: left;
	}

}

.banner {
	margin-: 0 auto;
}

.banner a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto 30px;
	height: 100px;
	font-size: 200%;
	font-weight: bold;
	border: 2px solid #A09F9F;
	color: #333;
	text-shadow: 2px 2px 4px #FFFFFF, 2px 2px 4px #FFFFFF, 2px 2px 4px #FFFFFF, 2px 2px 4px #FFFFFF, -2px -2px 4px #FFFFFF, -2px -2px 4px #FFFFFF, -2px -2px 4px #FFFFFF, -2px -2px 4px #FFFFFF;
}

.banner a:first-child {
	background: url("../images/bg_banner1.png")no-repeat center right;
	background-size: auto 100%;
}

.banner a:last-child {
	background: url("../images/bg_banner2.png")no-repeat center left;
	background-size: auto 100%;
}

.banner a:first-child:hover {
	background-color: #f9ebea;
}

.banner a:last-child:hover {
	background-color: #E5FBC0;
}

/*-------------検索-------------*/
#search {
	background: #F1EFEF;
	padding: 50px 0;
}

#search .inner {
	width: 95%;
	max-width: 1100px;
	margin: 0 auto;
}

#search .title_unit {
	text-align: center;
	margin-bottom: 40px;
}

#search .title_unit h2 {
	font-size: 200%;
}

#search .img {
	width: 90%;
	text-align: center;
	margin: 0 auto;
}

#search .img img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 759.9px) {}