@charset "utf-8";

/*-----------------------------------------------------

  BASE

----------------------------------------------------- */
/*-----------------------------
　変数
-----------------------------*/
:root {
	--default-font-color: #1c1d21;
	--fontfamily01: "Noto Sans JP", sans-serif;
	--fontfamily04: "Yuji Syuku", serif;
	--default-lineheight: 1.8em;
}

/*-------------------------------------*/
/*               共通パーツ          */
/*-------------------------------------*/
.wrap_01 {
	max-width: 1600px;
	margin: auto;
	width: 86%;
	display: block;
}
.wrap_02 {
	max-width: 1150px;
	margin: auto;
	width: 86%;
	display: block;
}
.btn_box {
	width: fit-content;
}
.btn_box a {
	transition: .2s;
}
.btn_box a:hover {
	color: #fff;
	transition: .2s;
}
.btn_box .bg-extend-left {
	display: block;
	padding: 15px 35px;
	border: 2px solid #1c1d21;
	color: #1c1d21;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.btn_box .bg-extend-left::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #1c1d21;
	position: absolute;
	left: -100%;
	top: 0;
	transition: .4s;
	z-index: -1;
}

.btn_box .bg-extend-left:hover::before {
	left: 0;
}
.sp_block {
	display: none;
}
.tb_block {
	display: none;
}
@media (max-width: 768px) {
	.sec {
		padding-top: 60px!important;
	}
	.tb_none {
		display: none;
	}
	.tb_block {
		display: block;
	}
}
@media (max-width: 430px) {
	.sec {
		padding-top: 40px!important;
	}
	.sp_block {
		display: block;
	}
	.sp_none {
		display: none;
	}
}




/*-----------------------------
  全体
-----------------------------*/
html {
	height: 100%;
	scroll-padding:85px 0 0 0;
}

.MainContent {
	padding-top: 0 !important;
}

body {
	font-family: var(--fontfamily01);
	font-weight: 400;
	font-style: normal;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: var(--default-lineheight);
	color: var(--default-font-color);
	letter-spacing: .12em;
	font-feature-settings: "palt";
	max-width: 2560px;
	margin: 0 auto;
	counter-reset: number 0;
	background-color: #F4F4F4;
}

a {
	text-decoration: none;
}

img {
	width: 100%;
}
/*スリックの挙動制御*/
.slick-slider div { transition: none; }



@media (max-width: 991px) {
	body {
		font-size: 15px;
	}
}

@media (max-width: 430px) {
	body {
		font-size: 14px;
	}
}



/*ーーータイトルの背景が伸びるアニメーションーーー*/
.title_animation span {
	color: transparent;
	display: block;
	position: relative;
	z-index: 2;
	width: fit-content !important;
	overflow: hidden;
	white-space: nowrap;
}

.title_animation.visible span {
	-webkit-animation: show_ani 1.2s forwards;
	animation: show_ani 1.2s forwards;
}

.title_animation span::before {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	transform: translate3d(-100%, 0px, 0px);
	z-index: -1;
	content: "";
	/*background: #000;*/
}

.title_animation.visible span::before {
	-webkit-animation: intro_ani 1.2s cubic-bezier(1, 0, 0, 1);
	animation: intro_ani 1.2s cubic-bezier(1, 0, 0, 1);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@keyframes show_ani {
	30% {
		color: transparent;
	}

	100% {
		color: #fff;
	}
}

@keyframes intro_ani {
	0% {
		-webkit-transform: translate3d(-102%, 0, 0);
		transform: translate3d(-102%, 0, 0);
	}

	50% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

/*ーーーふわっと表示ーーー*/
.fadeup {
	opacity: 0;
}
.fadeup.is-animated {
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
	0% {
		transform: translateY(30px);
		opacity: 0;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*ーーーホバーで下線アニメーションーーー*/
a.under {
	color: #333;
	/* 文字色 */
	display: inline-block;
	/* これがないとリンク範囲が全幅になる */
	font-size: 36px;
	/* 文字サイズ */
	position: relative;
	/* 相対位置指定 */
	text-decoration: none;
	/* デフォルトのテキストの下線を消す */
}

/* 下線のスタイル */
a.under::after {
	background-color: #333;
	/* 下線の色 */
	bottom: -4px;
	/* 要素の下端からの距離 */
	content: "";
	/* 要素に内容を追加 */
	height: 2px;
	/* 下線の高さ */
	left: 0;
	/* 要素の左端からの距離 */
	position: absolute;
	/* 絶対位置指定 */
	transform: scale(0, 1);
	/* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
	transform-origin: right top;
	/* 変形の原点を右上に指定 */
	transition: transform .3s;
	/* 変形をアニメーション化 */
	width: 100%;
	/* 要素の幅 */
}

/* リンクにホバーした際の下線の表示 */
a.under:hover::after {
	transform-origin: left top;
	/* 変形の原点を左上に指定 */
	transform: scale(1, 1);
	/* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}



/* ------------背景が伸びて文字が現れる ------------------*/
.effect {
	margin: 0;
	line-height: 1;
	opacity: 0;
}
.effect.scroll-in {
	opacity: 1;
}
.effect span {
	display: inline-block;
	position: relative;
}
.effect span,
.effect span::after {
	animation-delay: var(--animation-delay, .5s); /* アニメーションの開始タイミング */
	animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
	animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
	animation-fill-mode: both; /* 実行の前後 */
	animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

.effect.scroll-in span {
	--animation-delay: var(--delay, 0);
	--animation-duration: var(--duration, 800ms);
	--animation-iterations: var(--iterations, 1);
	position: relative;
	animation-name: clip-text;
	white-space: nowrap;
}
.effect.scroll-in span::after {
	content: "";
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #1c1d21;
	transform: scaleX(0);
	transform-origin: 0 50%;
	pointer-events: none;
	animation-name: text-revealer;
}

@keyframes clip-text {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}
@keyframes text-revealer {
	0%, 50% {
		transform-origin: 0 50%;
	}
	60%, 100% {
		transform-origin: 100% 50%;
	}
	60% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(0);
	}
}



/*下から文字が出てくるアニメーション*/

h2 .title_animation {
	display: flex;
	overflow: hidden;
}

/*アニメーション*/
.title_animation span {
	display: block;
	transform: translate(0, 105%);
	transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.title_animation.visible span {
	transform: translate(0, 0);
}
.title_animation span:nth-child(2) {
	transition-delay: 0.06s;
}
.title_animation span:nth-child(3) {
	transition-delay: 0.12s;
}
.title_animation span:nth-child(4) {
	transition-delay: 0.18s;
}
.title_animation span:nth-child(5) {
	transition-delay: 0.24s;
}
.title_animation span:nth-child(6) {
	transition-delay: 0.30s;
}
.title_animation span:nth-child(7) {
	transition-delay: 0.36s;
}
.title_animation span:nth-child(8) {
	transition-delay: 0.42s;
}
.title_animation span:nth-child(9) {
	transition-delay: 0.48s;
}
.title_animation span:nth-child(10) {
	transition-delay: 0.54s;
}

@keyframes intro_ani {
	0% {
		-webkit-transform: translate3d(-102%,0,0);
		transform: translate3d(-102%,0,0)
	}
	50% {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)
	}
	100% {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)
	}
}
@keyframes show_ani {
	30.00001% {
		color: transparent;
	}
	100% {
		color: #1c1d21;
	}
}


/*-------------------------------------*/
/*          header            */
/*-------------------------------------*/

header {
	/* headerを画面上部に固定する */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	/* ロゴとナビゲーションを横並びにする */
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* スクロールしても他のコンテンツの下にならないようにする */
	z-index: 10;
	/* headerに余白を作る */
	padding: 20px;
	/* アニメーションの変化時間 */
	transition: 0.5s;
	height: 85px;

	z-index: 99;
}

header nav .inner {
	display: flex;
}

header .rec_link_box {
	display: none;
}

header .rec_link_box li.btn_recruit {
	border-left: none;
	padding-left: 0;
	padding-right: 20px;
	border-right: 1px solid #d2d2d2;
}

header ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

header li {
	list-style: none;
	margin-left: 20px;
}

header nav a {
	font-size: 15px;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	/* アニメーションの変化時間 */
	transition: 0.5s;
	position: relative;
	/* 相対位置指定 */
}

/* 下線のスタイル */
header nav a::after {
	background-color: #fff;
	/* 下線の色 */
	bottom: -4px;
	/* 要素の下端からの距離 */
	content: "";
	/* 要素に内容を追加 */
	height: 1px;
	/* 下線の高さ */
	left: 0;
	/* 要素の左端からの距離 */
	position: absolute;
	/* 絶対位置指定 */
	transform: scale(0, 1);
	/* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
	transform-origin: right top;
	/* 変形の原点を右上に指定 */
	transition: transform .3s;
	/* 変形をアニメーション化 */
	width: 100%;
	/* 要素の幅 */
}

/* リンクにホバーした際の下線の表示 */
header nav a:hover::after {
	transform-origin: left top;
	/* 変形の原点を左上に指定 */
	transform: scale(1, 1);
	/* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

header ul li.btn_recruit {
	padding-left: 20px;
	border-left: 1px solid #d2d2d2;
}


/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
	/* 余白を狭くする */
	padding: 10px 15px;
	height: 70px;
	background-color: #F4F4F4;
	box-shadow: 0 -30px 40px #737373;
}

header.scroll-nav a::after {
	background-color: var(--default-font-color);
}


/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
header.scroll-nav ul li a {
	color: var(--default-font-color);
}

header .logo img {
	width: 250px;
}

header.scroll-nav .logo {
	display: none;
}

header .logo_scroll img {
	display: none;
}

header.scroll-nav .logo_scroll img {
	display: block;
	width: 250px;
}
@media (max-width: 430px) {
	header .logo img,
	header.scroll-nav .logo_scroll img {
		width: 200px;
	}
}
/*============
nav
=============*/
@media screen and (max-width: 1180px) {
	nav {
		display: block;
		position: fixed;
		top: 0;
		left: -300px;
		bottom: 0;
		width: 300px;
		background: #333;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transition: all .5s;
		z-index: 3;
		opacity: 0;
	}

	.open nav {
		left: 0;
		opacity: 1;
	}

	nav .inner {
		padding: 20px;
		padding-top: 55px;
	}

	nav .inner ul {
		list-style: none;
		margin: 0;
		padding: 0;
		flex-direction: column;
		width: 100%;
	}

	nav .inner ul li {
		position: relative;
		margin: 0;
		border-bottom: 1px solid #424242;
		width: 100%;
	}

	header nav .inner a::after {
		bottom: -1px;
	}

	nav .inner ul li.btn_recruit {
		border-left: none;
	}

	nav .inner ul .btn_recruit {
		padding-left: 0;
	}

	nav .inner ul li a {
		display: block;
		color: #fff;
		font-size: 14px;
		padding: 1em;
		text-decoration: none;
		transition-duration: 0.2s;
	}


	header .rec_link_box {
		display: flex;
		margin-right: 90px;
		color: #fff;
	}
}

/*============
.toggle_btn
=============*/
@media screen and (max-width: 1180px) {
	.hum_box {
		display: flex;
		position: fixed;
		top: 0;
		right: 0;
		height: 75px;
		width: 80px;
		transition: all .5s;
		cursor: pointer;
		z-index: 3;
		align-items: center;
		justify-content: center;
		background: #333;
	}

	.hum_box .toggle_btn {
		width: 30px;
		height: 30px;
		position: relative;
	}

	.hum_box .toggle_btn span {
		display: block;
		position: absolute;
		left: 0;
		width: 30px;
		height: 1.5px;
		background-color: #fff;
		border-radius: 4px;
		transition: all .5s;
	}

	.toggle_btn span:nth-child(1) {
		top: 5px;
	}

	.toggle_btn span:nth-child(2) {
		top: 14px;
	}

	.toggle_btn span:nth-child(3) {
		bottom: 5px;
	}

	.open .toggle_btn span {
		background-color: #fff;
	}

	.open .toggle_btn span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(10px) rotate(-315deg);
	}

	.open .toggle_btn span:nth-child(2) {
		opacity: 0;
	}

	.open .toggle_btn span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-10px) rotate(315deg);
	}

	/* スクロールした時のヘッダー */
	.toggle_btn span {
		background-color: #333;
	}

	.scroll-nav .open .toggle_btn span {
		background-color: #d2d2d2;
	}


}

@media screen and (max-width: 768px) {
	header .rec_link_box {
		display: none;
	}
}

/*============
#mask
=============*/
@media screen and (max-width: 1180px) {
	#mask {
		display: none;
		transition: all .5s;
	}

	.open #mask {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: .8;
		z-index: 2;
		cursor: pointer;
	}
}



/*-------------------------------------*/
/*        footer             */
/*-------------------------------------*/

footer {
	background-color: #1c1d21;
	padding: 60px 0 0;
	color: #fff;
}

footer .logo {
	margin-bottom: 15px;
}

footer .logo img {
	width: 300px;
}

footer .copy p {
	padding: 40px 0 10px;
	font-size: 12px;
	text-align: center;
	color: #999999;
}

@media screen and (max-width: 430px) {
	footer .logo img {
		width: 220px;
	}
	footer .address p {
		font-size: 12px;
		line-height: 1.5;
	}
}