/*
 * mainvisual
 * -------------------------------------------------------------------
 */
.mainvisual {
	position: relative;
	width: 100%;
	height: 100vh;
}


.mainvisual-container {
	z-index: 1;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: var(--primary-color);
}
.mainvisual-container::before {
	z-index: 2;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(8 8 10 / 25%);
}
.mainvisual-text{
	position: absolute;
	bottom: 7%;
	left: 7%;
	z-index: 3;
	color: #fff;
	text-shadow: 0 0 40px rgba(0,0,0,1);
}
.mainvisual-text__main {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 6.0rem;
	line-height: 1.5;
	opacity: 0;
	animation: fadeInFloat 3s ease forwards;
	z-index: 3;
	position: relative;
}

.mainvisual-text__sub {
	padding-top: 30px;
	font-size: 1.6rem;
	padding-left: 165px;
	position: relative;
	opacity: 0;
	animation: fadeIn 2s ease forwards;
	animation-delay: 1s; 
	z-index: 3;
}

@keyframes fadeInFloat {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	50% {
		opacity: 1;
		transform: translateY(0);
	}
	75% {
		transform: translateY(-4px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
}
}
.mainvisual-text__sub:before{
	position: absolute;
	top: 43px;
	left: 0;
	width: 145px;
	height: 1px;
	background: #fff;
	content: '';
	display: inline-block;
}
.overlap .mainvisual-text__sub:before{
	background: var(--font-color);
}
.mainvisual-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.mainvisual-slider{
	height: 100%;
}
.mainvisual-slider__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.mainvisual-slider__slide {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
}

.mainvisual-slider__slide.active {
	opacity: 1;
	z-index: 1;
}

.mainvisual-slider__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mainvisual-slider__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease, transform 8s ease; 
	transform: scale(1);
}
.mainvisual-slider__img.-sp{
	display: none;
}
.mainvisual-slider__slide.active .mainvisual-slider__img {
	transform: scale(1.05);
}

@-webkit-keyframes float-left {
	0% {
		transform: translateX(0) scale(1.15);
	}
	100% {
		transform: translateX(-10%) scale(1.15);
	}
}
@keyframes float-left {
	0% {
		transform: translateX(0) scale(1.15);
	}
	100% {
		transform: translateX(-10%) scale(1.15);
	}
}

.mainvisual-pagination {
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: flex;
	gap: 10px;
	z-index: 2;
}

.mainvisual-pagination__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: background 0.3s;
}

.mainvisual-pagination__dot.active {
	background: rgba(255,255,255,1);
}
@media (min-width: 768px) {
	.mainvisual-slider__img.-pc{
		display: block;
	}
	.mainvisual-slider__img.-sp{
		display: none;
	}
}
@media (max-width: 767.98px) {
	.mainvisual-slider__img.-pc{
		display: none;
	}
	.mainvisual-slider__img.-sp{
		display: block;
		opacity: 1;
	}
}
@media (max-width: 575.98px){
	.mainvisual-text{
		bottom: 18%;
	}
	.mainvisual-text__main{
		font-size: 4rem;
	}
	.mainvisual-text__sub{
		padding-top: 10px;
		padding-left: 50px;
		font-size: 1.25rem;
	}
	.mainvisual-text__sub:before{
		top: 20px;
		width: 40px;
	}
	.mainvisual-pagination{
		bottom: 20px;
		right: 20px;
	}
}
/*
 * section-wrapper
 * -------------------------------------------------------------------
 */
.section-wrapper{
	background: var(--bg-color);
	position: relative;
	z-index: 1;
}
/*
 * top-message
 * -------------------------------------------------------------------
 */
#top-message{
	position: relative;
}
#top-message:before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/top/message-bg.png");
	z-index: 1;
	opacity: .3;
}
#top-message .content__container{
	padding-top: 150px;
	padding-bottom: 150px;
	position: relative;
	z-index: 2;
}
.message-grid{
	display: flex;
	gap: 30px;
	align-items: start;
}
.message-text{
	 display: flex;
	 flex-wrap: wrap;
	 gap: 30px;
	 width: 50%;
}
.message-text__inner{
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
	width: 510px;
	margin: 30px 0 0 auto;
}
.message-text p{
	margin: 0!important;
	line-height: 1.8;
	color: var(--font-color);
	letter-spacing: -.003em;
}
.message-image{
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
	width: 50%;
}
.message-image .message-photo__item:nth-of-type(2) {
	width: 50%;
	margin: 0 30px 0 auto;
}
.message-image .message-photo__item:nth-of-type(3) {
	width: 70%;
	margin: 0 auto 0 -30px;
}


.message-text .message-photo__item:nth-of-type(1) {
	margin: 30px 0 0 auto;
	width: 50%;
}
.message-text .message-photo__item:nth-of-type(3) {
	width: 40%;
	margin: 45px auto 0 -20px;
}
.message-text .message-photo__item:nth-of-type(4) {
	width: 60%;
	margin: 120px -20px 0 auto;
}
.message-photo__image{
	width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 991.98px) {
	.message-image{
	}
	.message-image .message-photo__item:nth-of-type(1){
	}
	.message-image .message-photo__item:nth-of-type(2){
	}
	.message-text .message-photo__item:nth-of-type(1){
		margin: 90px 0 0 auto;
	}
	.message-text .message-photo__item:nth-of-type(3){
		width: 50%;
		margin: 15px auto 0 -70px;
	}
	.message-text__inner{
		gap: 30px;
		margin: 15px 0 0 auto;
	}
	.message-text__inner p br{
		display: none;
	}
}
@media (max-width: 767.98px) {
	.message-image{
		width: 100%;
		gap: 20px;
		margin-bottom: 30px;
	}
	.message-image .message-photo__item:nth-of-type(1){
		width: 60%;
	}
	.message-image .message-photo__item:nth-of-type(2){
		width: calc(40% - 30px);
		margin: auto 0 0 0;
	}
	.message-image .message-photo__item:nth-of-type(3){
		width: 40%;
		margin: 0 0 0 20px;
	}
	.message-image .message-photo__item:nth-of-type(4){
		width: calc(60% - 40px);
	}
	.message-grid{
		flex-wrap: wrap;
		gap: 60px;
	}
	.message-text{
		width: 100%;
		gap: 60px 20px;
	}
	.message-text__inner{
		width: 80%;
		margin: 0 auto;
	}
	.message-text .message-photo__item:nth-of-type(3){
		margin: 0;
		width: 60%;
	}
	.message-text .message-photo__item:nth-of-type(4){
		width: calc(40% - 20px);
		margin: auto 0 -30px 0;
	}
}
@media (max-width: 575.98px){
	.message-grid{
		gap: 30px;
	}
	.message-text__inner{
		width: 90%;
		gap: 15px;
	}
	.message-text{
		gap: 45px 20px;
	}
	.message-text p{
		line-height: 1.6;
	}
}
/*
 * top-products
 * -------------------------------------------------------------------
 */
#top-products{
	position: relative;
	margin-bottom: 150px;
	background: var(--primary-color);
}
#top-products:before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(156deg, #4cb4e8, #1379bf 13%, #013384);
	z-index: 2;
	opacity: .9;
}
#top-products:after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/top/products-bg.png");
	z-index: 1;
}
#top-products .content__container{
	position: relative;
	padding-top: 150px;
	z-index: 3;
	color: #fff;
	padding-bottom: 150px;
}
.products-main{
	display: flex;
	gap: 45px;
	margin-bottom: 60px;
}
.products-list,
.products-image{
	width: calc(50% - 23px);
}

.products-list{
}
.products-list__item{
	position: relative;
	padding-bottom: 45px;
}
.products-list__item:nth-of-type(n+2){
	padding-top: 30px;
}
.products-list__item:nth-of-type(n+2):before{
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	display: block;
	background: #fff;
	content: '';
}
.products-list__item:nth-of-type(n+2):after{
	position: absolute;
	top: -3px;
	left: 0;
	width: 18px;
	height: 3px;
	display: block;
	background: #fff;
	content: '';
}
.products--item{
	display: flex;
	flex-wrap: wrap;
}
.products-item__thumbnail{
	display: none;
}
.products-item__image{
	
}
.products-item__content{
}
.products-item__content-name{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 10px;
	margin-bottom: 20px;
	position: relative;
}
.products-item__content-name:before{
	position: absolute;
	content: '';
	width: 50px;
	height: 18px;
	border-radius: 15px;
	display: inline-block;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	transition: all .2s ease;
}
.products-item__content-name:after{
	position: absolute;
	content: '';
	width: 16px;
	height: 7px;
	display: inline-block;
	right: 21px;
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	transition: all .15s ease;
}
.products-list__item:hover .products-item__content-name:before{
	transform: translateY(-50%) translateX(5px);
}
.products-list__item:hover .products-item__content-name:after{
	transform: translateY(-50%) translateX(5px);
}
.products-item__content-num{
	display: inline-block;
	border: 1px solid #fff;
	line-height: 1;
	padding: 3px 12px 2px;
	border-radius: 15px;
	font-size: 1.3rem;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}
.products-item__content-title{
	position: relative;
	display: inline-block;
	line-height: 1;
	font-weight: 600;
}
.products-item__content-title:after{
	display: inline-block;
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	left: 0;
	bottom: -6px;
	background: #fff;
	transition: all .3s ease-out;
}
.products-list__item:hover .products-item__content-title:after{
	width: 100%;
}
.products-item__content-text{
	font-weight: 300;
}
.products-item__link{
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
}
.products-image{
	position: relative;
	overflow: hidden;
}
.products-image__item{
	opacity: 0;
	display: block;
	transition: all .3s ease;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
}
.products-image__item.is-active {
	opacity: 1;
}
.products-image__img{
	width: 100%;
}
.products-sub__list{
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
}
.products-sub__list-item{
	position: relative;
	width: calc(50% - 23px);
	border: 1px solid #fff;
	border-radius: 3px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 60px;
	gap: 20px;
	align-items: center;
}
.products-sub--item__icon{
	width: 60px;
}
.products-sub--item__icon-img{
	display: block;
}
.products-sub--item__title{
	font-weight: 600;
}
.products-sub--item__link{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: all 1s ease;
}
.products-sub--item__link:hover:before{
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
	background: #fff;
	opacity: .1;
	
}
@media (max-width: 1199.98px) {
	
	.products-image__img{
		width: auto;
		height: 100%;
		object-fit: cover;
	}
}
@media (max-width: 991.98px) {
	.products-image{
		display: none;
	}
	.products-list{
		width: 100%;
	}
	.products-list__item{
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		padding-bottom: 30px;
	}
	.products-list__item:nth-of-type(n+2){
		margin-top: 0;
	}
	.products-item__thumbnail{
		display: block;
		width: 220px;
		border-radius: 3px;
		overflow: hidden;
	}
	.products-item__image {
		display: block;
	}
	.products-item__content{
		width: calc(100% - 220px);
		padding-left: 30px;
	}
}
@media (max-width: 767.98px) {
	
}
@media (max-width: 575.98px){
	.products-main{
		margin-bottom: 0;
	}
	.products-list__item{
		gap: 20px;
		padding-bottom: 60px;
	}
	.products-list__item:nth-of-type(n+2){
		padding-top: 60px;
	}
	.products-item__thumbnail{
		width: 100%;
		overflow: hidden;
		height: 220px;
	}
	.products-item__image{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top;
	}
	.products-item__content{
		width: 100%;
		padding: 0 5px;
	}
	.products-item__content-text{
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.products-sub__list{
		gap: 15px;
	}
	.products-sub__list-item{
		width: 100%;
		padding: 30px;
	}
	.products-sub--item__icon{
		width: 45px;
	}
	.products-sub--item__title{
		width: 120px;
	}
}


/*
 * top-factory
 * -------------------------------------------------------------------
 */
#top-factory{
	margin-bottom: 150px;
}
.factory-main{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	position: relative;
	justify-content: end;
}
.factory-map{
	position: absolute;
	z-index: 1;
	width: 80%;
	height: 100%;
	top: -300px;
	left: -40px;
}
.factory-list{
	position: relative;
	width: 50%;
	z-index: 2;
	justify-content: end;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.factory-list__item{
	position: relative;
	width: calc(50% - 15px);
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
}
.factory-item__thumbnail{
	overflow: hidden;
}
.factory-item__thumbnail-image{

	transition: all .3s ease;
	display: block;
}
.factory-item__content{
	padding: 20px;
}
.factory-item__content-title{
	position: relative;
	line-height: 1;
	margin-bottom: 15px;
	font-weight: 600;
	color: var(--primary-color);
}
.factory-item__content-text{
	line-height: 1.5;
	font-size: 1.5rem;
}
.factory-item__link{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.factory-map__bg{
	
}
.factory-map__items{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
}
.factory-map__item {
	display: block;
	transition: opacity .8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.map-pin__bg{
	fill: #339ddf;
	transition: opacity .8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.map-pin__circle{
	fill: #fff;
}
.map-text{
	fill: var(--primary-color);
	transition: all .8s cubic-bezier(0.4, 0, 1, 1);
}
.map-text.w-normal{
	display: block;
}
.map-text.w-bold{
	display: none;
}
.factory-map__item .cls-1 {
	fill: none;
	stroke: #114793;
	stroke-miterlimit: 10;
	stroke-width: 2px;
}
.factory-map__item .cls-4 {
	fill: #339ddf;
	opacity: .14;
}
/*****.is-hovered*****/
.factory-list__item:hover,
.factory-list__item.is-hovered{
	box-shadow: 0 0 1.5rem 2px rgb(0 0 0 / 10%);
}
.factory-list__item:hover .factory-item__thumbnail-image,
.factory-list__item.is-hovered .factory-item__thumbnail-image{
	transform: scale(1.1);
}
.is-hovered .map-pin__bg,
.factory-map__item:hover .map-pin__bg{
	fill: var(--primary-color);
}
.is-hovered .map-text.w-normal,
.factory-map__item:hover .map-text.w-normal{
	display: none;
}
.is-hovered .map-text.w-bold,
.factory-map__item:hover .map-text.w-bold{
	display: block;
}
@media (max-width: 1199.98px) {
	.factory-map{
		width: 70%;
	}
	.factory-list{
		width: 55%;
	}
}
@media (max-width: 991.98px) {
	.factory-map {
		width: 100%;
		position: relative;
		top: 0;
		left: 0;
		margin-top: -280px;
	}
	.factory-list{
		width: 80%;
		margin-top: -120px;
	}
}
@media (max-width: 767.98px) {
	.factory-map{
		margin-top: -170px;
	}
	.factory-list{
		margin-top: -90px;
	}
	.factory-list__item{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.factory-item__thumbnail{
		width: 40%;
	}
	.factory-item__thumbnail-image{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.factory-item__content{
		width: 60%;
	}
}
@media (max-width: 575.98px){
	.factory-map{
		margin-top: -100px;
		margin-bottom: 30px;
	}
	.factory-list {
		width: 100%;
		margin-top: 0;
		gap: 15px;
	}
	.factory-list__item{
		min-height: 120px;
		max-height: 150px;
	}
	.factory-item__content{
		padding: 15px;
		align-content: center;
	}
	.factory-item__thumbnail{
		width: 35%;
	}
	.factory-item__content{
		width: 65%;
	}
	.factory-item__content-title{
		margin-bottom: 10px;
	}
	.factory-item__content-text{
		font-size: 1.4rem;
	}
}
/*
 * top-company
 * -------------------------------------------------------------------
 */
#top-company{
	position: relative;
	margin-bottom: 150px;
	border-radius: 30px;
	overflow: hidden;
	background: var(--primary-color);
}
#top-company:before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;

	width: 100%;
	height: 100%;
	background-image: linear-gradient(156deg, #4cb4e8, #1379bf 13%, #013384);
	z-index: 2;
	opacity: .9;
}
#top-company:after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-image: url("../img/top/products-bg.png");
	z-index: 1;
}
#top-company .content__container{
	position: relative;
	padding-top: 150px;
	z-index: 3;
	color: var(--primary-color);
	padding-bottom: 150px;
}
.company-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.company-list__item{
	background: #fff;
	border-radius: 5px;
	width: calc(33.333% - 20px);
	position: relative;
}
.company-list__item.is-show {
}
.company-item__thumbnail{
	transition: all .3s ease;
	width: 200px;
	height: 200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	background: var(--bg-color);
	border-radius: 50%;
	margin: 60px auto;
}
.company-item__image{
	
}
.company-item__content{
	padding: 0 30px 60px;
}
.company-item__content-name{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	position: relative;
}
.company-item__content-num{
	display: inline-block;
	border: 1px solid var(--primary-color);
	line-height: 1;
	padding: 3px 12px 2px;
	border-radius: 15px;
	font-size: 1.3rem;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}
.company-item__content-title{
	position: relative;
	display: inline-block;
	line-height: 1;
	font-weight: 600;
}
.company-item__content-title:after{
	display: inline-block;
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	left: 0;
	bottom: -6px;
	background: var(--primary-color);
	transition: all .3s ease-out;
}
.company-item__content-text{color: var(--font-color);}
.company-item__link{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.company-list__item:hover{
	box-shadow: 0 0 4rem 2px rgb(0 0 0 / 30%);
}
.company-list__item:hover .company-item__thumbnail{
	transform: scale(1.05);
}
.company-item__link:before{
	top: auto!important;
	bottom: 15px;
	right: 20px!important;
	transform: none!important;
}
.company-item__link:after{
	top: auto !important;
	bottom: 21px;
	right: 36px !important;
	transform: none!important;
}
.company-item__link:hover:before{
	transform: translateX(5px)!important;
}
.company-item__link:hover:after{
	transform: translateX(5px)!important;
}
@media (max-width: 991.98px) {
	.company-list__item{
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		padding: 30px;
		align-items: center;
	}
	.company-item__thumbnail{
		margin: 0;
	}
	.company-item__content{
		width: calc(100% - 200px);
		padding: 0 0 0 30px;
	}
}
@media (max-width: 575.98px){
	#top-company .content__container{
		
	}
	.company-list__item{
		padding: 25px 15px 45px;
	}
	.company-item__thumbnail{
		width: 90px;
		height: 90px;
	}
	.-company .company-item__image{
		width: 60px;
	}
	.-sustainability .company-item__image{
		width: 44px;
	}
	.-recruitment .company-item__image{
		width: 48px;
	}
	.company-item__content{
		width: calc(100% - 90px);
		padding: 0 0 0 15px;
	}
	.company-item__content-name{
		margin-bottom: 10px;
		gap: 5px;
	}
	.company-item__link:before{
		bottom: 22px;
	}
	.company-item__link:after{
		bottom: 28px;
	}
	.company-item__content-num{
		padding: 3px 10px 2px;
		position: absolute;
		top: 1px;
		left: 0;
	}
	.company-item__content-title{
		padding-left: 42px;
	}
}



/*
 * top-topics
 * -------------------------------------------------------------------
 */
#top-topics{
	margin-bottom: 150px;
}

#top-topics .content__container{
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#top-topics .page-heading{
	
}
@media (max-width: 1199.98px) {
	

}
@media (max-width: 991.98px) {
	#top-topics .content__container{
		flex-direction: column;
	}
	#top-topics .topics-list{
		width: 100%;
	}
}
@media (max-width: 767.98px) {
}

/*
 * top-blog
 * -------------------------------------------------------------------
 */
#top-blog{
	position: relative;
	/* margin-bottom: 150px; */
}

#top-blog:before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 2;
	opacity: .6;
}
#top-blog:after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/top/blog-bg.png");
	z-index: 1;
}
#top-blog .content__container{
	position: relative;
	padding-top: 150px;
	z-index: 3;
	padding-bottom: 150px;
}
/*
 * top-banner
 * -------------------------------------------------------------------
 */
#top-banner{
	margin-bottom: -30px;
	padding-bottom: 30px;
}
.banner-list{
	width: 50%;
	min-width: 580px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	padding: 90px 0;
}
.banner-list__item{
	
}
.banner-item{
	display: block;
}
.banner-item__image{
	display: block;
}
@media (max-width: 991.98px) {
	.banner-list__item{
	}
}
@media (max-width: 767.98px) {
	.banner-list{
		min-width: 90%;
	}
	.banner-list__item{
		width: calc(33.333% - 10px);
	}
}
@media (max-width: 575.98px){
	.banner-list{
		padding: 45px 0;
		min-width: 90%;
		width: 90%;
		gap: 10px;
	}
}
