@charset "UTF-8";

.carousel {
	margin: 0;
	background-image: url(../img/travel/carousel.jpg);
}

/* travel-section */
@media all {
	.travel-section {
		background-color: var(--gray);
		font-weight: 500;
	}
	.travel-section h3 {font-size: 20rem;}
	.travel-dl {counter-reset: cnt;}
	.travel-dl dt {
		position: relative;
		counter-increment: cnt;
		padding-left: 3em;
		font-weight: bold;
	}
	.travel-dl dt::before {
		content: counter(cnt);
		position: absolute;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 1.5em;
		height: 1.5em;
		border-radius: 50%;
		font-family: var(--font-m);
	}
	.travel-dl dt:nth-of-type(odd)::before {
		border: max(1rem, 1px) solid var(--red);
		color: var(--red);
	}
	.travel-dl dt:nth-of-type(even)::before {
		background-color: var(--red);
		color: #fff;
	}
	.travel-dl dd {
		margin-top: 1em;
		padding-left: 3em;
	}
	.travel-dl dd + dt {
		margin-top: 3em;
	}
	.adv-memo {
		margin: 0 auto;
		border: max(1rem, 1px) solid var(--red);
		line-height: 2.14;
	}

	/* sp */
	@media only screen and (max-width: 767px) {
		.travel-section {
			margin-top: 60rem;
			padding: 30rem 20rem;
		}
		.travel-content {margin-top: 40rem;}
		.travel-dl {
			font-size: 16rem;
			line-height: 32rem;
		}
		.travel-dl dt::before {
			font-size: 20rem;
		}
		.adv-memo {
			margin-top: 30rem;
			padding: 8rem 20rem;
			width: 350rem;
			font-size: 12rem;
		}
	}

	/* pc & tab */
	@media print,
	(min-width: 768px) {
		.travel-section {
			margin-top: 60rem;
			padding: 50rem 0 80rem;
		}
		.travel-section h3,
		.travel-content {
			margin: 0 auto;
			width: 750rem;
		}
		.travel-section h3 {font-size: 22rem;}
		.travel-content {margin-top: 40rem;}
		.travel-dl {
			font-size: 14rem;
			line-height: 30rem;
		}
		.travel-dl dt::before {
			font-size: 20rem;
		}
		.adv-memo {
			margin-top: 50rem;
			padding: 8rem 0;
			width: 490rem;
			text-align: center;
			font-size: 14rem;
		}
	}
}


/* template-section */
@media all {
	/* sp */
	@media only screen and (max-width: 767px) {}

	/* pc & tab */
	@media print,
	(min-width: 768px) {}
}