@charset "UTF-8";

header {
}


/* main
----------------------------------------------------*/
main {
	background-color: var(--gray-02);
	padding-top: calc(130 * var(--vw-unit));
	position: relative;
}

/* hero
----------------------------------------------------*/
.hero {
	position: relative;
	& h1 {
		display: flex;
		align-items: flex-end;
		padding-left: calc(138 * var(--vw-unit));
		margin-bottom: calc(64 * var(--vw-unit));
		column-gap: calc(70 * var(--vw-unit));
		position: relative;
		@media (width < 768px) {
			margin-bottom: calc(64 * var(--vw-unit-768));
		}
		& span {
			display: block;
			&.ja {
				font-size: var(--fs-q9-sp);
				line-height: 1.4;
				font-weight: 500;
				@media (768px <= width) {
					line-height: 1.2;
					font-size: var(--fs-q9-90);
				}
			}
			&.en {
				/* font-size: var(--fs-q10-sp);
				line-height: 1.2;
				font-weight: 500; */
				width: 26vw;
				@media (width < 768px) {
					position: absolute;
					left: 40vw;
					bottom: 1.7vw;
					width: 48vw;
				}
				@media (768px <= width) {
					font-size: var(--fs-q10-36);
					padding-bottom: 0.4em;
				}
			}
		}
	}
	& .scrollMark {
		display: none;
		@media (width < 880px) {
			width: 9.8vw;
			display: block;
			position: absolute;
			right: 7vw;
			bottom: 7vw;
			&::after {
				content: "";
				position: absolute;
				top: 120%; /* Scrollの真下から開始 */
				left: 50%;
				transform: translateX(-50%);
				width: 1px;
				height: 14.4vw;
				background-color: #fff;
				animation: scrollLoop 2s infinite;
				transform-origin: top;
			}
		}

	}
}
/* アニメーション */
@keyframes scrollLoop {
  0% {
    transform: scaleY(0);
		transform-origin: top;
  }
  50% {
    transform: scaleY(1);
		transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
		transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
		transform-origin: bottom;
  }
}

/* ページナビ
----------------------------------------------------*/
.scrollNav {
	position: sticky;
	top: 0;
	z-index: 90;
	width: fit-content;
	margin-left: auto;
	display: none;

	@media (880px <= width) {
		display: block;
		margin-bottom: max(-16vw, -250px);
	}
	& ul {
		margin-left: auto;
		width: fit-content;
		padding-top: 76px;
		& li {
			width: 0.365vw;
			aspect-ratio: 1 / 1;
			height: auto;
			border-radius: 9988px;
			margin: 0 2.4vw 12px 0;

			border: 1px solid var(--main-color);
		}
	}
}
.aboutArea {
	& .aboutPoint {background-color: var(--main-color);}
}
.businessArea {
	& .businessPoint {background-color: var(--main-color);}
}
.sustainabilityArea {
	& .sustainabilityPoint {background-color: var(--main-color);}
}
.carrersArea {
	& .carrersPoint {background-color: var(--main-color);}
}
.groupArea {
	& .groupPoint {background-color: var(--main-color);}
}
.contactArea {
	& .contactPoint {background-color: var(--main-color);}
}

/* about
----------------------------------------------------*/
.about {
	background: url(../img/bg_about_tate.png) no-repeat left -17vw / 36%;
	padding-top: calc(170 * var(--vw-unit-880));
	padding-bottom: calc(150 * var(--vw-unit-880));
	@media (880px <= width) {
		background: url(../img/bg_about_yoko.png) no-repeat right -5vw bottom 0 / contain;
		padding-top: calc(170 * var(--vw-unit));
		padding-bottom: calc(150 * var(--vw-unit));
		}
	& .innerWrap {
    max-width: 1516px;
		margin-inline: auto;
    padding-inline: min(9.46vw,calc(min(94px,5.1vw) + min(40px,2.64vw)));
		padding-block: calc(32 * var(--vw-unit)) calc(16 * var(--vw-unit));
		position: relative;
		display: flex;
		flex-direction: column-reverse;
		@media (880px <= width) {
			flex-direction: row;
		}
		& .textWrap {
			flex: 1;
			@media (880px <= width) {
				padding-top: 36px;
				padding-bottom: 8px;
			}
		}
		& .photoWrap {
			width: 100%;
			margin-bottom: clamp(24px, calc(5.385vw +  4.6154px), 52px);
			@media (880px <= width) {
				width: 40%;
				margin-bottom: 0;
			}
			@media (1240px <= width) {
				width: 48%;
			}
			@media (1440px <= width) {
				width: 55%;
			}
			& img {
				object-fit: cover;
				width: 100%;
				height: 100%;
				object-position: 66%;
				@media (1240px <= width) {
					object-position: left;
				}
				@media (1440px <= width) {
					object-position: center;
				}
			}
		}
		& h2 {
			margin-bottom: calc(48 * var(--vw-unit));
			display: flex;
			align-items: center;
			& span {
				display: inline-block;
				&.en {
					border: 1.334px solid var(--main-color);
					line-height: 1;
					padding: 0.1em 0.4em 0;
					margin-right: 0.8em;
					font-family: 'Courier New', Courier, monospace;
					font-size: var(--fs-q12-29);
				}
				&.ja {
					font-size: var(--fs-q13-23);
					font-weight: bold;
				}
			}
		}
		& .lead {
			font-size: 5.35vw;
			font-weight: 500;
			line-height: 1.49;
			margin-bottom: 5.3vw;
			@media (880px <= width) {
				margin-bottom: calc(48 * var(--vw-unit));
				font-size: var(--fs-q11-47);
				font-weight: bold;
			}
		}
		& .text {
			font-size: 3.4vw;
			margin-bottom: 40px;
			@media (880px <= width) {
				font-size: var(--fs-q20-19);
				margin-bottom: calc(60 * var(--vw-unit));
			}
		}
		&::after {
			content: "";
			position: absolute;
			top: 2vw;
			right: 2vw;
			width: 20vw;
			height: 20vw;
			transform: translateY(-50%);
			background: url(../img/mark.png) no-repeat center center/cover;
			animation: rotateLogo 60s linear infinite;
			@media (880px <= width) {
				top: 50%;
				/* right: calc(42 * var(--vw-unit)); */
				right: 3%;
				width: calc(178 * var(--vw-unit));
				height: calc(178 * var(--vw-unit));
			}
		}
	}
	& .linkBtn {
		max-width: 220px;
		& a {
			display: block;
			background-color: var(--black-02);
			color: var(--white-01);
			border: 1px solid var(--white-01);
			font-size: var(--fs-q3-17);
			position: relative;
			&.slide-button {
				position: relative;
				z-index: 0;
				overflow: hidden;
				&::before {
					content: "";
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background-color: var(--main-color);
					z-index: 0;
					transform: scaleX(0);
					transform-origin: right;
					transition: all .25s ease;
					transition-property: transform;
				}
				&:hover::before {
					transform: scaleX(1);
					transform-origin: left;
				}
			}
			& span {
				display: block;
				padding: 16px;
				line-height: 1;
				position: relative;
				&::before,&::after {
					position: absolute;
					right: 16px;
					bottom: 20px;
					content: "";
					width: 19.4px;
					height: 5.532px;
					background-repeat: no-repeat;
					background-size: cover;
					background-position: center center;
				}
				&::before {
					background-image: url(../img/arrow_white.svg);
					z-index: 21;
				}
				&::after {
					background-image: url(../img/arrow_black.svg);
					z-index: 20;
				}
			}
			&:hover {
				background-color: #4f484a;
			}
		}
	}
}
@keyframes rotateLogo {
	from {
			transform: translateY(-50%) rotate(0deg);
	}
	to {
			transform: translateY(-50%) rotate(360deg);
	}
}

/* pv
----------------------------------------------------*/
.pv {
	padding-block: 0 18.667vw;
	@media (880px <= width) {
		padding-block: 7.3vw 11.49vw;
	}
	& p {
		width: 100vw;
		margin-inline: auto;
		aspect-ratio: 16/9;
		height: auto;
		cursor: pointer;
		@media (880px <= width) {
			width: 64.6875vw;
		}
		& img {
			&:hover {
				filter: brightness(80%);
			}
		}
	}
}


/* business
----------------------------------------------------*/
.business {
	margin-bottom: calc(350 * var(--vw-unit));
	& > p {
	}
	& .heading {
		position: relative;
		z-index: 60;
    max-width: 1506px;
		margin-inline: auto;
		margin-top: max(-6vw,-98px);
		@media (880px <= width) {
			width: 64.6vw;
	    /* padding-inline: min(9.46vw,calc(min(92px,5.1vw) + min(40px,2.64vw))); */
		}
		& .innerWrap {
			padding-block: calc(60 * var(--vw-unit)) calc(60 * var(--vw-unit));
			display: flex;
			flex-direction: column;
			@media (880px <= width) {
				background-color: var(--gray-02);
				flex-direction: row;
				justify-content: center;
				align-items: flex-end;
				column-gap: calc(44 * var(--vw-unit));
			}
			@media (1240px <= width) {
				padding-block: 50px 62px;
			}
			& h2 {
				width: 21vw;
				max-width: 373px;
				padding-bottom: 3px;
				@media (width < 880px) {
					width: fit-content;
					max-width: 65vw;
					padding-block: 4vw 3vw;
					padding-inline: min(9.46vw,calc(min(94px,5.1vw) + min(40px,2.64vw))) 10vw;
					background-color: var(--gray-02);
				}
				& span {
					display: block;
					&.ja {
					}
					&.en {
						font-size: var(--fs-q14-78);
					}
				}
			}
			& .lead {
				font-size: min(1.3vw,25px);
				line-height: 1.4;
				font-weight: bold;
				@media (width < 880px) {
					font-size: 4vw;
					padding-inline: min(9.46vw,calc(min(94px,5.1vw) + min(40px,2.64vw)));
				}
			}
		}
	}
}
.swiper {
	margin-inline: auto;
	/* padding-inline: min(9.46vw,calc(min(94px,3.1vw) + min(40px,2.64vw))); */
	padding-inline: min(9.46vw,calc(min(94px,3.1vw) + min(30px,2.64vw)));
	padding-bottom: calc(30 * var(--vw-unit));
	@media (width < 768px) {
		padding-bottom: calc(30 * var(--vw-unit-768));
	}
	& .swiper-nav {
		text-align: right;
		margin-bottom: calc(50 * var(--vw-unit));
		& .swiper-custom-button-prev {
			margin-right: 2.6vw;
		}
		& img {
			display: inline-block;
			width: 77px;
			cursor: pointer;
			&:hover {
				@media (width < 768px) {
					filter: brightness(180%) grayscale(1);
				}
				@media (768px <= width) {
					filter: brightness(0);
				}
			}
		}
		@media (width < 768px) {
			position: absolute;
			left: 2%;
			top: 50%;
			display: flex;
			justify-content: space-between;
			width: 96%;
			z-index: 90;
			& img {
				width: 9.9vw;
			}
		}
	}
	& .swiper-wrapper {
		/* column-gap: calc(50 * var(--vw-unit)); */
		& .swiper-slide {
			/* border-right: min(2vw,28px) solid var(--gray-02);
			border-left: min(2vw,28px) solid var(--gray-02);
			box-sizing: content-box;
			margin-inline: min(-2vw, 28px); */
			height: auto;
			padding-inline: min(2vw,23px);
			/* width: 86vw; */
			@media (768px <= width < 1440px) {
				/* width: 40vw; */
			}
			@media (1440px < width) {
				/* width: 30.5vw; */
			}
			& .padding-wrap {
				display: flex;
				flex-direction: column;
				background-color: var(--white-01);
				height: 100%;
			}
			& .thumb {
				order: -1;
			}
			& .contentWrap {
				padding: calc(44 * var(--vw-unit)) calc(24 * var(--vw-unit)) calc(44 * var(--vw-unit)) calc(64 * var(--vw-unit));
				position: relative;
				height: 100%;
				@media (width < 768px) {
					padding: calc(44 * var(--vw-unit-768)) calc(24 * var(--vw-unit-768)) calc(44 * var(--vw-unit-768)) calc(64 * var(--vw-unit-768));
				}
				& h3 {
					line-height: 1;
					font-size: 1.146vw;
					font-weight: 500;
					margin-bottom: calc(20 * var(--vw-unit));
					& span {
						display: inline-block;
						border: 1.334px solid var(--main-color);
						line-height: 1;
						padding: 0.2em 0.2em 0.1em;
						font-family: 'Courier New', Courier, monospace;
						font-size: var(--fs-q15-16);
						margin-right: 0.8em;
						margin-bottom: 0.3em;
						vertical-align: middle;
						@media (width < 768px) {
							font-size: 2.5334vw;
						}
					}
					@media (768px <= width < 1440px) {
						font-size: 1.4vw;
					}
					@media (width < 768px) {
						font-size: 3.34vw;
						margin-bottom: calc(24 * var(--vw-unit-768));
					}
				}
				& .itemName {
					margin-bottom: calc(30 * var(--vw-unit));
					/* font-size: var(--fs-q17-48); */
					font-weight: 500;
					font-size: 2.3vw;
					line-height: 1;
					@media (768px <= width < 1440px) {
						font-size: 3.2vw;
					}
					@media (width < 768px) {
						margin-bottom: calc(30 * var(--vw-unit-768));
						font-size: 7.4667vw;
					}
					& span {
						font-size: smaller;
						display: inline-block;
						position: relative;
						top: -0.2em;
						margin-inline: -0.1em;
					}
				}
				& .how {
					background-color: var(--main-color);
					color: var(--white-01);
					width: fit-content;
					min-width: 194px;
					text-align: center;
					line-height: 1;
					padding: 0.25em 0.5em;
					margin-bottom: min(calc(36 * var(--vw-unit)),36px);
					font-size: var(--fs-q15-16);
					@media (width < 768px) {
						margin-bottom: calc(36 * var(--vw-unit-768));
						font-size: 2.8vw;
					}
					& span {
						font-size: smaller;
						display: inline-block;
						position: relative;
						top: -0.2em;
						margin-inline: -0.1em;
					}
				}
				& .text {
					margin-bottom: calc(30 * var(--vw-unit));
					font-size: var(--fs-q5-18);
					@media (width < 768px) {
						margin-bottom: calc(30 * var(--vw-unit-768));
						font-size: 3.6vw;
					}
				}
				& .logo {
					width: 24%;
				}
				& .item {
					position: absolute;
					right: calc(-40 * var(--vw-unit));
					bottom: calc(-30 * var(--vw-unit));
					height: auto;
					@media (width < 768px) {
						right: calc(-40 * var(--vw-unit-768));
						bottom: calc(-30 * var(--vw-unit-768));
					}
					& .textLabel {
						width: 5vw;
						position: absolute;
						left: -6vw;
						bottom: 3vw;
						@media (width < 768px) {
							width: 16vw;
							left: -18vw;
							bottom: 8vw;
						}
					}
				}
			}
		}
		& article.cnt01{
			z-index: 65;
			& .item {
				width: calc(190 * var(--vw-unit));
				@media (width < 768px) {
					width: calc(190 * var(--vw-unit-768));
				}
			}
		}
		& article.cnt02{
			z-index: 64;
			& .item {
				width: calc(190 * var(--vw-unit));
				@media (width < 768px) {
					width: calc(190 * var(--vw-unit-768));
				}
			}
		}
		& article.cnt03{
			z-index: 63;
			& .item {
				width: calc(193 * var(--vw-unit));
				@media (width < 768px) {
					width: calc(193 * var(--vw-unit-768));
				}
			}
			& .logo {
				width: 36%!important;
			}
		}
		& article.cnt04{
			z-index: 62;
			& .item {
				width: calc(148 * var(--vw-unit));
				@media (width < 768px) {
					width: calc(148 * var(--vw-unit-768));
				}
			}
		}
	}
}


/* sustainability
----------------------------------------------------*/
.sustainability {
	margin-bottom: calc(420 * var(--vw-unit));
	& .colorWrap {
		
		padding-top: calc(50 * var(--vw-unit));
		position: relative;
		@media (768px <= width) {
			background-color: var(--main-color);
		}
		& .innerWrap {
			@media (768px <= width) {
				width: calc(1580 * var(--vw-unit));
				margin-left: auto;
				transform: translateY(calc(100 * var(--vw-unit)));
			}
			& .visualArea {
				position: relative;
				color: var(--white-01);
				padding-top: calc(82 * var(--vw-unit-768));
				padding-bottom: calc(240 * var(--vw-unit-768));
				background-color: var(--main-color);
				@media (width < 768px) {
					display: flex;
					flex-direction: column;
				}
				@media (768px <= width) {
					padding-top: 0;
					padding-bottom: calc(88 * var(--vw-unit));
				}
				& h2 {
					width: 80vw;
					margin-left: 8vw;
					margin-bottom: calc(58 * var(--vw-unit-768));
					@media (width < 768px) {
						order: 1;
					}
					@media (768px <= width) {
						width: 32vw;
						max-width: 602px;
						margin-bottom: calc(72 * var(--vw-unit));
						margin-left: 0;
					}
				}
				& ul {
						display: flex;
						flex-wrap: wrap;
						gap: min(1.15vw,24px) 4%;
						width: 32vw;
						max-width: 602px;
						@media (width < 768px) {
							gap: 3vw 4%;
							width: 80vw;
							margin-top: 15vw;
							margin-inline: auto;
							order: 3;
						}
						& li {
							flex-basis: 48%;
							text-align: center;
							border: 1.334px solid var(--white-01);
							font-size: 1.42vw;
							line-height: 1;
							padding-block: 0.4em 0.5em;
							@media (width < 768px) {
								font-size: 3.6vw;
							}
							&.full {
								flex-basis: 100%;
							}
						}
				}
				& .image {
					position: relative;
					width: 90%;
					aspect-ratio: 1/1;
					height: auto;
					@media (width < 768px) {
						order: 2;
						aspect-ratio: 683/692;
					}
					@media (768px <= width) {
						width: 100%;
						position: absolute;
						right: 0;
						bottom: 0;
						width: calc(803 * var(--vw-unit));
					}
					& img {
						position: absolute;
						right: 0;
						bottom: 0;
						width: 100%;
						height: auto;
						opacity: 0;
						transition: opacity 2.4s ease-in-out;
						z-index: 1;
						&.active {
							opacity: 1;
							z-index: 2;
						}
					}
				}
			}
			& .blackWrap {
				background-color: var(--black-02);
				color: var(--white-01);
				/* padding: calc(90 * var(--vw-unit)) calc(40 * var(--vw-unit)) calc(90 * var(--vw-unit)) calc(115 * var(--vw-unit)); */
				padding: calc(90 * var(--vw-unit)) 22.1875vw calc(90 * var(--vw-unit)) calc(115 * var(--vw-unit));
				position: relative;
				@media (width < 768px) {
					transform: translateY();
					margin-top: calc(-172 * var(--vw-unit-768));
					margin-left: 6.8vw;
					z-index: 90;
					padding-top: calc(86 * var(--vw-unit-768));
					padding-inline: calc(70 * var(--vw-unit-768));
					padding-bottom: calc(86 * var(--vw-unit-768));
				}
				& .nav {
					position: absolute;
					left: 6vw;
					top: 6vw;
					line-height: 1;
					font-size: 0px;
					@media (width < 768px) {
						left: 0;
						top: -45vw;
					}
					@media (768px <= width) {
						left: auto;
						right: 6vw;
						top: 3vw;
					}
					& span {
						display: inline-block;
						opacity: 0.5;
						transition: opacity 0.3s;
						width: 48px;
						height: 2px;
						background-color: #ffffff;
					}
					& .current {
						opacity: 1;
						font-weight: bold;
					}
				}
				& .text {
					font-weight: 300;
				}
			}
		}
		& .sign {
			position: absolute;
			@media (width < 768px) {
				/* right: 3.4667vw; */
				right: 4vw;
				top: 25%;
				width: 1.422vw;
			}
			@media (768px <= width) {
				left: 1.875vw;
				bottom: 1.875vw;
				width: 11.3325px;
			}
		}
	}
}




/* group
----------------------------------------------------*/
.group {
	padding-top: calc(164 * var(--vw-unit));
	position: relative;
	background: #fff;
	padding-bottom: 7.3vw;
	@media (768px <= width) {
		margin-bottom: calc(192 * var(--vw-unit));
	}
	@media (968px <= width) {
		background: transparent url(../img/group_back.png) no-repeat right bottom / cover;
	}
	&::before {
		content: "";
		background-color: var(--main-color);
		width: 86%;
		height: calc(500 * var(--vw-unit-768));
		position: absolute;
		left: 0;
		top: -6.25vw;
		z-index: 50;
		@media (768px <= width) {
			width: calc(1437 * var(--vw-unit));
			height: calc(540 * var(--vw-unit));
		}
	}
	/* @media (768px <= width) {
		&::after {
			content: "";
			background-color: var(--white-01);
			width: calc(1832 * var(--vw-unit));
			height: calc(851 * var(--vw-unit));
			position: absolute;
			left: 0;
			top: 115px;
			z-index: 40;
		}
	} */
	& .innerWrap {
		position: relative;
		z-index: 60;
		padding-inline: min(9.46vw, calc(min(94px, 5.1vw) + min(40px, 2.64vw)));
		margin-inline: auto;
		margin-top: -6.25vw;
		@media (768px <= width < 968px) {
			width: 90vw;
			padding-right: 0;
			padding-left:0;
			padding-bottom: calc(138 * var(--vw-unit));
		}
		@media (968px <= width) {
			width: calc(1240 * var(--vw-unit));
			padding-left: calc(70 * var(--vw-unit));
		}
		@media (768px <= width < 1220px) {
			margin-top: -8.25vw;
			padding-bottom: 0;
		}
		& .heading {
			color: var(--white-01);
			margin-bottom: 8.8vw;
			@media (1220px <= width) {
				margin-bottom: calc(40 * var(--vw-unit));
				display: flex;
				align-items: flex-end;
				column-gap: calc(10 * var(--vw-unit));
			}
			& h2 {
				line-height: 1;
				margin-bottom: 6px;
				width: 68vw;
				@media (768px <= width < 1220px) {
					width: 40vw;
				}
				@media (1220px <= width) {
					width: 49vw;
				}
				& span {
					display: flex;
					&.ja {

					}
					&.en {
						font-size: var(--fs-q16-73);
					}
				}
			}
			& p {
				font-weight: 500;
				@media (768px <= width) {
					font-weight: bold;
				}
			}
		}
		& .flexWrap {
			display: grid;
			grid-template-rows: auto auto 1fr auto;
			column-gap: calc(50 * var(--vw-unit));
			@media (768px <= width) {
				grid-template-columns: repeat(auto-fit, minmax(307px, 1fr));
			}
			@media (968px <= width) {
				margin-right: calc(-248 * var(--vw-unit));
			}
			& airticle {
				display: grid;
				grid-template-rows: subgrid;
				grid-row: span 3;
				@media (width < 768px) {
					margin-bottom: 13vw;
					row-gap: min(2.4vw,12px);
				}
				& > p {
					margin-bottom: calc(12 * var(--vw-unit));
				}
				& > .image {
					grid-row: 1;
					@media (768px <= width) {
						margin-bottom: calc(24 * var(--vw-unit));
					}
				}
				& > p:not(.image) {
					grid-row: 2;
					font-weight: 500;
					@media (768px <= width) {
						font-weight: bold;
					}
				}
				& .footBand {
					grid-row: 3;
					margin-top: auto;
					@media (768px <= width) {
						display: flex;
						justify-content: space-between;
						align-items: center;
					}
					& .logo {
						width: min(40vw,300px);
						flex-basis: calc(270 * var(--vw-unit));
					}
					& .linkBtn {
						width: 9.33vw;
						width: 30%;
						& a {
							display: block;
							background-color: var(--black-02);
							color: var(--white-01);
							border: 1px solid var(--white-01);
							position: relative;
							&:hover {
								opacity: 0.8;
							}
							&.slide-button {
								position: relative;
								z-index: 0;
								overflow: hidden;
								&::before {
									content: "";
									position: absolute;
									top: 0;
									left: 0;
									width: 100%;
									height: 100%;
									background-color: var(--main-color);
									z-index: 0;
									transform: scaleX(0);
									transform-origin: right;
									transition: all .25s ease;
									transition-property: transform;
								}
								&:hover::before {
									transform: scaleX(1);
									transform-origin: left;
								}
								& img {
									position: relative;
									z-index: 1;
								}
							}
							& span {
								display: block;
								line-height: 1;
								position: relative;
								z-index: 1;
								&::before,&::after {
									position: absolute;
									right: 16px;
									bottom: 20px;
									content: "";
									width: 19.4px;
									height: 5.532px;
									background-repeat: no-repeat;
									background-size: cover;
									background-position: center center;
								}
								&::before {
									background-image: url(../img/arrow_white.svg);
									z-index: 21;
								}
								&::after {
									background-image: url(../img/arrow_black.svg);
									z-index: 20;
								}
							}
						}
						@media (width < 768px) {
							width: 55%;
							max-width: 220px;
							margin-top: min(6.4vw,36px);
						}
					}
					/* & .linkBtn {
						@media (width < 768px) {
							margin-top: 6.4vw;
						}
						& a {
							width: fit-content;
							background-color: var(--black-02);
							color: var(--white-01);
							border: 1px solid var(--white-01);
							font-size: var(--fs-q15-16);
							padding: calc(16 * var(--vw-unit));
							padding-right: calc(40 * var(--vw-unit));
							line-height: 1;
							position: relative;
							margin-left: auto;
							&::before,&::after {
								position: absolute;
								right: 16px;
								bottom: 20px;
								content: "";
								width: 17.9px;
								height: 5.1px;
								background-repeat: no-repeat;
								background-size: cover;
								background-position: center center;
							}
							&::before {
								background-image: url(../img/arrow_white.svg);
								z-index: 21;
							}
							&::after {
								background-image: url(../img/arrow_black.svg);
								z-index: 20;
							}
							&:hover {
								background-color: #4f484a;
							}
						}
					} */
				}
				/* &:last-of-type {
					& .footBand {
						& .logo {
							flex-basis: 274px;
						}
					}
				} */
			}
		}
	}
	/* & .sign {
		display: none;
		@media (968px <= width) {
			display: block;
			position: absolute;
			right: 1.875vw;
			bottom: 1.875vw;
			width: 11.3325px;
		}
	} */
}

/* careers
----------------------------------------------------*/
.careers {
	background-color: var(--black-02);
	color: var(--white-01);
	padding-block: calc(346 * var(--vw-unit)) calc(254 * var(--vw-unit));
	& .innerWrap {
    max-width: 1516px;
		margin-inline: auto;
    padding-inline: min(9.46vw,calc(min(94px,5.1vw) + min(40px,2.64vw)));
		display: flex;
		flex-direction: column;
		@media (768px <= width) {
			flex-direction: row;
		}
		& h2 {
			margin-right: min(94px,6.82vw);
			margin-bottom: 6vw;
			& .ja {
				font-weight: bold;
				display: inline-block;
				margin-bottom: clamp(6px, calc(1.682vw - 0.3075px), 32px);
			}
			& img {
				width: 100%;
				max-width: 200px;
			}
			@media (768px <= width) {
				font-size: var(--fs-q4-25);
				flex-basis: min(452px,23.54vw);
				& img {
					max-width: 452px;
				}
			}
		}
		& > div {
			flex: 1;
			& p {
				font-weight: 300;
			}
			& .linkBtn {
				margin-top: 2em;
				display: flex;
				flex-direction: column;
				row-gap: 16px;
				@media (480px <= width) {
					flex-direction: row;
					column-gap: 18px;
				}
				& a {
					background-color: var(--black-02);
					color: var(--white-01);
					width: 220px;
					border: 1px solid var(--white-01);
					font-size: var(--fs-q3-17);
					position: relative;
					&.slide-button {
						position: relative;
						z-index: 0;
						overflow: hidden;
						&::before {
							content: "";
							position: absolute;
							top: 0;
							left: 0;
							width: 100%;
							height: 100%;
							background-color: #fff;
							z-index: 0;
							transform: scaleX(0);
							transform-origin: right;
							transition: all .25s ease;
							transition-property: transform;
						}
						&:hover::before {
							transform: scaleX(1);
							transform-origin: left;
						}
					}
					& span {
						display: block;
						padding: 16px;
						line-height: 1;
						position: relative;

						&::before,&::after {
							position: absolute;
							right: 16px;
							bottom: 20px;
							content: "";
							width: 19.4px;
							height: 5.532px;
							background-repeat: no-repeat;
							background-size: cover;
							background-position: center center;
						}
						&::before {
							background-image: url(../img/arrow_white.svg);
							z-index: 21;
						}
						&::after {
							background-image: url(../img/arrow_black.svg);
							z-index: 20;
						}
					}
					&:hover {
						color: var(--black-01);
						& span {
							font-weight: 400;
							&::before {
								display: none;
							}
						}
					}
					/* &:hover {
						background-color: var(--white-01);
						color: var(--black-01);
						&::before {
							display: none;
						}
					} */
				}
			}
		}
	}
}



/* contact
----------------------------------------------------*/
.contact {
	padding-block: calc(346 * var(--vw-unit)) calc(254 * var(--vw-unit));
	background: var(--black-02) url(../img/bg_contact.png) no-repeat center center/cover;
	color: var(--white-01);
	& .innerWrap {
    max-width: 1516px;
		margin-inline: auto;
    padding-inline: min(9.46vw,calc(min(94px,5.1vw) + min(40px,2.64vw)));
		display: flex;
		flex-direction: column;
		@media (768px <= width) {
			flex-direction: row;
		}
		& h2 {
			margin-right: min(94px,6.82vw);
			margin-bottom: 6vw;
			& .ja {
				font-weight: bold;
				display: inline-block;
				margin-bottom: clamp(6px, calc(1.682vw - 0.3075px), 32px);
			}
			& img {
				width: 100%;
				max-width: 200px;
			}
			@media (768px <= width) {
				flex-basis: min(455px,23.7vw);
				font-size: var(--fs-q4-25);
				& img {
					max-width: 455px;
				}
			}
		}
		& > div {
			flex: 1;
			& p {
				font-weight: 300;
			}
			& .linkBtn {
				margin-top: 2em;
				& a {
					color: var(--white-01);
					max-width: 220px;
					border: 1px solid var(--white-01);
					font-size: var(--fs-q3-17);
					position: relative;
					&.slide-button {
						position: relative;
						z-index: 0;
						overflow: hidden;
						&::before {
							content: "";
							position: absolute;
							top: 0;
							left: 0;
							width: 100%;
							height: 100%;
							background-color: #fff;
							z-index: 0;
							transform: scaleX(0);
							transform-origin: right;
							transition: all .25s ease;
							transition-property: transform;
						}
						&:hover::before {
							transform: scaleX(1);
							transform-origin: left;
						}
					}
					& span {
						display: block;
						padding: 16px;
						line-height: 1;
						position: relative;

						&::before,&::after {
							position: absolute;
							right: 16px;
							/* bottom: 20px; */
							bottom: 1.18em;
							content: "";
							width: 19.4px;
							height: 5.532px;
							background-repeat: no-repeat;
							background-size: cover;
							background-position: center center;
						}
						&::before {
							background-image: url(../img/arrow_white.svg);
							z-index: 21;
						}
						&::after {
							background-image: url(../img/arrow_black.svg);
							z-index: 20;
						}
					}
					&:hover {
						color: var(--black-01);
						& span {
							font-weight: 400;
							&::before {
								display: none;
							}
						}
					}
				}
			}
		}

	}
}

/* animation
----------------------------------------------------*/
.fadein-section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein-section.visible {
	opacity: 1;
	transform: translateY(0);
}