@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..900&display=swap');
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');

/* CSS Document */
html {
	scroll-behavior: smooth;
}

#wrapper {
	width: 100%;
	margin: 0 auto 10px;
	padding: 0 0 50px;
	font-size: 14px;
	line-height: 1.6;
	font-family: 'Noto Sans JP', sans-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 25px;
	background: url("../images/slash_left.svg") no-repeat center left, url("../images/slash_right.svg") no-repeat center right;
	background-size: 20px;
	font-size: 120%;
	color: #ed5603;
}

@media screen and (max-width: 759.9px) {
	.slash {
		padding: 0 20px;
		background-size: 15px;
		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;
}

/*--------予約ボタン-------------*/
.cta_area {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

a.godetail {
	background-image: linear-gradient(150deg, rgb(3, 157, 149), rgb(14, 189, 55));
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	transition: 0.2s ease-in-out;
	text-decoration: none;
	text-align: center;
	font-size: 150%;
	font-weight: bold;
	line-height: 1.4;
	border: solid 2px;
	font-family: 'Noto Sans JP', sans-serif;
	width: 300px;
	height: 60px;
	border-radius: 15px;
	overflow: hidden;
}

a.godetail:hover {
	opacity: 0.8;
	background-image: linear-gradient(150deg, rgb(0, 245, 216), rgb(91, 255, 129));
	color: #065e42;
	border: solid 2px #065e42;
}

a.godetail::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-20deg);
	animation: shine 3s infinite;
}

@keyframes shine {
	0% {
		left: -100%;
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	20% {
		left: 200%;
		opacity: 0;
	}

	100% {
		left: 200%;
		opacity: 0;
	}
}

@media screen and (max-width: 759.9px) {
	a.godetail {
		font-size: 14px;
	}
}

/*--------.page_roof-------------*/
.page_roof {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.page_roof .inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: #FFFFFF;
}

.page_roof h2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	animation: fade2 3s ease-in-out 1s 1 normal forwards;
}

.page_roof h2 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.photo_unit {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.photo_unit>img {
	width: calc(100% / 3);
	height: auto;
}

/* animate: [ 1. 名前 ] [ 2. 時間 ] [ 3. イージング ] [ 4. 待ち ] [ 5. 繰り返し ] [ 6. 逆再生 ] [ 7. 終了後 ]; */

.photo_unit img:first-child {
	animation: fade 2s ease-in-out 0.8s 1 normal forwards;
}

.photo_unit img:nth-child(2) {
	animation: fade 2s ease-in-out 0.6s 1 normal forwards;
}

.photo_unit img:nth-child(3) {
	animation: fade 2s ease-in-out 1.2s 1 normal forwards;
}

.photo_unit img:nth-child(4) {
	animation: fade 2s ease-in-out 1.4s 1 normal forwards;
}

.photo_unit img:nth-child(5) {
	animation: fade 2s ease-in-out 1.6s 1 normal forwards;
}

.photo_unit img:nth-child(6) {
	animation: fade 2s ease-in-out 0.4s 1 normal forwards;
}

@keyframes fade {
	0% {
		opacity: 0;
		z-index: -1;
	}

	100% {
		opacity: 1;
		z-index: 20;
	}
}

@keyframes fade2 {
	0% {
		opacity: 0;
		z-index: -1;
	}

	60% {
		opacity: 0;
		z-index: 20;
	}

	100% {
		opacity: 1;
		z-index: 20;
	}
}

/*--------.toplead-------------*/
.toplead p {
	text-align: center;
}

.toplead p {
	font-size: 160%;
	margin-bottom: 20px;

}

.toplead h2 {
	font-size: 200%;
	text-align: center;
	margin-bottom: 30px;
	line-height: 2;
}

@media screen and (max-width: 759.9px) {
	.toplead p {
		font-size: 140%;
		margin-bottom: 20px;
	}

	.toplead h2 {
		font-size: 150%;
		margin-bottom: 30px;
	}
}

/*------------モデルコース-------------*/
nav.tabNav {
	width: 98%;
	margin: 0 auto;
}

nav.tabNav ul {
	width: 100%;
	margin: 0 auto;
	max-width: 950px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	z-index: 10;
}

nav.tabNav ul li {
	width: 49%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	position: relative;
	margin-bottom: -4px;
	z-index: 1;
}

nav.tabNav ul li:first-child {
	border: 4px solid rgba(96, 192, 189, 1);
	border-bottom: 4px solid skyblue;
}

nav.tabNav ul li:nth-child(2) {
	border: 4px solid skyblue;
	border-bottom: 4px solid rgba(96, 192, 189, 1);
}

nav.tabNav ul li.selected {
	height: 80px;
	border-bottom: 4px solid #FFFFFF;
}

nav.tabNav ul li.no-active {
	background: #CCCCCC;
	pointer-events: none;
}

nav.tabNav ul li p {
	font-size: 140%;
	line-height: 1.5;
	font-weight: bold;
}

@media screen and (max-width: 759.9px) {
	nav.tabNav ul li {
		height: 50px;
	}

	nav.tabNav ul li.selected {
		height: 65px;
	}

	nav.tabNav ul li p {
		font-size: 100%;
	}
}

.tab_wrap {
	width: 100%;
	position: relative;
	/*z-index: -1;*/
	padding: 40px 0;
}

.tab_wrap .inner {
	width: 95%;
	max-width: 950px;
	margin: 0 auto;
}

.tab_wrap h2 {
	font-size: 180%;
	width: fit-content;
	margin: 0 auto 20px;
	background: rgba(96, 192, 189, 0.8);
	padding: 0 30px;
	border-radius: 30px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	color: #FFFFFF;
}

@media screen and (max-width: 759.9px) {
	.tab_wrap h2 {
		font-size: 140%;
	}
}

.tab_wrap .modelcourse {
	padding: 40px 0;
	border-bottom: 3px dotted rgba(96, 192, 189, 0.8);
}

.tab_wrap .modelcourse:last-child {
	padding: 40px 0;
	border-bottom: none;
}

.tab_wrap .modelcourse h3.title {
	font-size: 160%;
	width: fit-content;
	margin: 0 auto 20px;
	padding: 0 30px 5px;
	border-bottom: 3px solid rgba(96, 192, 189, 0.4);
}

.tab_wrap .modelcourse h3.pickup {
	font-size: 160%;
	width: fit-content;
	margin: 0 auto 0 20px;
	padding: 0 30px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(96, 192, 189, 0.8);
	transform: rotate(-10deg);
	position: relative;
	z-index: 10px;
	background: #FFFFFF;
}

@media screen and (max-width: 759.9px) {
	.tab_wrap .modelcourse h3.title {
		font-size: 140%;
	}

	.tab_wrap .modelcourse h3.pickup {
		font-size: 120%;
	}
}

.tab_wrap .pickup_unit {
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

.tab_wrap .pickup_unit dl {
	width: 32%;
	border: 1px solid #CCC;
	padding: 5px;
	background: #FFFFFF;
}

.tab_wrap .pickup_unit dl dt {
	width: 100%;
	margin-bottom: 10px;
}

.tab_wrap .pickup_unit dl dt img {
	width: 100%;
}

.tab_wrap .pickup_unit dl dd h4 {
	text-align: center;
	font-size: 110%;
	margin-bottom: 10px;
}

.tab_wrap .pickup_unit dl dd p {
	text-align: left;
	font-size: 110%;
}

@media screen and (max-width: 759.9px) {
	.tab_wrap .pickup_unit {
		width: 95%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		gap: 2%;
	}

	.tab_wrap .pickup_unit dl {
		width: 100%;
		border: 1px solid #CCC;
		padding: 5px;
		background: #FFFFFF;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 5px;
	}

	.tab_wrap .pickup_unit dl:nth-child(even) {
		flex-direction: row-reverse;
	}

	.tab_wrap .pickup_unit dl dt {
		width: 60%;
		margin-bottom: 0;
	}

	.tab_wrap .pickup_unit dl dd {
		width: 40%;
	}

	.tab_wrap .pickup_unit dl dd h4 {
		text-align: center;
		font-size: 100%;
		margin-bottom: 0;
	}
}

#tab01_panel {
	border-top: 4px solid rgba(96, 192, 189, 1);
	border-bottom: 4px solid rgba(96, 192, 189, 1);
}

#tab02_panel {
	border-top: 4px solid skyblue;
	border-bottom: 4px solid skyblue;
}

/*------------チャート--------------*/
.pageContent .inner {
	width: 95%;
	max-width: 950px;
	margin: 0 auto;
	padding: 40px 0;
}

.pageContent h2 {
	font-size: 180%;
	width: fit-content;
	margin: 0 auto 20px;
	text-align: center;
}

@media screen and (max-width: 759.9px) {
	.pageContent h2 {
		font-size: 140%;
	}

}

/*------------チャート--------------*/
#flow {
	padding: 40px 0;
	background: rgba(23, 255, 202, 0.3);
}

#flow .flow_unit {
	width: 90%;
	max-width: 550px;
	margin: 0 auto 30px;
}

#flow .flow_unit img {
	width: 100%;
}

#flow .flow_unit dl {
	margin-bottom: 20px;
}

#flow .flow_unit dd {
	margin-bottom: 10px;
}

#flow .flow_unit dd p {
	margin-left: 1em;
}

#flow .flow_unit dd h3 {
	text-indent: -1.5em;
	margin-left: 1.5em;
}

/*------------アコーディオンパネル-------------*/

.modelcourse .open_btn {
	position: relative;
	cursor: pointer;
	padding: 20px;
	background: rgba(96, 192, 189, 0.6);
}

.modelcourse .open_btn::before,
.modelcourse .open_btn::after {
	content: "";
	position: absolute;
	bottom: 25px;
	right: 30px;
	width: 4px;
	height: 15px;
	border-radius: 10px;
	background-color: #FFFFFF;
	transform-origin: 50% calc(100% - 2px);
}

.modelcourse .open_btn::before {
	transform: rotate(45deg);
}

.modelcourse .open_btn::after {
	transform: rotate(-45deg);
}

.modelcourse .panel {
	position: relative;
	padding: 30px 0 40px;
	display: none;
	background: #ECF8F5;
}

.modelcourse .open_btn.close::before {
	transform: rotate(135deg);
	bottom: 40px;
	transition: .3s;
}

.modelcourse .open_btn.close::after {
	transform: rotate(-135deg);
	bottom: 40px;
	transition: .3s;
}

@media screen and (max-width: 759.9px) {
	.modelcourse {
		font-size: 100%;
	}

	.modelcourse .open_btn {
		background: url("../images/icon_q.png") no-repeat top left 5px #c8e3fc;
		background-size: 30px auto;
		padding: 15px 40px 10px 45px;
	}

	.modelcourse .open_btn::before,
	.modelcourse .open_btn::after {
		bottom: 15px;
		right: 20px;
	}

	.modelcourse .open_btn.close::before,
	.modelcourse .open_btn.close::after {
		bottom: 25px;
	}

	.modelcourse .panel {
		padding: 20px 0 30px;
	}
}

/*-----------ポイント--------------*/
#point {}

#point dl {
	width: 80%;
	display: flex;
	align-items: center;
	margin: 0 auto 20px;
	background: rgba(96, 192, 189, 0.2);
	padding: 10px;
	border-radius: 10px;
}

#point dl dt {
	width: 20%;
}

#point dl dt img {
	width: 100%;
}

#point dl dd {
	width: 80%;
	padding: 10px;
}

#point dl dd p {
	font-size: 120%;
}

@media screen and (max-width: 759.9px) {
	#point dl {
		width: 80%;
		display: block;
	}

	#point dl dt {
		width: 30%;
		margin: 0 auto 10px;
	}

	#point dl dd {
		width: 100%;
	}
}

/*----通常プラン ホテル一覧----*/
.hotel_unit {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1%;
	margin-bottom: 40px;
}

.hotel_unit .hotelbox {
	width: 32%;
	border: 1px solid #CCC;
	padding: 10px;
	background: #FFFFFF;
	margin-bottom: 20px;
}

.hotel_unit .hotelbox img {
	width: 100%;
}

.hotel_unit .hotelbox h4 {
	font-size: 120%;
	text-align: center;
	margin-bottom: 10px;
}

.hotel_unit .hotelbox h4.adjust {
	letter-spacing: -2px;
	font-size: 110%;
}

@media screen and (max-width: 759.9px) {
	.hotel_unit {
		gap: 10px;
		margin-top: 30px;
	}

	.hotel_unit .hotelbox {
		width: 90%;
		border: 1px solid #CCC;
		padding: 10px;
		margin: 0 auto 10px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.hotel_unit .hotelbox:nth-child(even) {
		flex-direction: row-reverse;
	}

	.hotel_unit .hotelbox h4 {
		font-size: 110%;
		text-align: center;
		margin-bottom: 0;
		width: 40%;
	}

	.hotel_unit .hotelbox img {
		width: 60%;
	}
}

/*------tripa----------*/
#tripa a,
#tripa a:hover {
	color: inherit;
	text-decoration: none !important;
}

#tripa a:hover dl {
	background: #FBFCD9;
}

#tripa dl {
	width: 95%;
	margin: 20px auto;
	border: 1px solid #CCC;
	padding: 10px;
	display: flex;
	font-family: 'Noto Serif JP', serif;
}

#tripa dl dt {
	width: 20%;
}

#tripa dl dt img {
	width: 100%;
}

#tripa dl dd {
	width: 80%;
	padding-left: 10px;
}

#tripa dl h3 {
	font-size: 120%;
	margin-bottom: 5px;
}

@media screen and (max-width: 759.9px) {
	#tripa dl {
		width: 100%;
		padding: 5px;
	}

	#tripa dl dt {
		width: 25%;
	}

	#tripa dl dd {
		width: 75%;
		padding-left: 10px;
	}

	#tripa dl h3 {
		font-size: 90%;
		margin-bottom: 5px;
		font-weight: bold;
	}

	#tripa dl p {
		font-size: 80%;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

}