@charset "UTF-8";
.main {
	padding-top: 0 !important;
}
.hero {
	position: relative;
	width: 100%;
	height: 100dvh;
}
.hero::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(to bottom, #00294a 0, transparent 200px);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 200;
}
.hero_slide {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.swiper {
	width: 100%;
	height: 100dvh;
}
.swiper-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.swiper-slide {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-slide {
	opacity: 0;
	transform: scale(1);
	transition: opacity 1s ease, transform 1s ease;
}
.swiper-slide-active {
	opacity: 1;
	transform: scale(1.4);
	z-index: 2;
}
.about {
	position: relative;
}
.about_hd {
	position: absolute;
	width: 100%;
	height: auto;
	z-index: 2;
	top: 100px;
}
.about_hd_wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	font-size: 102px;
	white-space: nowrap;
}
.about_hd_cnt {
	display: block;
	width: fit-content;
	position: relative;
	animation: slide 25s linear infinite;
	padding-right: 0.4em;
	background: #333333;
}
@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
.about_hd_cnt::before {
	content: "";
	width: 100%;
	height: 11px;
	background: #126db7;
	mix-blend-mode: multiply;
	display: block;
	position: absolute;
	left: 0;
	bottom: 50%;
	transform: translateY(50%);
}
.about_hd_cnt p {
	color: #ffffff;
	opacity: 0.12;
}

.about_wrap {
	padding: 260px 0 80px;
	text-align: center;
	width: 480px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.9;
}
.about_cnt {
	margin-bottom: 50px;
}
.about_link {
	margin: 0 auto;
}
.sotck {
	padding: 80px 0;
}
.sotck_hd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 27px;
}
.sotck_hd_ttl {
	font-size: 58px;
	position: relative;
	background: #333333;
}
.sotck_hd_ttl::before {
	content: "";
	display: block;
	position: absolute;
	background: #126db7;
	width: 100%;
	height: 7px;
	left: 0;
	bottom: 53%;
	transform: translateY(50%);
	z-index: 2;
	mix-blend-mode: multiply;
}
.sotck_hd_link {
}
.sotck_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 40px;
}
.sotck_wrap a {
	display: block;
}
.sotck_cnt {
}
.sotck_img {
	margin-bottom: 20px;
	width: 100%;
	height: auto;
	aspect-ratio: 630 / 410;
}
.sotck_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sotck_txt {
}
.sotck_txt_ttl {
	font-size: 18px;
	margin-bottom: 15px;
}
.sotck_txt_detail {
	color: #7e7e7e;
}
.sotck_txt_detail_color {
}
.sotck_txt_detail_cnt {
	display: flex;
	gap: 15px;
}
.news {
}
.news_wrap {
	display: flex;
	gap: 90px;
}
.news_hd {
	flex-shrink: 0;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.news_hd_ttl {
	font-size: 58px;
	position: relative;
	background: #333333;
}
.news_hd_ttl::before {
	content: "";
	display: block;
	position: absolute;
	background: #126db7;
	width: 100%;
	height: 7px;
	left: 0;
	bottom: 53%;
	transform: translateY(50%);
	z-index: 2;
	mix-blend-mode: multiply;
}
.news_hd_link {
}
.news_cnt {
	width: -webkit-fill-available;
}
.news_article {
	border-bottom: 1px solid #126db7;
}
.news_article:first-child {
	border-top: 1px solid #126db7;
}
.news_article_link {
	display: flex;
	gap: 75px;
	padding: 23px 25px;
	position: relative;
	z-index: 10;
	overflow: hidden;
}
.news_article_link::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #126db7;
	opacity: 0.4;
	z-index: -1;
	transform: translateX(-101%);
	transition: all 0.4s;
}
.news_article_link:hover::before {
	transform: translateX(0%);
}

@media screen and (max-width: 1240px) {
}

@media screen and (max-width: 768px) {
	.main {
	}
	.hero {
		height: 70dvh;
	}
	.hero::before {
	}
	.hero_slide {
	}
	.swiper {
		height: 100%;
	}
	.swiper-wrapper {
	}
	.swiper-slide {
	}
	.swiper-slide img {
	}
	.swiper-slide {
	}
	.swiper-slide-active {
	}
	.about {
		padding: 0 0 30px;
	}
	.about_hd {
		top: 20px;
	}
	.about_hd_wrap {
		font-size: 52px;
		padding-bottom: 0;
	}
	.about_hd_cnt {
		animation: slide 35s linear infinite;
	}
	.about_hd_cnt::before {
		height: 6px;
	}
	.about_hd_cnt p {
	}
	.about_wrap {
		width: 100%;
		font-size: 14px;
		padding: 100px 0 30px;
	}
	.about_cnt {
		margin-bottom: 30px;
	}
	.about_link {
	}
	.sotck {
		padding: 40px 0;
	}
	.sotck_hd {
		margin-bottom: 15px;
	}
	.sotck_hd_ttl {
		font-size: 41px;
		width: fit-content;
	}
	.sotck_hd_ttl::before {
		height: 4px;
	}
	.sotck_hd_link {
	}
	.sotck_wrap {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.sotck_wrap a {
	}
	.sotck_cnt {
	}
	.sotck_img {
	}
	.sotck_img img {
	}
	.sotck_txt {
	}
	.sotck_txt_ttl {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.sotck_txt_detail {
	}
	.sotck_txt_detail_color {
	}
	.sotck_txt_detail_cnt {
	}
	.stock_splink {
		margin-top: 40px;
		display: flex;
		justify-content: center;
	}
	.news {
	}
	.news_wrap {
		flex-flow: column;
		gap: 15px;
	}
	.news_hd {
	}
	.news_hd_ttl {
		font-size: 41px;
		width: fit-content;
	}
	.news_hd_ttl::before {
		height: 4px;
	}
	.news_hd_link {
	}
	.news_cnt {
	}
	.news_article {
	}
	.news_article:first-child {
	}
	.news_article_link {
		flex-flow: column;
		gap: 5px;
		padding: 15px 20px;
	}
	.news_article_link::before {
	}
	.news_article_link:hover::before {
	}
	.news_splink {
		margin-top: 35px;
		display: flex;
		justify-content: center;
	}
}
