/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"],
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

/*-----------------------------------------------------------------------------
Firefoxの右側スクロールバーの表示
Firefox上でコンテンツの高さがウィンドウの高さより短い場合に表示位置がずれる現象を解消
-----------------------------------------------------------------------------*/
html {
	overflow-y: scroll;
}

/* *{border-style:none;} */

img {
	border-style: none;
	vertical-align: top;
}

/*-----------------------------------------------------------------------------
フロート操作によるボックスの高さ調整
-----------------------------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
	min-height: 1%;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* End hide from IE-Mac */

/*--- common ----------------------------------------------------------*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	zoom: 1;
}


html {
	overflow: auto;
	font-size: 62.5%;
	/* sets the base font to 10px for easier math */
}

body {
	margin: 0 !important;
	padding: 0 !important;
	/*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;*/
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', Osaka, Verdana, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.7em;
	color: #3C3C3C;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	background: #FFF;
}

strong {
	font-weight: bold;
}


/* テキストリンク
=========================================================================*/
a {
	color: #3C3C3C;
	text-decoration: underline;
	transition: all 1s;
	-o-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-ms-transition: all 1s;
}

a:visited {
	color: #3C3C3C;
}

a:hover {
	color: #3C3C3C;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	outline: none;
}

/* IEバグ対策
=========================================================================*/
input,
label,
select {
	vertical-align: middle;
}

input,
button,
textarea,
select {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 15px;
	font-size: 1.5rem;
}

@media all and (-ms-high-contrast:none) {

	/* IE11 */
	*::-ms-backdrop,
	body,
	input,
	button,
	textarea,
	select {
		font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-size: 14px;
		font-size: 1.4rem;
	}
}

/* 画像サイズ
=========================================================================*/
img {
	width: 100%
}

/* ページ共通
=========================================================================
=========================================================================*/
.sp {
	display: none !important
}

.pc {
	display: block !important
}

/* ANIMATION
=========================================================================
=========================================================================*/
/* ----- フェードイン ----- */
.fadein {
	opacity: 0;
	transition: all 750ms ease-in-out;
}

.fadein.scrollin {
	opacity: 1;
}

/* ----- フェードインアップ ----- */
.fadein_up {
	opacity: 0;
	transform: translate(0, 15px);
	transition: all 750ms ease-in-out;
}

.fadein_up.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* ----- フェードインダウン ----- */
.fadein_down {
	opacity: 0;
	transform: translate(0, -15px);
	transition: all 750ms;
}

.fadein_down.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* ローディング画面
=========================================================================*/
#progress {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	background: #FFF;
	z-index: 99999;
}

.flex-parent {
	display: flex;
	flex-direction: row;
}

.flex-child {
	position: relative;
	padding: 1em;
	min-height: 100vh;
	width: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.loading-spinner {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	border: 2px solid #E3DFD6;
	border-top-color: #6C665A;
	-webkit-animation: rotation .8s infinite cubic-bezier(.6, .3, .3, .6);
	animation: rotation .8s infinite cubic-bezier(.6, .3, .3, .6);
}

@keyframes rotation {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* ヘッダー
=========================================================================*/
header {
	position: relative;
	width: 100%;
	background: #FFF;
}

header #header {
	display: table;
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 1022px;
	height: 122px;
}

@media (max-width:1082px) {
	header #header {
		padding: 0 15px;
		width: 100%;
	}
}

/* ----- ロゴ ----- */
#header #logo {
	display: table-cell;
	vertical-align: middle;
}

/* ロゴ：サイズ */
#header #logo img {
	width: 210px;
}

/* ----- ボタン ----- */
#header .button_heaer {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
}

#header .button_heaer a {
	position: relative;
	display: inline-block;
	width: 240px;
	height: 62px;
	font-family: 'Crimson Text', serif;
	font-size: 19px;
	font-size: 1.9rem;
	text-align: center;
	color: #FFF;
	line-height: 62px;
	text-decoration: none;
	z-index: 0;
}

#header .button_heaer a:hover {
	transition: 1.0s;
	text-shadow: 0 0 10px #000;
}

#header .button_heaer a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 1.0s;
	background: linear-gradient(90deg, #15D1CA, #3799E2);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .16);
	border-radius: 31px;
}

#header .button_heaer a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: linear-gradient(90deg, #3799E2, #15D1CA);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .16);
	border-radius: 31px;
	text-shadow: 0 0 10px #000;
}

#header .button_heaer a:hover:before {
	opacity: 0;
}

/* ヒーロースペース
=========================================================================*/
#herospace {
	overflow: hidden;
	position: relative;
	margin: 0 auto 130px;
	padding: 0;
	width: 100%;
	/*height: 778px;*/
	background: url(../img/hero_bg.jpg) center center no-repeat;
	background-size: cover;
}

@media (max-width:884px) {
	#herospace {
		width: 100%;
	}
}

/* ----- タイトル ----- */
#herospace h1 {
	position: relative;
	margin: 0 auto 95px;
	padding-top: 87px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 21px;
	font-size: 2.1rem;
	text-align: center;
	color: #FFF;
}

#herospace h1 span {
	margin-left: 60px;
	font-style: italic;
	font-size: 60px;
	font-size: 6.0rem;
}

/* ----- 動画 ----- */
#herospace ul {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 0 calc(24 / 988 * 100%);
	margin: 0 auto 50px;
	padding: 32px 52px;
	width: 988px;
	z-index: 2;
	background-color: rgba(255, 255, 255, .8);
	border-radius: 3px;
}

@media (max-width:1058px) {
	#herospace ul {
		padding: 32px 20px;
		width: 100%;
		width: 90%;
	}
}

#herospace ul li {
	width: calc(482 / 988 * 100%);
}


/*#herospace #main_movie {
	overflow: hidden;
	position: relative;
	margin: 0 auto 42px;
	width: 810px;
	z-index: 2;
	transition-duration: 0.5s;
}

@media (max-width:870px) {
	#herospace #main_movie {
		width: 100%;
	}
}*/
#herospace #main_movie {
	position: relative;
	transition-duration: 0.5s;
}

#herospace #main_movie:hover {
	cursor: pointer;
}

#herospace #main_movie::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 78px;
	height: 56px;
	background: url(../img/button_play.svg) center center no-repeat #828282;
	background-size: 17px auto;
	transition-duration: 0.5s;
}

#herospace #main_movie:hover::before {
	background: url(../img/button_play.svg) center center no-repeat #00ADF0;
	background-size: 17px auto;
}

#herospace #main_movie img {
	position: relative;
	z-index: -1;
	transition-duration: 0.5s;
}

#herospace #main_movie:hover img {
	transform: scale(1.04);
	transition-duration: 0.5s;
}

/* ----- ボタン ----- */
/*#herospace #link {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 auto;
	width: 716px;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 62px;
	text-align: center;
}

#herospace #link p {
	display: block;
	padding: 6px;
	width: 352px;
	height: 74px;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .8)
}*/

#herospace #link {
	margin: 0 auto 50px;
	padding: 32px 76px;
	width: 492px;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 62px;
	text-align: center;
	background-color: rgba(255, 255, 255, .8);
	border-radius: 3px;
}

/* 新卒採用 */
#herospace .button_newgrad a {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	color: #FFF;
	text-decoration: none;
	z-index: 0;
}

#herospace .button_newgrad a:first-child {
	margin-bottom: 20px;
}

#herospace .button_newgrad a:hover {
	transition: 1.0s;
	text-shadow: 0 0 10px #000;
}

#herospace .button_newgrad a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 1.0s;
	background: linear-gradient(90deg, #15D1CA, #3799E2);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .16);
	border-radius: 3px;
}

#herospace .button_newgrad a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: linear-gradient(90deg, #3799E2, #15D1CA);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .16);
	border-radius: 3px;
	text-shadow: 0 0 10px #000;
}

/* キャリア採用 */
#herospace .button_career a {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	color: #FFF;
	text-decoration: none;
	z-index: 0;
}

#herospace .button_career a:hover {
	transition: 1.0s;
	text-shadow: 0 0 10px #000;
}

#herospace .button_career a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	transition: 1.0s;
	background: linear-gradient(90deg, #D19E15, #E23737);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .16);
	border-radius: 3px;
}

#herospace .button_career a:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: linear-gradient(90deg, #E23737, #D19E15);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .16);
	border-radius: 3px;
	text-shadow: 0 0 10px #000;
}

#herospace .button_newgrad a:hover:before,
#herospace .button_career a:hover:before {
	opacity: 0;
}

/* MOVIE
=========================================================================*/
#movie {
	overflow: hidden;
	position: relative;
	/*width: 948px;*/
}

@media (max-width:1008px) {
	#movie {
		padding: 0 30px;
	}
}

/* ----- リスト ----- */
#movie ul {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 auto;
	width: 948px;
	text-align: center;
}

@media (max-width:1008px) {
	#movie ul {
		width: 100%;
	}
}

#movie ul::after {
	content: "";
	display: block;
	width: 31.645569%;
}

#movie ul li {
	position: relative;
	margin-bottom: 80px;
	width: 31.645569%;
	/* 300px/948px */
	text-align: left;
}

/* ----- サムネイル画像 ----- */
#movie .photo {
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
	z-index: 2;
	transition-duration: 0.5s;
}

#movie .photo:hover {
	cursor: pointer;
}

#movie .photo::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 45px;
	height: 32px;
	background: url(../img/button_play.svg) center center no-repeat #828282;
	background-size: 9px auto;
	transition-duration: 0.5s;
}

#movie .photo:hover::before {
	background: url(../img/button_play.svg) center center no-repeat #00ADF0;
	background-size: 9px auto;
}

#movie .photo img {
	position: relative;
	z-index: -1;
	transition-duration: 0.5s;
}

#movie .photo:hover img {
	transform: scale(1.04);
	transition-duration: 0.5s;
}

/* ----- 動画タイトル ----- */
#movie h2 {
	font-weight: bold;
	font-size: 17px;
	font-size: 1.7rem;
}

/* モーダル
=========================================================================*/
/* ----- 背景エリア ----- */
#modal_bg {
	display: none;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.95);
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	z-index: 201;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/* ----- モーダルエリア ----- */
#movie_modal {
	display: none;
	position: fixed;
	padding: 70px 0;
	width: 922px;
	z-index: 202;
}

@media (max-width:982px) {
	#movie_modal {
		width: 100%;
	}
}

#movie_modal.center {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	transform: translateY(-50%) translateX(-50%);
}

/* ----- 閉じるボタン ----- */
#movie_modal .button_close {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	font-size: 0;
	background: url(../img/button_modal.svg) center center no-repeat;
	background-size: contain;
	cursor: pointer;
}

/* ----- 動画：コンテナ ----- */
#movie_modal .vimeo {
	display: none;
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

#movie_modal .vimeo iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}


/* ページの上部へ戻る
=========================================================================*/
#pagetop {
	display: none;
	position: fixed;
	right: 15px;
	bottom: 50px;
	z-index: 2;
}

#pagetop a {
	display: block;
	padding-top: 20px;
	font-family: 'Spectral', serif;
	font-size: 14px;
	font-size: 1.4rem;
	text-decoration: none;
	background: url(../img/button_pagetop.svg) center top no-repeat;
	background-size: 20px auto;
}

/* フッター
=========================================================================*/
footer {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 120px;
	text-align: center;
	background-color: #F7F7F7;
}

footer p {
	margin-top: 70px;
	font-size: 14px;
	font-size: 1.4rem;
	color: #707070;
}

footer p span {
	display: inline-block;
	margin-left: 0.5em;
}

/*  スマホ（768px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:768px) {
	.sp {
		display: block !important
	}

	.pc {
		display: none !important
	}


	/* ローディング画面
	=========================================================================*/
	.loading-spinner {
		width: 50px;
		height: 50px;
	}

	/* ヘッダー
	=========================================================================*/
	header #header {
		width: 100%;
		height: 80px;
	}

	/* ロゴ：サイズ */
	#header #logo img {
		width: 105px;
	}

	/* ----- ボタン ----- */
	#header .button_heaer a {
		max-width: 168px;
		height: 44px;
		font-size: 13px;
		font-size: 1.3rem;
		line-height: 44px;
	}

	#header .button_heaer a:before {
		box-shadow: 1px 1px 1px rgba(0, 0, 0, .16);
		border-radius: 22px;
	}

	#header .button_heaer a:after {
		box-shadow: 1px 1px 1px rgba(0, 0, 0, .16);
		border-radius: 22px;
	}

	/* ヒーロースペース
	=========================================================================*/
	#herospace {
		margin: 0 auto 50px;
		width: 100%;
		height: auto;
		background: url(../img/hero_bg@2x.jpg) center bottom no-repeat;
		background-size: cover;
	}

	/* ----- タイトル ----- */
	#herospace h1 {
		position: relative;
		margin: 0 auto 40px;
		padding-top: 20px;
		font-size: 15px;
		font-size: 1.5rem;
	}

	#herospace h1 span {
		display: block;
		margin-top: 0.25em;
		margin-left: 0;
		font-size: 38px;
		font-size: 3.8rem;
	}

	/* ----- 動画 ----- */
	/*#herospace #main_movie {
		margin: 0 auto 32px;
	}*/

	#herospace ul {
		margin: 0 auto 40px;
	}

	#herospace ul li {
		width: 100%;
	}

	#herospace ul li:first-child {
		margin-bottom: 30px;
	}

	#herospace #main_movie::before {
		width: 42px;
		height: 30px;
		background-size: 11px auto;
	}

	#herospace #main_movie:hover::before {
		background-size: 11px auto;
	}

	/* ----- ボタン ----- */
	#herospace #link {
		display: block;
		flex-wrap: none;
		flex-direction: none;
		justify-content: none;
		margin: 0 auto 36px;
		padding: 18px 13px;
		width: 90%;
		font-size: 13px;
		font-size: 1.3rem;
		line-height: 50px;
		border-radius: 2px;
		background-color: rgba(255, 255, 255, .8)
	}

	#herospace #link p {
		margin: 0 auto;
		padding: 0;
		width: 100%;
		height: 50px;
		border-radius: 0;
		background-color: none;
	}

	/* 新卒採用 */
	#herospace .button_newgrad a {
		display: block;
	}

	#herospace .button_newgrad a:before {
		box-shadow: 1px 1px 1px rgba(0, 0, 0, .16);
		border-radius: 2px;
	}

	#herospace .button_newgrad a:after {
		box-shadow: 1px 1px 1px rgba(0, 0, 0, .16);
		border-radius: 2px;
	}

	/* キャリア採用 */
	#herospace .button_career a {
		display: block;
		margin-top: 14px;
	}

	#herospace .button_career a:before {
		box-shadow: 1px 1px 1px rgba(0, 0, 0, .16);
		border-radius: 2px;
	}

	#herospace .button_career a:after {
		box-shadow: 1px 1px 1px rgba(0, 0, 0, .16);
		border-radius: 2px;
	}

	/* MOVIE
	=========================================================================*/
	#movie ul li {
		margin-bottom: 40px;
		width: 48%;
	}

	/* ----- サムネイル画像 ----- */
	#movie .photo {
		margin-bottom: 8px;
	}

	#movie .photo::before {
		width: 23px;
		height: 16px;
		background-size: 6px auto;
	}

	#movie .photo:hover::before {
		background-size: 6px auto;
	}

	/* ----- 動画タイトル ----- */
	#movie h2 {
		font-size: 12px;
		font-size: 1.2rem;
	}

	/* ページの上部へ戻る
	=========================================================================*/
	#pagetop {
		right: 10px;
	}

	#pagetop a {
		padding-top: 10px;
		font-size: 12px;
		font-size: 1.2rem;
		background-size: 13px auto;
	}

	/* フッター
	=========================================================================*/
	footer {
		height: auto;
	}

	footer p {
		margin-top: 40px;
		margin-bottom: 40px;
		font-size: 10px;
		font-size: 1.0rem;
	}

	footer p span {
		display: block;
		margin-left: 0;
	}

}

/*  スマホ（480px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:480px) {}
