@charset "UTF-8";



/*css上書き
---------------------------------------------------------- */
.page-header header {
	position: absolute;
}

.page-contents {
	padding-top: 0;
}

/* Gナビ */
@media screen and (min-width: 751px) {
	.page-header-nav-list li a {
		/*color: #FFF;
		text-shadow:0px 0px 6px rgba(20,30,30,.3);*/
		text-shadow:0px 0px 100px rgba(220,220,220,1);
	}
	.page-header-nav-list li a:after {
		/*background-color: #FFF;*/
	}
}



/*背景ロゴ
---------------------------------------------------------- */
.company-logo {
	position: fixed;
	width: 799px;
	height: 788px;
	top: 50%;
	left: 50%;
	z-index: 10;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}



@media screen and (max-width: 750px) {

	.company-logo {
		width: 240px;
		height: auto;
	}

	.company-logo img {
		width: 100%;
		height: auto;
	}
}




/*メイン
---------------------------------------------------------- */
.top-main {
	margin: 0 0 140px;
	position: relative;
}

.top-main::before {
	width: 100%;
	height: 100%;
	background: url(../../img/top/main-bg.png) repeat-x;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	z-index: 10;
}

.top-main .main-slider {
	width:100%;
	position: relative;
}

.top-main .main-slider .slick-list,
.top-main .main-slider .slick-track,
.top-main .main-slider .slick-slide,
.top-main .main-slider .slick-slide > div {
	height: 100%;
}

.top-main .main-slider .img-background {
	height: 100%;
	width: 100%;
	background-position: center center;
	background-size: cover;
}

.top-main .main-slider .is-active {
	-webkit-animation: zoomOutSM 10s linear forwards;
	animation: zoomOutSM 10s linear forwards;
}

.top-main h1 {
	position: absolute;
	top: 50%;
	left: 60px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 1;
	color: #19223a;
	font-size: 6rem;
	line-height: 1.4;
	letter-spacing: 0.03em;
}

.top-main .scroll-down {
	position: absolute;
	bottom: 15px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 80px;
	height: 60px;
	margin: 0 auto;
	color: #19223a;
	font-size: 1.4rem;
	font-weight: bold;
	font-family: 'Dosis', sans-serif;
	letter-spacing: 0.2em;
	text-align: center;
	z-index: 9999;
}

.top-main .scroll-down a {
	display: block;
	text-decoration: none;
}

.top-main .scroll-down .wheel {
	position: absolute;
	top: 35px;
	bottom: auto;
	left: 0;
	right: 0;
	margin: auto;
	width: 2px;
	height: 70px;
	background-color: #19223a;
	animation-name: animscroll;
	-webkit-animation-name: animscroll;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-timing-function: liner;
	animation-timing-function: liner;
	animation-delay: 1;
	-webkit-animation-delay: 1;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-direction: normal;
	-webkit-animation-direction: normal;
	animation-fill-mode: backwards;
	-webkit-animation-fill-mode: backwards;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}



 @-webkit-keyframes zoomOutSM {
	 0% {
	 -webkit-transform: scale(1.2);
	 transform: scale(1.2);
	}
	 100% {
	 -webkit-transform: scale(1);
	 transform: scale(1);
	}
}

 @keyframes zoomOutSM {
	 0% {
	 -webkit-transform: scale(1.2);
	 transform: scale(1.2);
	}
	 100% {
	 -webkit-transform: scale(1);
	 transform: scale(1);
	}
}


@media screen and (max-width: 1400px) {

	.top-main h1 {
		font-size: 5rem;
	}
}


@media screen and (max-width: 750px) {

	.top-main {
		margin: 0 0 110px;
	}

	.top-main::before {
		display: none;
	}

	.top-main h1 {
		left: 3%;
		top: inherit;
		bottom: -55px;
		-webkit-transform: initial;
		transform: initial;
		font-size: 3.2rem;
		line-height: 1.3;
	}

	.top-main .scroll-down {
		display: none;
	}

	.top-main .company-logo {
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 10;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

}




/*私たちについて
---------------------------------------------------------- */
.top-about-section {
	margin: 0 0 130px;
	padding-top: 20px;
}

.top-about-section .about-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: -12px 0 0 -12px;
}

.top-about-section .about-list li {
	width: -webkit-calc(33.3333% - 12px);
	width: calc(33.3333% - 12px);
	margin: 12px 0 0 12px;
}

.top-about-section .about-list li a {
	display: block;
	text-decoration: none;
}

.top-about-section .about-list li .img {
	position: relative;
	overflow: hidden;
}

.top-about-section .about-list li .img .img-background {
	padding-top: 53.625%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.top-about-section .about-list li a:hover {
	opacity: 0.6;
}

.top-about-section .about-list li .txt {
	padding: 30px 25px;
	color: #fff;
	background-color: #1e2333;
}

.top-about-section .about-list li .txt h3 {
	font-size: 2.5rem;
	letter-spacing: 0.1em;
}

.top-about-section .about-list li .txt h3 span {
	display: block;
	font-size: 1.3rem;
	font-weight: normal;
	letter-spacing: 0.35em;
}



@media screen and (max-width: 750px) {

	.top-about-section {
		margin: 0 0 50px;
	}

	.top-about-section .about-list ul {
		display: block;
		margin: 0;
	}

	.top-about-section .about-list li {
		width: 100%;
		margin: 10px 0 0 0;
	}

	.top-about-section .about-list li:first-child {
		margin: 0 0 30px 0;
	}

	.top-about-section .about-list li .img .img-background {
		padding-top: 40%;
	}

	.top-about-section .about-list li .txt {
		padding: 15px 20px;
	}

	.top-about-section .about-list li .txt h3 {
		font-size: 1.9rem;
	}

	.top-about-section .about-list li .txt h3 span {
		font-size: 1.1rem;
	}

}




/*職種紹介
---------------------------------------------------------- */
.top-business-section {
	margin: 0 0 140px;
}

.top-business-section .page-section-ttl h2 {
	margin: 0 0 50px;
}

.top-business-section .business-list li {
	margin: 140px 0 0;
	position: relative;
	z-index: 10;
}

.top-business-section .business-list li:nth-child(odd) {
	margin: 100px 0 0;
}

.top-business-section .business-list li:first-child {
	margin: 0 !important;
}

.top-business-section .business-list li .business-list-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	position: relative;
}

.top-business-section .business-list li:nth-child(even) .business-list-column {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.top-business-section .business-list li .column-left {
	width: 60%;
	padding: 0 0 0 100px;
}

.top-business-section .business-list li:nth-child(even) .column-left {
	padding: 0 0 0 250px;
}

.top-business-section .business-list li .column-right {
	width: 40%;
	position: relative;
}

.top-business-section .business-list li .column-right .name-en {
	position: absolute;
	z-index: 100;
}

.top-business-section .business-list li:nth-child(1) .column-right .name-en {
	left: -200px;
	top: 50px;
	transform: rotate(-10deg);
}

.top-business-section .business-list li:nth-child(2) .column-right .name-en {
	right: -210px;
	top: 30px;
	transform: rotate(-10deg);
}

.top-business-section .business-list li:nth-child(3) .column-right .name-en {
	left: -230px;
	top: 97px;
	transform: rotate(-10deg);
}

.top-business-section .business-list li:nth-child(4) .column-right .name-en {
	right: -240px;
	top: 67px;
	transform: rotate(-10deg);
}

.top-business-section .business-list li:nth-child(5) .column-right .name-en {
	left: -240px;
	top: 97px;
	transform: rotate(-10deg);
}

.top-business-section .business-list li .column-right .name-en {
	opacity: 0;
	-webkit-transition: opacity 0s linear 0.15s;
	transition: opacity 0s linear 0.15s;
}

.top-business-section .business-list li .column-right .name-en.js-show {
	opacity: 1;
}

.top-business-section .business-list li .column-right .name-en.js-show #stroke {
	stroke-dasharray: 2500 2500;
	animation: write-the-text 5s linear;
}

.top-business-section .business-list li .column-right .name-en.js-show #stroke-delay {
	stroke-dashoffset:2600;
	stroke-dasharray: 2500 2500;
	animation: write-the-text 5s 3s linear forwards;
}

_:-ms-lang(x)::-ms-backdrop,
.top-business-section .business-list li .column-right .name-en.js-show #stroke-delay {
	stroke-dashoffset: 0;
	animation: none;
}

.top-business-section .business-list li:nth-child(1) .column-right .name-en svg {
	width: 369px;
	height: auto;
}

.top-business-section .business-list li:nth-child(2) .column-right .name-en svg {
	width: 360px;
	height: auto;
}

.top-business-section .business-list li:nth-child(3) .column-right .name-en svg {
	width: 387px;
	height: auto;
}

.top-business-section .business-list li:nth-child(4) .column-right .name-en svg {
	width: 421px;
	height: auto;
}

.top-business-section .business-list li:nth-child(5) .column-right .name-en svg {
	width: 409px;
	height: auto;
}

.top-business-section .business-list li .ttl {
	margin: 0 0 40px;
	padding: 0 0 0 40px;
	border-left: 1px solid #92959c;
	line-height: 1.5;
}

.top-business-section .business-list li:nth-child(even) .ttl {
	border-left: 1px solid #19223a;
}

.top-business-section .business-list li .ttl span {
	display: block;
}

.top-business-section .business-list li .ttl .number {
	color: #a9abb1;
	font-size: 2.5rem;
	font-family: 'Dosis', sans-serif;
	letter-spacing: 0.05em;
	line-height: 1;
}

.top-business-section .business-list li .ttl .jp {
	font-size: 4.8rem;
	letter-spacing: 0.05em;
}

.top-business-section .business-list li .ttl .en {
	letter-spacing: 0.24em;
	line-height: 1;
}

.top-business-section .business-list li .ttl .sp-link-box {
	display: none;
}

.top-business-section .business-list li .txt p {
	font-size: 1.7rem;
	line-height: 2.2;
}

.top-business-section .business-list li .img {
	position: relative;
	z-index: 10;
}

.top-business-section .business-list li.theme-navy .img {
	margin: 0 0 -90px;
}

.top-business-section .business-list li .link-box {
	display: table;
	width: 210px;
	min-height: 180px;
	position: absolute;
	left: -80px;
	bottom: 60px;
	background-color: #fff;
}

.top-business-section .business-list li:nth-child(even) .link-box {
	left: inherit;
	right: -80px;
}

.top-business-section .business-list li .link-box a {
	display: table-cell;
	vertical-align: middle;
	min-height: inherit;
	padding: 10px 20px;
	padding-right: 35px;
	color: #19223a;
	text-align: center;
	text-decoration: none;
}

.firefox .top-business-section .business-list li .link-box a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-js-display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

.top-business-section .business-list li .link-box a:after {
	display: block;
	content: "\e901";
	font-family: 'icomoon';
	color: #ae913b;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 15px;
	margin: -10px 0 0 0;
}

.top-business-section .business-list li .link-box a:hover:after {
	-webkit-animation: hover 0.6s 1 forwards;
	animation: hover 0.6s 1 forwards;
}

.top-business-section .business-list li .link-box h4 {
	font-size: 2.2rem;
	font-weight: bold;
}

.top-business-section .business-list li .link-box h4 span {
	display: block;
	font-size: 1.3rem;
	font-weight: normal;
}



@media screen and (max-width: 750px) {

	.top-business-section {
		margin: 0 0 60px;
	}

	.top-business-section .page-section-ttl h2 {
		margin: 0 0 15px;
	}

	.top-business-section .business-list li {
		margin: 20px 0 0 !important;
	}

	.top-business-section .business-list li .business-list-column {
		display: block;
		padding: 35px 0;
	}

	.top-business-section .business-list li .column-left {
		width: 100%;
		padding: 0 !important;
	}

	.top-business-section .business-list li .txt p {
		font-size: 1.4rem;
		line-height: 1.8;
	}

	.top-business-section .business-list li .ttl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: space-between;
		justify-content: space-between;
		align-items: center;
		margin: 0 0 15px;
		padding: 0 0 0 22px;
	}

	.top-business-section .business-list li .ttl h3 {
		flex: 1;
		-ms-flex: 1;
	}

	.top-business-section .business-list li .ttl .flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		line-height: 1;
	}

	.top-business-section .business-list li .ttl .number {
		font-size: 3.1rem;
		line-height: 1;
	}

	.top-business-section .business-list li .ttl .jp {
		margin: 0 0 0 10px;
		font-size: 2.7rem;
		line-height: 1;
	}

	.top-business-section .business-list li .ttl .en {
		margin: 5px 0 0;
	}

	.top-business-section .business-list li .ttl .sp-link-box {
		display: block;
	}

	.top-business-section .business-list li .ttl .sp-link-box,
	.top-business-section .business-list li .ttl .sp-link-box .btn {
		width: 45px;
	}

	.top-business-section .business-list li .ttl .sp-link-box .btn-line01 .arrow {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 0;
	}

	.top-business-section .business-list li .column-right {
		width: -webkit-calc(100% - 120px);
		width: calc(100% - 120px);
		margin: 0 auto;
	}

	.top-business-section .business-list li:nth-child(1) .column-right .name-en {
		left: -60px;
		top: -40px;
		transform: rotate(-10deg);
	}

	.top-business-section .business-list li:nth-child(2) .column-right .name-en {
		right: auto;
		left: -60px;
		top: -20px;
		transform: rotate(-10deg);
	}

	.top-business-section .business-list li:nth-child(3) .column-right .name-en {
		left: -60px;
		top: -20px;
		transform: rotate(-10deg);
	}

	.top-business-section .business-list li:nth-child(4) .column-right .name-en {
		right: auto;
		left: -60px;
		top: -25px;
		transform: rotate(-10deg);
	}

	.top-business-section .business-list li:nth-child(5) .column-right .name-en {
		left: -60px;
		top: -20px;
		transform: rotate(-10deg);
	}

	.top-business-section .business-list li .column-right .name-en svg {
		zoom:.5;
	}

	.top-business-section .business-list li.theme-navy .img {
		margin: 0;
	}

	.top-business-section .business-list li .txt {
		margin: 0 0 20px;
	}

	.top-business-section .business-list li .link-box {
		width: 145px;
		min-height: 110px;
		left: inherit !important;
		right: -40px !important;
		bottom: 20px;
	}

	.top-business-section .business-list li .link-box a:after {
		right: 5px;
	}

	.top-business-section .business-list li .link-box h4 {
		font-size: 1.7rem;
	}

	.top-business-section .business-list li .link-box h4 span {
		font-size: 1.1rem;
	}
}

/*社員座談会
---------------------------------------------------------- */
.top-crosstalk-section {
	margin: 0 0 130px;
	padding-top: 20px;
}

.top-crosstalk-section .crosstalk-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: -12px 0 0 -12px;
}

.top-crosstalk-section .crosstalk-list li {
	width: -webkit-calc(33.3333% - 12px);
	width: calc(33.3333% - 12px);
	margin: 12px 0 0 12px;
}

.top-crosstalk-section .crosstalk-list li a {
	display: block;
	text-decoration: none;
}

.top-crosstalk-section .crosstalk-list li .img {
	position: relative;
	overflow: hidden;
}

.top-crosstalk-section .crosstalk-list li .img .img-background {
	padding-top: 53.625%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.top-crosstalk-section .crosstalk-list li a:hover {
	opacity: 0.6;
}

.top-crosstalk-section .crosstalk-list li .txt {
	padding: 30px 25px;
	color: #fff;
	background-color: #1e2333;
}

.top-crosstalk-section .crosstalk-list li .txt h3 {
	font-size: 2.5rem;
	letter-spacing: 0.1em;
}

.top-crosstalk-section .crosstalk-list li .txt h3 span {
	display: block;
	font-size: 1.3rem;
	font-weight: normal;
	letter-spacing: 0.35em;
}

.top-crosstalk-section p {
	margin-bottom: 40px;
}

@media screen and (max-width: 750px) {

	.top-crosstalk-section {
		margin: 0 0 50px;
	}

	.top-crosstalk-section .crosstalk-list ul {
		display: block;
		margin: 0;
	}

	.top-crosstalk-section .crosstalk-list li {
		width: 100%;
		margin: 10px 0 0 0;
	}

	.top-crosstalk-section .crosstalk-list li:first-child {
		margin: 0 0 30px 0;
	}

	.top-crosstalk-section .crosstalk-list li .img .img-background {
		padding-top: 40%;
	}

	.top-crosstalk-section .crosstalk-list li .txt {
		padding: 15px 20px;
	}

	.top-crosstalk-section .crosstalk-list li .txt h3 {
		font-size: 1.9rem;
	}

	.top-crosstalk-section .crosstalk-list li .txt h3 span {
		font-size: 1.1rem;
	}

	.top-crosstalk-section p {
		margin-bottom: 20px;
	}

}

/*数字で見るアイケンジャパン
---------------------------------------------------------- */
.top-data-section {
	margin: 0 0 140px;
}

.top-data-section .column {
	display: table;
	width: 100%;
}

.top-data-section .column .column-left,
.top-data-section .column .column-right {
	display: table-cell;
	vertical-align: middle;
}

.top-data-section .column .column-right {
	width: 551px;
	margin: 0 120px 0 30px;
}



@media screen and (max-width: 750px) {

	.top-data-section {
		margin: 0 0 60px;
	}

	.top-data-section .column .column-right,
	.top-data-section .column .column-left {
		display: block;
	}

	.top-data-section .column .column-right {
		width: 100%;
		margin: 0 auto;
		padding: 0 5%;
	}
}




/*お知らせ
---------------------------------------------------------- */
.top-news-section {
	margin: 0 0 140px;
	padding: 70px 0 50px;
	position: relative;
	z-index: 10;
}

.top-news-section .page-section-ttl {
	margin: 0;
}

.top-news-section .column {
	display: table;
	width: 100%;
}

.top-news-section .column .btn-area {
	margin: 30px 0 0;
}

.top-news-section .column .column-left,
.top-news-section .column .column-right {
	display: table-cell;
	vertical-align: top;
}

.top-news-section .column .column-left {
	padding: 20px 30px 0 0;
}

.top-news-section .column .column-right {
	width: 770px;
}

.top-news-section .tab-area .tab-list > ul > li {
	width: -webkit-calc(90px + 1px);
	width: calc(90px + 1px);
	min-height: 55px;
}

.top-news-section .tab-area .tab-list li p {
	font-size: 1.3rem;
}



@media screen and (max-width: 750px) {

	.top-news-section {
		margin: 0 0 60px;
		padding: 35px 0;
	}

	.top-news-section .page-section-ttl {
		margin: 0 0 20px;
	}

	.top-news-section .column {
		display: block;
		padding: 0 3%;
	}

	.top-news-section .column .column-left,
	.top-news-section .column .column-right {
		display: block;
	}

	.top-news-section .column .column-left {
		padding: 0;
	}

	.top-news-section .column .column-right {
		width: 100%;
	}

	.top-news-section .tab-area .tab-list > ul > li {
		width: -webkit-calc(33.3333% + 1px);
		width: calc(33.3333% + 1px);
	}

	.top-news-section .tab-area .tab-list li p {
		font-size: 1.2rem;
	}

}




/*メッセージ
---------------------------------------------------------- */
.top-message-section {
	display: table;
	width: 100%;
}

.top-message-section .img {
	display: table-cell;
	vertical-align: middle;
	max-width: 570px;
	width: 40%;
}

.top-message-section .txt {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 150px;
}

.top-message-section .txt .btn {
	margin: 0;
}



@media screen and (max-width: 750px) {

	.top-message-section {
		display: block;
	}

	.top-message-section .section-ttl {
		text-align: center;
	}

	.top-message-section .img {
		display: block;
		width: 90%;
		margin: 0 auto 25px;
	}

	.top-message-section .txt {
		display: block;
		padding: 0;
	}

	.top-message-section .txt .section-ttl {
		text-align: left;
	}

	.top-message-section .txt .btn {
		margin: 0 auto;
	}

}



/*フッタ―リンク
---------------------------------------------------------- */
.top-footer-link {
	padding: 30px;
	background: #7f8591;
	/*background: #fafafb;
	background:#19223a;*/
	text-align: center;
}
.top-footer-link img {
	position: relative;
	z-index: 100;
}

.top-footer-banner-item {
	display: flex;
	justify-content: center;
	line-height: 1;
}

.top-footer-banner-link {
	padding: 0 10px;
}

@media screen and (max-width: 750px) {
	.top-footer-banner-item {
		display: list-item;
	}

	.top-footer-banner-link {
	}
}

/* =========================================== */
/* TextアニメーションCSS コード */
/* =========================================== */
.st0{fill:none;}
	.st1{opacity:0.6;fill:none;stroke:#fff;stroke-width:14.1732;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{opacity:0.6;}
.st3{opacity:0.6;fill:none;stroke:#fff;stroke-width:8.5039;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
