@charset "utf-8";

html{
	background: var(--blackcolor);
}
.main{
	position: relative;
}
.main::after{
	content: "";
	width: 100%;
	height: 20rem;
	background: #fff;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.main::after{ /* ★ */
		height: 20rem;
	}

}



/*-------------------------------
	メインビジュアル
-------------------------------*/

:root{
	--pritate-mainvisual-padding-left: 4rem;
}
.Mainvisual{
	margin-top: var(--header-height);
	height: calc(100svh - var(--header-height));
	padding-left: var(--pritate-mainvisual-padding-left);
	width: 100%;
	padding-top: 11rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
	z-index: 6000;
}
.Mainvisual__inner{
	width: calc(100% - 16rem);
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
}
.Mainvisual-catch{
	font-size: 12.8rem;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	position: absolute;
	left: -9.5rem;
	top: -6.5rem;
	z-index: 6000;
}
.Mainvisual-catch__jp{
	margin-bottom: 4rem;
	line-height: 1;
	font-weight: 700;
	overflow: hidden;
}
.Mainvisual-catch__jp span{
	transition: 1s transform var(--transition-easing2);
    line-height: .88;
    padding-bottom: 1rem;
	display: block;
	transform: translateY(1em);
	transition-delay: .3s;
}
.Mainvisual-catch__en{
	font-family: var(--en);
	font-size: 2.8rem;
	line-height: 1;
	font-weight: 400;
	overflow: hidden;
}
.Mainvisual-catch__en span{
	transition: 1s transform var(--transition-easing2);
    line-height: .7;
    padding-bottom: .8rem;
	display: block;
	transform: translateY(1em);
	transition-delay: .8s;
}
.Mainvisual-image{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 4000;
}
.Mainvisual-image__itemWrap{
	width: 100%;
	height: 100%;
}
.Mainvisual-image__item{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 5000;
}
.Mainvisual-image__item.-mask::before{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: .15;
	z-index: 6000;
}
.Mainvisual-image__itemInner::before,
.Mainvisual-image__itemInner::after{
	transition: 1.5s opacity var(--transition-easing1), transform 1.5s var(--transition-easing1), width 2.5s var(--transition-easing1);
	content: "";
	display: block;
	height: 100%;
	background: #fff;
	position: absolute;
	bottom: 0;
	top: 0;
	z-index: 6000;
	transform: skewX(-15deg);
	opacity: 0;
	mix-blend-mode: overlay;
}
.Mainvisual-image__itemInner::before{
	width: 25rem;
	opacity: .35;
	right: 0;
}
.Mainvisual-image__itemInner::after{
	width: 25rem;
	opacity: .4;
	right: -15rem;
}
.Mainvisual-image__itemInner{
	width: 100%;
	height: 100%;
	display: block;
}
.Mainvisual-image__item img{
	transition: 1.5s transform var(--transition-easing1);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	position: relative;
	z-index: 4000;
}
.Mainvisual-image__item.swiper-slide-active .Mainvisual-image__itemInner::before,
.Mainvisual-image__item.swiper-slide-active .Mainvisual-image__itemInner::after{
	width: 200%;
	opacity: .3;
	transform: translateX(-100%) skewX(-15deg);
}
.Mainvisual-image__item.swiper-slide-active img{
	transform: scale(1);
}
.Mainvisual__arrow{
	padding-bottom: 8.6rem;
	position: absolute;
	left: var(--pritate-mainvisual-padding-left);
	bottom: 0;
}
.Mainvisual__arrow::before{
	content: "";
	display: block;
	width: 1px;
	height: 7.5rem;
	background: rgba(255,255,255,.25);
	position: absolute;
	left: 50%;
	bottom: 0;
}
.Mainvisual__arrow::after{
	content: "";
	display: block;
	width: 1px;
	height: 7.5rem;
	background: #fff;
	position: absolute;
	left: 50%;
	bottom: 0;
	clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.Mainvisual__arrowText{
	font-family: var(--en);
	font-size: 1.2rem;
	letter-spacing: .025em;
	line-height: 1;
	display: block;
	color: #fff;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.Mainvisual.on .Mainvisual-catch__jp span{
	transform: translateY(0);
}
.Mainvisual.on .Mainvisual-catch__en span{
	transform: translateY(0);
}
.Mainvisual.on .Mainvisual__arrow::after{
	animation: mainvisual__arrow 2.5s var(--transition-easing1) infinite;
	animation-delay: .5s;
}
@keyframes mainvisual__arrow{
	0%{
		clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
	}
	10%{
		clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
	}
	45%{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
	55%{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
	90%{
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	}
	100%{
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	}
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Mainvisual-catch{
		font-size: 12rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Mainvisual__inner{
		width: calc(100% - 13.5rem);
	}
	.Mainvisual-catch{
		font-size: 10rem;
		left: -12rem;
	}

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

	.Mainvisual{
		padding-top: 15.5rem;
		margin-bottom: 2.8rem;
	}
	.Mainvisual__inner{
		width: calc(100% - 10.8rem);
	}
	.Mainvisual-catch{
		font-size: 13rem;
		left: -10.8rem;
		top: -10.5rem;
	}
	.Mainvisual-catch__jp{
		margin-bottom: 3rem;
	}
	.Mainvisual-catch__jp span{
		padding-bottom: 0;
		transform: translateY(2.5em);
		line-height: calc(16 / 13);
	}
	.Mainvisual-catch__en{
		font-size: 4rem;
	}
	.Mainvisual-catch__en span{
		line-height: calc(6 / 4);
		padding-bottom: 0;
		transform: translateY(3em);
	}
	.Mainvisual__arrow{
		padding-bottom: 14rem;
	}
	.Mainvisual__arrow::before{
		height: 12rem;
	}
	.Mainvisual__arrow::after{
		height: 12rem;
	}
	.Mainvisual__arrowText{
		font-size: 2rem;
	}

}



/*-------------------------------
	共通
-------------------------------*/

.Index__inner{
	position: relative;
	z-index: 5000;
}
.Index__headerObj{
	transform: translateY(-4.5rem);
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.Index__headerObj{
		transform: translateY(-5rem);
	}

}



/*-------------------------------
	メッセージ
-------------------------------*/

#Message{
	padding-top: 31rem;
	margin-top: -13rem;
}
.Message{
	padding-bottom: 18.5rem;
	color: #fff;
	position: relative;
	z-index: 4000;
}
.Message::before{
	content: "";
	display: block;
	width: 100%;
	height: 13rem;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 5000;
	background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.Message::after{
	transition: 1s opacity var(--transition-easing1);
	content: "";
	display: block;
	width: 100%;
	height: 91rem;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
    background-image: image-set(url(../images/index/bg_message.jpg) 1x, url(../images/index/bg_message@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../images/index/bg_message.jpg) 1x, url(../images/index/bg_message@2x.jpg) 2x);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0;
}
.Message__inner{
	position: relative;
	z-index: 6000;
}
.Message__text{
	transition: 1s opacity var(--transition-easing3), 1s transform var(--transition-easing3);
	font-size: 2.8rem;
	letter-spacing: .1em;
	font-weight: 500;
	line-height: calc(6.9 / 2.8);
	text-align: center;
	opacity: 0;
	transform: translateY(5rem);
	transition-delay: .4s;
}
.Message-gallery{
	transition: 1s opacity var(--transition-easing3), 1s transform var(--transition-easing3);
	margin-top: -7.2rem;
	z-index: -1;
	transform: translateY(5rem);
	opacity: 0;
	transition-delay: .8s;
}
.Message-gallery__itemWrap{
	transition-timing-function: linear;
	align-items: center;
}
.Message-gallery__item{
	width: 32.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Message-gallery__item img{
	aspect-ratio: 1 / 1;
}
.Message-gallery__item.-large img{
	width: calc(100% + 2.2rem);
}
.Message-gallery__item.-small img{
	width: calc(100% - 10.8rem);
}

.Message.on::after{
	opacity: .15;
}
.Message.on .Message__text{
	opacity: 1;
	transform: translateY(0);
}
.Message.on .Message-gallery{
	opacity: 1;
	transform: translateY(0);
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	#Message{
		padding-top: 14.5rem;
		margin-top: 0;
	}
	.Message{
		padding-bottom: 19.5rem;
	}
	.Message::before{
		height: 13rem;
	}
	.Message::after{
		background-size: 100%;
		background-image: image-set(url(../images/index/sp_bg_message.jpg) 1x, url(../images/index/sp_bg_message@2x.jpg) 2x);
		background-image: -webkit-image-set(url(../images/index/sp_bg_message.jpg) 1x, url(../images/index/sp_bg_message@2x.jpg) 2x);
	}
	.Message__text{
		font-size: 3.6rem;
		line-height: calc(8.6 / 3.6);
	}
	.Message-gallery{
		margin-top: -8rem;
	}
	.Message-gallery__item{
		width: 36rem;
	}
	.Message-gallery__item.-large img{
		width: calc(100% + 2rem);
	}
	.Message-gallery__item.-small img{
		width: calc(100% - 12rem);
	}

}



/*-------------------------------
	会社概要
-------------------------------*/

.About{
	padding-top: 0;
	padding-bottom: 17.5rem;
	color: #fff;
}
.About__inner{
	position: relative;
	z-index: 5000;
}
.About__body{
	margin-top: -5.2rem;
	z-index: -1;
	position: relative;
}
.About__image{
	width: 100%;
	margin-bottom: 4.2rem;
}
.About__image picture{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.About__image img{
	width: calc(100% + 12.6rem);
}
.About-block{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.About-block__text{
	width: calc(100% - 24rem);
	padding-right: 7.5rem;
	font-size: 2rem;
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.About-block{
		flex-direction: column;
	}
	.About-block__text{
		width: 100%;
		margin-bottom: 5rem;
		padding-right: 0;
	}

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

	.About{
		padding-top: 0;
		padding-bottom: 20rem;
	}
	.About__body{
		margin-top: -9rem;
	}
	.About-block{
		flex-direction: column;
	}
	.About__image{
		margin-bottom: 8.5rem;
	}
	.About__image img{
		width: calc(100% + (var(--padding-leftright) * 2));
	}
	.About-block__text{
		width: 100%;
		padding-right: 0;
		font-size: 3.2rem;
		margin-bottom: 9rem;
	}

}



/*-------------------------------
	事業紹介
-------------------------------*/

.Business{
	background: var(--maincolor);
	padding-top: 0;
	color: #fff;
	position: relative;
	z-index: 5000;
}
.Business::before{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 7.6rem;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: -1;
}
.Business__title{
	margin-bottom: 3.4rem;
}
.Business__text{
	width: 100%;
	max-width: 84rem;
	font-size: 2rem;
	margin-bottom: 9rem;
}
.Business-list{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.Business-list__item{
	width: calc((100% - 8rem) / 2);
}
.Business-list__itemImage{
	width: 100%;
	margin-bottom: 4rem;
}
.Business-list__itemImage img{
	width: 100%;
}
.Business-list__itemTitle{
	width: 100%;
	font-size: 3rem;
	margin-bottom: 2.5rem;
	font-weight: 700;
	line-height: 1;
}
.Business-list__itemText{
	margin-bottom: 3.5rem;
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Business__text{
		margin-bottom: 5rem;
	}
	.Business-list__item{
		width: calc((100% - var(--padding-leftright)) / 2);
	}

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

	.Business::before{
		height: 10rem;
	}
	.Business__title{
		margin-bottom: 2.5rem;
	}
	.Business__text{
		max-width: 100%;
		font-size: 3.2rem;
		margin-bottom: 7.5rem;
		letter-spacing: .02em;
	}
	.Business-list{
		row-gap: 15rem;
		flex-direction: column;
	}
	.Business-list__item{
		width: 100%;
	}
	.Business-list__itemImage{
		max-width: 57rem;
		margin-bottom: 5.5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.Business-list__itemTitle{
		font-size: 4rem;
		text-align: center;
	}
	.Business-list__itemText{
		margin-bottom: 8.5rem;
	}
	.Business-list__itemButton{
		margin-left: auto;
		margin-right: auto;
	}

}



/*-------------------------------
	製品購入
-------------------------------*/

.Store{
	padding-top: 21.5rem;
	background: rgba(25,25,25,1);
	color: #fff;
}
.Store__title{
	margin-bottom: 4.5rem;
}
.Store__top{
	width: 100%;
	margin-bottom: 7.2rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.Store__text{
	width: calc(100% - 24rem);
	padding-right: 7.5rem;
	font-size: 2rem;
}
.Store-list__itemWrap{
	transition-timing-function: linear;
}
.Store-list__item{
	width: 30rem;
}
.Store-list__itemImage{
	width: 100%;
}
.Store-list__itemImage img{
	width: 100%;
}
.Store-list + .Store__button{
	display: none;
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Store__top{
		margin-bottom: 5rem;
	}
	.Store__text{
		width: 100%;
		padding-right: 0;
	}
	.Store__top .Store__button{
		display: none;
	}
	.Store-list + .Store__button{
		margin-top: 5rem;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

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

	.Store{
		background: var(--blackcolor);
		padding-top: 18rem;
	}
	.Store__title{
		margin-bottom: 2.5rem;
	}
	.Store__top{
		margin-bottom: 9rem;
	}
	.Store__text{
		width: 100%;
		padding-right: 0;
		font-size: 3.2rem;
		letter-spacing: .02em;
	}
	.Store-list{
		margin-bottom: 9.5rem;
	}
	.Store-list__item{
		width: 32.5rem;
	}
	.Store__button{
		margin-left: auto;
		margin-right: auto;
	}
	.Store__top .Store__button{
		display: none;
	}
	.Store-list + .Store__button{
		display: block;
	}

}



/*-------------------------------
	お知らせ
-------------------------------*/

.News{
	background: #fff;
}
.News__title{
	margin-bottom: 5.5rem;
}
.News__body{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.News-sidebar{
	width: 24rem;
	display: block;
}
.News-category{
	margin-bottom: 6.8rem;
}
.News-list-wrap{
	width: calc(100% - 24rem);
	padding-left: 7rem;
}
.News-list{
	width: 100%;
	display: none;
}
.News-list.-current{
	display: block;
}

@media screen and (min-width:769px) , print{

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

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.News__title{
		margin-bottom: 7rem;
	}
	.News__body{
		flex-direction: column;
	}
	.News-sidebar{
		width: 100%;
	}
	.News-category{
		margin-bottom: 10.5rem;
	}
	.News-list-wrap{
		width: 100%;
		margin-bottom: 10rem;
		padding-left: 0;
	}
	.News__button{
		margin-left: auto;
		margin-right: auto;
	}

}