@charset "utf-8";
/* ====================================================
	ヘッダー
==================================================== */
.headerLogo {
	opacity: 0;
	transition-duration: 1s;
	transition-timing-function: ease;
}
header.headerLogo_in .headerLogo {
	transition-delay: 0.3s;
}
nav {
	transition-duration:1s;
	transform: translateX(-140px);
	transition-timing-function: ease;
}
header.headerLogo_out nav {
	transition-delay: 0.3s;
}
/* ====================================================
	ファーストビュー（メインビジュアル）
==================================================== */
.firstView {
	background: #ed6d00; /* Old browsers */
	background: -moz-linear-gradient(left,  #ed6d00 0%, #fcc800 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #ed6d00 0%,#fcc800 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #ed6d00 0%,#fcc800 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.mainVisual {
	/*background-color: #f39800;*/
	/* overflow: hidden; */
	position: relative;
	padding-top: 80px;
	margin-bottom: 96px;
	min-height: 800px;
	height: 100vh;
}
.mainVisual.bgColorChange {
	animation: bgColorChange 1.5s ease-in-out both;
}
.mvl_item.fadeOut {
	animation: logo_fadeOut 3s ease both !important;
}

.mvl_item img {
	transform: rotate(0deg) !important;
}

@keyframe zoomIn {
	0% {
		opacity: 0;
		transform: scale(1.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes bgColorChange {
  0% {
  }
  100% {
		background: #fff;
  }
}
.mainVisual .commonWrapper {
	position: relative;
	/* margin-top: 80px; */
	top: 120px;
	height: 562px;
}
.mainVisual_logo {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	top: 0;
	height: 100%;
}
.mvl_item {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
.mvl_item img {
	transform: rotate(-45deg);
}
.mvl_item.action {
	display: block;
	animation: scale-up-center 3.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes scale-up-center {
  0% {
  	opacity: 0;
    /*transform: scale(0.2) rotate(0);*/
    transform: scale(0.2) rotateZ(1200deg);
  }70%{
	  transform: scale(1) rotateZ(0deg);
  }100% {
  	opacity: 1;
    /*transform: scale(1) rotate(45deg);*/
    transform: scale(1) rotateZ(0deg);
  }
}
.mvl_item.opacity img {
	animation: logoFadeOut 1.5s ease-in both;
}
@keyframes logoFadeOut {
  0% {
  	opacity: 1;
  }
  100% {
  	opacity: 0.2;
  }
}
.mvl_item.rotate img {
	animation: logoRotate 2s ease-in-out both;
}
@keyframes logoRotate {
  0% {
  	transform: rotate(-45deg);
  }
  100% {
  	transform: rotate(0);
  }
}
.mvl_item.fadeOut {
	animation: logo_fadeOut 2s ease both;
}
@keyframes logo_fadeOut {
  0% {
  	opacity: 1;
    transform: translateY(0);
  }
  100% {
  	opacity: 0;
    transform: translateY(-10px);
    display: none;
  }
}
.mvl_item_after {
	/* opacity: 0; */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
.mvl_item_after img {
	filter:
	drop-shadow(0 3px 0 #d8d7d7)
	drop-shadow(0 4px 0 #d8d7d7)
	drop-shadow(-13px 8px 9px rgba(0, 0, 0, 0.15));
}
.mainVisual_text {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 80%;
	text-align: center;
	top: 170px;
	display: flex;
	z-index: 2;
	justify-content: space-between;
}
.mainVisual_text.exit {
	animation: slide-out-bck-center 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@keyframes slide-out-bck-center {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
.mainVisual_scroll {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	top: 568px;
	z-index: 2;
}
.mainVisual_arrow {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	top: 589px;
	z-index: 2;
	-webkit-animation: arrow 2s infinite;
	animation: arrow 2s infinite;
}
/*---------- scrollの矢印アニメーション ----------*/
@-webkit-keyframes arrow {
 0% {
 -webkit-transform: translate(0, 0);
 opacity: 0
}
 40% {
 opacity: 1
}
 80% {
 -webkit-transform: translate(0, 25px);
 opacity: 0
}
 100% {
 opacity: 0
}
}
 @keyframes arrow {
 0% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
 opacity: 0
}
 40% {
 opacity: 1
}
 80% {
 -webkit-transform: translate(0, 25px);
 transform: translate(0, 25px);
 opacity: 0
}
 100% {
 opacity: 0
}
}
/*---------- 動画 ----------*/
.mainVisual video {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	display: block;
	top: -5px;
	left: 0;
	height: calc(100% + 10px);
	width: 100%;
}
/* -- IE Hac -- */
_:lang(x)::-ms-backdrop,
.mainVisual video {
	position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
/* ====================================================
	NEWS（お知らせ）
==================================================== */
.newsWrapper {
	margin: 0 auto;
}
.contentsHeading {
	color: #f39800;
}
.contentsHeading .heading_large {
	display: block;
	font-family: futura-pt-condensed, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 81px;
	letter-spacing: 0.2em;
	text-align: center;
	background: -webkit-linear-gradient(0deg, #ed6d00 40%,#fcc800 60%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contentsHeading .heading_middle {
	display: block;
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	letter-spacing: 0.3em;
	text-align: center;
	margin: 2px auto 0;
}
.newsContents {
	display: flex;
	justify-content: space-between;
	margin: 65px auto 0;
}
.newsContents li:nth-of-type(3) ~ li {
	display: none;
}
/* ====================================================
	各紹介コンテンツ
==================================================== */
.introWrapper {
	margin: 100px auto 0;
}
.introBlock {
	margin: 90px auto 0;
	height: 700px;
	position: relative;
}
.introBlock:first-child {
	margin-top: 0;
	height: 810px;
}
/*---------- テキスト ----------*/
.introHeading {
	color: #f39800;
}
.introHeading .heading_large {
	opacity: 0;
	display: block;
	font-family: futura-pt-condensed, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 145px;
	letter-spacing: 0.15em;
	line-height: 0.8;
}
.introHeading .heading_middle {
	display: block;
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	letter-spacing: 0.3em;
	margin: 14px 0 0 2px;
}
.introDescription {
	opacity: 0;
	margin: 42px 0 0 2px;
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	letter-spacing: 0.09em;
	line-height: 1.6;
	color: #434343;
}
/*---------- 通常のボタン ----------*/
.introBtn {
	opacity: 0;
	margin: 44px 0 0 2px;
}
.introBtn:nth-child(even) {
	margin: 21px 0 0 2px;
}
.introBtn a {
	background-color: #000;
	border: 2px solid #000;
	color: #fff;
	box-sizing: border-box;
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 25px;
	width: 380px;
	height: 50px;
	text-align: center;
	line-height: 47px;
	letter-spacing: 0.05em;
	text-decoration: none;
	display: block;
	transition: all 300ms 0s ease;
}
.introBtn a:hover {
	background-color: #fff;
	color: #000;
}
/*---------- 外部リンク用のボタン ----------*/
.introBtn.targetBlank {
	margin-top: 15px;
}
.introBtn.targetBlank a {
	border: 2px solid #0fc8c9;
	background-color: #0fc8c9;
}
.introBtn.targetBlank a:hover {
	background-color: #fff;
	color: #0fc8c9;
}
.introBtn.targetBlank a .fas {
	font-size: 21px;
}
/* ----------------------------------------------------
	パララックス素材
---------------------------------------------------- */
/*---------- 写真 ----------*/
.para_Photo {
	position: absolute;
	bottom: 150px;
	/* bottom: 340px; */
	right: 30px;
	z-index: -2;
}
.para_Photo img {
	opacity: 0;
}
/*---------- ペイント ----------*/
.para_paint {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.para_paint img {
	opacity: 0;
}
.para_paint.active img {
	animation: zoomIn 0.7s cubic-bezier(0.78, 0.68, 0.36, 1.01) forwards;
}
@keyframes zoomIn {
	0%{
		opacity: 0;
		transform: scale(1.6);
	}100%{
		opacity: 1;
		transform: scale(1);
	}
}
.para_paint.paint_01 {
	top: -300px;
	right: -173px;
}
.para_paint.paint_02 {
	top: 300px;
	left: -88px;
}
.para_paint.paint_03 {
	top: 150px;
	right: -101px;
}
.para_paint.paint_04 {
	top: 200px;
	left: -140px;
}
.para_paint.paint_05 {
	top: 200px;
	right: -51px;
}
.para_paint.paint_06 {
	top: 150px;
	left: -94px;
}
/*---------- 三角形 ----------*/
.para_triangle {
	position: absolute;
	z-index: -3;
	bottom: 500px;
	left: 10px;
}
/* ----------------------------------------------------
	偶数番目のコンテンツ
---------------------------------------------------- */
.introBlock:nth-child(even) .introText {
	float: right;
	text-align: right;
}
.introBlock:nth-child(even) .introHeading .heading_large {
	margin-right: -25px;
}
.introBlock:nth-child(even) .introHeading .heading_middle {
	margin-left: 0;
	margin-right: -6px;
}
.introBlock:nth-child(even) .introDescription {
	margin-left: 0;
}
.introBlock:nth-child(even) .para_Photo {
	left: 30px;
	right: auto;
}
.introBlock:nth-child(even) .para_triangle {
	right: 10px;
	left: auto;
}
.introBlock:nth-child(even) .introBtn {
	clear: both;
	float: right;
	margin-left: 0;
	margin-right: 0;
}
/* ----------------------------------------------------
	テキストを一文字ずつ不規則にフェードインしながらスライド
---------------------------------------------------- */
.text-move {
	display: inline-block;
	animation: textMove .8s ease both;
}
@keyframes textMove {
 from {
 opacity: 0;
 transform: translate3d(-20px, 0, 0);
}
 to {
 opacity: 1;
 transform: none;
}
}
.text-move:nth-child(1) {
	animation-delay: 0;
}
.text-move:nth-child(2) {
	animation-delay: .2s;
}
.text-move:nth-child(3) {
	animation-delay: .4s;
}
.text-move:nth-child(4) {
	animation-delay: .3s;
}
.text-move:nth-child(5) {
	animation-delay: .5s;
}
.text-move:nth-child(6) {
	animation-delay: .4s;
}
.text-move:nth-child(7) {
	animation-delay: .5s;
}
.text-move:nth-child(8) {
	animation-delay: .4s;
}
.text-move:nth-child(9) {
	animation-delay: .5s;
}
.text-move:nth-child(10) {
	animation-delay: .2s;
}
.text-move:nth-child(11) {
	animation-delay: .4s;
}
.text-move:nth-child(12) {
	animation-delay: .5s;
}
/*---------- 二行目のテキスト ----------*/
.text-move-02 {
	display: inline-block;
	animation: textMoveSecond .8s ease both;
}
@keyframes textMoveSecond {
 from {
 opacity: 0;
 transform: translate3d(-20px, 0, 0);
}
 to {
 opacity: 1;
 transform: none;
}
}
.text-move-02:nth-child(1) {
	animation-delay: .2s;
}
.text-move-02:nth-child(2) {
	animation-delay: .4s;
}
.text-move-02:nth-child(3) {
	animation-delay: .3s;
}
.text-move-02:nth-child(4) {
	animation-delay: .5s;
}
.text-move-02:nth-child(5) {
	animation-delay: .4s;
}
.text-move-02:nth-child(6) {
	animation-delay: .5s;
}
.text-move-02:nth-child(7) {
	animation-delay: .4s;
}
.text-move-02:nth-child(8) {
	animation-delay: .5s;
}
.text-move-02:nth-child(9) {
	animation-delay: .2s;
}
.text-move-02:nth-child(10) {
	animation-delay: .4s;
}
.text-move-02:nth-child(11) {
	animation-delay: .5s;
}
/* ----------------------------------------------------
	透明なテキストを一文字ずつ不透明な状態にアニメーション
---------------------------------------------------- */
.text-opacity {
	opacity: 0;
}
.text-opacity:nth-child(1) {
	transition: opacity 0.8s ease 0.1s;
}
.text-opacity:nth-child(2) {
	transition: opacity 0.8s ease 0.2s;
}
.text-opacity:nth-child(3) {
	transition: opacity 0.8s ease 0.3s;
}
.text-opacity:nth-child(4) {
	transition: opacity 0.8s ease 0.4s;
}
.text-opacity:nth-child(5) {
	transition: opacity 0.8s ease 0.5s;
}
.text-opacity:nth-child(6) {
	transition: opacity 0.8s ease 0.6s;
}
.text-opacity:nth-child(7) {
	transition: opacity 0.8s ease 0.7s;
}
.text-opacity:nth-child(8) {
	transition: opacity 0.8s ease 0.8s;
}
.text-opacity:nth-child(9) {
	transition: opacity 0.8s ease 0.9s;
}
.text-opacity:nth-child(10) {
	transition: opacity 0.8s ease 1s;
}
.text-opacity:nth-child(11) {
	transition: opacity 0.8s ease 1.1s;
}
.active .text-opacity {
	opacity: 1;
}
/* ====================================================
	CONTACT（お問い合わせ）
==================================================== */
.contactWrapper {
	background-color: #f8f8f8;
	height: 480px;
	margin-top: 88px;
}
.contactWrapper .contentsHeading {
	padding: 86px 0 0;
}
.contactBlock {
	margin: 67px auto 0;
	display: flex;
	justify-content: space-between;
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-style: normal;
	letter-spacing: 0.1em;
}
.contactTelBox {
	margin: 0 0 0 85px;
	text-align: center;
}
.contactTelBox dt {
	font-weight: 500;
	font-size: 20px;
}
.contactTelBox dd:first-of-type {
	font-weight: 400;
	font-size: 44px;
	margin: 17px auto 0;
}
.contactTelBox dd:first-of-type span {
	font-size: 31px;
	margin: 0 4px 0 0;
}
.contactTelBox dd:nth-of-type(2) {
	font-weight: 500;
	font-size: 13px;
	margin: 10px auto 0;
}
.contactMailBox {
	text-align: center;
	margin: 0 45px 0 0;
}
.contactMailBox dt {
	font-weight: 500;
	font-size: 20px;
}
.contactMailBox dd {
	margin: 21px auto 0;
}
.contactBtn a {
	font-weight: 700;
	width: 419px;
	height: 60px;
	border: 2px solid #0fc8c9;
	background-color: #0fc8c9;
	color: #fff;
	box-sizing: border-box;
	font-size: 19px;
	text-align: center;
	line-height: 57px;
	text-decoration: none;
	display: block;
	transition: all 300ms 0s ease;
}
/* -- IE Hac -- */
_:lang(x)::-ms-backdrop,
.contactBtn a {
	line-height: 72px;
}
.contactBtn a:hover {
	background-color: #fff;
	color: #0fc8c9;
}
/* ====================================================
	その他
==================================================== */
footer {
	margin-top: 0;
}
/* ====================================================
	2020年9月15日追加
==================================================== */
.mvt_item {
	opacity: 0;
}
.mvt_item.action {
	animation: bounce-in-top 1.7s both;
}
.mvt_item.show {
	opacity: 1;
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-300px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
.mvt_item.shadow img {
	animation: text-pop-up-top 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes text-pop-up-top {
  0% {
    transform: translateY(0);
    transform-origin: 50% 50%;
    filter: none;
  }
  100% {
    transform: translateY(-20px);
    transform-origin: 50% 50%;
    filter:
	    drop-shadow(0 1px 0 #cccccc)
	    drop-shadow(0 2px 0 #cccccc)
	    drop-shadow(0 3px 0 #cccccc)
	    drop-shadow(0 4px 0 #cccccc)
	    drop-shadow(0 50px 30px rgba(0, 0, 0, 0.3));
  }
}
/* ====================================================
	2020年9月16日追加
==================================================== */
.reflection-img{
    width       :100%;
    height      :100%;
    position    :relative;
    overflow    :hidden;
}
.reflection {
    height      :100%;
    width       :40px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 3s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 3s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 3s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* ====================================================
	2020年9月16日追加 2
==================================================== */
.appearTextBox {
	/* display: none; */
	position: absolute;
	left: 0;
	right: 0;
	top: 487px;
	margin: auto;
	width: 450px;
	/*height: 74px;*/
	text-align: center;
	z-index: 2;
	filter: drop-shadow(-13px 8px 9px rgba(0, 0, 0, 0.15));
}
.appearText {
	-webkit-mask-image: url(/img/index/mainVisual/mainVisual_text_big/shadow_gradation.png);
	mask-image: url(/img/index/mainVisual/mainVisual_text_big/shadow_gradation.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% auto;
	mask-size: 100% auto;
}
.appearText img {
	display: block;
}
/* -- IE Hac -- */
_:lang(x)::-ms-backdrop,
.appearText .reflection {
	display: none;
}

/* ====================================================
	2020年10月26日追加
==================================================== */

.mvl_item_after.hidden, .appearTextBox.hidden {
	opacity: 0;
}
.mainVisual .commonWrapper.action {
	display: block;
	transform-origin: center 225px;
	animation: scale-up-center_light 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes scale-up-center_light {
  0% {
  	opacity: 0;
    transform: scale(0.94);
  }
  100% {
  	opacity: 1;
    transform: scale(1);
  }
}

/* ====================================================
	2020年11月05日追加
==================================================== */

/*---------- テキストグラデーション ----------*/
.heading_large > span {
	background-clip: text;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
}
/* ABOUT */
.about .text-move:nth-child(1) {
	background: -webkit-linear-gradient(0deg, #ed6d00 0%,#fcc800 200%);
}
.about .text-move:nth-child(2) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -50%,#fcc800 150%);
}
.about .text-move:nth-child(3) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -100%,#fcc800 100%);
}
.about .text-move:nth-child(4) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -150%,#fcc800 50%);
}
.about .text-move:nth-child(5) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -200%,#fcc800 0%);
}
.about .text-move-02:nth-child(1) {
	background: -webkit-linear-gradient(0deg, #ed6d00 0%,#fcc800 200%);
}
.about .text-move-02:nth-child(2) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -33%,#fcc800 167%);
}
.about .text-move-02:nth-child(3) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -66%,#fcc800 134%);
}
.about .text-move-02:nth-child(4) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -99%,#fcc800 100%);
}
.about .text-move-02:nth-child(5) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -132%,#fcc800 68%);
}
.about .text-move-02:nth-child(6) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -165%,#fcc800 34%);
}
.about .text-move-02:nth-child(7) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -200%,#fcc800 0%);
}
.about.secondLine {
	margin-left: -5px;
}






/* VISION */
.vision .text-move:nth-child(1) {
	background: -webkit-linear-gradient(0deg, #ed6d00 0%,#fcc800 200%);
}
.vision .text-move:nth-child(2) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -50%,#fcc800 150%);
}
.vision .text-move:nth-child(3) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -100%,#fcc800 100%);
}
.vision .text-move:nth-child(4) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -150%,#fcc800 50%);
}
.vision .text-move:nth-child(5) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -200%,#fcc800 0%);
}
.vision .text-move-02:nth-child(1) {
	background: -webkit-linear-gradient(0deg, #ed6d00 0%,#fcc800 200%);
}
.vision .text-move-02:nth-child(2) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -40%,#fcc800 160%);
}
.vision .text-move-02:nth-child(3) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -80%,#fcc800 120%);
}
.vision .text-move-02:nth-child(4) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -120%,#fcc800 80%);
}
.vision .text-move-02:nth-child(5) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -160%,#fcc800 40%);
}
.vision .text-move-02:nth-child(6) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -200%,#fcc800 0%);
}
.visionBlock .introHeading {
	margin-top: 11px;
}
.introBlock.visionBlock .introHeading .heading_large.firstLine {
	margin-right: -10px;
}
.visionBlock .introText .introDescription {
	margin-right: 0;
}



/* SERVICE*/
.service .text-move:nth-child(1) {
	background: -webkit-linear-gradient(0deg, #ed6d00 0%,#fcc800 200%);
}
.service .text-move:nth-child(2) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -33%,#fcc800 167%);
}
.service .text-move:nth-child(3) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -66%,#fcc800 134%);
}
.service .text-move:nth-child(4) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -99%,#fcc800 100%);
}
.service .text-move:nth-child(5) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -132%,#fcc800 68%);
}
.service .text-move:nth-child(6) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -165%,#fcc800 34%);
}
.service .text-move:nth-child(7) {
	background: -webkit-linear-gradient(0deg, #ed6d00 -200%,#fcc800 0%);
}

.introBlock.serviceBlck {
	margin-top: 111px;
}


/* COMPANY*/
.company .text-move:nth-child(1){
	background: -webkit-linear-gradient(0deg, #ed6d00 0%,#fcc800 200%);
}
.company .text-move:nth-child(2){
	background: -webkit-linear-gradient(0deg, #ed6d00 -33%,#fcc800 167%);
}
.company .text-move:nth-child(3){
	background: -webkit-linear-gradient(0deg, #ed6d00 -66%,#fcc800 134%);
}
.company .text-move:nth-child(4){
	background: -webkit-linear-gradient(0deg, #ed6d00 -99%,#fcc800 100%);
}
.company .text-move:nth-child(5){
	background: -webkit-linear-gradient(0deg, #ed6d00 -132%,#fcc800 68%);
}
.company .text-move:nth-child(6){
	background: -webkit-linear-gradient(0deg, #ed6d00 -165%,#fcc800 34%);
}
.company .text-move:nth-child(7){
	background: -webkit-linear-gradient(0deg, #ed6d00 -200%,#fcc800 0%);
}
.introBlock.companyBlock .introHeading {
	margin-top: 32px;
}