@charset "utf-8";

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

.Mainvisual{
	width: 100%;
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	z-index: 5000;
}
.Mainvisual::before,
.Mainvisual::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.Mainvisual::before{
	background: var(--blackcolor);
	z-index: 4000;
	opacity: .35;
}
.Mainvisual::after{
	content: "";
	z-index: -2;
    background-image: url(../images/index/bg_mainvisual.jpg);
    background-image: image-set(url(../images/index/bg_mainvisual.jpg) 1x, url(../images/index/bg_mainvisual@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../images/index/bg_mainvisual.jpg) 1x, url(../images/index/bg_mainvisual@2x.jpg) 2x);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.Mainvisual__inner{
	position: relative;
	z-index: 6000;
}
.Mainvisual-block{
	width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	line-height: 1;
	cursor: pointer;
}
.Mainvisual-block__button{
	width: 8.8rem;
	height: 8.8rem;
	margin-bottom: 2rem;
	background-image: url(../images/index/icon_movie-button.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Mainvisual-block__text{
	font-family: var(--en);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: .8;
	letter-spacing: .05em;
	color: #fff;
	display: block;
}
.Mainvisual-movie{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.Mainvisual-movie video{
	width: 140%;
	height: 140%;
	object-fit: cover;
	flex-shrink: 0;
}

.Mainvisual-scroll{
	position: absolute;
	left: 5rem;
	bottom: 50%;
	z-index: 6000;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	transform: translateY(50%);
}
.Mainvisual-scroll__text{
	font-family: var(--en);
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: .025em;
	display: block;
	color: #fff;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	transform: scale(-1,-1);
}
.Mainvisual-scroll__animation{
	width: 1px;
	height: 10rem;
	margin-top: .6rem;
	background: #fff;
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.Mainvisual-scroll__animation::before{
	content: "";
	display: block;
	width: .6rem;
	height: .6rem;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	left: calc(50% - .3rem);
	top: 0;
	animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot{
	0%{
		top: 0;
		opacity: 1;
	}
	50%{
		opacity: .75;
	}
	100%{
		top: 10rem;
		opacity: 0;
	}
}

.Mainvisual-obj{
    color: var(--blackcolor);
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2rem;
	z-index: 6000;
    mix-blend-mode: screen;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.Mainvisual-obj span{
    font-family: var(--en);
	-webkit-text-stroke: .4rem #fff;
    text-stroke: .4rem #fff;
    width: fit-content;
	font-size: 21rem;
    line-height: .75;
    font-weight: 900;
    padding-bottom: .4rem;
    letter-spacing: -.06em;
    text-align: center;
    display: block;
    white-space: nowrap;
    paint-order: stroke;
	transform: translateY(1em);
	transition: transform 1s cubic-bezier(.85, 0, .15, 1);
}
.Mainvisual-obj.on span{
	transform: translateY(0);
}

.Mainvisual-pop{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	padding: 5rem;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	/* z-index: -1; */
	z-index: 9991;
	background: rgba(0, 0, 0, .92);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	visibility: hidden;
}
.Mainvisual-pop__inner{
	height: 100%;
	max-height: 60rem;
	position: relative;
}
.Mainvisual-pop__movie{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	transform: scale(.5);
	cursor: default;
}
.Mainvisual-pop__movie video{
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
}
.Mainvisual-close{
	width: 5rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -2.5rem;
	top: -2.5rem;
	transform: translateY(-100%);
}
.Mainvisual-close::before,
.Mainvisual-close::after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 9991;
}
.Mainvisual-close::before{
	/* transform: rotate(30deg) translate(-50%,1.4rem); */
	/* transform: translate(-50%,50%); */
	transform: translate(-50%,-50%) rotate(30deg);
}
.Mainvisual-close::after{
	bottom: 50%;
	/* transform: rotate(-30deg) translate(-50%,-1.4rem); */
	/* transform: translate(-50%,50%); */
	transform: translate(-50%,-50%) rotate(-30deg);
}

.Mainvisual-pop.on{
	opacity: 1;
	visibility: visible;
}
.Mainvisual-pop.on .Mainvisual-pop__movie{
	transform: scale(1);
}

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

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

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

	.Mainvisual-obj span{
		font-size: 19rem;
	}

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

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

	.Mainvisual-obj{
		bottom: -1.5rem;
	}
	.Mainvisual-obj span{
		font-size: 14.8rem;
	}

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

	.Mainvisual::after{
		background-image: url(../images/index/sp_bg_mainvisual.jpg);
		background-image: image-set(url(../images/index/sp_bg_mainvisual.jpg) 1x, url(../images/index/sp_bg_mainvisual@2x.jpg) 2x);
		background-image: -webkit-image-set(url(../images/index/sp_bg_mainvisual.jpg) 1x, url(../images/index/sp_bg_mainvisual@2x.jpg) 2x);
	}
	.Mainvisual-block__button{
		width: 13.2rem;
		height: 13.2rem;
		margin-bottom: 2.8rem;
	}
	.Mainvisual-block__text{
		font-size: 2rem;
	}

	.Mainvisual-scroll{
		left: 3rem;
	}
	.Mainvisual-scroll__text{
		font-size: 2.2rem;
	}
	.Mainvisual-scroll__animation{
		height: 12rem;
	}
	.Mainvisual-scroll__animation::before{
		width: 1rem;
		height: 1rem;
		left: calc(50% - .5rem);
	}
	@keyframes scrollDot{
		0%{
			top: 0;
			opacity: 1;
		}
		50%{
			opacity: .75;
		}
		100%{
			top: 12rem;
			opacity: 0;
		}
	}

	.Mainvisual-obj span{
		-webkit-text-stroke: 2px #fff;
		text-stroke: 2px #fff;
		font-size: 20.2rem;
        line-height: .9;
        text-align: left;
	}

	.Mainvisual-pop{
		padding: 5rem var(--padding-leftright);
	}
	.Mainvisual-pop__inner{
		max-height: 40rem;
	}

}



/*-------------------------------
	導入
-------------------------------*/

.First{
	padding-top: 20rem;
	padding-bottom: 0;
	position: relative;
}
.First.C-Object::before{
	width: calc((50% - (90rem / 2)) + 5.8rem);
	height: 41.3rem;
}

.First::after{
	content: "";
	display: block;
	width: 80.5rem;
	height: 53.7rem;
	background-image: url(../images/index/bbg_first2.png);
	background-image: image-set(url(../images/index/bg_first2.png) 1x, url(../images/index/bg_first2@2x.png) 2x);
	background-image: -webkit-image-set(url(../images/index/bg_first2.png) 1x, url(../images/index/bg_first2@2x.png) 2x);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	bottom: 16.5rem;
	z-index: -2;
}
.First__inner{
	position: relative;
}
.First__inner::after{
	content: "";
	display: block;
	width: 41.3rem;
	height: 27.5rem;
	position: absolute;
	top: -20rem;
	right: 2.5rem;
	background-image: url(../images/index/bbg_first1.png);
	background-image: image-set(url(../images/index/bg_first1.png) 1x, url(../images/index/bg_first1@2x.png) 2x);
	background-image: -webkit-image-set(url(../images/index/bg_first1.png) 1x, url(../images/index/bg_first1@2x.png) 2x);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.First-block{
	width: 100%;
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.First-block__body{
	max-width: calc(100% - 26.6rem);
	padding-right: 7.8rem;
}
.First-block__title{
	width: fit-content;
	font-size: 6.5rem;
	margin-bottom: 6rem;
	font-weight: 700;
}
.First-block__titleText{
	line-height: 1;
	letter-spacing: .025em;
	display: block;
	overflow: hidden;
}
.First-block__titleText:not(:last-child){
	margin-bottom: 3rem;
}
.First-block__titleText:nth-of-type(2) span{
	transition-delay: .2s;
}
.First-block__titleText span{
	transition: transform 1s cubic-bezier(.85, 0, .15, 1);
	line-height: .88;
	padding-bottom: .6rem;
	transform: translateY(1em);
	display: block;
}
.First-block__title.on .First-block__titleText span{
	transform: translateY(0);
}
.First-block__text{
	font-size: 2.2rem;
	letter-spacing: .05em;
	line-height: calc(5 / 2.2);
	font-weight: 700;
}
.First-block__image{
	width: 26.6rem;
	margin-top: 14.2rem;
}
.First-block__image img{
	width: 100%;
}

.First__inner{
	margin-bottom: 12.5rem;
}
.First__bottom.C-Object::before{
	width: 10rem;
	height: 60rem;
	top: unset;
	left: unset;
	right: 0;
	bottom: -9.5rem;
}
.First-anniversary{
	mix-blend-mode: multiply;
}
.First-anniversary__inner{
	transition-timing-function: linear;
}
.First-anniversary__item{
	-webkit-text-stroke: .4rem var(--maincolor);
    text-stroke: .4rem var(--maincolor);
	font-family: var(--en);
	width: fit-content;
	font-size: 20rem;
	line-height: .73;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-bottom: .6rem;
	letter-spacing: .02em;
	font-weight: 700;
	white-space: nowrap;
	paint-order: stroke;
	color: #fff;
}

.First-slider{
	margin-top: -2rem;
}
.First-slider__inner{
	transition-timing-function: linear;
}
.First-slider__item{
	width: 31rem;
	padding-left: .5rem;
	padding-right: .5rem;
}
.First-slider__item img{
	width: 100%;
	aspect-ratio: 1 / 1;
}

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

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

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

	.First-anniversary__item{
		font-size: 19rem;
	}

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

	.First.C-Object::before{
		width: calc(var(--padding-leftright) + 10rem);
	}
	.First-block{
		max-width: 100%;
		align-items: center;
		justify-content: space-between;
	}
	.First-block__body{
		max-width: calc(100% - 24rem);
		padding-right: 5rem;
	}
	.First-block__title{
		font-size: 5.6rem;
	}
	.First-block__text{
		font-size: 2rem;
		line-height: calc(5 / 2.2);
	}
	.First-block__image{
		width: 24rem;
		margin-top: 0;
	}
	.First__bottom.C-Object::before{
		width: calc(var(--padding-leftright) + 10rem);
	}

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

	.First-block__body{
		max-width: calc(100% - 20rem);
	}
	.First-block__title{
		white-space: nowrap;
	}
	.First-block__image{
		width: 20rem;
	}

	.First-anniversary__item{
		font-size: 16rem;
	}

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

	.First{
		padding-top: 18.5rem;
	}
	.First.C-Object::before{
		width: 21rem;
		height: 45rem;
	}

	.First::after{
		width: 60rem;
		height: 40rem;
		bottom: 22.5rem;
	}
	.First__inner::after{
		width: 30rem;
		height: 20rem;
		top: -18.5rem;
		right: 0;
	}
	.First-block{
		max-width: 100%;
		flex-direction: column;
	}
	.First-block__body{
		max-width: 100%;
		padding-right: 0;
	}
	.First-block__title{
		font-size: 8rem;
		margin-bottom: 6rem;
	}
	.First-block__titleText{
		white-space: nowrap;
	}
	.First-block__titleText:not(:last-child){
		margin-bottom: 4rem;
	}
	.First-block__text{
		font-size: 3.2rem;
		line-height: calc(7 / 3.2);
	}
	.First-block__image{
		width: 32rem;
		margin-top: 6rem;
		margin-left: auto;
		margin-right: auto;
	}

	.First__inner{
		margin-bottom: 21rem;
	}
	.First__bottom.C-Object::before{
		height: 63rem;
	}
	.First-anniversary__item{
		-webkit-text-stroke: 2px var(--maincolor);
		text-stroke: 2px var(--maincolor);
		letter-spacing: 0;
	}

	.First-slider{
		margin-top: -1.4rem;
	}
	.First-slider__item{
		width: 30rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}

}



/*-------------------------------
	鎌ケ谷巧業60年のあゆみ
-------------------------------*/

.History{
	padding-bottom: 0;
}
.History-tab{
	width: 100%;
	column-gap: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #666;
}
.History-tab__item{
	transition: var(--transition);
	background: var(--blackcolor);
	width: calc(100% / 4);
	position: relative;
}
.History-tab__item a{
	width: 100%;
	height: 8rem;
	padding: 2rem;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .01em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
	z-index: 6000;
	opacity: 1 !important;
}
.History-tab__item a::before{
	transition: .5s all var(--transition-easing);
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 1.3rem solid transparent;
	border-left: 1.3rem solid transparent;
	border-bottom: 1.3rem solid #ebebeb;
	border-top: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	transform: scale(0);
	transform-origin: bottom;
}
.History-tab__itemArrow{
	transition: .25s all var(--transition-easing);
	width: 2.2rem;
	height: 2.2rem;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4000;
	transition-delay: .25s;
}
.History-tab__itemArrow::before{
	content: "";
	display: block;
	width: .3rem;
	height: .8rem;
	background-image: url(../images/common/icon_arrow-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.History-tab__item:hover{
	background: var(--maincolor);
}
.History-tab__item:hover a{
	color: var(--blackcolor);
}
.History-tab__item:hover a::before{
	transform: scale(1);
}
.History-tab__item:hover .History-tab__itemArrow{
	background: var(--blackcolor);
}
.History-tab__item:hover .History-tab__itemArrow::before{
	animation: History-tab_itemArrow .5s ease-in-out forwards;
}
@keyframes History-tab_itemArrow{
	0%{
		transform: translateY(0);
		opacity: 1;
		background-image: url(../images/common/icon_arrow-black.svg);
	}
	40%{
		transform: translateY(60%);
		opacity: 0;
		background-image: url(../images/common/icon_arrow-black.svg);
	}
	60%{
		transform: translateY(-60%);
		opacity: 0;
		background-image: url(../images/common/icon_arrow-white.svg);
	}
	100%{
		transform: translateY(0);
		opacity: 1;
		background-image: url(../images/common/icon_arrow-white.svg);
	}
}

.History-block{
	padding-top: var(--header-height);
	margin-top: calc(var(--header-height) * -1);
}
.History-block__headerYear{
	margin-left: calc(var(--padding-leftright) * -2);
	width: 100%;
	margin-bottom: 4rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
.History-block__headerYearArrow{
	width: 8rem;
	height: 8rem;
	margin-left: 3.8rem;
	margin-right: 3.8rem;
	border: .2rem solid var(--maincolor);
	border-radius: 50%;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	mix-blend-mode: multiply;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.History-block__headerYearArrow::before{
	content: "";
	display: block;
	border-right: .2rem solid var(--maincolor);
	border-bottom: .2rem solid var(--maincolor);
	width: 2.7rem;
	height: 2.7rem;
	position: absolute;
	right: 2.2rem;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}
.History-block__headerYearArrow::after{
	content: "";
	background: var(--maincolor);
	display: block;
	width: 4rem;
	height: .2rem;
}
.History-block__headerYearNumber{
	-webkit-text-stroke: .4rem var(--maincolor);
    text-stroke: .4rem var(--maincolor);
	font-family: var(--en);
	width: fit-content;
	font-size: 20rem;
	line-height: .73;
	padding-bottom: .6rem;
	font-weight: 700;
	white-space: nowrap;
	paint-order: stroke;
	color: #fff;
	mix-blend-mode: multiply;
}
.History-blockWrap{
	padding-bottom: var(--padding-topbottom);
	padding-top: 10rem;
	background: #ebebeb;
}
.History-block:not(:last-child){
	margin-bottom: 15rem;
}
.History-block__header{
	margin-bottom: 9rem;
}
.History-block__header .C-SubTitle{
	margin-bottom: 0;
}
.History-block__subTitle{
	font-size: 3.2rem;
	margin-bottom: 1.8rem;
	line-height: calc(6 / 3.2);
	font-weight: 700;
}
.History-block__image{
	height: 100svh;
	position: sticky;
	top: 0;
}

.History-table{
	width: 100%;
	margin-top: 6.8rem;
}
.History-table__item{
	width: 100%;
	border-bottom: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.History-table__item:nth-of-type(1){
	border-top: 1px solid #ccc;
}
.History-table__item:nth-of-type(2n+1){
	background: #fff;
}
.History-table__itemTitle{
	font-family: var(--en);
	width: 12rem;
	min-height: 8rem;
	padding: 1rem 1.4rem 1.2rem;
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.History-table__itemBody{
	width: calc(100% - 12rem);
	min-height: 8rem;
	padding: 1rem 2rem 1.2rem 1.4rem;
	/* border-left: 1px solid #ccc; */
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.History-table__itemText{
	font-size: 1.4rem;
	line-height: calc(2.4 / 1.4);
	letter-spacing: .05em;
}

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

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

	.History-block__headerYear{
		margin-left: calc(var(--padding-leftright) * -1);
	}

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

	.History-block{
		padding-left: var(--padding-leftright);
	}

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

	.History-block__headerYearNumber{
		font-size: 16rem;
		letter-spacing: .025em;
	}
	.History-block__headerYearArrow{
		width: 6.4rem;
		height: 6.4rem;
		margin-left: 3rem;
		margin-right: 3rem;
	}
	.History-block__headerYearArrow::before{
		width: 2.2rem;
		height: 2.2rem;
		right: 1.8rem;
	}
	.History-block__headerYearArrow::after{
		width: 3.2rem;
	}
	

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

	.History-block__subTitle{
		width: calc(100% + var(--padding-leftright));
		margin-left: calc(var(--padding-leftright) * -1);
	}
	.History-block__text{
		width: calc(100% + var(--padding-leftright));
		margin-left: calc(var(--padding-leftright) * -1);
	}
	.History-table{
		width: calc(100% + var(--padding-leftright));
		margin-left: calc(var(--padding-leftright) * -1);
	}

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

	.History-block__headerYearNumber{
		font-size: 12rem;
	}
	.History-block__headerYearArrow{
		width: 4.5rem;
		height: 4.5rem;
		margin-left: 2.2rem;
		margin-right: 2.2rem;
	}
	.History-block__headerYearArrow::before{
		width: 1.6rem;
		height: 1.6rem;
		right: 1rem;
	}
	.History-block__headerYearArrow::after{
		width: 2.4rem;
	}
	.History-block__subTitle{
		font-size: 2.8rem;
	}

	.History-table__itemTitle{
		width: 10rem;
		font-size: 2.4rem;
	}
	.History-table__itemBody{
		width: calc(100% - 10rem);
	}

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

	.History-tab{
		flex-wrap: wrap;
		gap: 1px;
	}
	.History-tab__item{
		width: calc((100% - 1px) / 2);
	}
	.History-tab__item a{
		height: 10rem;
		padding: 2.8rem;
		font-size: 2.8rem;
	}
	.History-tab__item a::before{
		display: none;
	}
	.History-tab__itemArrow{
		width: 3.2rem;
		height: 3.2rem;
		right: 2.8rem;
	}
	.History-tab__itemArrow::before{
		width: .4rem;
		height: 1rem;
	}

	.History-block__inner{
		position: relative;
	}
	.History-block__headerYear{
		margin-left: 0;
		width: fit-content;
		margin-bottom: 4rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.History-block__headerYearArrow{
		width: 7rem;
		height: 7rem;
		margin: 2.2rem 0;
		border: 1px solid var(--maincolor);
		margin-left: auto;
		margin-right: auto;
	}
	.History-block__headerYearArrow::before{
		border-right: 1px solid var(--maincolor);
		border-bottom: 1px solid var(--maincolor);
		width: 2.4rem;
		height: 2.4rem;
		top: calc(50% + .2rem);
		transform: translateY(-50%) rotate(45deg);
	}
	.History-block__headerYearArrow::after{
		width: 4rem;
		height: 1px;
		transform: translateY(-50%) rotate(-90deg);
	}
	.History-block__headerYearNumber{
		-webkit-text-stroke: 2px var(--maincolor);
		text-stroke: 2px var(--maincolor);
		font-size: 14rem;
	}
	.History-blockWrap{
		padding-bottom: var(--padding-topbottom);
		padding-top: 14.5rem;
	}
	.History-block:not(:last-child){
		margin-bottom: 20rem;
	}
	.History-block__header{
		margin-bottom: 4.5rem;
	}
	.History-block__header .C-SubTitle{
		margin-bottom: 0;
	}
	.History-block__subTitle{
		font-size: 4.2rem;
		margin-bottom: 1.5rem;
		line-height: calc(6 / 4.2);
	}
	.History-block__image{
		width: 35rem;
		height: 35rem;
		position: absolute;
		top: 0;
		right: 0;
	}

	.History-table{
		margin-top: 6rem;
	}
	.History-table__item{
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.History-table__itemTitle{
		width: 15.5rem;
		min-height: 11rem;
		padding: 2rem 2.5rem 2rem;
		font-size: 5rem;
	}
	.History-table__itemBody{
		width: calc(100% - 15.5rem);
		min-height: 11rem;
		padding: 2rem 2.5rem 2rem 2rem;
		border-left: none;
	}
	.History-table__itemText{
		font-size: 2.6rem;
		line-height: calc(3.9 / 2.6);
	}

	#History5{
		overflow: hidden;
	}

}



/*-------------------------------
	事業所ギャラリー
-------------------------------*/

.GalleryWrap{
	background: var(--blackcolor);
	padding-bottom: var(--padding-topbottom);
	overflow: hidden;
}
.GalleryWrap__inner{
	position: relative;
	z-index: 5000;
}
.GalleryWrap__inner::after{
	content: "Be the TAKUMI.";
	-webkit-text-stroke: .4rem var(--maincolor);
    text-stroke: .4rem var(--maincolor);
	font-family: var(--en);
	z-index: -1;
	font-size: 21rem;
	line-height: .75;
	font-weight: 900;
	padding-bottom: .2rem;
	letter-spacing: -.06em;
	position: absolute;
	right: -5.8rem;
	top: 89.2rem;
	display: block;
	color: #000;
	mix-blend-mode: multiply;
	text-align: center;
	display: block;
	white-space: nowrap;
	paint-order: stroke;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	transform: scale(-1,-1);
}
.Gallery{
	padding-top: 20rem;
	padding-bottom: 0;
	position: relative;
}
.Gallery:first-child{
	padding-top: 14.5rem;
}
.Gallery::before{
	content: "";
	display: block;
	width: 82rem;
	height: 54.6rem;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4000;
	transform: translateX(calc(((100vw - var(--maxwidth-number)) / 2) * -1));
}
.Gallery__inner{
	width: 100%;
}
.Gallery__title{
	position: relative;
	z-index: 6000;
}
.Gallery__titleEn{
	color: #fff;
}
.Gallery-blockWrap{
	width: 100%;
}
.Gallery-block{
	padding-top: var(--padding-topbottom);
	margin-top: calc(var(--padding-topbottom) * -1);
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.Gallery-block:not(:last-child){
	margin-bottom: 10.5rem;
}
.Gallery-block__header{
	width: 30.1rem;
	padding-right: 5rem;
	position: relative;
	z-index: 6000;
}
.Gallery-block__Body{
	width: calc(100% - 30.1rem);
}
.Gallery-block__title{
	color: #fff;
}
.Gallery-block__text{
	font-size: 1.6rem;
	line-height: calc(3.4 / 1.6);
	color: #bfbfbf;
}
.Gallery-block__body{
	width: calc(100% - 30.1rem);
}
.Gallery-block__list{
	width: 100%;
	gap: .5rem;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(4, 1fr);
	position: relative;
	z-index: 6000;
}
.Gallery-block__listImage{
	overflow: hidden;
	cursor: pointer;
}
.Gallery-block__listImage::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 5000;
	background: rgba(0,0,0,.25);
}
.Gallery-block__listImage img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.Gallery-block__listImage:hover::before{
	opacity: 0;
}
.Gallery-block__listImage:nth-of-type(1){
	grid-area: 1 / 1 / 3 / 3;
}
.Gallery-block__listImage:nth-of-type(2){
	grid-area: 1 / 3 / 2 / 4;
}
.Gallery-block__listImage:nth-of-type(3){
	grid-area: 1 / 4 / 2 / 5;
}
.Gallery-block__listImage:nth-of-type(4){
	grid-area: 1 / 5 / 2 / 6;
}
.Gallery-block__listImage:nth-of-type(5){
	grid-area: 2 / 3 / 3 / 4;
}
.Gallery-block__listImage:nth-of-type(6){
	grid-area: 2 / 4 / 3 / 5;
}
.Gallery-block__listImage:nth-of-type(7){
	grid-area: 2 / 5 / 3 / 6;
}
.Gallery-block__listImage:nth-of-type(8){
	grid-area: 3 / 1 / 4 / 2;
}
.Gallery-block__listImage:nth-of-type(9){
	grid-area: 3 / 2 / 4 / 3;
}
.Gallery-block__listImage:nth-of-type(10){
	grid-area: 3 / 3 / 4 / 4;
}
.Gallery-block__listImage:nth-of-type(11){
	grid-area: 4 / 1 / 5 / 2;
}
.Gallery-block__listImage:nth-of-type(12){
	grid-area: 4 / 2 / 5 / 3;
}
.Gallery-block__listImage:nth-of-type(13){
	grid-area: 4 / 3 / 5 / 4;
}
.Gallery-block__listImage:nth-of-type(14){
	grid-area: 3 / 4 / 5 / 6;
}

/*----- 千葉 */
.Gallery.-chiba::before{
	background-image: url(../images/index/bg_gallery-chiba.png);
	background-image: image-set(url(../images/index/bg_gallery-chiba.png) 1x, url(../images/index/bg_gallery-chiba@2x.png) 2x);
	background-image: -webkit-image-set(url(../images/index/bg_gallery-chiba.png) 1x, url(../images/index/bg_gallery-chiba@2x.png) 2x);
}
/* 本社 */

/* 本社 第一・第二・第三工場 */

/*----- 新潟 */
.Gallery.-niigata::before{
	top: -11.5rem;
	background-image: url(../images/index/bg_gallery-niigata.png);
	background-image: image-set(url(../images/index/bg_gallery-niigata.png) 1x, url(../images/index/bg_gallery-niigata@2x.png) 2x);
	background-image: -webkit-image-set(url(../images/index/bg_gallery-niigata.png) 1x, url(../images/index/bg_gallery-niigata@2x.png) 2x);
}
/* 新潟白根支店 */

/* 白根工場／白根第二工場 */

/*----- L.A.DEPO / COPEL PLUS */
.Gallery.-community .Gallery-blockWrap{
	column-gap: 6.5rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.Gallery.-community .Gallery-block{
	margin-bottom: 0;
	flex-direction: column;
}
.Gallery.-community .Gallery-block__title{
	margin-bottom: 1.5rem;
}
.Gallery.-community .Gallery-block__header{
	width: 100%;
	margin-bottom: 4.5rem;
	padding-right: 0;
}
.Gallery.-community .Gallery-block__body{
	width: 100%;
}
.Gallery.-community .Gallery-block__list{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}
.Gallery.-community .Gallery-block__listImage{
	grid-area: auto;
}

/* L.A.DEPO */

/* COPEL PLUS */

/*----- ポップアップ */
.Gallery-pop{
	transition: var(--transition);
	background: var(--blackcolor);
	width: 100%;
	height: 100%;
	padding: 5rem;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9990;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.Gallery-pop__inner{
	transition: var(--transition);
	width: 100%;
	max-width: 76rem;
	padding: 6.5rem 11rem;
	background: #fff;
	position: relative;
	transform: scale(.75);
}
.Gallery-pop__listImage{
	width: 100%;
}
.Gallery-pop__listImage img{
	width: 100%;
}
.Gallery-pop__arrow{
	transition: var(--transition);
	border-right: 2px solid var(--blackcolor);
	border-bottom: 2px solid var(--blackcolor);
	width: 2.2rem;
	height: 2.2rem;
	display: block;
	position: absolute;
	top: 50%;
	z-index: 6000;
	cursor: pointer;
}
.Gallery-pop__arrow.-prev{
	left: 0;
	transform: translate(4.5rem,-50%) rotate(135deg);
}
.Gallery-pop__arrow:hover{
	border-color: var(--subcolor);
}
.Gallery-pop__arrow.-next{
	right: 0;
	transform: translate(-4.5rem,-50%) rotate(-45deg);
}
.Gallery-pop__close{
	transition: var(--transition);
	width: 4.8rem;
	height: 4.8rem;
	border: .5rem solid #fff;
	border-radius: 50%;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(50%,-50%);
}
.Gallery-pop__close:hover{
	background: var(--subcolor);
	transform: translate(50%,-50%) scale(.9);
}
.Gallery-pop__close::before,
.Gallery-pop__close::after{
	content: "";
	display: block;
	width: 1.4rem;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
}
.Gallery-pop__close::before{
	transform: translate(-50%,-50%) rotate(45deg);
}
.Gallery-pop__close::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}

.Gallery-pop.on{
	opacity: 1;
	visibility: visible;
}
.Gallery-pop.on .Gallery-pop__inner{
	transform: scale(1);
}

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

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

	.Gallery::before{
		transform: translateX(calc(var(--padding-leftright) * -1));
	}
	.Gallery-block{
		padding-left: var(--padding-leftright);
	}

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

	.GalleryWrap__inner::after{
		font-size: 19rem;
		right: 0;
	}

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

	.Gallery-block__text{
		width: calc(100% + var(--padding-leftright));
		margin-left: calc(var(--padding-leftright) * -1);
	}

	.Gallery.-community .Gallery-blockWrap{
		column-gap: 5rem;
	}
	.Gallery.-community .Gallery-block__body{
		width: calc(100% + var(--padding-leftright));
		margin-left: calc(var(--padding-leftright) * -1);
	}
	.Gallery.-community .Gallery-block__text{
		min-height: calc(2em * var(--line-height));
	}

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

	.GalleryWrap__inner::after{
		font-size: 14.8rem;
	}

	.Gallery-block{
		flex-direction: column;
	}
	.Gallery-block__header{
		width: 100%;
		margin-bottom: 5rem;
		padding-right: 0;
	}
	.Gallery-block__title br{
		display: none;
	}
	.Gallery-block__body{
		width: calc(100% + var(--padding-leftright));
		margin-left: calc(var(--padding-leftright) * -1);
	}

	.Gallery.-community .Gallery-blockWrap{
		flex-direction: column;
	}
	.Gallery.-community .Gallery-block:not(:last-child){
		margin-bottom: 10.5rem;
	}
	.Gallery.-community .Gallery-block__text{
		min-height: auto;
	}

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

	.GalleryWrap__inner::after{
		-webkit-text-stroke: 2px var(--maincolor);
		text-stroke: 2px var(--maincolor);
		font-size: 18rem;
		right: -.5rem;
		top: 255rem;
	}
	.Gallery{
		padding-top: 20rem;
		padding-bottom: 0;
		position: relative;
	}
	.Gallery:first-child{
		padding-top: 14.5rem;
	}
	.Gallery::before{
		width: 60rem;
		height: 40rem;
		transform: translateX(calc(var(--padding-leftright) * -1));
		background-size: 100%;
	}
	.Gallery__inner{
		width: 100%;
	}
	.Gallery__title{
		margin-bottom: 5rem;
	}
	.Gallery__titleEn{
		color: #fff;
	}
	.Gallery-blockWrap{
		width: 100%;
	}
	.Gallery-block{
		flex-direction: column;
	}
	.Gallery-block:not(:last-child){
		margin-bottom: 10rem;
	}
	.Gallery-block__header{
		width: 100%;
		margin-bottom: 5rem;
		padding-right: 0;
	}
	.Gallery-block__title br:nth-of-type(2){
		display: none;
	}
	.Gallery-block__Body{
		width: 100%;
	}
	.Gallery-block__text{
		font-size: 2.8rem;
		line-height: calc(5.8 / 2.8);
	}
	.Gallery-block__text br{
		display: none;
	}
	.Gallery-block__body{
		width: 100%;
	}
	.Gallery-block__list{
		width: 100%;
		gap: 1.6rem;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: space-between;
	}
	.Gallery-block__listImage{
		width: calc((100% - (1.6rem * 2)) / 3);
		order: 3;
	}
	.Gallery-block__listImage:nth-of-type(1),
	.Gallery-block__listImage:nth-of-type(14){
		width: calc((100% - 1.6rem) / 2);
	}
	.Gallery-block__listImage:nth-of-type(1){
		order: 1;
	}
	.Gallery-block__listImage:nth-of-type(14){
		order: 2;
	}

	/*----- 千葉 */
	/* 本社 */

	/* 本社 第一・第二・第三工場 */

	/*----- 新潟 */
	/* 新潟白根支店 */

	/* 白根工場／白根第二工場 */

	/*----- L.A.DEPO / COPEL PLUS */
	.Gallery.-community .Gallery-blockWrap{
		row-gap: 10rem;
		flex-direction: column;
	}
	.Gallery.-community .Gallery-block__title{
		margin-bottom: 1.5rem;
	}
	.Gallery.-community .Gallery-block__header{
		margin-bottom: 5.5rem;
	}
	.Gallery.-community .Gallery-block__listImage:nth-of-type(1){
		width: calc((100% - (1.6rem * 2)) / 3);
	}

	/* L.A.DEPO */

	/* COPEL PLUS */

	/*----- ポップアップ */
	.Gallery-pop{
		padding: var(--padding-leftright);
	}
	.Gallery-pop__inner{
		max-width: 100%;
		padding: 6rem 7.8rem;
	}
	.Gallery-pop__arrow.-prev{
		transform: translate(3.5rem, -50%) rotate(135deg);
	}
	.Gallery-pop__arrow.-next{
		transform: translate(-3.5rem, -50%) rotate(-45deg);
	}
	.Gallery-pop__close{
		width: 6.4rem;
		height: 6.4rem;
		border: 2px solid #fff;
	}
	.Gallery-pop__close::before,
	.Gallery-pop__close::after{
		width: 1.8rem;
	}

}



/*-------------------------------
	インタビュー
-------------------------------*/

.Interview__title{
	margin-bottom: 17rem;
}
.Interview-block:not(:last-child){
	margin-bottom: 23rem;
}
.Interview-block__inner{
	margin-bottom: 12rem;
}
.Interview-block__titleWrap{
	margin-bottom: 5rem;
	overflow: hidden;
}
.Interview-block__title{
	font-size: 4.6rem;
	letter-spacing: .01em;
	font-weight: 700;
	line-height:  calc(6.6 / 4.6);
}
.Interview-block__title span{
	line-height:  calc(6.6 / 4.6);
	font-feature-settings: "palt";
}
/* .Interview-block__item:not(:last-child){
	margin-bottom: 12rem;
} */
.Interview-block__itemBody::before{
	width: calc(100% - (var(--maxwidth-number) / 2) + 10rem);
	height: 35rem;
	top: -20.5rem;
}
.Interview-block__itemTitle{
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 700;
	letter-spacing: .01em;
	/* line-height: calc(6.6 / 3); */
	line-height: 1.65;
	font-feature-settings: "palt";
}
.Interview-block__itemImage{
	height: 50rem;
}
.Interview-block__itemImage img{
	width: 100%;
	object-position: top center;
}

.Interview-block__staff{
	width: 100%;
	margin-top: 3.5rem;
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
.Interview-block__staffStatus{
	font-size: 1.4rem;
	line-height: 1;
	margin-right: 2rem;
	display: block;
}
.Interview-block__staffName{
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
}

/*----- 反転 */
.Interview-block:nth-of-type(2n) .Interview-block__title{
	text-align: right;
}
.Interview-block:nth-of-type(2n) .Interview-block__item{
	flex-direction: row-reverse;
}
.Interview-block:nth-of-type(2n) .Interview-block__itemImage{
	padding-right: 3rem;
	padding-left: 0;
}
.Interview-block:nth-of-type(2n) .Interview-block__itemBody{
	justify-content: flex-start;
}
.Interview-block:nth-of-type(2n) .Interview-block__itemBody::before{
	left: unset;
	right: 0;
}
.Interview-block:nth-of-type(2n) .halfLayout__bodyInner{
	padding-right: 0;
	padding-left: 3rem;
}

/*----- 詳細インタビュー */
.Interview-block__itemCompact{
	margin-bottom: 12rem;
}
.Interview-block__itemCompactItem:not(:last-child){
	margin-bottom: 12rem;
}
.Interview-block__itemCompactItem.C-Object::before{
	width: calc((50% - 3rem) - (((var(--maxwidth-number) / 2) - 3rem) / 2));
	height: calc(100% + 50rem);
	left: unset;
	right: 0;
	top: -25rem;
}
.Interview-block__itemCompactItem .Interview-block__item{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.Interview-block__itemCompactItem .Interview-block__itemBody{
	width: calc(50% - 3rem);
}
.Interview-block__itemCompactItem .Interview-block__itemImage{
	width: calc(50% - 3rem);
	height: auto;
}
/* 反転 */
.Interview-block__itemCompactItem:nth-of-type(2n+1) .Interview-block__item{
	flex-direction: row-reverse;
}

/*----- 下部 */
.Interview-block__footer{
	position: relative;
}
.Interview-block__footerObject{
	width: 100%;
	margin-bottom: -2rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.Interview-block__footerObject span{
	transition: transform 1s cubic-bezier(.85, 0, .15, 1);
	-webkit-text-stroke: .4rem var(--maincolor);
    text-stroke: .4rem var(--maincolor);
	font-family: var(--en);
	width: fit-content;
	font-size: 21rem;
	line-height: .75;
	font-weight: 900;
	padding-bottom: .4rem;
	letter-spacing: -.06em;
	color: #fff;
	mix-blend-mode: multiply;
	text-align: center;
	display: block;
	white-space: nowrap;
	paint-order: stroke;
	transform: translateY(1em);
}
.Interview-block__footerObject.on span{
	transform: translateY(0);
}
.Interview-block__footerImage{
	width: 100%;
}
.Interview-block__footerImage img{
	width: 100%;
}
.Interview-block__footer .Interview-block__footerImage:not(:last-child){
	margin-bottom: 2.5rem;
}

.Interview-animation__item{
	transition: 1s opacity ease-in-out, 1s transform ease-in-out;
	transform: translateY(3rem);
	opacity: 0;
}
.Interview-animation.on .Interview-animation__item{
	transform: translateY(0);
	opacity: 1;
}
.Interview-animation.on .Interview-animation__item.-timing1{
	transition-delay: .6s;
}
.Interview-animation.on .Interview-animation__item.-timing2{
	transition-delay: .8s;
}
.Interview-animation.on .Interview-animation__item.-timing3{
	transition-delay: 1s;
}
.Interview-animation.on .Interview-animation__item.-timing4{
	transition-delay: 1.2s;
}
.Interview-animation.on .Interview-animation__item.-timing5{
	transition-delay: 1.4s;
}
.Interview-animation.on .Interview-animation__item.-timing6{
	transition-delay: 1.6s;
}
.Interview-animation.on .Interview-animation__item.-timing7{
	transition-delay: 1.8s;
}
.Interview-animation.on .Interview-animation__item.-timing8{
	transition-delay: 2s;
}

.Interview-animation__item.-mask{
    transition: 1s clip-path cubic-bezier(.85, 0, .15, 1);
	clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
	transform: translateY(0);
	opacity: 1;
}
.Interview-animation.on .Interview-animation__item.-mask{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.Interview-animation__item.-up{
    transition: 1s transform cubic-bezier(.85, 0, .15, 1);
	opacity: 1;
	transform: translateY(100%);
}

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

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

	.Interview-block__itemBody::before{
		width: calc(var(--padding-leftright) + 10rem);
	}
	.Interview-block:nth-of-type(2n) .Interview-block__itemBody{
		padding-right: var(--padding-leftright);
		padding-left: 0;
	}

	/*----- 詳細インタビュー */
	.Interview-block__itemCompactItem.C-Object::before{
		width: calc(((100% / 2) - 3rem) - ((((100% / 2) - 3rem) + var(--padding-leftright)) / 2) + var(--padding-leftright));
	}

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

	.Interview-block__footerObject span{
		font-size: 19rem;
	}

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

	.Interview-block__itemBody::before{
		width: calc(var(--padding-leftright) + 10rem);
	}

	.Interview-block:nth-of-type(2n) .Interview-block__itemImage{
		padding-right: 2.5rem;
	}
	.Interview-block:nth-of-type(2n) .halfLayout__bodyInner{
		padding-left: 2.5rem;
	}

	.Interview-block__itemCompactItem.C-Object::before{
		width: calc(var(--padding-leftright) + 10rem);
	}
	.Interview-block__itemCompactItem .Interview-block__itemImage{
		width: calc(50% - 2.5rem);
	}
	.Interview-block__itemCompactItem .Interview-block__itemBody{
		width: calc(50% - 2.5rem);
	}

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

	.Interview-block__title{
		font-size: 3.8rem;
	}
	.Interview-block__itemTitle{
		font-size: 2.8rem;
	}

	.Interview-block:nth-of-type(2n) .Interview-block__itemImage{
		padding-right: 1.5rem;
	}
	.Interview-block:nth-of-type(2n) .halfLayout__bodyInner{
		padding-left: 1.5rem;
	}

	.Interview-block__itemCompactItem .Interview-block__itemImage{
		width: 45%;
	}
	.Interview-block__itemCompactItem .Interview-block__itemBody{
		width: calc(55% - 3rem);
	}

	.Interview-block__footerObject{
		margin-bottom: -1.5rem;
	}
	.Interview-block__footerObject span{
		font-size: 14.8rem;
	}

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

	.Interview__title{
		margin-bottom: 16.5rem;
	}
	.Interview-block:not(:last-child){
		margin-bottom: 21.5rem;
	}
	.Interview-block__inner{
		margin-bottom: 5rem;
	}
	.Interview-block__titleWrap{
		margin-bottom: 3.5rem;
	}
	.Interview-block__title{
		font-size: 5.6rem;
		line-height:  calc(8.4 / 5.6);
	}
	.Interview-block__title span{
		line-height:  calc(8.4 / 5.6);
	}
	.Interview-block__itemBody:not(:last-child){
		margin-bottom: 7rem;
	}
	.Interview-block__itemBody::before{
		width: 16rem;
		height: 45rem;
		top: -27.5rem;
	}
	.Interview-block__itemTitle{
		font-size: 4rem;
		margin-bottom: 2rem;
		line-height: calc(6.6 / 4);
	}
	.Interview-block__itemTitle.-straight{
		white-space: nowrap;
	}
	.Interview-block__itemImage{
		width: 100%;
		height: 57.4rem;
	}

	.Interview-block__staff{
		margin-top: 4rem;
	}
	.Interview-block__staffStatus{
		font-size: 2.6rem;
	}
	.Interview-block__staffName{
		font-size: 4rem;
		letter-spacing: .1em;
	}

	/*----- 反転 */
	.Interview-block:nth-of-type(2n) .Interview-block__title{
		text-align: right;
	}
	.Interview-block:nth-of-type(2n) .Interview-block__item{
		flex-direction: column;
	}
	.Interview-block:nth-of-type(2n) .Interview-block__itemImage{
		padding-right: 0;
		padding-left: 0;
	}
	.Interview-block:nth-of-type(2n) .Interview-block__itemBody{
		justify-content: flex-start;
	}
	.Interview-block:nth-of-type(2n) .halfLayout__bodyInner{
		padding-right: 0;
		padding-left: 0;
	}

	/*----- 詳細インタビュー */
	.Interview-block__itemCompact{
		margin-top: 10rem;
		margin-bottom: 8.5rem;
	}
	.Interview-block__itemCompactItem:not(:last-child){
		margin-bottom: 8.5rem;
	}
	.Interview-block__itemCompactItem.C-Object::before{
		width: 21rem;
		height: 90rem;
		top: -20rem;
	}
	.Interview-block__itemCompactItem .Interview-block__item{
		flex-direction: column-reverse;
	}
	.Interview-block__itemCompactItem .Interview-block__itemBody{
		width: 100%;
		margin-bottom: 0;
	}
	.Interview-block__itemCompactItem .Interview-block__itemImage{
		width: 100%;
		margin-bottom: 3rem;
		height: auto;
	}
	/* 反転 */
	.Interview-block__itemCompactItem:nth-of-type(2n+1) .Interview-block__item{
		flex-direction: column-reverse;
	}

	/*----- 下部 */
	.Interview-block__footer{
		position: relative;
	}
	.Interview-block__footerObject{
		margin-bottom: -4rem;
	}
	.Interview-block__footerObject span{
		-webkit-text-stroke: 2px var(--maincolor);
		text-stroke: 2px var(--maincolor);
		font-size: 20.2rem;
		line-height: .9;
		text-align: left;
	}
	.Interview-block__footerImage{
		width: 100%;
	}
	.Interview-block__footerImage img{
		width: 100%;
	}
	.Interview-block__footer .Interview-block__footerImage:not(:last-child){
		margin-bottom: 3rem;
	}

	/*----- 3番 */
	.Interview-block.-interview3 .Interview-block__itemBody::before{
		top: -37rem;
	}

}



/*-------------------------------
	ラスト
-------------------------------*/

.Last{
	position: relative;
}
.Last-list{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 4000;
}
.Last-list__item{
	width: calc(100% / 5);
	height: 100%;
	transform: translateY(3rem);
	opacity: 0;
	transition: 1s opacity ease-in-out, 1s transform ease-in-out;
}
.Last-list__itemImage{
	width: 100%;
	height: 100%;
	position: relative;
}
.Last-list__itemImage::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.25);
	z-index: 6000;
}
.Last-list__itemImage img{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 4000;
	object-fit: cover;
}
.Last__message{
	font-size: 6rem;
	letter-spacing: .025em;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 50%;
	right: 0;
	z-index: 6000;
	text-align: center;
	transform: translateY(3rem);
	opacity: 0;
	transition: 1s opacity ease-in-out, 1s transform ease-in-out;
}
.Last__message span{
	line-height: 1;
}

.Last.on .Last-list__item{
	opacity: 1;
	transform: translateY(0);
}
.Last.on .Last-list__item:nth-of-type(2){
	transition-delay: .15s;
}
.Last.on .Last-list__item:nth-of-type(3){
	transition-delay: .3s;
}
.Last.on .Last-list__item:nth-of-type(4){
	transition-delay: .45s;
}
.Last.on .Last-list__item:nth-of-type(5){
	transition-delay: .6s;
}
.Last.on .Last__message{
	opacity: 1;
	transform: translateY(-50%);
	transition-delay: 1.5s;
}

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

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

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

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

	.Last-list__item{
		height: 45rem;
	}
	.Last__message{
		font-size: 4.6rem;
	}

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

	.Last__message{
		font-size: 3.8rem;
	}

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

	.Last-list{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.Last-list__item{
		width: calc(100% / 3);
	}
	.Last__message{
		color: var(--blackcolor);
		font-size: 8rem;
		padding-top: 7rem;
		line-height: calc(12 / 8);
		position: static;
	}
	.Last__message span{
		font-feature-settings: "palt";
	}

	.Last.on .Last-list__item{
		opacity: 1;
		transform: translateY(0);
	}
	.Last.on .Last-list__item:nth-of-type(2){
		transition-delay: .15s;
	}
	.Last.on .Last-list__item:nth-of-type(3){
		transition-delay: .3s;
	}
	.Last.on .Last-list__item:nth-of-type(4){
		transition-delay: .45s;
	}
	.Last.on .Last-list__item:nth-of-type(5){
		transition-delay: .6s;
	}
	.Last.on .Last-list__item:nth-of-type(6){
		transition-delay: .75s;
	}
	.Last.on .Last__message{
		opacity: 1;
		transform: translateY(0);
		transition-delay: 1.5s;
	}

}