@charset "utf-8";
/* CSS Document */
/*――――――――――――――――――――――――――――――――――――――――――――
/* FV Area
――――――――――――――――――――――――――――――――――――――――――――――*/
.fvArea {
	width: 100%;
	background-color: #CCC;
	background-image: url("../../images/top/img_top_fv-bgmap.png");
	background-repeat: no-repeat;
	background-position: top -20px right -20px;
	background-size: 1080px;
}
.fvArea .l-inner {
	width: 100%;
	max-width: 100%;
	padding: 0 clamp(1.875rem, -0.447rem + 4.83vw, 3.75rem) /*769-30/1390-60*/ ;
}
.fvArea .fvFlexBox {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: flex-start;
	max-width: 1160px;
	height: clamp(13.313rem, 4.644rem + 18.04vw, 20.313rem) /*769-213/1390-325*/ ;
	margin: 0 auto;
	color: #FFF;
	font-weight: 700;
	text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.7);
}
.fvArea .fvContBox__txt1 {
	margin-bottom: 0.2em;
	font-size: clamp(1.25rem, 0.476rem + 1.61vw, 1.875rem) /*769-20/1390-30*/ ;
}
.fvArea .fvContBox__txt2 {
	font-size: clamp(2.625rem, 0.922rem + 3.54vw, 4rem) /*769-42/1390-64*/ ;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.fvArea .l-inner {
		padding: 40px 20px;
	}
	.fvArea .fvFlexBox {
		height: auto;
	}
	.fvArea .fvContBox__txt1 {
		font-size: clamp(1rem, 0.559rem + 1.96vw, 1.5rem) /*360-16/768-24*/ ;
	}
	.fvArea .fvContBox__txt2 {
		line-height: 1.5;
		font-size: clamp(1.5rem, 0.507rem + 4.41vw, 2.625rem) /*360-24/768-42*/ ;
	}
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* Recommend List
――――――――――――――――――――――――――――――――――――――――――――――*/
.CountriesList.l-section {
	padding-bottom: 0;
}
.CountriesList.l-section:last-of-type {
	padding-bottom: 75px;
}
.CountriesList__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.CountriesList__card {
	position: relative;
	width: calc((100% - 40px) / 3);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease;
	border: 0;
	border-bottom: 4px solid #dddddd;
}
.CountriesList__card:hover {
	opacity: 0.8;
}
.CountriesList__card .card-link {
	position: absolute;
	inset: 0;
	z-index: 10;
	text-indent: -9999px;
	background: transparent;
	cursor: pointer;
}
.CountriesList__card .card-top {
	position: relative;
}
.CountriesList__card .card-top img {
	width: 100%;
}
.CountriesList__card .main-image {
	height: 240px;
	object-fit: cover;
}
.CountriesList__card .card-header {
	position: absolute;
	display: flex;
	align-items: center;
	width: 100%;
	height: 50px;
	padding: 10px;
	border: none;
	font-weight: bold;
	color: white;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
	top: 0;
	left: 0;
	font-size: 16px;
}
.CountriesList__card .card-header .flag {
	width: 40px;
	height: 28px;
	margin-right: 10px;
}
.CountriesList__card .card-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 5px;
	padding: 20px;
	color: white;
	font-weight: bold;
	line-height: 1;
	background: #007bff;
	border-radius: 0 0 8px 8px;
}
.CountriesList__card .card-bottom__price {
	font-size: 32px;
}
.CountriesList__card .card-bottom__price span {
	position: relative;
	font-size: 16px;
	margin-right: 14px;
}
.CountriesList__card .card-bottom__price span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 3px;
	right: -7px;
	width: 1px;
	height: 14px;
	background-color: #FFF;
	transform: rotate(30deg);
}
.CountriesList__card .card-bottom__link {
	position: relative;
	padding: 5px 20px 5px 10px;
	font-size: 14px;
	color: #108DF9;
	background: #FFF;
	border-radius: 50px;
}
.CountriesList__card .card-bottom__link::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	width: 5px;
	height: 10px;
	background-image: url("../../images/common/icon_arrow_blue.svg");
	background-repeat: no-repeat;
	background-size: 5px;
}
@media (max-width: 1100px) {
	.CountriesList__card .main-image {
		height: 200px;
	}
	.CountriesList__card .card-bottom {
		justify-content: center;
		flex-direction: column;
		align-items: center;
		padding: clamp(0.625rem, 0.074rem + 2.45vw, 1.25rem) /*360-10/768-20*/ ;
	}
}
@media (max-width: 768px) {
	.CountriesList.l-section:last-of-type {
		padding-bottom: 50px;
	}
	.CountriesList__card {
		width: calc((100% - 20px) / 2);
	}
	.CountriesList__card .card-bottom__price {
		font-size: clamp(1.5rem, 1.059rem + 1.96vw, 2rem) /*360-24/768-32*/ ;
	}
	.CountriesList__card .card-bottom__price span {
		font-size: clamp(0.875rem, 0.765rem + 0.49vw, 1rem) /*360-14/768-16*/ ;
	}
	.CountriesList__card .card-bottom__link {
		font-size: clamp(0.75rem, 0.64rem + 0.49vw, 0.875rem) /*360-12/768-14*/ ;
	}
}
@media (max-width: 600px) {
	.CountriesList__card .main-image {
		height: 140px;
	}
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* Countries List
――――――――――――――――――――――――――――――――――――――――――――――*/
.countriesList__tab {
	display: flex;
	border-radius: 25px;
	background-color: #FFFFFF;
	padding: 4px;
	border: 1px solid #D5D5D5;
}
.countriesList__tab .tab-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	border-radius: 25px;
	padding: 8px 10px;
	cursor: pointer;
	border: 1px solid #fff;
}
.countriesList__tab .tab-item::before {
	content: "";
	display: block;
	margin-right: 8px;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
}
.countriesList__tab .tab-item.area::before {
	background-image: url("../../images/common/icon_area-black.svg");
}
.countriesList__tab .tab-item.tour::before {
	background-image: url("../../images/common/icon_tour-black.svg");
}
.countriesList__tab .tab-item.is-active {
	color: #108DF9;
	border: 1px solid #108DF9;
	background-color: #E3EEFF;
}
.countriesList__tab .tab-item.area.is-active::before {
	background-image: url("../../images/common/icon_area.svg");
}
.countriesList__tab .tab-item.tour.is-active::before {
	background-image: url("../../images/common/icon_tour.svg");
}
/* */
.tab-content .country-grid {
	display: none;
}
.country-grid {
	max-width: 1000px;
	margin: 30px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.country-grid.is-active {
	display: grid;
}
.country-card {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 8px;
	padding: 14px 17px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	color: #151515;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}
.country-card:hover {
	transform: translateY(-2px);
}
.country-flag {
	width: 40px;
	aspect-ratio: 40 / 28;
	margin-right: 12px;
	object-fit: contain;
}
.country-list-button {
	grid-column: span 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 16px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	color: #151515;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}
.country-list-button::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url("../../images/common/icon_list.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 8px;
	flex-shrink: 0;
}
@media (max-width: 768px) {
	.country-grid {
		margin: 20px auto 0;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.country-card {
		padding: 12px 0 12px 10px;
		font-size: clamp(0.75rem, 0.107rem + 2.86vw, 1rem) /*360-12/500-16*/ ;
		letter-spacing: -0.05em;
	}
	.country-flag {
		width: 30px;
		margin-right: 10px;
	}
	.country-list-button {
		grid-column: span 2;
		font-size: clamp(0.75rem, 0.107rem + 2.86vw, 1rem) /*360-12/500-16*/ ;
		padding: 12px;
	}
	.country-list-button::before {
		width: 14px;
		height: 14px;
	}
}
