@charset "UTF-8";
main {
	background-color: #f3f6fc;
}
.mv-sub__inner {
    background: url("/_common/img/news/mv.png") 50% 50% / cover no-repeat;
}
/* -------------------------------- */
.news-content {
    padding: 80px 5%;
}
.news-content__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .news-content {
        padding: 40px 5%;
    }
}
/* -------------------------------- */
.news__info {
	display: flex;
	align-items: center;
	gap: 15px;
}
.news__date {
	color: #a5a5a5;
	font-size: 18px;
	font-weight: 500;
}
.news__cat {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 26px;
	background-color: #1E73BE;
	color: #fff;
	border-radius: 16px;
}
.news__cat.cat-news {
	background-color: #1E73BE;
}
.news__cat.cat-campaign {
	background-color: #81D742;
}
.news__cat.cat-blog {
	background-color: #999999;
}
@media screen and (max-width: 767px) {
    .news__info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .news__date {
        color: #818181;
        font-weight: 500;
        line-height: 22px;
    }
    .news__cat {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        padding: 0 14px;
        background-color: #1E73BE;
        color: #fff;
        font-weight: bold;
        border-radius: 12px;
    }
    .news__cat.cat-news {
        background-color: #1E73BE;
    }
    .news__cat.cat-campaign {
        background-color: #81D742;
    }
    .news__cat.cat-blog {
        background-color: #999999;
    }
}
/* -------------------------------- */
.news-content h2 {
    margin-top: 15px;
	font-size: 35px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: .065em;
}
.news-content__visual {
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
	aspect-ratio: 1/.61;
	border-radius: 20px;
	overflow: hidden;
}
.news-content__visual img {
	height: 100%;
	object-fit: cover;
}
.news-content__text {
    width: 100%;
	line-height: 1.8;
}
.news-content__text img {
	border-radius: 20px;
	overflow: hidden;
}
.news-content h3 {
	width: 100%;
	/* margin-top: 60px; */
	padding: 8px 14px;
	background-color: #857868;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	line-height: 42px;
	letter-spacing: .05em;
	border-radius: 10px;
}
.news-content h4 {
	display: flex;
	align-items: flex-start;
}
.news-content h4 span {
	/* margin-top: 60px; */
	padding-bottom: 15px;
	font-size: 24px;
	font-weight: bold;
	line-height: 42px;
	letter-spacing: .05em;
	border-bottom: 3px dotted #3f342d;
}
.news-content p {
	/* margin-top: 30px; */
	font-size: 18px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: .05em;
}
.news__pagenation {
    margin-top: 100px;
}
.news__prev-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 800px;
    margin: 0 auto;
}
.news__prev {
}
.news__prev.next {
}
.news__prev a {
    position: relative;
	display: flex;
	align-items: center;
    justify-content: center;
	gap: 0 10px;
    width: 148px;
    height: 60px;
    background-color: #fff;
	color: #222;
	font-size: 18px;
	font-weight: bold;
    text-align: center;
}
.news__prev a.disable {
	opacity: .5;
}
.news__prev a::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	transform: translateX(-100%);
	border: 30px solid rgba(0,0,0,0);
	border-right: 30px solid #fff;
}
.news__prev a img {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translate(0,-50%);
    width: 25px;
}
.news__prev.next a img {
    left: initial;
    right: 14px;
}
.news__prev.next a::after {
	position: absolute;
	content: "";
	top: 0;
	left: initial;
	right: 0;
	transform: translateX(100%);
	border: 30px solid rgba(0,0,0,0);
	border-left: 30px solid #fff;
}
.news__prev a span {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	white-space: nowrap;
}
.news__button a {
	display: block;
	color: #222;
	font-size: 18px;
}
.news__button a:hover {
	opacity: .5;
	transition: .3s;
}
@media screen and (max-width: 767px) {
	.news-content h2 {
        margin-top: 15px;
        font-size: 20px;
        line-height: 1.7;
        letter-spacing: .065em;
    }
    .news-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    .news__pagenation {
        margin-top: 50px;
    }
    .news__prev-flex {
        flex-direction: column;
        gap: 20px;
    }
}