@charset "utf-8";
/* ===================================================
	Sightseeing CSS
====================================================== */

/* ---------------------------------------------------
	#sec_spot
------------------------------------------------------ */
#sec_spot {
	padding: 100px 0;
	background: url(../img/pattern_01.webp);
}
.spot_col {
	display: flex;
	flex-wrap: wrap;
	gap: 110px 10%;
}
.spot .name {
	padding: 20px 0;
	font-size: 26px;
	color: var(--color-06);
}
.spot .name::first-letter {
	color: var(--color-02);
}
.spot .name .sm {
	font-size: 16px;
}
.spot .desc {
	line-height: 1.8;
	text-align: justify;
}
.spot ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 5px 30px;
	margin-top: 30px;
}
.spot .link_run {
	padding: 0;
}
.spot [class^="icon_"] {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 10px;
	color: var(--color-06);
}
.spot [class^="icon_"]::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
}
.spot .icon_car::before {
	background: url(../img/icon_car.svg)no-repeat center/contain;
}
.spot .icon_web::before {
	background: url(../img/icon_web.svg)no-repeat center/86%;
}
.spot .icon_foot::before {
	background: url(../img/icon_foot.svg)no-repeat center/80%;
}

@media screen and (min-width: 601px) {
	.spot {
		width: 45%;
	}
	.spot.full {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.spot.full .photo {
		width: 63%;
	}
	.spot.full .txt {
		width: 32.8%;
	}
}
@media screen and (max-width: 600px) {
	#sec_spot {
		padding: 50px 0;
	}
	.spot_col {
		gap: 40px 0;
	}
	.spot .name {
		line-height: 1.35;
		padding: 20px 0 15px;
		font-size: 22px;
	}
	.spot .name .sm {
		display: inline-block;
		font-size: 14px;
	}
	.spot ul {
		flex-wrap: wrap;
		gap: 5px 20px;
	}
}


/* ---------------------------------------------------
	#sec_info
------------------------------------------------------ */
#sec_info {
	padding: 100px 0;
}
#sec_info .cmn_tit_01 {
	font-size: 30px;
	text-align: center;
}
#sec_info .bnr_col {
	display: flex;
	gap: 10px 2.5%;
	margin-top: 50px;
}

@media screen and (max-width: 600px) {
	#sec_info {
		padding: 50px 0;
	}
	#sec_info .cmn_tit_01 {
		font-size: 22px;
	}
	#sec_info .bnr_col {
		flex-direction: column;
		align-items: center;
		margin-top: 30px;
	}
}