@charset "UTF-8";
/* CSS Document */


.animeBefore {
	visibility: hidden;
}
.fadeAnime {
	visibility: visible;
	animation-name: fadeAnime;
	-webkit-animation-name: fadeAnime;
	animation-duration: 600ms;
	-webkit-duration: fadeAnime;
}
@-webkit-keyframes fadeAnime  {
   from {
        -webkit-transform: translateY(20px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeAnime {
  from {
	  opacity: 0;
	  transform: translateY(20px);
  }
  to {
	  opacity: 1;
	  transform: translateY(0px);
  }
}

/* ---------------------------------------------------------
#main
----------------------------------------------------------*/
#main {
	position: relative;
	width: 100%;
	height: 640px;
}
h1 {
	position: absolute;
	top: 308px;
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 2;
}
h1 img {
	width: 631px;
}
#main .slide {
	width: 100%;
	height: 640px;
	background: url(../img/slide_04.jpg) no-repeat center;
	background-size: cover;
}
#main .slide:nth-child(4n-2) {
	background-image: url(../img/slide_01.jpg);
}
#main .slide:nth-child(4n-1) {
	background-image: url(../img/slide_02.jpg);
}
#main .slide:nth-child(4n) {
	background-image: url(../img/slide_03.jpg);
}

/* ---------------------------------------------------------
#lead
----------------------------------------------------------*/
#lead {
	padding-bottom: 95px;
}
#lead p {
	font-size: 20px;
	font-weight: 500;
	line-height: 2.2;
	letter-spacing: 1px;
	text-align: center;
	padding: 68px 0 48px;
}
#lead .btn-more a {
	position: relative;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	width: 139px;
	height: 48px;
	background-color: #e6132d;
	color: #e6132d;
	font-size: 18px;
	font-family: 'Open Sans',sans-serif;
	font-weight: 600;
	border: 2px solid #e6132d;
	border-radius: 5px;
	margin: 0 auto;
	box-sizing: border-box;
	overflow: hidden;
}
#lead .btn-more a:hover {
	text-decoration: none;
	color: #fff;
}
#lead .bg-anime-white a:hover:after {
	width: 0%;
	left: 101%;
}

/* ---------------------------------------------------------
#job
----------------------------------------------------------*/
#job {
	padding: 75px 0 160px;
}
#job h2 {
	font-family: 'Open Sans',sans-serif;
	font-weight: bold;
	font-size: 48px;
	color: #e6132d;
	text-align: center;
	margin-bottom: 30px;
}
#job h2 .txt-ja {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding-top: 5px;
}
#job .wrapper {
	display: -webkit-flex; /* Safari */
	display: flex;	
}
#job .wrapper .left-col,
#job .wrapper .right-col {
	width: 50%;
	height: 500px;
	color: #fff;
	text-align: center;
	background: url(../img/job_bg_01.jpg) no-repeat center;
	background-size: cover;
}
#job .wrapper .right-col {
	background: url(../img/job_bg_02.jpg) no-repeat center;
	background-size: cover;
}
#job .wrapper h3 {
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 93px 0 30px;
}
#job .wrapper p {
	font-size: 14px;
}
#job .wrapper .lead {
	margin-bottom: 30px;
}
#job .banner {
	position: relative;
	width: 420px;
	margin: 0 auto;
}
#job .banner a {
	position: relative;
	display: block;
	width: 420px;
	letter-spacing: 1px;
	background-color: #fff;
	padding: 3px;
	margin: 0 auto 40px;
	box-sizing: border-box;
	overflow: hidden;
}
#job .banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #e6132d;
	transition: width 60ms 60ms;
	z-index: 2;
}
#job .banner:hover:before {
	width: 100%;
	transition: width 60ms;
}
#job .banner:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 3px;
	height: 0;
	background-color: #e6132d;
	transition: height 60ms;
	z-index: 2;	
}
#job .banner:hover:after {
	height: 100%;
	transition: height 60ms 60ms;
}

#job .banner a:before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 3px;
	background-color: #e6132d;
	transition: width 60ms 60ms;
	z-index: 2;
}
#job .banner a:hover:before {
	width: 100%;
	transition: width 60ms;
}
#job .banner a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 3px;
	height: 0;
	background-color: #e6132d;
	transition: height 60ms;
	z-index: 2;	
}
#job .banner a:hover:after {
	height: 100%;
	transition: height 60ms 60ms;
}
#job .banner .pic {
	width: 414px;
	height: 119px;
	background: url(../img/job_bn_01.jpg) no-repeat center top;
	background-size: cover;
	margin: 0 auto;
}
#job .right-col .banner .pic {
	background: url(../img/job_bn_02.jpg) no-repeat center top;
	background-size: cover;
}
#job .banner p {
	display: inline-block;
	font-size: 20px;
	color: #e6132d;
	background: url(../common/img/icon_arrow_red.png) no-repeat left 17px;
	background-size: 9px auto;
	padding: 14px 18px 12px;
}
#job .btn a {
	position: relative;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	width: 265px;
	height: 48px;
	color: #fff;
	font-size: 16px;
	letter-spacing: 1px;
	background-color: #fff;
	border: 2px solid #e6132d;
	border-radius: 5px;
	margin: 0 auto;
	z-index: 2;
	overflow: hidden;
}
#job .btn a:hover {
	color: #e6132d;
	text-decoration: none;
}

/* ---------------------------------------------------------
#story
----------------------------------------------------------*/
#story {
	padding: 0 0 144px;
}
#story h2 {
	font-family: 'Open Sans',sans-serif;
	font-weight: bold;
	font-size: 48px;
	color: #e6132d;
	text-align: center;
	margin-bottom: 30px;
}
#story h2 .txt-ja {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding-top: 5px;
}
#story .wrapper {
	display: -webkit-flex; /* Safari */
	display: flex;	
}
#story .pic {
	width: 53.3%;
	height: 400px;
	background: url(../img/story_pic_01.jpg) no-repeat center;
	background-size: cover;
}
#story .wrapper:last-of-type {
	position: relative;
	padding-right: 53.3%;
}
#story .wrapper:last-of-type .pic {
	position: absolute;
	right: 0;
}
#story .wrapper:last-of-type .pic {
	background: url(../img/story_pic_02.jpg) no-repeat center;
	background-size: cover;
}
#story .txt {
	position: relative;
	width: 46.7%;
	height: 400px;
	letter-spacing: 1px;
	text-align: center;
	background-color: #f5f5f5;
	overflow: hidden;
}
#story .wrapper:last-of-type .txt {
	width: 100%;
}
#story .txt .logo {
	padding: 112px 0 0;
}
#story .wrapper:last-of-type .logo {
	padding: 93px 0 0;
}
#story .txt .logo img {
	width: 155px;
	height: auto;
}
#story .wrapper:last-of-type .logo img {
	width: 195px;
}
#story .txt h3 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	padding: 13px 0 24px;
}
#story .btn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 199px;
	height: 48px;
	color: #fff;
	font-size: 16px;
	background-color: #fff;
	letter-spacing: 1px;
	border: 2px solid #e6132d;
	border-radius: 5px;
	margin: 0 auto;
	z-index: 2;
	overflow: hidden;
}
#story .wrapper:last-of-type .btn a {
	width: 280px;
}
#story .btn a:hover {
	color: #e6132d;
	text-decoration: none;
}
#story .pen {
	position: absolute;
	top: 49px;
	left: 71.4%;
	margin-left: 0;
	transition: margin .5s 1s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
#story .animeBefore .pen,
#story .animeBefore .line {
	margin-left: -100%;
}

#story .wrapper:last-of-type .pen {
	top: 40px;
}
#story .pen img {
	width: 155px;
	height: auto;
}
#story .wrapper:last-of-type .pen img {
	width: 157px;
}
#story .line {
	position: absolute;
	top: 335px;
	left: 0;
	width: 71.6%;
	height: 1px;
	background-color: #0d4ea6;
	margin-left: 0;
	transition: margin .5s 1s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
#story .wrapper:last-of-type .line {
	top: 336px;
	background-color: #181818;
}

/* ---------------------------------------------------------
#business
----------------------------------------------------------*/
#business {
	padding: 0 0 144px;
}
#business h2 {
	font-family: 'Open Sans',sans-serif;
	font-weight: bold;
	font-size: 48px;
	color: #e6132d;
	text-align: center;
	margin-bottom: 30px;
}
#business h2 .txt-ja {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding-top: 10px;
}
#business .bg {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 443px;
	background: url("../img/business_bg.jpg") no-repeat;
	background-size: cover;
}
#business p {
	font-size: 34px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .05em;
	color: #fff;
	margin-bottom: 40px;
}
#business .btn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 263px;
	height: 48px;
	color: #fff;
	font-size: 16px;
	background-color: #fff;
	letter-spacing: 1px;
	border: 2px solid #e6132d;
	border-radius: 5px;
	margin: 0 auto;
	z-index: 2;
	overflow: hidden;
}
#business .btn a:hover {
	color: #e6132d;
	text-decoration: none;
}

/* ---------------------------------------------------------
#special
----------------------------------------------------------*/
#special {
	padding: 0 0 160px;
}
#special h2 {
	font-family: 'Open Sans',sans-serif;
	font-weight: bold;
	font-size: 48px;
	color: #e6132d;
	text-align: center;
	margin-bottom: 30px;
}
#special h2 .txt-ja {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding-top: 5px;
}
#special .wrapper {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
}
#special .bn1,
#special .bn2 {
	width: 50%;
}
#special .bn1 img,
#special .bn2 img {
	width: 100%;
	height: auto;
}
#special .bn2 {
	margin: 40px 0 60px -1px;
}
#special a {
	transition: opacity 150ms ease-out;	
}
#special a:hover {
	opacity: .7;
}

/* ---------------------------------------------------------
#recruit
----------------------------------------------------------*/
#recruit {
	padding: 0 0 80px;
}
#recruit h2 {
	font-family: 'Open Sans',sans-serif;
	font-weight: bold;
	font-size: 48px;
	color: #e6132d;
	text-align: center;
	margin-bottom: 30px;
}
#recruit h2 .txt-ja {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding-top: 5px;
}
#recruit .wrapper {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	width: 100%;
	max-width: 1099px;
	margin: 0 auto;
}
#recruit .wrapper a {
	position: relative;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	width: 100%;
	height: 162px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	background-color: #e6132d;
	color: #e6132d;
	border: 3px solid #e6132d;
	border-right: none;
	z-index: 2;
}
#recruit .wrapper .btn {
	width: 25%;
}
#recruit .wrapper .btn:last-child a {
	border-right: 3px solid #e6132d;
}
#recruit .wrapper a:hover {
	color: #fff;
	text-decoration: none;
}
#recruit .wrapper a .bg {
	width: 0;
	z-index: -1;
}
#recruit .wrapper a:hover .bg {
	width: 100%;
	left: 0%;
}

@media screen and (max-width:750px) {

/* ---------------------------------------------------------
#main sp
----------------------------------------------------------*/
#main {
	position: relative;
	width: 100%;
	height: auto;
}
h1 {
	position: absolute;
	top: 0;
	width: 100%;
	height: 607px;
	background: url(../img/ttl_sp.svg) no-repeat center;
	background-size: 83vw auto;
	padding: 0;
	z-index: 2;
}
h1 img {
	display: none;
}
#main .slide {
	width: 100%;
	height: 607px;
	background: url(../img/slide_04_sp.jpg) no-repeat center;
	background-size: cover;
}
#main .slide:nth-child(4n-2) {
	background-image: url(../img/slide_01_sp.jpg);
}
#main .slide:nth-child(4n-1) {
	background-image: url(../img/slide_02_sp.jpg);
}
#main .slide:nth-child(4n) {
	background-image: url(../img/slide_03_sp.jpg);
}

/* ---------------------------------------------------------
#lead sp
----------------------------------------------------------*/
#lead {
	padding-bottom: 60px;
}
#lead p {
	font-size: 17px;
	font-weight: 500;
	text-align: center;
	padding: 50px 0 19px;
}
#lead .btn-more a {
	width: 112px;
	height: 40px;
	font-size: 15px;
	overflow: hidden;
}
#lead .btn-more a:hover {
	text-decoration: none;
	color: #fff;
}
	
/* ---------------------------------------------------------
#job sp
----------------------------------------------------------*/
#job {
	padding: 60px 0 100px;
}
#job h2 {
	font-size: 33px;
	font-weight: bold;
	margin-bottom: 20px;
}
#job h2 .txt-ja {
	font-size: 13px;
	padding-top: 4px;
}
#job .wrapper {
	display: block;
}
#job .wrapper .left-col,
#job .wrapper .right-col {
	width: 100%;
	height: inherit;
	background: url(../img/job_bg_01_sp.jpg) no-repeat center;
	background-size: cover;
	padding-bottom: 54px;
}
#job .wrapper .right-col {
	background: url(../img/job_bg_02_sp.jpg) no-repeat center;
	background-size: cover;
}
#job .wrapper h3 {
	font-size: 21px;
	font-weight: 500;
	padding: 54px 0 15px;
}
#job .wrapper p {
	font-size: 13px;
}
#job .banner {
	width: 295px;
}
#job .banner a {
	position: relative;
	display: block;
	width: 295px;
	margin: 0 auto 30px;
}	
#job .banner .pic {
	width: 289px;
	height: 82px;
	background: url(../img/job_bn_01_sp.jpg) no-repeat center top;
	background-size: cover;
	margin: 0 auto;
}
#job .right-col .banner .pic {
	background: url(../img/job_bn_02_sp.jpg) no-repeat center top;
	background-size: cover;
}
#job .banner p {
	font-size: 15px;
	background: url(../common/img/icon_arrow_red.png) no-repeat left 12px;
	background-size: 7px auto;
	padding: 10px 15px 8px;
}
#job .btn a {
	position: relative;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	width: 265px;
	height: 48px;
	color: #fff;
	font-size: 16px;
	background-color: #fff;
	border-radius: 5px;
	margin: 0 auto;
	z-index: 2;
	overflow: hidden;
}
#job .btn a:hover {
	color: #e6132d;
	text-decoration: none;
}

/* ---------------------------------------------------------
#story sp
----------------------------------------------------------*/
#story {
	padding: 0;
}
#story h2 {
	font-size: 33px;
	margin-bottom: 20px;
}
#story h2 .txt-ja {
	font-size: 13px;
	padding-top: 9px;
}
#story .wrapper {
	display: block;
}
#story .pic {
	width: 100%;
	height: 200px;
	background: url(../img/story_pic_01.jpg) no-repeat center;
	background-size: cover;
}
#story .wrapper:last-of-type {
	padding-right: 0;
}
#story .wrapper:last-of-type .pic {
	position: relative;
	width: 100%;
	background: url(../img/story_pic_02.jpg) no-repeat center;
	background-size: cover;
}
#story .txt {
	width: 100%;
	height: 200px;
}
#story .txt .logo {
	padding: 31px 0 0;
}
#story .wrapper:last-of-type .logo {
	padding: 24px 0 0;
}
#story .txt .logo img {
	width: 128px;
	height: auto;
}
#story .wrapper:last-of-type .logo img {
	width: 179px;
}
#story .txt h3 {
	position: relative;
	font-size: 17px;
	line-height: 1.5;
	padding: 10px 0 15px;
	z-index: 3;
}
#story .btn a {
	width: 166px;
	height: 40px;
	font-size: 15px;
	letter-spacing: 0;
	border-radius: 5px;
}
#story .wrapper:last-of-type .btn a {
	width: 245px;
}
#story .btn a:hover {
	color: #e6132d;
	text-decoration: none;
}
#story .pen {
	position: absolute;
	top: inherit;
	bottom: 2.2vw;
	left: 71%;
	pointer-events: none;
	z-index: 2;
}
#story .wrapper:last-of-type .pen {
	top: inherit;
	bottom: 2.1vw;
	left: 72%;
}
#story .pen img {
	width: 93px;
	height: auto;
}
#story .wrapper:last-of-type .pen img {
	width: 91px;
}
#story .line {
	position: absolute;
	top: inherit;
	bottom: 2.2vw;
	left: 0;
	width: 71%;
	height: 1px;
	background-color: #0d4ea6;
}
#story .wrapper:last-of-type .line {
	top: inherit;
	bottom: 2.2vw;
	width: 72.3%;
	background-color: #181818;
}

/* ---------------------------------------------------------
#business sp
----------------------------------------------------------*/
#business {
	padding: 100px 0;
}
#business h2 {
	font-size: 33px;
	margin-bottom: 20px;
}
#business h2 .txt-ja {
	font-size: 13px;
	padding-top: 3px;
}
#business .bg {
	width: 100%;
	height: 58.7vw;
	background: url("../img/business_bg_sp.jpg") no-repeat;
	background-size: cover;
}
#business p {
	font-size: 21px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	color: #fff;
	margin-bottom: 15px;
}
#business .btn a {
	width: 245px;
	height: 40px;
	font-size: 15px;
}
#business .btn a:hover {
	color: #e6132d;
	text-decoration: none;
}

/* ---------------------------------------------------------
#special sp
----------------------------------------------------------*/
#special {
	padding: 0;
}
#special h2 {
	font-size: 33px;
	margin-bottom: 20px;
}
#special h2 .txt-ja {
	font-size: 13px;
	padding-top: 9px;
}
#special .wrapper {
	display: block;
}
#special .bn1,
#special .bn2 {
	width: 100%;
}
#special .bn2 {
	padding: 0 0 40px;
	margin: -2px 0 0;
}
#special .bn1 a,
#special .bn2 a {
	display: block;
	width: 93.3vw;
	height: 50vw;
	background: url(../img/special_bn_01_sp.png) no-repeat;
	background-size: contain;
}
#special .bn2 a {
	background: url(../img/special_bn_02_sp.png) no-repeat;
	background-size: contain;
	margin-left: auto;
}
#special .bn3 a {
	display: block;
	width: 92vw;
	height: 37.3vw;
	background: url(../img/special_bn_03_sp.png) no-repeat;
	background-size: contain;
	margin: 0 auto;
}
#special .bn1 img,
#special .bn2 img,
#special .bn3 img {
	display: none;
}
#special a {
	transition: opacity 150ms ease-out;	
}
#special a:active {
	opacity: .7;
}

/* ---------------------------------------------------------
#recruit sp
----------------------------------------------------------*/
#recruit {
	padding: 145px 0 45px;
}
#recruit h2 {
	font-size: 33px;
	margin-bottom: 20px;
}
#recruit h2 .txt-ja {
	font-size: 13px;
	padding-top: 5px;
}
#recruit .wrapper {
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	width: 100%;
	max-width: inherit;
	padding: 0 4vw;
	margin: 0 auto 40px;
	box-sizing: border-box;
}
#recruit .wrapper a {
	width: 100%;
	height: 110px;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	border-right: none;
	border-bottom: none;
	z-index: 2;
}
#recruit .wrapper .btn {
	width: 50%;
}
#recruit .wrapper .btn:nth-child(2) a,
#recruit .wrapper .btn:last-child a {
	border-right: 3px solid #e6132d;
}
#recruit .wrapper .btn:nth-child(3) a,
#recruit .wrapper .btn:last-child a {
	border-bottom: 3px solid #e6132d;
}
#recruit .wrapper a:active {
	color: #fff;
	text-decoration: none;
}
#recruit .wrapper a .bg {
	width: 0;
	z-index: -1;
}
#recruit .wrapper a:active .bg {
	width: 100%;
	left: 0%;
}

	
}


@media screen and (max-width:320px) {

/* ---------------------------------------------------------
#main sp
----------------------------------------------------------*/
h1 strong {
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 0;
}

/* ---------------------------------------------------------
#lead sp
----------------------------------------------------------*/
#lead p {
	font-size: 14px;
}
/* ---------------------------------------------------------
#story sp
----------------------------------------------------------*/
#story .pen {
	position: absolute;
	left: 75%;
	pointer-events: none;
	z-index: 2;
}
#story .wrapper:last-of-type .pen {
	left: 75.5%;
}
#story .pen img {
	width: 70px;
	height: auto;
}
#story .wrapper:last-of-type .pen img {
	width: 71px;
}
#story .line {
	left: 0;
	width: 75%;
	height: 1px;
	background-color: #0d4ea6;
}
#story .wrapper:last-of-type .line {
	width: 76%;
	background-color: #181818;
}

}
