main {
	background-color: white;
	padding-bottom: 75px;
}

.main_img {
	width: max(calc(100% - 112px), 90%);
	aspect-ratio: 1388/942;
	border-radius: 23px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

.main_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_img .text_block {
	width: calc(100% - 30px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.main_img .text_block p {
	font-size: 24px;
	line-height: 1;
}

.main_img .text_block h1 {
	font-size: 57px;
	line-height: 67px;
	margin-top: 25px;
	letter-spacing: 3px;
	text-indent: 3px;
}

.main_img .text_block h1 span {
	display: inline-block;
}

.news_wrap {
	margin: 80px auto 0;
	position: relative;
}

.news_wrap::before {
	content: '';
	display: block;
	width: 100%;
	height: 380px;
	position: absolute;
	top: 24px;
	left: 0;
	z-index: 0;
	background: linear-gradient(
		90deg,
		#f9f6f0 0%,
		#f9f6f0 50%,
		#fff 50%,
		#fff 100%
	);
}

.news_content {
	max-width: 1170px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	padding-bottom: 130px;
	border-bottom: solid 2px #e4e4e5;
}

.news_content::before {
	content: '';
	display: block;
	width: 98%;
	height: 380px;
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
	background-color: #f9f6f0;
	border-radius: 0 190px 190px 0;
}

.news_wrap .mikan {
	width: 36px;
	display: block;
	margin: 0 auto;
	position: relative;
}

.news_wrap h2 {
	font-size: 53px;
	text-align: center;
	line-height: 1;
	margin-top: 5px;
	position: relative;
}

.news_slider {
	width: 100%;
	margin: 50px auto 0;
}

.news_slider .slick-track {
	margin: 0;
}

.news_slider .slick-list {
	margin: 0 -30px;
}

.news_slider .slide {
	padding: 0 30px;
	display: block;
}

.news_slider .slide .img_box {
	border-radius: 18px 0;
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.news_slider .slide .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news_slider .slide .img_box .genre {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 11px;
	display: inline-flex;
	align-items: center;
	height: 29px;
	background-color: #f8b100;
	color: white;
	font-size: 16px;
	border-radius: 0 16px 0 0;
}

.news_slider .slide .ttl {
	font-size: 25px;
	line-height: 35px;
	margin-top: 5px;
	transition: all 0.3s;
}

.news_slider .slick-prev,
.news_slider .slick-next {
	width: 44px;
	height: 44px;
	background-color: white;
	border: solid 2px #eeac17;
	border-radius: 50%;
	top: calc(100% + 130px);
	z-index: 10;
}

.news_slider .slick-prev {
	left: calc(50% - 10px);
	transform: translate(-100%, -50%);
}
.news_slider .slick-next {
	right: calc(50% - 10px);
	transform: translate(100%, -50%);
}

.news_slider .slick-prev::before,
.news_slider .slick-next::before {
	width: 100%;
	height: 100%;
	content: '';
	opacity: 1;
	background-size: 17.5px;
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
}

.news_slider .slick-prev::before {
	background-image: url(../img/slide_prev.svg);
}
.news_slider .slick-next::before {
	background-image: url(../img/slide_next.svg);
}

@media (hover: hover) {
	.news_slider .slick-prev,
	.news_slider .slick-next {
		transition: all 0.3s;
	}

	.news_slider .slick-prev:hover,
	.news_slider .slick-next:hover {
		background-color: #eeac17;
	}

	.news_slider .slick-prev::before,
	.news_slider .slick-next::before {
		transition: all 0.3s;
	}

	.news_slider .slick-prev:hover::before {
		background-image: url(../img/slide_prev_white.svg);
	}
	.news_slider .slick-next:hover::before {
		background-image: url(../img/slide_next_white.svg);
	}

	.news_slider .slide .img_box::after {
		content: '';
		position: absolute;
		inset: 0;
		background-color: #fe9f01;
		opacity: 0;
		transition: opacity 0.3s;
	}

	.news_slider .slide:hover .img_box::after {
		opacity: 0.25;
	}

	.news_slider .slide:hover .ttl {
		color: #fe9f01;
	}
}

.news_wrap .prev_da,
.news_wrap .next_da {
	width: 44px;
	height: 44px;
	background-color: white;
	border: solid 2px #e4e4e5;
	border-radius: 50%;
	top: 100%;
	position: absolute;
}

.news_wrap .prev_da {
	left: calc(50% - 10px);
	transform: translate(-100%, -50%);
}
.news_wrap .next_da {
	right: calc(50% - 10px);
	transform: translate(100%, -50%);
}

.news_wrap .prev_da::before,
.news_wrap .next_da::before {
	width: 100%;
	height: 100%;
	content: '';
	opacity: 1;
	background-size: 17.5px;
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
}

.news_wrap .prev_da::before {
	background-image: url(../img/slide_prev_gray.svg);
}
.news_wrap .next_da::before {
	background-image: url(../img/slide_next_gray.svg);
}

@media screen and (max-width: 1000px) {
	.main_img {
		width: calc(100% - 30px);
		border-radius: 18px;
	}

	.main_img .text_block p {
		font-size: 20px;
	}

	.main_img .text_block h1 {
		font-size: 48px;
		line-height: 58px;
		margin-top: 15px;
	}

	.news_wrap .mikan {
		width: 34px;
	}

	.news_wrap h2 {
		font-size: 40px;
	}

	.news_slider .slide .ttl {
		font-size: 22px;
		line-height: 30px;
	}

	.news_slider .slick-list {
		margin: 0 -20px;
	}

	.news_slider .slide {
		padding: 0 20px;
	}
}

@media screen and (max-width: 700px) {
	.news_content {
		width: calc(100% - 30px);
	}

	.news_wrap::before {
		width: 100%;
		height: 290px;
	}

	.news_content::before {
		width: 88%;
		height: 290px;
		border-radius: 0 145px 145px 0;
	}
}

@media screen and (max-width: 600px) {
	.main_img .text_block p {
		font-size: 18px;
	}

	.main_img .text_block h1 {
		font-size: 36px;
		line-height: 44px;
	}

	.news_wrap h2 {
		font-size: 28px;
	}

	.news_content {
		padding-bottom: 100px;
	}

	.news_slider .slide .img_box {
		border-radius: 10px 0;
	}

	.news_slider .slide .img_box .genre {
		padding: 0 8px;
		height: 26px;
		font-size: 14px;
		border-radius: 0 12px 0 0;
	}

	.news_slider .slick-list {
		margin: 0 -8px;
	}

	.news_slider .slide {
		padding: 0 8px;
	}

	.news_slider .slide .ttl {
		font-size: 16px;
		line-height: 24px;
	}

	.news_slider .slick-prev,
	.news_slider .slick-next {
		top: calc(100% + 100px);
	}
}
