@charset "utf-8";

/*===========================================================*/
/*ベーススタイル*/
/*===========================================================*/

html {
	font-size: 62.5%;
}

body {
	background: #fff;
	font-size: 1rem;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
		"ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	color: #000;
	line-height: 1.9;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: #000;
	text-decoration: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	vertical-align: top;
	aspect-ratio: attr(width) / attr(height);
}
/*
.br_1000 {
    display: none;
}
*/

.br_900 {
	display: none;
}

@media not all and (min-width: 1000px) {
	.br_1000 {
		display: block;
	}
}

@media not all and (min-width: 900px) {
	.br_900 {
		display: block;
	}
}

/*===========================================================*/
/*ローディング*/
/*===========================================================*/

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	text-align: center;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#splash-logo img {
	width: 230px;
	height: auto;
}

.splashbg {
	display: none;
}

body.appear .splashbg {
	display: block;
	content: "";
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	background-color: #006fca;
	-webkit-animation-name: PageAnime;
	animation-name: PageAnime;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
	0% {
		-webkit-transform-origin: bottom;
		transform-origin: bottom;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
	50% {
		-webkit-transform-origin: bottom;
		transform-origin: bottom;
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
	50.001% {
		-webkit-transform-origin: top;
		transform-origin: top;
	}
	100% {
		-webkit-transform-origin: top;
		transform-origin: top;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
}

@keyframes PageAnime {
	0% {
		-webkit-transform-origin: bottom;
		transform-origin: bottom;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
	50% {
		-webkit-transform-origin: bottom;
		transform-origin: bottom;
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
	50.001% {
		-webkit-transform-origin: top;
		transform-origin: top;
	}
	100% {
		-webkit-transform-origin: top;
		transform-origin: top;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
	}
}

#wrapper {
	opacity: 0;
}

body.appear #wrapper {
	-webkit-animation-name: PageAnimeAppear;
	animation-name: PageAnimeAppear;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*===========================================================*/
/*ページ全体*/
/*===========================================================*/

#wrapper {
	width: 100%;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

/*===========================================================*/
/*ヘッダー　スクロール途中からjsで背景を白に*/
/*===========================================================*/

.ly_header {
	position: fixed;
	height: 80px;
	width: 100%;
	z-index: 999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 25px;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.header_logo a {
	display: inline-block;
}

.header_logo img {
	width: 230px;
	height: auto;
}

.header_logo #header_logo .corporate-1 {
	fill: #fff;
}

.header_logo.is-fixed #header_logo .corporate-1 {
	fill: #000;
}

.header_btn {
	width: 225px;
	position: relative;
	overflow: hidden;
	display: inline-block;
	background-color: #ffa200;
	border: 1px solid #ffa200;
	padding: 7px 20px;
	font-size: 1.8rem;
	font-family: "Lato", "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
		"游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: bold;
	letter-spacing: 0.3em;
	text-align: center;
	margin-top: 4px;
}

.header_btn .entry {
	position: relative;
	z-index: 3;
	color: #fff;
	-webkit-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}

.header_btn:hover .entry {
	color: #ffa200;
}

.header_btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #fff;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	-o-transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s,
		-webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s; /*アニメーション*/
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
}

.header_btn:hover:before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

@media not all and (min-width: 769px) {
	.header_btn:hover .entry {
		color: #fff;
	}

	.header_btn:before {
		background: #ffa200;
	}
}

@media not all and (min-width: 600px) {
	.ly_header {
		height: 70px;
		padding: 10px 3%;
	}

	.header_logo {
		width: 50%;
		height: auto;
	}

	#header_logo {
		width: 100%;
		height: auto;
	}

	.header_btn {
		width: 100%;
		padding: 3px 10px;
		margin-left: 10px;
		letter-spacing: 0.2em;
	}
}

@media not all and (min-width: 400px) {
	.header_logo img {
		width: 165px;
		height: auto;
	}

	.header_btn {
		width: 100%;
		padding: 3px 12px;
		margin-left: 0;
		font-size: 1.4rem;
	}
}

/*===========================================================*/
/*FV*/
/*===========================================================*/
.ly_FV {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.ly_FV video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: top;
}

.ly_FV img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: top;
}

.FV_copy {
	position: absolute;
	top: 53%;
	left: 50px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-align: left;
	font-size: 5vw;
	font-family: "メイリオ", "Lato", "Yu Gothic Medium", "游ゴシック Medium",
		YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
	font-weight: bold;
	color: #fff; /*#ddff1b;*/
	line-height: 1;
	letter-spacing: 0.08em;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px;
}

.FV_copy > .bgextend {
	margin-bottom: 20px;
}

@media not all and (min-width: 850px) {
	.FV_copy {
		font-size: 8vw;
	}
}

@media not all and (min-width: 769px) {
	.ly_FV {
		height: 100vh; /* Fallback */
		height: calc(var(--vh, 1vh) * 100);
		overflow: hidden;
	}
}

@media not all and (min-width: 600px) {
	.FV_copy {
		position: absolute;
		top: 53%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: left;
		font-size: 8vw;
		font-family: "メイリオ", "Lato", "Yu Gothic Medium", "游ゴシック Medium",
			YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
		font-weight: bold;
		color: #fff; /*#ddff1b;*/
		line-height: 1.5;
		letter-spacing: 0.08em;
		width: 80%;
	}
}

/*===========================================================*/
/*introduction*/
/*===========================================================*/

.ly_intro {
	width: 100%;
	height: auto;
	padding: 120px 0;
	background-image: url(/assets_previous/img/ts_engineer_common/intro_img.png);
	background-position: left -40% top 30px;
	background-repeat: no-repeat;
	background-size: 60% auto;
}

.ly_intro:lang(en) {
	background-image: url(/assets_previous/img/ts_engineer_common/intro_img.png);
}

.ly_intro_inner {
	width: 100%;
	max-width: 1200px;
	height: auto;
	padding: 0 50px;
	margin: 0 auto;
}

.intro_title {
	text-align: right;
	margin-bottom: 110px;
}

.ly_intro img {
	width: 950px;
	height: auto;
}

.intro_read {
	display: inline-block;
	font-size: 4.3rem;
	font-weight: bold;
	margin-bottom: 30px;
	line-height: 1.6;
}

.intro_text {
	font-size: 1.8rem;
}

.intro_text span {
	display: block;
}

.bl_intro_text {
	display: inline-block;
	position: relative;
	padding: 30px 35px;
}

.bl_intro_text:before,
.bl_intro_text:after {
	content: "";
	width: 250px;
	height: 100px;
	position: absolute;
	display: inline-block;
}
.bl_intro_text:before {
	border-left: solid 3px #11c4bb;
	border-bottom: solid 3px #11c4bb;
	bottom: 0;
	left: 0;
}
.bl_intro_text:after {
	border-right: solid 3px #11c4bb;
	border-top: solid 3px #11c4bb;
	top: 0;
	right: 0;
}

@media not all and (min-width: 1000px) {
	.ly_intro {
		background-position: left -80% top 30px;
		background-size: 80% auto;
	}

	.ly_intro img {
		width: 80vw;
		height: auto;
	}

	.intro_title {
		text-align: right;
		margin-bottom: 15%;
	}

	.intro_text span {
		display: inline;
	}
}

@media not all and (min-width: 600px) {
	.ly_intro {
		padding: 90px 0;
		background-position: left -230px top 30px;
		background-size: auto 200px;
	}

	.ly_intro_inner {
		padding: 0 25px;
	}

	.intro_read {
		font-size: 7vw;
	}

	.intro_text {
		font-size: 1.5rem;
	}

	.bl_intro_text:before,
	.bl_intro_text:after {
		width: 150px;
		height: 50px;
	}
}

/*===========================================================*/
/* テキストの出現*/
/*===========================================================*/
.bgextend {
	-webkit-animation-name: bgextendAnimeBase;
	animation-name: bgextendAnimeBase;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden;
	opacity: 0;
	display: block;
}

.bgextend-mv {
	overflow: initial;
}

@-webkit-keyframes bgextendAnimeBase {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes bgextendAnimeBase {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.bgextend_in_green::before {
	-webkit-animation-name: bgextend_inAnime;
	animation-name: bgextend_inAnime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #11c4bb; /* #19b86e */
}

.bgextend_in_white::before {
	-webkit-animation-name: bgextend_inAnime;
	animation-name: bgextend_inAnime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
}

@-webkit-keyframes bgextend_inAnime {
	0% {
		-webkit-transform-origin: left;
		transform-origin: left;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
	50% {
		-webkit-transform-origin: left;
		transform-origin: left;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50.001% {
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	100% {
		-webkit-transform-origin: right;
		transform-origin: right;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

@keyframes bgextend_inAnime {
	0% {
		-webkit-transform-origin: left;
		transform-origin: left;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
	50% {
		-webkit-transform-origin: left;
		transform-origin: left;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50.001% {
		-webkit-transform-origin: right;
		transform-origin: right;
	}
	100% {
		-webkit-transform-origin: right;
		transform-origin: right;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

.bgappear_Trigger_white {
	opacity: 0;
}

.bgappear_Trigger_green {
	opacity: 0;
}

h3 img {
	opacity: 0;
}

.subTitle {
	opacity: 0;
}

.bgappear {
	-webkit-animation-name: bgextendAnimeSecond;
	animation-name: bgextendAnimeSecond;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*===========================================================*/
/*下からフェードイン*/
/*===========================================================*/

.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(200px);
		transform: translateY(200px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(200px);
		transform: translateY(200px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeUpTrigger {
	opacity: 0;
}

.fadeUp2 {
	-webkit-animation-name: fadeUpAnime2;
	animation-name: fadeUpAnime2;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeUpAnime2 {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}

@keyframes fadeUpAnime2 {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}

.fadeUpTrigger2 {
	opacity: 0;
}

@media not all and (min-width: 600px) {
	@-webkit-keyframes fadeUpAnime2 {
		from {
			opacity: 0;
			-webkit-transform: translate(0, 70%);
			transform: translate(0, 70%);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 20%);
			transform: translate(0, 20%);
		}
	}

	@keyframes fadeUpAnime2 {
		from {
			opacity: 0;
			-webkit-transform: translate(0, 70%);
			transform: translate(0, 70%);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 20%);
			transform: translate(0, 20%);
		}
	}
}

.fadeUp3 {
	-webkit-animation-name: fadeUpAnime3;
	animation-name: fadeUpAnime3;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeUpAnime3 {
	from {
		opacity: 0;
		-webkit-transform: translateY(200px);
		transform: translateY(200px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeUpAnime3 {
	from {
		opacity: 0;
		-webkit-transform: translateY(200px);
		transform: translateY(200px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeUpTrigger3 {
	opacity: 0;
}

@media not all and (min-width: 600px) {
	@-webkit-keyframes fadeUpAnime3 {
		from {
			opacity: 0;
			-webkit-transform: translateY(200px);
			transform: translateY(200px);
		}

		to {
			opacity: 1;
			-webkit-transform: translateY(30px);
			transform: translateY(30px);
		}
	}

	@keyframes fadeUpAnime3 {
		from {
			opacity: 0;
			-webkit-transform: translateY(200px);
			transform: translateY(200px);
		}

		to {
			opacity: 1;
			-webkit-transform: translateY(30px);
			transform: translateY(30px);
		}
	}
}

/*===========================================================*/
/*3つの+*/
/*===========================================================*/
.ly_section {
	width: 100%;
	height: auto;
	margin-top: 500px;
	background: #006fca;
}

.ly_section {
	position: relative;
	z-index: 0;
}

.ly_section::after {
	content: "";
	position: absolute;
	left: 0;
	top: -500px;
	-webkit-transform: skewY(7deg);
	-ms-transform: skewY(7deg);
	transform: skewY(7deg); /*四角形を傾ける*/
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
	z-index: -1;
	width: 100%;
	height: 500px;
	background: #006fca;
}

.bl_media {
	width: 100%;
	max-width: 1200px;
	padding: 0 100px;
	position: relative;
	margin: 0 auto 150px;
	top: -250px;
}

.Drive_img {
	width: 65%;
	position: absolute;
	top: -65%;
	right: -18%;
}

.Proud_img {
	width: 55%;
	position: absolute;
	top: 50%;
	left: -15%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: -1;
}

.Responsibility_img {
	width: 55%;
	position: absolute;
	top: -10%;
	right: -18%;
	z-index: -1;
}

.media_title {
	display: inline-block;
	margin-bottom: 50px;
}

.media_title.reverse img {
	-webkit-filter: drop-shadow(2px 2px 0px #006fca);
	filter: drop-shadow(2px 2px 0px #006fca);
}

.media_title.Responsibility {
	width: 100%;
	display: block;
	margin-bottom: 50px;
}

.media_title img {
	height: 70px;
	width: auto;
}

.media_title.Drive img {
	-webkit-filter: drop-shadow(2px 2px 0px #006fca);
	filter: drop-shadow(2px 2px 0px #006fca);
}

.media_title.Responsibility img {
	width: auto;
	height: 80px;
	-webkit-filter: drop-shadow(2px 2px 0px #006fca);
	filter: drop-shadow(2px 2px 0px #006fca);
}

.media_read {
	display: inline-block;
	font-size: 3rem;
	font-weight: bold;
	color: #fff;
	margin-bottom: 30px;
	line-height: 1.5;
	text-shadow: 2px 2px 0px #006fca;
}

.media_text {
	font-size: 1.8rem;
	color: #fff;
	text-shadow: 1px 1px 1px #006fca;
}

.media_text.reverse {
	display: inline-block;
}

.media_text span {
	display: block;
}

@media not all and (min-width: 1000px) {
	.media_title img {
		height: 65px;
	}
	.bl_media {
		padding: 0 50px;
	}
	.bl_media.bl_Proud {
		padding-top: 255px;
		margin-bottom: 150px;
	}
	.media_title.Responsibility {
		padding-top: 115px;
	}
}

@media not all and (min-width: 900px) {
	.media_text span {
		display: inline;
	}

	.media_text.reverse {
		display: inline-block;
	}

	.Drive_img {
		width: 70%;
		position: absolute;
		top: -70%;
		right: -18%;
	}

	.Proud_img {
		width: 65%;
		position: absolute;
		top: 25%;
		left: -15%;
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		transform: translate(0, -50%);
		z-index: -1;
	}

	.Responsibility_img {
		width: 60%;
		position: absolute;
		top: -10%;
		right: -18%;
		z-index: -1;
	}
}

@media not all and (min-width: 740px) {
	.media_title.Responsibility img {
		height: auto;
		width: 75vw;
	}

	.media_read {
		font-size: 4vw;
	}

	.media_text {
		font-size: 1.5rem;
	}

	#Proud_csv {
		width: 85vw;
	}

	.Drive_img {
		width: 80%;
		position: absolute;
		top: -80%;
		right: -22%;
	}
}

@media not all and (min-width: 600px) {
	.bl_media {
		padding: 0 25px;
		top: -550px;
		margin: 0 auto 100px;
	}

	.bl_media.bl_Proud {
		margin-top: -50px;
		margin-bottom: 50px;
		padding-top: 0;
	}

	.media_title {
		margin-bottom: 30px;
	}

	.media_read {
		margin-bottom: 20px;
	}

	.Drive_img {
		width: 110%;
		position: static;
		margin-left: 26%;
		-webkit-transform: translate(0, 30px);
		-ms-transform: translate(0, 30px);
		transform: translate(0, 30px);
	}

	.Proud_img {
		width: 110%;
		position: static;
		margin-left: -30%;
		-webkit-transform: translate(0, 20%);
		-ms-transform: translate(0, 20%);
		transform: translate(0, 20%);
	}

	.Responsibility_img {
		width: 120%;
		position: static;
		margin-left: 17%;
	}

	.media_title {
		margin-top: -150px;
	}

	.media_title.Responsibility {
		margin-top: -70px;
		margin-bottom: 20px;
		padding-top: 0;
	}
}

/*===========================================================*/
/*Message*/
/*===========================================================*/
.ly_section2 {
	width: 100%;
	height: auto;
	background: #fff;
}
.ly_section2 {
	position: relative;
	z-index: 0;
}
.ly_section2::after {
	content: "";
	position: absolute;
	left: 0;
	top: -500px;
	-webkit-transform: skewY(7deg);
	-ms-transform: skewY(7deg);
	transform: skewY(7deg);
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
	z-index: -1;
	width: 100%;
	height: 500px;
	background: #fff;
}

.subTitle {
	display: block;
	font-size: 2rem;
}

.Message_img {
	width: 395px !important;
	height: auto !important;
}

.bl_comment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.comment_textUnit {
	-ms-flex-preferred-size: calc(100% - 400px);
	flex-basis: calc(100% - 400px);
}

.comment_read {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
}

.comment_text {
	font-size: 1.6rem;
	margin-top: 20px;
}

.comment_text > span {
	display: block;
}

.comment_imgUnit {
	width: 350px;
	height: auto;
	-ms-flex-preferred-size: 350px;
	flex-basis: 350px;
}

.comment_imgUnit img {
	width: 100%;
	height: auto;
}

.name {
	display: block;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	margin-top: 10px;
}

@media not all and (min-width: 1200px) {
	.bl_media.Message {
		top: -300px;
	}
}

@media not all and (min-width: 900px) {
	.bl_media.Message {
		top: -350px;
	}
}

@media not all and (min-width: 880px) {
	.comment_textUnit {
		-ms-flex-preferred-size: calc(100% - 300px);
		flex-basis: calc(100% - 300px);
	}
	.comment_imgUnit {
		width: 260px;
		height: auto;
		-ms-flex-preferred-size: 260px;
		flex-basis: 260px;
	}
}

@media not all and (min-width: 740px) {
	.comment_read {
		font-size: 1.7rem;
	}
	.comment_text {
		font-size: 1.5rem;
	}
	.name {
		font-size: 1.6rem;
	}

	.bl_media.Message {
		top: -350px;
	}
}

@media not all and (min-width: 700px) {
	.comment_textUnit {
		-ms-flex-preferred-size: calc(100% - 250px);
		flex-basis: calc(100% - 250px);
	}
	.comment_imgUnit {
		width: 220px;
		height: auto;
		-ms-flex-preferred-size: 220px;
		flex-basis: 220px;
	}
	.Message_img {
		width: 60vw !important;
		height: auto !important;
	}
	.subTitle {
		font-size: 4vw;
	}
}

@media not all and (min-width: 600px) {
	.media_title.Message {
		margin-top: 0px;
	}
	.bl_media.Message {
		top: -400px;
		margin-bottom: 0px;
	}
	.bl_comment {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.comment_textUnit {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin-top: 30px;
	}
	.comment_imgUnit {
		width: 220px;
		height: auto;
		-ms-flex-preferred-size: 220px;
		flex-basis: 220px;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
}

/*===========================================================*/
/*CareerPlan*/
/*===========================================================*/

.media_title.Career {
	position: relative;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.Career_img {
	width: 525px !important;
	height: auto !important;
	margin-bottom: 5px;
}

.CareerPlan_area {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}

.planA,
.planB {
	width: calc(50% - 25px);
	flex-basis: calc(50% - 25px);
	height: 100%;
	text-align: center;
}

.Case {
	background-color: #ffa200;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	padding: 15px 40px;
	border-radius: 50px;
}

.plan_title {
	font-size: 2rem;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 35px;
}

.step {
	font-size: 1.6rem;
	width: 100%;
	padding: 15px;
	border: solid 1px #ffa200;
	color: #000;
}

.triangle {
	margin: 10px auto;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #ffa200;
}

.br_1200 {
	display: block;
}

.br_1200_r {
	display: none;
}

.br_950 {
	display: none;
}
@media not all and (min-width: 1120px) {
	.br_1200 {
		display: none;
	}
	.plan_title {
		text-align: justify;
	}
	.br_1200_r {
		display: block;
	}
}

@media not all and (min-width: 1050px) {
	.br_950 {
		display: block;
	}
}

@media not all and (min-width: 1000px) {
	.bl_media.Career {
		top: -300px;
	}
}

@media not all and (min-width: 900px) {
	.bl_media.Career {
		top: -350px;
	}
}

@media not all and (min-width: 790px) {
	.CareerPlan_area {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
	}
	.planA,
	.planB {
		width: 100%;
		flex-basis: 100%;
		height: auto;
	}

	.planA {
		margin-bottom: 60px;
	}

	.br_1200 {
		display: block;
	}
	.plan_title {
		text-align: center;
	}
	.br_1200_r {
		display: none;
	}

	.br_950 {
		display: none;
	}
}

@media not all and (min-width: 650px) {
	.Career_img {
		width: 80vw !important;
		height: auto !important;
		margin-bottom: 5px;
	}
}

@media not all and (min-width: 600px) {
	.bl_media.Career {
		top: -250px;
		padding-bottom: 150px;
	}
}

@media not all and (min-width: 500px) {
	.br_1200 {
		display: none;
	}

	.br_1200_r {
		display: block;
	}

	.br_950 {
		display: block;
	}

	.plan_title {
		font-size: 1.8rem;
		font-weight: bold;
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.Case {
		font-size: 1.6rem;
		padding: 10px 30px;
		border-radius: 50px;
	}

	.step {
		font-size: 1.5rem;
	}
}

@media not all and (min-width: 400px) {
	.bl_media.Career {
		top: -300px;
		padding-bottom: 100px;
	}
}

/*===========================================================*/
/*SelectionProcess*/
/*===========================================================*/
.SelectionProcess_img {
	width: 420px !important;
	height: auto !important;
}

.subTitle.SelectionProcess {
	text-align: right;
	color: #fff;
}

.ProcessList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin-top: -50px;
}

.ProcessList li {
	width: 32%;
	position: relative;
}

.ProcessList li:nth-child(1) {
	margin-top: -100px;
}

.ProcessList li:nth-child(3) {
	margin-top: 100px;
}

.ProcessList > li img {
	width: 100%;
	height: auto;
}

.ProcessList div {
	position: absolute;
	top: 50%;
	left: 49%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.Process {
	font-size: 3.5rem;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.5;
}

.Process:lang(en) {
	font-size: 2.5rem;
}

.ProcessDetails {
	display: block;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0;
}

.ProcessDetails:lang(en) {
	width: 90%;
	margin: 0 auto;
}

.attentionList {
	width: 100%;
	height: auto;
	margin-top: -50px;
}

.attentionList li {
	width: 100%;
	height: auto;
	font-size: 1.6rem;
	color: #fff;
	margin-bottom: 5px;
	line-height: 1.5;
}

@media not all and (min-width: 1200px) {
	.Process {
		font-size: 2.7vw;
	}
	.ProcessDetails {
		font-size: 1.35rem;
	}
}

@media not all and (min-width: 900px) {
	.Process {
		font-size: 3.5vw;
		margin-bottom: 10px;
	}
	.ProcessDetails {
		font-size: 1.4rem;
	}

	.ProcessList div {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
		width: 100%;
	}
}

@media not all and (min-width: 740px) {
	.ProcessList li:nth-child(1) {
		margin-top: -50px;
	}

	.ProcessList li:nth-child(2) {
		margin-top: 25px;
	}

	.ProcessList li:nth-child(3) {
		margin-top: 100px;
	}
	.attentionList {
		margin-top: 0px;
	}
}

@media not all and (min-width: 1200px) {
	.bl_media.bl_SelectionProcess {
		top: -300px;
	}
}

@media not all and (min-width: 900px) {
	.bl_media.bl_SelectionProcess {
		top: -350px;
	}
}

@media not all and (min-width: 700px) {
	.SelectionProcess_img {
		width: 60vw !important;
		height: auto !important;
	}
}

@media not all and (min-width: 600px) {
	.bl_media.bl_SelectionProcess {
		top: -400px;
	}
	.attentionList li {
		font-size: 1.4rem;
	}

	.media_title.SelectionProcess {
		margin-top: 0px;
	}
}

@media not all and (min-width: 550px) {
	.ProcessList {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 0px;
	}
	.ProcessList li {
		max-width: 400px;
		width: 90%;
		position: relative;
		margin-bottom: 25px;
	}
	.ProcessList li:nth-child(1) {
		margin-top: 0px;
	}
	.ProcessList li:nth-child(2) {
		margin-top: 0px;
	}
	.ProcessList li:nth-child(3) {
		margin-top: 0px;
	}

	.ProcessList div {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		transform: translate(0, -50%);
		text-align: left;
		width: auto;
	}
	.Process {
		font-size: 7vw;
		margin-bottom: 10px;
	}
}

/*===========================================================*/
/*Requirements*/
/*===========================================================*/

.Requirements_img {
	width: 610px !important;
	height: auto !important;
}

.Requirements_img.JobDescription {
	width: 690px !important;
	height: auto !important;
}

.tab {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.tab li {
	width: 15%;
	min-width: 180px;
	text-align: center;
	margin: 5px 15px 0px;
	line-height: 2.5rem;
}

.tab_btn {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: inline-block;
	background-color: #fff;
	border: 1px solid #ffa200;
	padding: 15px 20px;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0;
	text-align: center;
}

.tab_btn span {
	position: relative;
	z-index: 3;
	color: #ffa200;
	-webkit-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}

.tab_btn:hover span {
	color: #fff;
}

.tab_btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #ffa200;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	-o-transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s,
		-webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s; /*アニメーション*/
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
}

.tab_btn:hover:before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.tab li.active span {
	color: #fff !important;
}
.tab li.active a {
	background: #ffa200;
	border: solid 1px #ffa200;
}

.area {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: none;
	opacity: 0;
	background: #fff;
	padding: 50px 20px;
}

.area.is-active {
	display: block;
	-webkit-animation-name: displayAnime;
	animation-name: displayAnime;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes displayAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.area > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.area > div > dd span {
	display: block;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 5px;
}

.area > div > dd > ol > li {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
	margin-bottom: 10px;
}

.area > div > dd > ol > li.no-indent {
	text-indent: 0em;
	padding-left: 0em;
}

.area > div > dd > ul > li {
	line-height: 1.7rem;
	margin-bottom: 10px;
}

dt {
	width: 200px;
	font-size: 1.6rem;
	font-weight: bold;
	border-bottom: solid 1px #000;
	padding: 25px 20px;
}

.area > div:nth-last-child(1) dt {
	/*width: 100%;
    border-bottom: solid 0px #fff;
    text-align: center;*/
	margin-bottom: 30px;
}

.area > div > dt a {
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.area > div > dt a:hover {
	opacity: 0.5;
}

dd {
	width: calc(100% - 200px);
	font-size: 1.4rem;
	border-bottom: solid 1px #c1c1c1;
	padding: 25px 20px;
}

.area > div:nth-last-child(1) dd {
	/*border-bottom: solid 0px #fff;
    display: none;*/
	margin-bottom: 30px;
}

@media not all and (min-width: 1200px) {
	.bl_media.bl_Requirements {
		top: -300px;
		overflow: hidden;
	}
}

@media not all and (min-width: 900px) {
	.bl_media.bl_Requirements {
		top: -350px;
	}
}

@media not all and (min-width: 769px) {
	.tab_btn:hover span {
		color: #ffa200;
	}
	.tab_btn:before {
		background: #fff;
	}
	.tab_btn:hover:before {
		-webkit-transform-origin: left top;
		-ms-transform-origin: left top;
		transform-origin: left top;
		-webkit-transform: scale(0, 0);
		-ms-transform: scale(0, 0);
		transform: scale(0, 0);
	}
	.area > div {
		display: block;
	}
	dt {
		width: 100%;
		border-bottom: solid 0px #fff;
		padding: 25px 10px 0px;
	}
	dd {
		width: 100%;
		border-bottom: solid 1px #c1c1c1;
		padding: 25px 10px;
	}

	.area {
		padding: 50px 0px 50px;
	}
}

@media not all and (min-width: 750px) {
	.Requirements_img {
		width: 85vw !important;
		height: auto !important;
	}

	.bl_media.bl_Requirements {
		top: -380px;
	}

	.Requirements_img.JobDescription {
		width: 85vw !important;
		height: auto !important;
	}
}

@media not all and (min-width: 700px) {
	.tab li {
		width: 90%;
		max-width: 400px;
		min-width: 0px;
		text-align: center;
		margin: 5px 5px 0px;
	}
}

@media not all and (min-width: 600px) {
	.bl_media.bl_Requirements {
		top: -420px;
	}

	.media_title.Requirements {
		margin-top: 0;
	}
	.area {
		padding: 25px 0px 50px;
	}
}

/*ENTRYエリア*/
.You_img {
	width: 475px !important;
	height: auto !important;
}

.entry_btn {
	width: 80%;
	max-width: 450px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	display: block;
	background-color: #ffa200;
	border: 1px solid #ffa200;
	padding: 10px 30px;
	font-size: 3rem;
	font-weight: bold;
	letter-spacing: 0.5rem;
	text-align: center;
	font-family: "Lato", "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
		"游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.entry_btn span {
	position: relative;
	z-index: 3;
	color: #fff;
	-webkit-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}

.entry_btn:hover span {
	color: #ffa200;
}

.entry_btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #fff;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	-o-transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s,
		-webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
}

.entry_btn:hover:before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.btnIcon {
	position: absolute;
	top: 50%;
	right: 30px;
	width: 25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
}

.btnIcon2 {
	position: absolute;
	top: 50%;
	right: 60px;
	width: 25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
}

.st0 {
	-webkit-transition: fill 0.4s ease-in;
	-o-transition: fill 0.4s ease-in;
	transition: fill 0.4s ease-in;
	fill: #ffffff;
}

.entry_btn:hover .st0 {
	fill: #ffa200;
	-webkit-transition: fill 0.4s ease-in;
	-o-transition: fill 0.4s ease-in;
	transition: fill 0.4s ease-in;
}

.apply-btn {
	display: flex;
	flex-direction: column;
	margin-top: 75px;
}

@media not all and (min-width: 769px) {
	.entry_btn:hover .st0 {
		fill: #fff;
	}

	.entry_btn:hover span {
		color: #fff;
	}

	.entry_btn:before {
		background: #ffa200;
	}

	.entry_btn {
		text-align: left;
	}
}

@media not all and (min-width: 700px) {
	.You_img {
		width: 70vw !important;
		height: auto !important;
	}
}

@media not all and (min-width: 670px) {
}

@media not all and (min-width: 600px) {
	.media_title.entry {
		margin-top: 0px;
	}
}

@media not all and (min-width: 400px) {
	.btnIcon {
		position: absolute;
		top: 50%;
		right: 25px;
		width: 20px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: 3;
	}
	.btnIcon2 {
		position: absolute;
		top: 50%;
		right: 45px;
		width: 20px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: 3;
	}
}

li.indent {
	text-indent: 1em !important;
}

/*===========================================================*/
/*slick*/
/*===========================================================*/

.slide {
	margin-top: -50px;
}

.slide img {
	height: 350px;
	width: auto;
}

@media not all and (min-width: 1200px) {
	.slide {
		margin-top: -100px;
	}
}

@media not all and (min-width: 1000px) {
	.slide img {
		height: 300px;
		width: auto;
	}
	.slide {
		margin-top: -150px;
	}
}

@media not all and (min-width: 800px) {
	.slide img {
		height: 250px;
		width: auto;
	}
	.slide {
		margin-top: -200px;
	}
}

@media not all and (min-width: 600px) {
	.slide img {
		height: 200px;
		width: auto;
	}
	.slide {
		margin-top: -300px;
		margin-bottom: 0;
	}
}

/*===========================================================*/
/*footer*/
/*===========================================================*/

.ly_footer {
	width: 100%;
	padding: 40px;
	background-color: #000;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 10;
}

.ly_footer a {
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}

.footer_logo img {
	width: 280px;
	height: auto;
}

.company-info {
	color: #fff;
	font-size: 18px;
	text-align: center;
	margin-top: 30px;
}

@media (max-width: 900px) {
	.company-info {
		font-size: 12px;
	}
}

small {
	color: #fff;
	display: block;
	margin-top: 30px;
}

@media not all and (min-width: 600px) {
	.footer_logo img {
		width: 50vw;
		height: auto;
	}
}

/*===========================================================*/
/*ページトップへ*/
/*===========================================================*/

#page-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 100;
	opacity: 0;
	-webkit-transform: translateX(120px);
	-ms-transform: translateX(120px);
	transform: translateX(120px);
}

#page-top a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #ffa200;
	width: 65px;
	height: 65px;
	color: #fff;
	text-align: center;
	font-size: 1.3rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 50%;
}

#page-top a:hover {
	background: #777;
}

/*　左　*/
#page-top.LeftMove {
	-webkit-animation: LeftAnime 0.5s forwards;
	animation: LeftAnime 0.5s forwards;
}

@-webkit-keyframes LeftAnime {
	from {
		opacity: 0;
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes LeftAnime {
	from {
		opacity: 0;
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/*　右　*/
#page-top.RightMove {
	-webkit-animation: RightAnime 0.5s forwards;
	animation: RightAnime 0.5s forwards;
}
@-webkit-keyframes RightAnime {
	from {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}
}
@keyframes RightAnime {
	from {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}
}

@media not all and (min-width: 769px) {
	#page-top a:hover {
		background: #ffa200;
	}
}

/*===========================================================*/
/*ヘルパースタイル*/
/*===========================================================*/

.pb200 {
	padding-bottom: 200px;
}

@media not all and (min-width: 600px) {
	.pb200 {
		padding-bottom: 0px;
	}
}

.pb300 {
	padding-bottom: 300px;
}

.mt5 {
	margin-top: 5px;
}

.mb0 {
	margin-bottom: 0;
}

.mt300 {
	margin-top: 300px;
}
@media not all and (min-width: 900px) {
	.mt300 {
		margin-top: 230px;
	}
}
@media not all and (min-width: 600px) {
	.mt300 {
		margin-top: 170px;
	}
}

.mt-150 {
	margin-top: -150px;
}
@media not all and (min-width: 900px) {
	.mt-150 {
		margin-top: -230px;
	}
}
@media not all and (min-width: 600px) {
	.mt-150 {
		margin-top: -200px;
	}
}

.mb15 {
	margin-bottom: 15px;
}

.ta_center {
	text-align: center;
}

/*===========================================================*/
/*最終の継ぎ足し分*/
/*===========================================================*/

#Challenge {
	height: 80px;
	width: auto;
}

@media not all and (min-width: 800px) {
	#Challenge {
		height: auto;
		width: 75vw;
	}
}
