@charset "UTF-8";

.init {
	padding: 120px 0;
}

.init_item {
	display: flex;
	gap: 20px 6%;
}

.init_item:not(:last-child) {
	margin-bottom: 40px;
}

.init_item_img {
	width: 360px;
	height: auto;
	overflow: hidden;
	border-radius: 10px;
}

.init_item_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.init_item_cnt {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}

.init_item_cnt > h2 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 24px;
	line-height: var(--lh-ttl-jp);
}

.local {
	padding: 120px 0;
	background-color: var(--color-bg-light);
}

.local_hd {
	margin-bottom: 40px;
}

.local_list {
	display: flex;
	gap: 30px 2%;
}

.local_item {
	width: 32%;
}

.local_item img {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 360/200;
}

@media screen and (max-width:1240px) {
}

@media screen and (max-width:768px) {
	.init {
		padding: 60px 0;
	}

	.init_item {
		flex-direction: column;
	}

	.init_item_img {
		width: 100%;
		height: auto;
		aspect-ratio: 360/260;
	}

	.init_item_cnt > h2 {
		margin-bottom: 12px;
	}

	.local {
		padding: 60px 0;
	}

	.local_list {
		flex-direction: column;
	}

	.local_item {
		width: 100%;
	}
}
