@charset "UTF-8";
.kv {
	position: relative;
	width: 100%;
	padding-top: min(56.25%,100dvh);
	background: #E6E6E6;
	overflow-x: clip;
}
.kv .kv_inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.kv .kv_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 130%;
	display: flex;
	align-items: center;
	justify-content: center;
	clip-path: inset(0);
}
.kv .kv_image picture {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.kv .kv_image picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 100%;
}
.kv .icon_scroll_down {
	position: absolute;
	z-index: 1;
	bottom: 40px;
	left: calc(50% - 6px);
}
.kv .kv_text {
	height: fit-content;
	margin: 0 auto;
	position: absolute;
	top: calc(45% + 30px);
	z-index: 1;
	width: 40%;
	left: 30%;
}
.kv .kv_ttl {
	max-width: 782px;
	width: 100%;
	line-height: 1;
}
.kv .kv_catch {
	max-width: 418px;
	width: 53.4%;
	margin-top: 30px;
	line-height: 1;
}
.kv_about {
	background: #FFF;
	border-radius: 10px;
	border: 2px solid #000;
	font-weight: 700;
	font-size: 16px;
	filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.15));
	padding: 30px 52px 26px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	line-height: 1;
	z-index: 5;
	transition: all 0.3s;
	opacity: 1;
}
.kv_about:hover {
	padding: 30px 62px 26px 42px;
}
.kv_about.is_hide {
	opacity: 0 !important;
}
.kv_about br {
	display: none;
}
.kv_about .btn_arrow {
	opacity: 0;
	filter: invert(1);
	transition: all 0.3s;
	position: absolute;
	right: 40px;
}
.kv_about:hover .btn_arrow {
	opacity: 1;
	right: 30px;
}
.kv .kv_color {
	position: absolute;
	display:block;
}
.kv .kv_color img {
	display:block;
	width: 100%;
}
.kv .kv_color_01 {
	width: 41.6%;
}
.kv .kv_color_02 {
	left: 28%;
	width: 7.3%;
}
.kv .kv_color_03 {
	right: 5%;
	width: 26.4%;
}
.kv .kv_color_04 {
	bottom: -25%;
	width: 50%;
}
.kv .kv_color_05 {
	left: 12%;
	width: 20%;
}
.kv .kv_color_06 {
	right: 15%;
	width: 19.3%;
}
.kv .kv_color_07 {
	bottom: -14%;
	width: 41.5%;
}
/* アニメーション */
body {
	background: #E6E6E6;
	animation: bodyAnime 0.5s 0.5s ease forwards;
}

@keyframes bodyAnime {
	0% {
		background: #E6E6E6;
	}
	100% {
		background: transparent;
	}
}

.header {
	opacity: 0;
	transform: translateY(-50px);
	animation: headerFade 1s 1.0s ease forwards;
}
@keyframes headerFade {
	0% {
		transform: translateY(-50px);
	}
	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

.kv {
	opacity: 0;
	animation: kvFade 0.5s 0.5s ease forwards;
}
@keyframes kvFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.kv_about {
	opacity: 0;
	animation: aboutFade 1s 1.0s ease forwards;
}
@keyframes aboutFade {
	0% {
		right: -50px;
	}
	100% {
		opacity: 1;
		right: 20px;
	}
}
.kv .kv_text {
	animation: kvText 0.5s 0.5s ease forwards;
}
@keyframes kvText {
	0% {
		top: calc(45% + 3%);
	}
	100% {
		top: calc(45% - 0%);
	}
}
.kv .kv_catch {
	animation: kvCatch 0.5s 0.5s ease forwards;
}
@keyframes kvCatch {
	0% {
		margin-top: 30px;
	}
	100% {
		margin-top: 20px;
	}
}

.kv .icon_scroll_down {
	bottom: 60px;
	opacity: 0;
	animation: scrollDown 1s 1.5s ease forwards;
}
@keyframes scrollDown {
	0% {
		opacity: 0;
		bottom: 60px;
	}
	100% {
		opacity: 1;
		bottom: 40px;
	}
}

.kv .kv_color_01 {
	top: calc(-30% - 3%);
	left: calc(-17% - 3%);
	animation: kvColor01 0.5s 0.5s ease forwards;
}
@keyframes kvColor01 {
	0% {
		top: calc(-30% - 3%);
		left: calc(-17% - 3%);
	}
	100% {
		top: calc(-30% - 0%);
		left: calc(-17% - 0%);
	}
}
.kv .kv_color_02 {
	top: calc(-22% - 3%);
	animation: kvColor02 0.5s 0.5s ease forwards;
}
@keyframes kvColor02 {
	0% {
		top: calc(-22% - 3%);
	}
	100% {
		top: calc(-22% - 0%);
	}
}
.kv .kv_color_03 {
	top: calc(-10% - 3%);
	animation: kvColor03 0.5s 0.5s ease forwards;
}
@keyframes kvColor03 {
	0% {
		top: calc(-10% - 3%);
	}
	100% {
		top: calc(-10% - 0%);
	}
}
.kv .kv_color_04 {
	left: calc(-40% - 3%);
	animation: kvColor04 0.5s 0.5s ease forwards;
}
@keyframes kvColor04 {
	0% {
		left: calc(-40% - 3%);
	}
	100% {
		left: calc(-40% - 0%);
	}
}
.kv .kv_color_05 {
	bottom: calc(-3% - 3%);
	animation: kvColor05 0.5s 0.5s ease forwards;
}
@keyframes kvColor05 {
	0% {
		bottom: calc(-3% - 3%);
	}
	100% {
		bottom: calc(-3% - 0%);
	}
}
.kv .kv_color_06 {
	bottom: calc(-10% - 3%);
	animation: kvColor06 0.5s 0.5s ease forwards;
}
@keyframes kvColor06 {
	0% {
		bottom: calc(-10% - 3%);
	}
	100% {
		bottom: calc(-10% - 0%);
	}
}
.kv .kv_color_07 {
	right: calc(-13% - 3%);
	animation: kvColor07 0.5s 0.5s ease forwards;
}
@keyframes kvColor07 {
	0% {
		right: calc(-13% - 3%);
	}
	100% {
		right: calc(-13% - 0%);
	}
}

@media (max-width: 1024px) {
	.kv {
    padding-top: 75%;
	}
}

@media (max-width: 767px) {
	.kv {
		padding-top: min(211%, 100dvh);
	}
	.kv .kv_text {
		max-width: 335px;
		width: calc(100% - 60px);
		transform: translate(-50%, -50%);
		left: 50%;
	}
	.kv .kv_ttl {
		margin: 0 auto;
		width: 100%;
	}
	.kv .kv_catch {
		max-width: 280px;
		width: 83.5%;
		margin-top: 20px;
	}
	.kv .kv_image {
		height: 115%;
	}
	.kv_about {
		padding: 18px 18px 12px;
		line-height: 1.2;
		bottom: 10px;
		right: 10px;
		transform: unset;
	}
	.kv_about:hover {
		padding: 18px 18px 12px;
	}
	.kv_about br {
		display: block;
	}
	.kv_about .btn_arrow {
		display: none;
	}


	.kv .kv_color_01 {
		width: 60%;
	}
	.kv .kv_color_02 {
		width: 10.5%;
	}
	.kv .kv_color_03 {
		right: -12%;
		width: 41.2%;
	}
	.kv .kv_color_04 {
		bottom: -8%;
		width: 63.5%;
	}
	.kv .kv_color_05 {
		left: -2%;
		width: 31.7%;
	}
	.kv .kv_color_06 {
		right: 15%;
		width: 27.17%;
	}
	.kv .kv_color_07 {
		bottom: 3%;
		width: 64.8%;
	}

	/*アニメーション*/
	.kv .kv_text {
		top: calc(50% - 30px);
	}
	@keyframes kvText {
		0% {
			top: calc(50% - 30px);
		}
		100% {
			top: calc(50% - 0px);
		}
	}

	.kv .kv_color_01 {
		top: calc(3% - 3%);
		left: calc(-30% - 3%);
	}
	@keyframes kvColor01 {
		0% {
			top: calc(3% - 3%);
			left: calc(-30% - 3%);
		}
		100% {
			top: 3%;
			left: -30%;
		}
	}

	.kv .kv_color_02 {
		top: calc(0% - 3%);
	}
	@keyframes kvColor02 {
		0% {
			top: calc(0% - 3%);
		}
		100% {
			top: 0;
		}
	}

	.kv .kv_color_03 {
		top: calc(12% - 3%);
	}
	@keyframes kvColor03 {
		0% {
			top: calc(12% - 3%);
		}
		100% {
			top: 12%;
		}
	}

	.kv .kv_color_04 {
		left: calc(-35% - 3%);
	}
	@keyframes kvColor04 {
		0% {
			left: calc(-35% - 3%);
		}
		100% {
			left: -35%;
		}
	}

	.kv .kv_color_05 {
		bottom: calc(21% - 3%);
	}
	@keyframes kvColor05 {
		0% {
			bottom: calc(21% - 3%);
		}
		100% {
			bottom: 21%;
		}
	}

	.kv .kv_color_06 {
		bottom: calc(-5% - 3%);
	}
	@keyframes kvColor06 {
		0% {
			bottom: calc(-5% - 3%);
		}
		100% {
			bottom: -5%;
		}
	}

	.kv .kv_color_07 {
		right: calc(-22% - 3%);
	}
	@keyframes kvColor07 {
		0% {
			right: calc(-22% - 3%);
		}
		100% {
			right: -22%;
		}
	}
	/* .kv .kv_color_01 {
		top: 3%;
		left: -30%;
		width: 60%;
	}
	.kv .kv_color_02 {
		top: 0;
		left: 34%;
		width: 10.5%;
	}
	.kv .kv_color_03 {
		top: 12%;
		right: -12%;
		width: 41.2%;
	}
	.kv .kv_color_04 {
		bottom: -8%;
		left: -35%;
		width: 63.5%;
	}
	.kv .kv_color_05 {
		bottom: 21%;
		left: -2%;
		width: 31.7%;
	}
	.kv .kv_color_06 {
		bottom: -5%;
		right: 15%;
		width: 27.17%;
	}
	.kv .kv_color_07 {
		bottom: 3%;
		right: -22%;
		width: 64.8%;
	} */
	/* .kv .kv_text,
	.kv.is_active .kv_text,
	.kv .kv_catch,
	.kv.is_active .kv_catch,
	.kv .kv_color_01,
	.kv .kv_color_02,
	.kv .kv_color_03,
	.kv .kv_color_04,
	.kv .kv_color_05,
	.kv .kv_color_06,
	.kv .kv_color_07 {
		animation: none;
	} */
}
@media (max-width: 375px) { 
	.kv .kv_color_01 {
		top: calc(-2% - 3%);
	}
	@keyframes kvColor01 {
		0% {
			top: calc(-2% - 3%);
		}
		100% {
			top: -2%;
		}
	}
}

.news {
	padding: 140px 8% 200px;
	background: #F2F2F2;
}
.news .sec_inner {
	z-index: 1;
	position: sticky;
}
.news .list {
	margin-top: 80px;
}
.news .btn {
	margin-top: 60px;
}
@media (max-width: 767px) { 
	.news {
		padding: 160px 30px 160px;
	}
	.news .list {
		margin-top: 60px;
	}
	.news .btn {
		margin-top: 50px;
	}
}

.notice .notice_inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.notice .btn {
	margin-top: 30px;
	padding: 16px 20px 12px;
	width: 135px;
}
.notice .btn.is_sp {
	display: none;
}
.notice .btn span {
	font-size: 14px;
	font-weight: 500;
}
.notice .btn .btn_arrow {
	right: 20px;
}
.notice .btn:hover .btn_arrow {
	right: 15px;
}
.notice + .list {
	margin-top: 140px;
}
@media (max-width: 767px) {
	.notice {
			margin: 100px -10px 0;
	}
	.notice .notice_inner {
		display: block;
	}
	.notice .btn.is_sp {
		display: flex;
		margin-top: 60px;
		padding: 24px 10px 20px;
		width: 255px;
	}
	.notice .btn.is_pc {
		display: none;
	}
	.notice .btn .btn_arrow {
		transform: translateY(-3px);
	}
	.notice + .list {
		margin-top: 100px;
	}
}
.notice + .list .list_hash_main span {
	margin-right: 4px;
}
.notice + .list .list_hash_main .is_num {
	margin-right: 0px;
}
.list + .list {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
	.list + .list {
		margin-top: 50px;
		padding-top: 50px;
	}
}