@charset "utf-8";
/* CSS Document */

/* ------------------
 メインビジュアル
------------------ */
.mv {
	width: 100%;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: -1;
	@media screen and (max-width: 767px) {
		height: 450px;
	}
}
.mv_txt {
	display: block;
	font-size: 9.6rem;
	line-height: 1.2;
	text-align: center;
	font-weight: 200;
	color: #fff;
	@media screen and (max-width: 767px) {
		font-size: 4.8rem;
	}
}
.mv_txt span {
	font-size: 6.8rem;
	@media screen and (max-width: 767px) {
		font-size: 3.4rem;
	}
}
.mv_img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	overflow: hidden;
}
.mv_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ------------------
 お知らせ
------------------ */
.top_news {
	width: 100%;
	background: var(--bg-color);
	position: relative;
}
.top_news--container {
	padding: var(--space-65) 5% calc(var(--space-65) + 45px);
	border-radius: 16px;
	background: #fff;
	position: relative;
	transform: translateY(-100px);
	z-index: 2;
	@media screen and (max-width: 767px) {
		transform: translateY(-50px);
		padding: var(--space-65) 5% calc(var(--space-65) + 25px);
	}
}
.top_news--list {
	width: 100%;
	max-height: 250px;
	overflow-y: auto;
	@media screen and (max-width: 767px) {
		max-height: 350px;
	}
}
.top_news--item {
	width: 100%;
	border-top: 1px solid #D7D7D9;
	&:last-of-type {
		border-bottom: 1px solid #D7D7D9;
	}
}
.top_news--item a {
	width: 100%;
	padding: 1.25em 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0 2em;
	@media screen and (max-width: 767px) {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0.5em 1em;
	}
}
.top_news--time {
	min-width: 85px;
	@media screen and (max-width: 767px) {
		line-height: 1.5;
	}
}
.top_news--new {
	padding: 0.1em 1em 0.2em;
	border-radius: 20px;
	background: var(--main-color);
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
	@media screen and (max-width: 767px) {
		font-size: 1.2rem;
	}
}
.top_news--title {
	width: calc(100% - (160px + 4em));
	padding-right: 1em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2em;
	font-size: var(--main-txt);
	font-weight: normal;
	text-decoration: underline;
	@media screen and (max-width: 767px) {
		width: 100%;
	}
}
.top_news--item a:hover .top_news--title {
	text-decoration: none;
}
.top_news--title svg {
	min-width: 11px;
}
.top_news--img01 {
	position: absolute;
	left: 0;
	top: 10%;
	z-index: 1;
	@media screen and (max-width: 767px) {
		display: none;
	}
}
.top_news--img02 {
	position: absolute;
	top: -30px;
	right: 0;
	z-index: 1;
	@media screen and (max-width: 767px) {
		display: none;
	}
}
.top_news--img03 {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	pointer-events: none;
	@media screen and (max-width: 767px) {
		width: 90%;
	}
}
.top_news--img04 {
	position: absolute;
	bottom: -55px;
	right: 0;
	z-index: 4;
	pointer-events: none;
	@media screen and (max-width: 767px) {
		width: 200px;
		bottom: -24px;
	}
}

/* ------------------
 講座紹介
------------------ */
.top_course {
	width: 100%;
	padding: calc(var(--space-65) * 2) 0;
	position: relative;
}
.top_course--container {
	display: flex;
	gap: 20px;
	margin-bottom: 2em;
	position: relative;
	z-index: 2;
	@media screen and (max-width: 767px) {
		justify-content: center;
		flex-wrap: wrap;
	}
}
.top_course--item {
	max-width: calc(100% / 3 - 40px / 3);
	width: 100%;
	@media screen and (max-width: 767px) {
		max-width: 398px;
	}
}
.top_course--thumb {
	padding: 1em;
	border-radius: 16px;
	border-bottom-left-radius: 0;
	background: var(--bg-color);
}
.top_course--bottom {
	width: 100%;
	display: flex;
}
.top_course--title {
	width: calc(100% - 56px);
	padding: 0 1em 1em;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	background: var(--bg-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.top_course--arrow {
	width: 56px;
	border-top-left-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	position: relative;
	&::before {
		content: "";
		width: 100%;
		height: 100%;
		display: block;
		background: var(--bg-color);
		position: absolute;
		z-index: -1;
	}
}
.top_course--arrow span {
	min-width: 32px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;	
	background: var(--sub-color);
	margin-top: 5px;
}
.top_course--img01 {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-5%);
	z-index: 1;
	@media screen and (max-width: 767px) {
		display: none;
	}
}
.top_course--img02 {
	position: absolute;
	right: 0;
	bottom: -100px;
	z-index: 1;
	@media screen and (max-width: 767px) {
		width: 80%;
	}
}
.top_course .more_btn {
	position: relative;
	z-index: 2;
}

/* ------------------
 彩の国Komvuxプラットフォームについて
------------------ */
.top_about {
	width: 100%;
	padding: calc(var(--space-65) * 2) 0;
	background: url(../img/about_img01.webp) no-repeat center / cover;
	position: relative;
}
.top_about--container {
	padding: var(--space-65) 3%;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.8);
	text-align: center;
	font-weight: bold;
	position: relative;
	z-index: 1;
	@media screen and (max-width: 767px) {
		padding: var(--space-65) 5%;
		text-align: start;
	}
}
.top_about--title {
	font-size: var(--font-32);
	padding-bottom: 1em;
	text-align: center;
}
.top_about--img02 {
	position: absolute;
	top: 20%;
	left: 0;
	z-index: 2;
	@media screen and (max-width: 767px) {
		z-index: 0;
	}
}
.top_about--img03 {
	position: absolute;
	left: 0;
	bottom: -30px;
	z-index: 2;
	@media screen and (max-width: 767px) {
		width: 85%;
		bottom: -20px;
	}
}
.top_about--img04 {
	position: absolute;
	right: 40px;
	bottom: 0;
	transform: translateY(50%);
	z-index: 3;
	@media screen and (max-width: 767px) {
		width: 220px;
		right: 15px;
		transform: translateY(75%);
	}
}
/* ------------------
 事業実施委員
------------------ */
.top_comnittee {
	padding: calc(var(--space-65) * 2) 5% var(--space-65);
}
.top_comnittee--list {
	max-width: 880px;
	width: 90%;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 30px; 
	margin: 1.5em auto 0;
	@media screen and (max-width: 767px) {
		gap: 20px 15px;
		margin: 0 auto 2em;
	}
}
@media screen and (max-width: 767px) {
	.top_comnittee--list li {
		height: 25px;
		&:first-child {
			height: 40px;
		}
	}
	.top_comnittee--list li img {
		width: auto;
		height: 100%;
	}
}

@media screen and (max-width: 767px) {}