/* 
 TOP
----------------------------------------------------------- */ 
.home{
	position: relative;
	z-index: 0;
}
.home::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: block;
	width: min(90%,1345px);
	height: 100%;
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	z-index: -1;
}
.home::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 1px;
	height: 100%;
	background-color: var(--border-color);
	z-index: -1;
}
.p-top-fv{
	width:100%;
	height:100vh;
	position: relative;
	background: url("../img/top/fv-bg.jpg") center center / cover no-repeat;
}
.p-top-fv-slider{
	width: 75%;
	height: 100%;
	margin: 0 clamp(20px, 4.1vw, 80px) 0 auto;
	padding-bottom: clamp(30px, 4.4vw, 85px);
}
.p-top-fv-slider__item picture {
	height: 100%;
	width: 100%;
}
.p-top-fv-slider__item img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: top right;
}
.p-top-fv__pagenation{
	position: absolute;
	left: clamp(20px, 2vw, 40px);
	top: 200px;
	z-index: 2;
}
.p-top-fv__pagenation > li{
	color: var(--pale-color);
	font-family: var(--font-num);
	font-weight: 400;
	font-size: 12px;
	text-align: center;
	position: relative;
	z-index: 0;
	padding-left: 28px;
	transition: color var(--trans-base);
}
.p-top-fv__pagenation > li:not(:last-child){
	margin-bottom: 20px;
}
.p-top-fv__pagenation > li.is-active{
	color: #fff;
}
.p-top-fv__pagenation > li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 12px;
	height: 12px;
	background: url("../img/common/pagenation-arrow.svg") center center / contain no-repeat;
	transition: opacity var(--trans-base);
	opacity: 0;
}
.p-top-fv__pagenation > li.is-active::before{
	opacity: 1;
}
.p-top-fv__heading{
	position: absolute;
	left: clamp(50px, 10.4vw, 200px);
	bottom: 35px;
	color: #fff;
	z-index: 1;
}
.p-top-fv__read{
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.3vw, 45px);
	font-weight: 700;
	font-size: clamp(18px, 1.8vw, 35px);
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.p-top-fv__read-text > span{
	font-size: clamp(20px, 2.6vw, 50px);
}
.p-top-fv__read-equalizer {
    width: 113px;
    height: 27px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.p-top-fv__read-bar {
    width: 9px;
    height: 100%;
    background-color: #ffffff;
    transform-origin: bottom;
    animation: bounce 1s infinite alternate ease-in-out;
}
.p-top-fv__read-bar--1 { animation-duration: 0.7s; animation-delay: -0.3s; }
.p-top-fv__read-bar--2 { animation-duration: 1.1s; animation-delay: -0.5s; }
.p-top-fv__read-bar--3 { animation-duration: 0.8s; animation-delay: -0.8s; }
.p-top-fv__read-bar--4 { animation-duration: 1.2s; animation-delay: -0.1s; }
.p-top-fv__read-bar--5 { animation-duration: 0.9s; animation-delay: -0.6s; }
.p-top-fv__read-bar--6 { animation-duration: 1.0s; animation-delay: -0.9s; }
.p-top-fv__read-bar--7 { animation-duration: 1.3s; animation-delay: -0.4s; }
.p-top-fv__read-bar--8 { animation-duration: 0.8s; animation-delay: -0.7s; }
.p-top-fv__read-bar--9 { animation-duration: 1.1s; animation-delay: -0.2s; }
@keyframes bounce {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}
.p-top-fv__title{
	font-family: var(--font-en);
	line-height: 1.1;
	font-size: clamp(80px, 6.8vw, 130px);
	font-weight: 700;
	width: 55vw;
}
.p-top-fv__title-block {
	display: block;
	opacity: 0;
}
.p-top-fv__title-block:nth-child(1) {
	transform: translateX(-80px);
	animation: slideInLeft 0.8s ease forwards;
}
.p-top-fv__title-block:nth-child(2) {
	transform: translateX(80px);
	animation: slideInRight 0.8s ease forwards;
	text-align: right;
}
.p-top-fv__title-block:nth-child(2) {
	animation-delay: 0.15s;
}
@keyframes slideInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes slideInRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.char {
	display: inline-block;
	opacity: 0;
	filter: brightness(100%);
	will-change: opacity, filter;
	animation: flicker 2s steps(1, end) 1 forwards;
}
.char:nth-child(odd) {
	animation-duration: 1.9s;
}
.char:nth-child(even) {
	animation-duration: 2.1s;
}
@keyframes flicker {
	0%   { opacity: 0; filter: brightness(100%); }
	3%   { opacity: 0; }
	8%   { opacity: 1; filter: brightness(100%); }
	12%  { opacity: 0; }
	15%  { opacity: 0.3; filter: brightness(160%); }
	18%  { opacity: 1; filter: brightness(100%); }
	26%  { opacity: 0; }
	29%  { opacity: 1; }
	42%  { opacity: 0.5; filter: brightness(140%); }
	46%  { opacity: 1; }
	58%  { opacity: 0; }
	62%  { opacity: 1; }
	74%  { opacity: 0.6; filter: brightness(130%); }
	78%  { opacity: 1; }
	88%  { opacity: 0; }
	92%  { opacity: 1; }
	100% { opacity: 1; filter: brightness(100%); }
}
.p-top-fv__scroll{
	position: absolute;
	left: 3.3%;
	bottom: clamp(25px, 2.6vw, 50px);
	padding-bottom: clamp(90px, 8.8vw, 170px);
	font-size: var(--fontsize-20);
	font-family: var(--font-en);
	text-align: center;
	transform: translateX(-50%);
	z-index: 1;
	color: #fff;
	writing-mode: vertical-rl;
	font-weight: 700;
}
.p-top-fv__scroll::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 2px;
	border-radius: 3px;
	height: clamp(75px, 7.6vw, 145px);
	animation:scroll-down 2s infinite both;
	background-color: var(--sub-red);
	box-shadow: 0 0 5px var(--sub-red);
}
@keyframes scroll-down {
  0% {
    transform-origin:top;
    transform:scaleY(0)
  }
  39% {
    transform-origin:top;
    transform:scaleY(1)
  }
  40% {
    transform-origin:bottom;
    transform:scaleY(1)
  }
  100% {
    transform-origin:bottom;
    transform:scaleY(0)
  }
}
.p-top-h2{
	font-weight: 800;
	font-size: clamp(30px, 2.6vw, 50px);
}
.p-top-h2__en{
	font-size: var(--fontsize-16);
	font-family: var(--font-en);
	font-weight: 700;
	padding-left: 22px;
	position: relative;
	z-index: 0;
	display: block;
}
.p-top-h2__en::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--sub-red);
}
.p-top-products{
	padding-block: clamp(60px, 7.6vw, 145px);
}
.p-top-products__inner{
	width: min(90%,1540px);
	margin-inline: auto;
}
.p-top-products__heading{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
	grid-column-gap: clamp(30px, 6.8vw, 130px);
	grid-row-gap: 25px;
	padding-bottom: clamp(30px, 3.4vw, 65px);
	position: relative;
	z-index: 0;
}
.p-top-products__heading::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100vw;
	height: 100%;
	margin-inline: calc(50% - 50vw);
	background: url("../img/top/products-heading-bg.png") center bottom / auto 100% no-repeat;
	z-index: -1;
}
.p-top-products__list{
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}
.p-top-products__img{
	background-color: #FDFDFD;
	padding: clamp(20px, 2vw, 40px);
	border-radius: 4px;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
	margin-bottom: 20px;
	position: relative;
	z-index: 0;
	transition: background-color var(--trans-base);
}
.p-top-products__item:hover .p-top-products__img{
	background-color: var(--bg-pale);
}
.p-top-products__img::before{
	content: "";
	position: absolute;
	right: 24px;
	bottom: 16px;
	width: 28px;
	height: 28px;
	background: url("../img/common/blue-arrow.svg") center center / contain no-repeat;
}
.p-top-products__img > img{
	width: min(100%,335px);
	height: auto;
	margin: 0 auto;
	aspect-ratio: 3 / 2;
}
.p-top-products__text{
	font-size: var(--fontsize-15);
	color: var(--font-gray);
	margin-bottom: 5px;
}
.p-top-products__title{
	font-weight: 700;
	font-size: var(--fontsize-20);
}
.p-top-products__num{
	color: var(--main-color);
	font-size: var(--fontsize-15);
	margin-bottom: 24px;
}
.p-top-products__cta{
	width: 280px;
}
.p-top-products-cat{
	padding: 0 30px clamp(50px, 6.8vw, 130px);
}
.p-top-products-cat__box{
	width: min(100%,1795px);
	margin-inline: auto;
	background-color: #EAEAEA;
	border-radius: 15px;
	padding: clamp(40px, 4.1vw, 80px) 5%;
	border: 1px solid var(--border-color);
}
.p-top-products-cat__inner{
	width: min(100%,1200px);
	margin-inline: auto;
}
.p-top-catalog{
	background: url("../img/top/catalog-bg.jpg") center center / cover no-repeat;
	padding: 30px;
}
.p-top-catalog__box{
	border-radius: 10px;
	overflow: hidden;
	background-color: rgba(255,255,255,0.15);
	-webkit-backdrop-filter: blur(6px) brightness(1.15);
	backdrop-filter: blur(6px) brightness(1.15);
	padding: clamp(30px, 5.7vw, 110px) 5%;
}
.p-top-catalog__inner{
	width: min(100%,990px);
	margin-inline: auto;
}
.p-top-catalog__en {
	display:flex;
	position:absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.p-top-catalog__en li {
	animation:text-loop 180s linear 0s infinite;
	line-height: 1;
	font-size: clamp(80px, 12.5vw, 240px);
	color: rgba(29,32,137,0.7);
	white-space: nowrap;
	font-family: var(--font-en);
	padding-right: 0.5em;
	font-weight: 700;
}
.p-top-catalog__en li:nth-child(2) {
	animation:text-loop2 180s linear -90s infinite;
}
@keyframes text-loop {
	0% {
		transform:translateX(100%)
	}
	to {
		transform:translateX(-100%)
	}
}
@keyframes text-loop2 {
	0% {
		transform:translateX(0)
	}
	to {
		transform:translateX(-200%)
	}
}
.p-top-catalog__list{
	display: grid;
	gap: clamp(30px, 5.7vw, 110px);
	grid-template-columns: repeat(2, 1fr);
}
.p-top-catalog__item{
	background-color: #fff;
	border-radius: 10px;
	padding: clamp(20px, 2.6vw, 50px);
	display: flex;
	flex-direction: column;
}
.p-top-catalog__img{
	margin-bottom: 24px;
}
.p-top-catalog__img img{
	width: 100%;
	height: 100%;
	aspect-ratio: 8 / 5;
	object-fit: cover;
	border-radius: 4px;
}
.p-top-catalog__item > p{
	margin-bottom: clamp(20px, 2.9vw, 55px);
}
.p-top-catalog__cta{
	margin-top: auto;
}
.p-top-catalog__cta .c-more-btn{
	margin-inline: auto;
}
.p-top-img {
	overflow: hidden;
	width: 100%;
	margin-block: clamp(50px, 6.8vw, 130px);
	position: relative;
	z-index: 1;
}
.p-top-img__slider {
	display: flex;
	align-items: flex-start;
	gap: clamp(30px, 5.7vw, 110px);
	width: max-content;
	will-change: transform;
}
.p-top-img__slider li {
	flex: 0 0 auto;
	list-style: none;
}
.p-top-img__slider li:nth-child(even) {
	margin-top: clamp(30px, 4.7vw, 90px);
}
.p-top-img__slider img {
	display: block;
	height: clamp(200px, 20.8vw, 400px);
	width: auto;
	border-radius: 10px;
}
.p-top-news{
	padding: clamp(50px, 6.8vw, 130px) 30px;
	position: relative;
	z-index: 0;
}
.p-top-news::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: clamp(200px, 20.8vw, 400px);
	height: clamp(180px, 15.1vw, 290px);
	background: url("../img/top/news-bg-left.png") left top / contain no-repeat;
	z-index: -1;
}
.p-top-news::after{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: clamp(70px, 7.3vw, 140px);
	height: clamp(250px, 24.5vw, 470px);
	background: url("../img/top/news-bg-right.png") right bottom / contain no-repeat;
	z-index: -1;
}
.p-top-news__box{
	width: min(100%,1795px);
	margin-inline: auto;
	background-color: #fff;
	border-radius: 10px;
	padding: clamp(40px, 5.7vw, 110px) 5%;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
}
.p-top-news__inner{
	width: min(100%,1540px);
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.p-top-news__heading{
	width: 280px;
}
.p-top-news__body{
	width: calc(95% - 280px);
}
.p-top-news__cta{
	margin-top: clamp(15px, 2.6vw, 50px);
}
.p-top-news__item:not(:last-child){
	margin-bottom: 24px;
}
.p-top-news__link{
	display: block;
	background-color: #EAEAEA;
	border-radius: 10px;
	padding: 24px 62px 24px clamp(20px, 2vw, 40px);
	transition: background-color var(--trans-base);
	position: relative;
}
.p-top-news__item:hover .p-top-news__link{
	background-color: var(--bg-pale);
}
.p-top-news__title{
	font-size: var(--fontsize-16);
	margin-top: 10px;
}
.p-top-news__arrow{
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}
.p-top-news__arrow svg{
	width: 24px;
	height: auto;
}
.p-top-news__arrow svg path,
.p-top-news__arrow svg circle{
	transition: fill var(--trans-base);
}
.p-top-news__item:hover .p-top-news__arrow svg path{
	fill: #fff;
}
.p-top-news__item:hover .p-top-news__arrow svg circle{
	fill: var(--main-color);
}
.p-top-links{
	padding-block: clamp(35px, 3.4vw, 65px);
	background-color: var(--bg-pale);
}
.p-top-links__list{
	display: grid;
	gap: clamp(25px, 2.6vw, 50px);
	grid-template-columns: repeat(3, 1fr);
}
.p-top-links__link{
	display: block;
	background-color: var(--main-color);
	padding: 23px 44px 23px 32px;
	border-radius: 4px;
	position: relative;
	line-height: 1.6;
	transition: background-color var(--trans-base);
}
.p-top-links__link:hover{
	background-color: #fff;
}
.p-top-links__link::before{
	content: "";
	position: absolute;
	left: 32px;
	top: 0;
	height: 2px;
	width: 28px;
	background-color: var(--sub-red);
}
.p-top-links__en{
	display: block;
	font-family: var(--font-en);
	font-size: var(--fontsize-14);
	color: var(--pale-color);
	font-weight: 700;
}
.p-top-links__title{
	color: #fff;
	font-size: var(--fontsize-22);
	transition: color var(--trans-base);
	font-weight: 600;
}
.p-top-links__link:hover .p-top-links__title{
	color: var(--main-color);
}
.p-top-links__arrow{
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}
.p-top-links__arrow svg{
	height: 8px;
	width: auto;
}
.p-top-links__arrow svg path{
	fill: #fff;
	transition: fill var(--trans-base);
}
.p-top-links__link:hover .p-top-links__arrow svg path{
	fill: var(--main-color);
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1280px) {
	.p-top-fv-slider{
		width: 85%;
	}
	.p-top-products__cta{
		width: 100%;
	}
	.p-top-products__cta .c-more-btn{
		margin-left: auto;
	}
}
@media screen and (max-width: 1024px){
	.p-top-fv__title{
		width: min(95%,650px);
	}
	.p-top-news__heading{
		width: 230px;
	}
	.p-top-news__body{
		width: calc(95% - 230px);
	}
	.p-top-links__link{
		padding: 15px 34px 15px 15px;
	}
	.p-top-links__link::before{
		left: 15px;
	}
	.p-top-links__arrow{
		right: 15px;
	}
}
@media screen and (max-width: 767px){
	.p-top-fv{
		background: url("../img/top/fv-bg-sp.jpg") center center / cover no-repeat;
	}
	.p-top-fv-slider{
		width: 90%;
		margin: 0 auto;
		padding-bottom: 95px;
	}
	.p-top-fv__scroll{
		left: 5%;
		bottom: 90px;
	}
	.p-top-fv__pagenation > li:not(:last-child){
		margin-bottom: 10px;
	}
	.p-top-fv__pagenation{
		left: 5%;
		top: 100px;
	}
	.p-top-fv__heading{
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		margin: 0;
		width: 90%;
	}
	.p-top-fv__title{
		width: 100%;
		font-size: clamp(70px, 6.8vw, 130px);
	}
	.p-top-fv__read{
		gap: 10px;
	}
	.p-top-products__list{
		grid-template-columns: repeat(1, 1fr);
	}
	.p-top-products__img > img{
		width: min(100%,280px);
	}
	.p-top-products__num{
		margin-bottom: 15px;
	}
	.p-top-products-cat{
		padding: 0 5% clamp(70px, 7.6vw, 145px);
	}
	.p-top-catalog{
		padding: 5%;
	}
	.p-top-catalog__list{
		grid-template-columns: repeat(1, 1fr);
	}
	.p-top-news{
		padding: 0 5% clamp(70px, 7.6vw, 145px);
	}
	.p-top-news__heading{
		width: 100%;
		margin-bottom: 30px;
	}
	.p-top-news__body{
		width: 100%;
	}
	.p-top-links__list{
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (max-width: 480px){
	.p-top-fv__read{
		margin-bottom: 8px;
	}
	.p-top-fv__read-text{
		width: 100%;
	}
	.p-top-fv__read-text:last-of-type{
		text-align: right;
	}
	.p-top-fv__read-equalizer {
		width: 90px;
		height: 20px;
		margin-inline: auto;
	}
	.p-top-fv__read-bar {
		width: 6px;
	}
	.p-top-fv-slider__item img {
		object-position: top center;
	}
	.p-top-fv__title{
		font-size: clamp(60px, 6.8vw, 130px);
	}
	.p-top-products__heading .p-top-products__cta{
		display: none !important;
	}
	.p-top-products__img > img{
		width: min(100%,230px);
	}
	.p-top-products__cta{
		margin-top: 30px;
	}
	.p-top-products__cta .c-more-btn{
		margin: 0 auto;
	}
	.p-top-news__heading .p-top-news__cta{
		display: none !important;
	}
	.p-top-news__cta{
		margin-top: 30px;
	}
	.p-top-news__cta .c-more-btn{
		margin: 0 auto;
	}
}