@charset "UTF-8";
/*================================header_top================================*/
@media  print, screen and (min-width: 768px) {
.header_top {
	width:100%;
	max-width:1920px;
	height:1000px;
	margin:0 auto;
	padding:0;
	position: relative;
    background: #1f4c89;
	}
.header_top:after {
    content: "";
    position: absolute;
    background: url(../images/bg_header_point.svg) no-repeat 0 0;
    background-size: contain;
    bottom: 0;
	left:50%;
	transform: translateX(-50%);
    width: 1920px;
    height: 170px;
    z-index: 1;
	/*animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;*/
}
@media all and (min-width: 768px) and (max-width: 1460px) {
.header_top:after {
    bottom: -1px;
}
}
.header_top h2{
	width:auto;
	position:absolute;
	top:204px;
    left: 50%;
    transform: translate(-76px,0);
	padding: 0;
	z-index:10;
	display:inline-block;
	text-align:right;
}
.header_top h2 .text{
	font-size: 40px;
    font-weight:600;
    color: #333;
	line-height:58px;
	letter-spacing: 0.1em;
	background:#fff;
	z-index:10;
	white-space:nowrap;
	padding:0 12px 4px 20px;
	margin-bottom:7px;
	display:inline-block;
}
.header_top h3{
	width:auto;
	position:absolute;
	top:640px;
    right: 50%;
    transform: translate(496px,0);
	padding: 0;
	z-index:10;
	display:inline-block;
	text-align:right;
}
@media all and (min-width: 768px) and (max-width: 1460px) {
.header_top h3{
    transform: translate(536px,0);
}
}
.header_top h3 .text{
	font-size: 15px;
    font-weight:500;
    color: #fff;
	line-height:39px;
	letter-spacing: 0.05em;
	z-index:10;
	white-space:nowrap;
	padding:0 20px 2px;
	margin-bottom:6px;
	background: -webkit-linear-gradient(left, #00cca3 0, #29d1ff 100%);
	display:inline-block;
}
 .header_top .point{
	width:auto;
	position:absolute;
	bottom:84px;
    left: 50%;
    transform: translate(-405px,0) ;
	padding: 0;
	z-index:11;
	display:inline-block;
}
/*.header_top .point{
	font-family: "Nothing You Could Do", cursive;
	width:auto;
	position:absolute;
	top:605px;
    left: 50%;
    transform: translate(-40px,0) rotate( -16deg );
	font-size: 38px;
    font-weight:400;
    color: #2fc9a3;
	line-height:1.0;
	letter-spacing: 0;
	padding: 0;
	z-index:11;
	display:inline-block;
}
@media all and (min-width: 768px) and (max-width: 1460px) {
.header_top .point{
    transform: translate(0,0) rotate( -16deg );
}
}*/
.header_top .mainvisual{
    width: 100%;
    height: 990px;
	position:relative;
}
.header_top .mainvisual.slider {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-960px,0);
    transform: translate(-960px,0);
    width: 1920px;
    height: 990px;
    margin: auto;
    object-fit: cover;
	z-index: 1;
}
.header_top .mainvisual.slider:after {
    width: 100%;
    height: 240px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1.0;
	background: -moz-linear-gradient(bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 20%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(bottom rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 20%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 20%, rgba(255,255,255,0) 100%);
}
.header_top .slider img {
	width:100%;
	height: 990px;
	margin:auto;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	transition: 10s ease-out;
	}
.header_top .slider .slick-active img {
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	}
/*===============scrolldown===============*/
.scrolldown {
  /*描画位置*/
  position: absolute;
  right: 50%;
  bottom:100px;
  transform: translateX(720px);
  width:160px;
  height: 160px;
  z-index:2;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border-radius: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 3s ease-in-out infinite;
}
@media all and (min-width: 768px) and (max-width: 1460px) {
.scrolldown {
  transform: translateX(620px);
border: 1px solid #fff; /* outlineではなくborderに置き換える */
    outline: none;
}
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 100px;
  }
  50% {
    bottom: 110px;
  }
  100% {
    bottom: 100px;
  }
}
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  /*テキストの形状*/
  font-family: "Antonio", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight:300;
  letter-spacing: 0.03em;
  line-height:20px;
  /*縦書き設定*/
  /*-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;*/
  white-space:nowrap;
  -webkit-text-size-adjust: none;
}
/* 矢印の描写 */
.scrolldown:before {
    content: "";
    position: absolute;
    background: url(../images/scrolldown.svg) no-repeat 0 0;
    background-size: contain;
    bottom: 20px;
	left:50%;
	transform: translateX(-50%);
    width: 11px;
    height: 40px;
}
/*.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 1px;
  height: 40px;
  background:#fff;
}
.scrolldown span:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translate(-50%,0);
  position: absolute;
  bottom: -57px;
  left: 50%;
  margin: auto;
}*/
/*.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-880px);
  height: 460px;
  z-index:2;
}
.scrollarrow{
  position: relative;
  height: 460px;
}
.scrollarrow::before{
  width: 1px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 49%;
  background-color: #c2c9d4;
}
.scrolldown span {
  font-family: 'Cinzel', serif;
  height: 460px;
  color: #002051;
  font-size: 16px;
  font-weight:500;
  writing-mode: vertical-rl;
  white-space:nowrap!important;
}
.scrolldown span:after {
  width: 1px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 49%;
  background-color: #c2c9d4;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 160px;
  left: 49%;
  width: 1px;
  height: 300px;
  background: #0e2e5e;
  animation: pathmove 2.5s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 160px;
    opacity: 0;
  }
  30% {
    height: 200px;
    opacity: 1;
  }
  100% {
    height: 300px;
    top: 460px;
    opacity: 1;
  }
}*/
a.anchor,
.anchor{
    display: block;
    padding-top: 120px!important;
    margin-top: -120px!important;
　  z-index:-1;
}
/*===アンカー上部に余白を持たせたい場合===*/
a.anchor.anchor_space,
.anchor.anchor_space{
    padding-top: 200px!important;
    margin-top: -200px!important;
}
}
@media  print, screen and (max-width: 767px) {
.header_top {
	width:100%;
	max-width:1920px;
	height:auto;
	margin:0 auto;
	padding:0;
	position: relative;
    background: #1f4c89;
	}
.header_top:after {
    content: "";
    position: absolute;
    background: url(../images/bg_header_point_sp.svg) no-repeat 0 bottom;
    background-size: contain;
    bottom: 59px;
	left:50%;
	transform: translateX(-50%);
    width: 860px;
    height: 50%;
    z-index: 1;
}
@media  print, screen and (max-width: 360px) {
.header_top:after {
    width: 800px;
}
}
.header_top .fr{
	margin-top:-60px;
	position:relative;
	}
.header_top .heading{
	width:100%;
    height: 100%;
	position: absolute;
	top:0;
    left: 0;
	z-index:10;
	}
.header_top h2{
	width:auto;
    height: 58%;
	position:absolute;
	top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
	padding: 0;
	z-index:10;
	display:inline-block;
	text-align:right;
}
.header_top h2 img{
	width:auto;
    height: 100%;
}
.header_top h2 .text{
	font-size: 26px;
    font-weight:600;
    color: #333;
	line-height:1.0;
	letter-spacing: 0.07em;
	background:#fff;
	z-index:10;
	white-space:nowrap;
	padding:6px 8px 9px 10px;
	margin-bottom:10px;
	display:inline-block;
}
@media  print, screen and (max-width: 360px) {
.header_top h2 .text{
	font-size: 24px;
}
}
@media  print, screen and (max-width: 320px) {
.header_top h2 .text{
	font-size: 23px;
	margin-bottom:8px;
}
}
.header_top h3{
	width: calc(100% - 30px);
	position: relative;
	padding:6px 8px 9px 10px;
	box-sizing:border-box;
	z-index:10;
	line-height:1.3;
	display:inline-block;
	background: -webkit-linear-gradient(left, #00cca3 0, #29d1ff 100%);
	text-align:left;
}
@media  print, screen and (max-width: 393px) {
.header_top h3{
	width: calc(100% - 20px);
	}
}
@media  print, screen and (max-width: 389px) {
.header_top h3{
	width: calc(100% - 30px);
	}
}
.header_top h3 .text{
	font-size: 13px;
    font-weight:500;
    color: #fff;
	line-height:1.3;
	letter-spacing: 0.03em;
	z-index:10;
	padding:0;
	margin-bottom:0;
	display:inline;
}
.header_top h3 br{
	display:none;
	}
 .header_top .point{
     display: none;
}
 .header_top .point img{
	width:100%;
     height: auto;
}
.header_top .mainvisual.slider{
	background:none;
	}
.header_top .mainvisual.slider:after {
    width: 100%;
    height: 30%;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1.0;
	background: -moz-linear-gradient(bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 20%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(bottom rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 20%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 20%, rgba(255,255,255,0) 100%);
}
.header_top .slider img {
	width:100%;
	height: auto;
	margin:auto;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	transition: 15s ease-out;
	}
.header_top .slider .slick-active img {
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	}
.header_top .mainvisual.slider{
	top: 0px;
	}
.arrowWrap_sp{
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  z-index:2;
  padding-top: 30px;
}
.arrowWrap_sp a {
  font-family: "Antonio", sans-serif;
  font-size: 12px;
  font-weight:300;
  text-decoration: none;
  color:#fff;
}
.arrowWrap_sp a.disabled{
    pointer-events: none;
}
.arrowWrap_sp a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  border: 1px solid rgba(255,255,255,1.0);
  border-radius: 100%;
  box-sizing: border-box;
}
.arrowWrap_sp a span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 8px;
  height: 8px;
  margin: -6px 0 0 -4px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.arrowWrap_sp a span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 26px;
  height: 26px;
  box-shadow: 0 0 0 0 rgba(255,255,255,.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: sdb 3s infinite;
  animation: sdb 3s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 16px rgba(255,255,255,.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 16px rgba(255,255,255,.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
a.anchor,
.anchor{
    display: block;
    padding-top: 60px!important;
    margin-top: -60px!important;
　  z-index:-1;
}
/*===アンカー上部に余白を持たせたい場合===*/
a.anchor.anchor_space,
.anchor.anchor_space{
    padding-top: 90px!important;
    margin-top: -90px!important;
}
}

/*================================company_area================================*/
#company_area{
	overflow: hidden;
	width:100%;
	max-width:1920px;
	margin: 0 auto;
	padding:0;
	box-sizing:border-box;
	height:1540px;
	clear:both;
	position:relative;
	background:rgba(31,76,137,1.0) url(../images/bg_company.jpg) no-repeat center bottom;
	z-index:1;
	}
#company_area:before {
    width: 100%;
    height: 1310px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1.0;
	background: -moz-linear-gradient(top, rgba(31,76,137,1.0) 0%, rgba(31,76,137,1.0) 65%, rgba(31,76,137,0.8) 70%, rgba(31,76,137,0.2) 80%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top, rgba(31,76,137,1.0) 0%, rgba(31,76,137,1.0) 65%, rgba(31,76,137,0.8) 70%, rgba(31,76,137,0.2) 80%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(31,76,137,1.0) 0%, rgba(31,76,137,1.0) 65%, rgba(31,76,137,0.7) 70%, rgba(31,76,137,0.2) 80%, rgba(255,255,255,0) 100%);
    z-index: 0;
}
#company_area .inner {
	width:1200px;
	height:auto;
	padding: 170px 0 0;
	box-sizing:border-box;
	margin:0 auto;
	position:relative;
	text-align:center;
	z-index:1;
}
#company_area .company_inner {
	width:545px;
	height:auto;
	padding: 0;
	box-sizing:border-box;
	margin:0 auto;
	position:relative;
	text-align:center;
	z-index:1;
}
#company_area h2{
	position: relative;
	padding:0;
	margin-bottom: 114px;
	font-size:30px;
	font-weight:700;
    letter-spacing: 0.1em;
	color: #fff;
	line-height: 1.0;
	display: inline-block;
}
#company_area h2::after {
  content: '';
  width: 100%;
  height: 4px;
  display: inline-block;
  background-color: #ffda2f;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 50%)
}
#company_area h2 a{
	color: #fff;
	text-decoration:none;
	line-height:1.0;
	display: block;
}
#company_area h2 a:hover{
    opacity: 0.5;
	transition-duration: 0.7s;
}
#company_area h2 br{
	display:none;
}
#company_area .title_en  {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    top: 63px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: -1;
}
#company_area h3 {
    margin-bottom: 56px;
    padding: 0;
	color: #92bfee;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.6;
	letter-spacing: 0.12em;
    text-align: left;
}
#company_area h3 span{
    position: relative;
    left: -56px;
}
#company_area p {
	width:auto;
    margin-bottom: 42px;
    padding: 0;
	color: #fff;
    font-weight: 500;
    font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 2.0;
    text-align: left;
}
#company_area ul.company_list{
    width: 100%;
	position:relative;
	margin:0 auto 50px;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
    gap: 5px;
}
#company_area ul.company_list li{
    width: calc((100% - 5px) / 2);
	position: relative;
	margin:0;
	display:flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	text-align:left;
	}
#company_area ul.company_list li a{
	display:block;
	width: 100%;
	text-decoration: none;
    color: #1a2636;
	font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    padding: 0 30px;
    box-sizing: border-box;
    line-height: 60px;
	position:relative;
	background:#fff url(../images/arrow_company_lis.svg) no-repeat right center;
    background-size:auto;
    border-radius: 5px;
}
#company_area ul.company_list li a:hover {
    opacity: 0.7;
    transition-duration: 0.7s;
}
#company_area .image_wrap01{
    z-index: 1;
    position: absolute;
    top: 540px;
    left: 50%;
	transform: translateX(-680px);
}
#company_area .image_wrap02{
    z-index: 0;
    position: absolute;
    top: 150px;
    left: 50%;
	transform: translateX(-930px);
}
#company_area .image_wrap03{
    z-index: 0;
    position: absolute;
    top: 188px;
    right: 50%;
	transform: translateX(900px);
}
#company_area .image_wrap01 img,
#company_area .image_wrap02 img,
#company_area .image_wrap03 img{
    width: auto;
}
#company_area .btn_more {
    width: 160px;
    min-width: auto;
    height: 160px;
	margin:0 auto;
}
#company_area .btn_more a{
    width: 160px;
    height: 160px;
	line-height:1.0;
	padding: 0 0 10px;
	position:relative;
	background: #3ebbba;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius:50%;
}
#company_area .btn_more a:after {
	width: 40px;
	height: 11px;
	display: block;
	content: "";
	position: absolute;
	top: 70%;
	right: 50%;
	transform: translateX(50%);
	background: url(../images/arrow_more_top.svg) no-repeat top left;
	background-size: contain;
}
@media  print, screen and (max-width: 767px) {
#company_area{
	overflow: hidden;
	width:100%;
	padding:0;
	margin:0;
	height:auto;
	background:rgba(31,76,137,1.0) ;
	}
#company_area:before {
    display: none;
}
#company_area .inner {
    width: calc(100% - 40px);
	height:auto;
    padding: 36px 0 0;
    box-sizing: border-box;
	font-size:0;
}
/*@media  print, screen and (max-width: 320px) {
#company_area .inner {
    width: calc(100% - 20px);
}
}*/
#company_area .company_inner {
	width:100%;
	height:auto;
}
#company_area h2{
	margin-bottom: 40px;
	font-size:18px;
    letter-spacing: 0.1em;
}
#company_area h2::after {
  height: 3px;
  bottom: -12px;
}
#company_area h2 br{
	display:inherit;
}
#company_area .title_en  {
    width: auto;
    height: 100px;
    top: 0px;
}
#company_area .title_en img {
    width: auto;
    height: 100%;
}
#company_area h3 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1.6;
	letter-spacing: 0.1em;
    text-align: center;
}
#company_area h3 span{
    left: 0;
}
#company_area p {
    width: 100%;
	margin-bottom: 25px;
    font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}
#company_area ul.company_list{
    width: calc(100% - 40px);
	margin:0 auto 25px;
}
@media  print, screen and (max-width: 320px) {
#company_area ul.company_list{
    width: calc(100% - 30px);
}
}
#company_area ul.company_list li{
    width: 100%;
}
#company_area ul.company_list li a{
    font-weight: 500;
    font-size: 16px;
    padding: 0 20px;
    line-height: 48px;
	background:#fff url(../images/arrow_company_lis.svg) no-repeat right center;
    background-size:auto 100%;
    border-radius: 5px;
}
#company_area .image_wrap01,
#company_area .image_wrap02,
#company_area .image_wrap03{
	display:none;
}
#company_area .image_wrap_sp{
    margin: -100px calc(50% - 50vw) 0;
	width: 100vw;
    position: relative;
}
#company_area .image_wrap_sp:before {
    width: 100%;
    height: 24%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1.0;
	background: -moz-linear-gradient(top, rgba(31,76,137,1.0) 0%, rgba(31,76,137,0.9) 10%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top, rgba(31,76,137,1.0) 0%, rgba(31,76,137,0.9) 10%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(31,76,137,1.0) 0%, rgba(31,76,137,0.9) 10%, rgba(255,255,255,0) 100%);
    z-index: 0;
}
#company_area .image_wrap_sp img{
    width: 100%;
    height: auto;
}
#company_area .btn_more {
    width: 120px;
    height: 120px;
    margin:0 auto;
}
#company_area .btn_more a{
    width: 120px;
    height: 120px;
	padding: 0 0 10px;
}
@media  print, screen and (max-width: 320px) {
#company_area .btn_more {
    width: 110px;
    height: 110px;
}
#company_area .btn_more a{
    width: 110px;
    height: 110px;
}
}
#company_area .btn_more a:after {
	top: 68%;
	right: 50%;
	transform: translateX(50%);
}
}

/*================================business_area================================*/
#business_area{
	overflow: hidden;
	width:100%;
	max-width:1920px;
	margin: -84px auto 0;
	padding:0;
	box-sizing:border-box;
	height:2384px;
	clear:both;
	position:relative;
	z-index:1;
	}
#business_area:before {
    width: 100%;
    height: calc(100% - 84px);
    content: '';
    display: block;
    position: absolute;
    top: 84px;
    left: 0;
    opacity: 1.0;
    background:#f6f9fb;
    z-index: -1;
}
#business_area:after {
    content: "";
    position: absolute;
    background: url(../images/bg_business.svg) no-repeat center top;
    background-size: contain;
    top: 0;
	left:50%;
	transform: translateX(-50%);
    width: 1920px;
    height: 1193px;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    z-index: 0;
}
#business_area .inner {
	width:1200px;
	height:auto;
	padding: 300px 0 0;
	box-sizing:border-box;
	margin:0 auto;
	position:relative;
	text-align:center;
	z-index:1;
}
#business_area h2{
	position: relative;
	padding:0;
	margin-bottom:90px;
	font-size:30px;
	font-weight:700;
    letter-spacing: 0.1em;
	color: #1f4c89;
	line-height: 1.0;
	display: inline-block;
}
#business_area h2::after {
  content: '';
  width: 100%;
  height: 4px;
  display: inline-block;
  background-color: #ffda2f;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 50%)
}
#business_area h2 a{
	color: #1f4c89;
	text-decoration:none;
	line-height:1.0;
	display: block;
}
#business_area h2 a:hover{
    opacity: 0.5;
	transition-duration: 0.7s;
}
#business_area h2 br{
	display:none;
}
#business_area .title_en  {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    top: 108px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: -1;
}
#business_area h3 {
    margin-bottom: 56px;
    padding: 0;
	color: #1f4c89;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.6;
	letter-spacing: 0.12em;
    text-align: left;
}
#business_area p {
	width:840px;
    margin-bottom: 80px;
    padding: 0;
	color: #1a2636;
    font-weight: 500;
    font-size: 18px;
	letter-spacing: 0.08em;
	line-height: 2.0;
    text-align: left;
}
#business_area ul {
    padding: 0;
	margin:0 auto;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	width: 1200px;
	gap: 40px;
	position: relative;
	z-index: -1;
}
#business_area li{
	width: calc((100% - 40px) / 2);
	height:680px;
	position:relative;
	overflow:visible;
}
#business_area li.first:before {
    content: "";
    position: absolute;
    background: url(../images/bg_business_point01.svg) no-repeat 0 0;
    background-size: auto;
    bottom: -60px;
	left: 50%;
    transform: translateX(-50%);
    width: 580px;
    height: 60px;
    z-index: -1;
}
#business_area li.second:before {
    content: "";
    position: absolute;
    background: url(../images/bg_business_point02.svg) no-repeat 0 0;
    background-size: auto;
    bottom: -60px;
	left: 50%;
    transform: translateX(-50%);
    width: 580px;
    height: 60px;
    z-index: -1;
}
#business_area li a{
	width:100%;
    height: 100%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	padding: 0;
	box-sizing:border-box;
    background: none;
	text-align:left;
	}
#business_area li a:hover{
    opacity: 0.6;
	transition-duration: 0.7s;
	}
#business_area li .inner_text{
	width:100%;
    height: 100%;
	margin:0;
	padding:0;
	box-sizing:border-box;
	position: absolute;
	bottom: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index:0;
	display:flex;
	align-items: flex-start;
    justify-content: center;
	}
#business_area h4{
    writing-mode: vertical-rl;
    padding: 108px 0 0;
	margin:0;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.0;
    letter-spacing: 0.1em;
	text-align:center;
	white-space:nowrap;
}
#business_area .title_en_list  {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    top: 188px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: -1;
}
#business_area li .scale_wrap{
	margin:0;
	padding:0;
	position: relative;
	z-index:-1;
	}
#business_area li .scale_wrap img{
	width:auto;
	height:auto;
	}
#business_area .btn_more_list {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
#business_area .btn_more {
    width: 160px;
    min-width: auto;
    height: 160px;
	margin:0 auto;
    position: absolute;
    top: 604px;
    right: 0;
}
#business_area .btn_more a{
    width: 160px;
    height: 160px;
	line-height:1.0;
	padding: 0 0 10px;
	position:relative;
	background: #3ebbba;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius:50%;
}
#business_area .btn_more a:after {
	width: 40px;
	height: 11px;
	display: block;
	content: "";
	position: absolute;
	top: 70%;
	right: 50%;
	transform: translateX(50%);
	background: url(../images/arrow_more_top.svg) no-repeat top left;
	background-size: contain;
}
@media  print, screen and (max-width: 767px) {
#business_area{
	margin: -30px auto 0;
	height:auto;
}
#business_area:before {
    height: calc(100% - 30px);
    top: 30px;
}
#business_area:after {
    background: url(../images/bg_business.svg) no-repeat center top;
    background-size: contain;
    width: 120%;
    height: 800px;
}
#business_area .inner {
    width: calc(100% - 40px);
    padding: 120px 0 20px;
}
/*@media  print, screen and (max-width: 320px) {
#business_area .inner {
    width: calc(100% - 20px);
}
}*/
#business_area h2{
	margin-bottom: 40px;
	font-size:18px;
    letter-spacing: 0.1em;
}
#business_area h2::after {
  height: 3px;
  bottom: -12px;
}
#business_area h2 br{
	display:inherit;
}
#business_area .title_en  {
    width: auto;
    height:94px;
    top: 40px;
}
#business_area .title_en img {
    width: auto;
    height: 100%;
}
#business_area h3 {
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 1.6;
	letter-spacing: 0.08em;
    text-align: left;
}
#business_area h3 br{
	display:none;
}
#business_area p {
    width: 100%;
	margin-bottom: 25px;
    font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}
#business_area ul {
    width: 84%;
	margin:0 auto 45px;
	gap: 40px;
}
#business_area li{
	width: 100%;
	height:auto;
}
#business_area li.first:before {
    background: url(../images/bg_business_point01.svg) no-repeat 0 0;
    background-size: 100% auto;
    bottom: -25px;
    width: 100%;
    height: 25px;
}
#business_area li.second:before {
    background: url(../images/bg_business_point02.svg) no-repeat 0 0;
    background-size: 100% auto;
    bottom: -25px;
    width: 100%;
    height: 25px;
}
#business_area li a{
	width:100%;
    height: 100%;
}
#business_area li .inner_text{
	width:100%;
    height: 100%;
}
#business_area h4{
    padding: 16% 0 0;
    font-size: 25px;
    letter-spacing: 0.1em;
}
@media  print, screen and (max-width: 320px) {
#business_area h4{
    font-size: 25px;
}
}
#business_area .title_en_list  {
    width: 70%;
    top: 28%;
}
#business_area .title_en_list img {
    width: 100%;
    height: auto;
}
#business_area li .scale_wrap{
	margin:0;
	padding:0;
	position: relative;
	}
#business_area li .scale_wrap img{
	width:100%;
	height:auto;
}
#business_area .btn_more_list {
    width: 70px;
    height: 70px;
    bottom: 36px;
}
@media  print, screen and (max-width: 320px) {
#business_area .btn_more_list {
    width: 60px;
    height: 60px;
    bottom: 30px;
}
}
#business_area .btn_more_list img{
	width:100%;
	height:auto;
}
#business_area .btn_more {
    width: 120px;
    height: 120px;
    position: relative;
    top: auto;
    right: auto;
}
#business_area .btn_more a{
    width: 120px;
    height: 120px;
	padding: 0 0 10px;
}
@media  print, screen and (max-width: 320px) {
#business_area .btn_more {
    width: 110px;
    height: 110px;
}
#business_area .btn_more a{
    width: 110px;
    height: 110px;
}
}
#business_area .btn_more a:after {
	top: 68%;
	right: 50%;
	transform: translateX(50%);
}
}

/*================================csr_area================================*/
#csr_area{
	overflow: hidden;
	width:100%;
	max-width:1920px;
	margin: -530px auto 0;
	padding:0;
	box-sizing:border-box;
	height:800px;
	clear:both;
	position:relative;
	background:url(../images/bg_csr.jpg) no-repeat calc(50% - 90px) 0;
	z-index:2;
	}
#csr_area .inner {
	width:1200px;
	height:auto;
	padding: 98px 0 0;
	box-sizing:border-box;
	margin:0 auto;
	position:relative;
	z-index:1;
}
#csr_area .csr_inner {
	width:600px;
	height:auto;
	padding: 164px 0 0;
	box-sizing:border-box;
	margin:0 0 0 600px;
	position:relative;
	text-align:center;
	z-index:1;
}
#csr_area h2{
	position: relative;
	padding:0;
	margin-bottom: 60px;
	font-size:30px;
	font-weight:700;
    letter-spacing: 0.1em;
	color: #fff;
	line-height: 1.0;
	display: inline-block;
}
#csr_area h2::after {
  content: '';
  width: 100%;
  height: 4px;
  display: inline-block;
  background-color: #ffda2f;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 50%)
}
#csr_area h2 a{
	color: #fff;
	text-decoration:none;
	line-height:1.0;
	display: block;
}
#csr_area h2 a:hover{
    opacity: 0.5;
	transition-duration: 0.7s;
}
#csr_area h2 br{
	display:none;
}
#csr_area .title_en  {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: -1;
}
#csr_area p {
	width:auto;
    margin-bottom: 60px;
    padding: 0;
	color: #fff;
    font-weight: 500;
    font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 2.0;
    text-align: left;
}
#csr_area .image_wrap01{
    z-index: 1;
    position: absolute;
    top: 0;
    left: 50%;
	transform: translateX(-840px);
}
#csr_area .image_wrap01 img{
    width: auto;
}
#csr_area .btn_more {
    width: 160px;
    min-width: auto;
    height: 160px;
	margin:0 auto;
}
#csr_area .btn_more a{
    width: 160px;
    height: 160px;
	line-height:1.0;
	padding: 0 0 10px;
	position:relative;
	background: #1f4c89;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius:50%;
}
#csr_area .btn_more a:after {
	width: 40px;
	height: 11px;
	display: block;
	content: "";
	position: absolute;
	top: 70%;
	right: 50%;
	transform: translateX(50%);
	background: url(../images/arrow_more_top.svg) no-repeat top left;
	background-size: contain;
}
@media  print, screen and (max-width: 767px) {
#csr_area{
	margin:0 auto;
	height:auto;
	background: url(../images/bg_csr_sp.jpg) no-repeat left bottom;
    background-size: cover;
	}
#csr_area .inner {
    width: calc(100% - 40px);
    padding: 36px 0 0;
}
/*@media  print, screen and (max-width: 320px) {
#csr_area .inner {
    width: calc(100% - 20px);
}
}*/
#csr_area .csr_inner {
	width:100%;
	height:auto;
    padding: 80px 0 0;
    margin:0 auto;
}
#csr_area h2{
	margin-bottom: 40px;
	font-size:18px;
    letter-spacing: 0.1em;
}
#csr_area h2::after {
  height: 3px;
  bottom: -12px;
}
#csr_area h2 br{
	display:inherit;
}
#csr_area .title_en  {
    width: auto;
    height: 100px;
    top: 0px;
}
#csr_area .title_en img {
    width: auto;
    height: 100%;
}
#csr_area p {
    width: 100%;
	margin-bottom: 25px;
    font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}
#csr_area .image_wrap01{
    width: 94%;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}
#csr_area .image_wrap01 img{
    width: 100%;
    height: auto;
}
#csr_area .btn_more {
    width: 120px;
    height: 120px;
    margin:0 auto 25px;
}
#csr_area .btn_more a{
    width: 120px;
    height: 120px;
	padding: 0 0 10px;
}
@media  print, screen and (max-width: 320px) {
#csr_area .btn_more {
    width: 110px;
    height: 110px;
}
#csr_area .btn_more a{
    width: 110px;
    height: 110px;
}
}
#csr_area .btn_more a:after {
	top: 68%;
	right: 50%;
	transform: translateX(50%);
}
}

/*================================appeal_area================================*/
#appeal_area{
	overflow: hidden;
	width:100%;
	max-width:1920px;
	margin: -270px auto 0;
	padding:0;
	box-sizing:border-box;
	height:auto;
	clear:both;
	position:relative;
	background:url(../images/bg_appeal.jpg) no-repeat center top;
	z-index:1;
	}
#appeal_area .inner {
	width:100%;
	height:auto;
	padding: 0 0 220px;
	box-sizing:border-box;
	margin:1181px auto 0;
	position:relative;
	text-align:center;
    background: linear-gradient(to bottom, #1f4c89 0, #0e366d 100%);
    background: -webkit-linear-gradient(top, #1f4c89 0, #0e366d 100%);
}
#appeal_area .inner:after {
    content: "";
    position: absolute;
    background: url(../images/bg_appeal_point.png) no-repeat center bottom;
    background-size: contain;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    height: 1118px;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
#appeal_area .appeal_inner {
	width:1200px;
	height:auto;
	padding: 0;
	box-sizing:border-box;
	margin:0 auto;
	position:relative;
	text-align:center;
    top: -75px;
	z-index:1;
}
#appeal_area .appeal_text {
	width:1080px;
	height:auto;
	margin:0 auto 200px;
    display: flex;
    align-items: center;
    gap:125px;
}
#appeal_area h2{
    writing-mode: vertical-rl;
	position: relative;
	padding:0 28px;
	margin: 0;
	font-size:40px;
	font-weight:700;
    letter-spacing: 0.1em;
	color: #fff;
	line-height: 1.0;
	display: inline-block;
}
#appeal_area h2 em{
	color: #ffda2f;
}
#appeal_area h2::before {
  content: '';
  width: 2px;
  height: 100%;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
#appeal_area h2::after {
  content: '';
  width: 2px;
  height: 100%;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
#appeal_area h2 a{
	color: #fff;
	text-decoration:none;
	line-height:1.0;
	display: block;
}
#appeal_area h2 a:hover{
    opacity: 0.5;
	transition-duration: 0.7s;
}
#appeal_area h2 br{
	display:none;
}
#appeal_area .title_en  {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    top: -443px;
    left: 0;
    /*transform: translate(-960px,0);*/
    z-index: 1;
}
#appeal_area .btn_more_list {
    display: none;
}


@media all and (min-width: 768px) and (max-width: 1320px) {
#appeal_area .title_en  {
    opacity: 0.5;
}
}
#appeal_area p {
	width:auto;
    margin-bottom: 0;
    padding: 0;
	color: #fff;
    font-weight: 500;
    font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 2.0;
    text-align: left;
}
#appeal_area ul{
    padding: 0;
	margin:0;
    width: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	gap: 60px;
}
#appeal_area li{
    width: calc((100% - 120px) / 3);
	position: relative;
	margin:0;
	box-sizing: border-box;
	background: #fff;
	}
#appeal_area li a{
	display:block;
	text-decoration: none;
	}
#appeal_area li a:hover{
    opacity: 0.6;
	transition-duration: 0.7s;
	}
#appeal_area li .scale_wrap{
	width:360px;
	margin:0;
	padding:0;
	position: relative;
	z-index:1;
	}
#appeal_area li .inner_text {
	width:360px;
	height:480px;
	margin:0;
	padding:0;
	box-sizing:border-box;
	position: absolute;
	top:0;
	left:0;
	display: flex;
    justify-content: flex-end;
	flex-direction: column;
	z-index:2;
	text-align:center;
}
#appeal_area .number{
    font-size: 0;
	display:block;
	position:absolute;
    top: -48px;
    left: -20px;
}
#appeal_area .number img{
    width: auto;
    height: auto;
}
#appeal_area .number:after {
    content: '';
    display: block;
    position: absolute;
	bottom: 23px;
    left: 50%;
    transform: translate(-50%,0);
    width: 100%;
    height: 2px;
    background-color:#ffda2f;
}
#appeal_area .number span{
    font-family: "Antonio", sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
	letter-spacing: 0;
	margin-top: 22px;
    line-height: 1.0;
    text-align: left;
	display:block;
}
#appeal_area h3{
	margin-bottom:48px;
    text-align: left;
    position: relative;
    left: -20px;
}
#appeal_area h3 span{
	font-size:30px;
	font-weight:700;
	color:#1f4c89;
	line-height: 48px;
	letter-spacing: 0.05em;
    background: #fff;
    outline: 1px solid #1f4c89;
    outline-offset: -1px;
    padding: 0 14px 4px;
    display: inline-block;
}
#appeal_area h3 span:last-child{
    margin-top: -1px;
}
#appeal_area .btn_more_list {
	width:100%;
	font-family: "Antonio", sans-serif;
	color:#fff;
	font-size:16px;
	font-weight:400;
	letter-spacing: 0;
	line-height:1.0;
	position: absolute;
    bottom: -43px;
	text-align:right;
}
#appeal_area .btn_more_list:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 80px;
    display: inline-block;
    width: calc(100% - 80px);
    height: 1px;
    transform: translateY(1px);
    background: #5999e8;
}
@media  print, screen and (max-width: 767px) {
#appeal_area{
	width:100%;
	padding:0;
	margin:0 auto;
	background:none;
	}
#appeal_area .inner {
    width: 100%;
	height:auto;
    padding: 36px 0 0;
    margin:0 auto;
	font-size:0;
}
#appeal_area .inner:after {
    background: url(../images/bg_appeal_point.png) no-repeat right bottom;
    background-size: contain;
    left: auto;
    right: -45%;
    transform: none;
    width: 400%;
    height: 1000px;
}
#appeal_area .appeal_inner {
	width: calc(100% - 20px);
	height:auto;
    top: -80px;
}
#appeal_area .appeal_text {
	width: calc(100% - 20px);
	height:auto;
	margin:0 auto 30px;
    display: block;
}
#appeal_area h2{
    padding:0 18px;
	margin-bottom: 20px;
	font-size:20px;
    letter-spacing: 0.1em;
}
#appeal_area h2::before {
    width: 2px;
}
#appeal_area h2::after {
    width: 2px;
}
#appeal_area h2 br{
	display:inherit;
}
#appeal_area .title_en  {
    width: 100px;
    height: auto;
    top: -178px;
    opacity: 0.8;
}
#appeal_area .title_en img {
    width: 100%;
    height: auto;
}
#appeal_area p {
    width: 100%;
	margin-bottom: 45px;
    font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}
#appeal_area ul{
	clear:both;
    gap: 60px;
	justify-content: center;
}
#appeal_area li{
    width: 70%;
	margin:0;
}
#appeal_area li .scale_wrap{
	width:100%;
	}
#appeal_area li .scale_wrap img{
	width:100%;
	height:auto;
    object-fit: cover;
    aspect-ratio: 5 / 6;
}
#appeal_area li .inner_text {
	width:100%;
	height:100%;
}
#appeal_area .number{
    width: 60px;
    top: -23px;
    left: -20px;
}
#appeal_area .number img{
    width: 60px;
    height: auto;
}
#appeal_area .number:after {
	bottom: 18px;
}
#appeal_area .number span{
    font-size: 14px;
	margin-top: 16px;
}
#appeal_area h3{
	font-size:18px;
	margin-bottom:30px;
}
@media  print, screen and (max-width: 359px) {
#appeal_area h3{
	font-size:17px;
}
}
#appeal_area h3 span{
	font-size:20px;
	line-height: 36px;
    padding: 0 12px 2px;
}
@media  print, screen and (max-width: 359px) {
#appeal_area h3 span{
	font-size:19px;
}
}
#appeal_area .btn_more_list {
	font-size:14px;
    bottom: -24px;
}
#appeal_area .btn_more_list:after {
    right: 64px;
    width: calc(100% - 64px);
}
#appeal_area .image_wrap{
	width: 100%;
    position: relative;
    display: flex!important;
    justify-content: center;
}
#appeal_area .image_wrap img{
    width: 140%;
    height: auto;
}
}

/*================================staff_area================================*/
#staff_area{
	overflow: hidden;
	width:100%;
	max-width:1920px;
	margin: 0 auto;
	padding:0;
	box-sizing:border-box;
	height:1180px;
	clear:both;
	position:relative;
	background:#f6f9fd;
	z-index:1;
	}
#staff_area:after {
    content: "";
    position: absolute;
    background: url(../images/bg_staff.svg) no-repeat center top;
    background-size: contain;
    top: 77px;
    left: 50%;
    transform: translateX(-960px);
    width: 1920px;
    height: 1570px;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    z-index: -1;
}
#staff_area .inner {
	width:1200px;
	height:auto;
	padding: 252px 0 0;
	box-sizing:border-box;
	margin:0 auto;
	position:relative;
	text-align:center;
	z-index:1;
}
#staff_area .staff_inner {
	width:1200px;
	height:auto;
	padding: 0;
	box-sizing:border-box;
	margin:0 auto 170px;
	position:relative;
	text-align:center;
    display: flex;
    align-items: center;
    gap: 220px;
	z-index:1;
}
#staff_area h2{
	position: relative;
	padding:0;
	margin: 0 0 0 156px;;
	font-size:30px;
	font-weight:700;
    letter-spacing: 0.1em;
	color: #1f4c89;
	line-height: 1.0;
	display: inline-block;
}
#staff_area h2::after {
  content: '';
  width: 100%;
  height: 4px;
  display: inline-block;
  background-color: #ffda2f;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 50%)
}
#staff_area h2 a{
	color: #1f4c89;
	text-decoration:none;
	line-height:1.0;
	display: block;
}
#staff_area h2 a:hover{
    opacity: 0.5;
	transition-duration: 0.7s;
}
#staff_area h2 br{
	display:none;
}
#staff_area .title_en  {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    top: 152px;
    left: 0;
    z-index: -1;
}
#staff_area p {
	width:auto;
    margin-bottom: 0;
    padding: 0;
	color: #1a2636;
    font-weight: 500;
    font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 2.0;
    text-align: left;
}
#staff_area h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1f4c89;
	padding:0;
	margin:0;
	line-height: 1.0;
	text-align:center;
}
#staff_area a{
	text-decoration: none;
}
#staff_area .scale_wrap{
	position:relative;
    margin-bottom: 26px;
}
#staff_area li a img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    transition-duration: 0.5s;
}
#staff_area li a:hover{
    opacity: 0.6;
	transition-duration: 0.7s;
}
#staff_area .btn_more {
    width: 160px;
    min-width: auto;
    height: 160px;
	margin:0 auto;
    position: absolute;
    top: 200px;
    right: 50%;
    transform: translateX(600px);
    z-index: 99;
}
#staff_area .btn_more a{
    width: 160px;
    height: 160px;
	line-height:1.0;
	padding: 0 0 10px;
	position:relative;
	background: #92bfee;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius:50%;
}
#staff_area .btn_more a:after {
	width: 40px;
	height: 11px;
	display: block;
	content: "";
	position: absolute;
	top: 70%;
	right: 50%;
	transform: translateX(50%);
	background: url(../images/arrow_more_top.svg) no-repeat top left;
	background-size: contain;
}
@media  print, screen and (max-width: 767px) {
#staff_area{
	width:100%;
	margin:0;
    padding: 0 0 0px;
	height:auto;
    text-align: center;
	}
#staff_area:after {
    background: url(../images/bg_staff.svg) no-repeat center top;
    background-size: contain;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 800px;
}
#staff_area .inner {
    width: calc(100% - 40px);
	height:auto;
    padding: 70px 0 0;
    box-sizing: border-box;
	font-size:0;
}
#staff_area .staff_inner {
	width:100%;
	height:auto;
    margin:0 auto;
    display: block;
    gap: 0;
}
#staff_area h2{
	margin: 0 0 60px;
	font-size:18px;
    letter-spacing: 0.1em;
}
#staff_area h2::after {
  height: 3px;
  bottom: -12px;
}
#staff_area h2 br{
	display:inherit;
}
#staff_area .title_en  {
    width: auto;
    height: 100px;
    top: 30px;
	left: 50%;
	transform: translateX(-50%);
}
#staff_area .title_en img {
    width: auto;
    height: 100%;
}
#staff_area p {
    width: 100%;
	margin-bottom: 25px;
    font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
    text-align: center;
}
#staff_area ul {
	width: calc(100% - 30px);
    margin: 0 auto 14px;
}
#staff_area li{
    margin-bottom: 8px;
}
#staff_area h3 {
	font-size: 16px;
}
#staff_area .scale_wrap{
    margin-bottom: 12px;
}
#staff_area li a img {
	width:171px;
	height:171px;
    display: block;
    margin: 0 auto;
}
#staff_area .btn_more {
    width: 120px;
    height: 120px;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
}
#staff_area .btn_more a{
    width: 120px;
    height: 120px;
    padding: 0 0 10px;
}
@media  print, screen and (max-width: 320px) {
#staff_area .btn_more {
    width: 110px;
    height: 110px;
}
#staff_area .btn_more a{
    width: 110px;
    height: 110px;
}
}
#staff_area .btn_more a:after {
	top: 68%;
	right: 50%;
	transform: translateX(50%);
}
}

/*================================recruit_area================================*/
#recruit_area{
	overflow: hidden;
	width:100%;
	max-width:1920px;
	margin: -225px auto 0;
	padding:0;
	box-sizing:border-box;
	height:1575px;
	clear:both;
	position:relative;
	background:url(../images/bg_recruit.png) no-repeat center top;
	z-index:2;
	}
#recruit_area .inner {
	width:1200px;
	height:auto;
	padding: 975px 0 0;
	box-sizing:border-box;
	margin:0 auto;
	position:relative;
	text-align:center;
	z-index:1;
}
#recruit_area h2{
	position: relative;
	padding:0;
	margin-bottom: 60px;
	font-size:30px;
	font-weight:700;
    letter-spacing: 0.1em;
	color: #1f4c89;
	line-height: 1.0;
	display: inline-block;
}
#recruit_area h2::after {
  content: '';
  width: 100%;
  height: 4px;
  display: inline-block;
  background-color: #ffda2f;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 50%)
}
#recruit_area h2 a{
	color: #1f4c89;
	text-decoration:none;
	line-height:1.0;
	display: block;
}
#recruit_area h2 a:hover{
    opacity: 0.5;
	transition-duration: 0.7s;
}
#recruit_area h2 br{
	display:none;
}
#recruit_area .title_en  {
    width: auto;
    height: auto;
	font-size:0;
	padding: 0;
	display:block;
    position: absolute;
    top: 780px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: -1;
}
#recruit_area p {
	width:auto;
    margin-bottom: 90px;
    padding: 0;
	color: #1a2636;
    font-weight: 500;
    font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 2.0;
    text-align: center;
}
#recruit_area ul {
    padding: 0;
	margin:0 auto;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	width: 1200px;
	gap: 45px;
	position: relative;
}
#recruit_area li{
	width: calc((100% - 90px) / 3);
	height:260px;
	position:relative;
	overflow:hidden;
    border-radius: 5px;
	}
#recruit_area li a{
	width:100%;
    height: 100%;
	display: flex;
	justify-content: center;
    align-items: center;
	flex-direction: column;
	text-decoration: none;
	padding: 0;
	box-sizing:border-box;
    background: none;
	text-align:left;
	}
#recruit_area li a:hover{
    opacity: 0.6;
	transition-duration: 0.7s;
	}
#recruit_area li a:before {
	content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
    height: 260px;
    background: -moz-linear-gradient(bottom, rgba(0, 5, 75, 0.5) 0%, rgba(0, 5, 75, 0.3) 70%, rgba(0, 54, 121, 0.3) 100%);
    background: -webkit-linear-gradient(bottom, rgba(0, 5, 75, 0.5) 0%, rgba(0, 5, 75, 0.3) 70%, rgba(0, 54, 121, 0.3) 100%);
    background: linear-gradient(to top, rgba(74, 188, 190, 0.9) 0%, rgba(74, 188, 190, 0.1) 73%, rgba(74, 188, 190, 0) 100%);
    z-index: 0;
}
#recruit_area li .inner_text{
	width:100%;
	height:100%;
	margin:0;
	padding:40px 48px;
	box-sizing:border-box;
	position: absolute;
	top: 0;
    left: 0;
	z-index:0;
	display:flex;
    align-items: flex-end;
	}
#recruit_area li .inner_text:before {
	width: 40px;
	height: 11px;
	display: block;
	content: "";
	position: absolute;
	bottom: 46px;
	right: 40px;
	background: url(../images/arrow_more_top.svg) no-repeat top left;
	background-size: contain;
}
#recruit_area h3{
    padding: 0;
	margin:0;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.0;
    letter-spacing: 0.05em;
	white-space:nowrap;
}
#recruit_area li .scale_wrap{
	margin:0;
	padding:0;
	position: relative;
	z-index:-1;
	}
#recruit_area li .scale_wrap img{
	width:auto;
	height:auto;
	}
#recruit_area .btn_more {
    width: 200px;
    min-width: auto;
    height: 200px;
	margin:0 auto;
    position: absolute;
    top: 904px;
    right: 50%;
    transform: translateX(600px);
    background: #fff;
    border-radius:50%;
}
#recruit_area .btn_more a{
    width: 200px;
    height: 200px;
    color: #3463a3;
	line-height:1.0;
    font-weight: 700;
    letter-spacing: 0.18em;
	padding: 32px 0 0;
	position:relative;
	background: #ffda2f;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius:50%;
}
#recruit_area .btn_more a:before {
	width: 62px;
	height: 60px;
	display: block;
	content: "";
	position: absolute;
	top: 26px;
	right: 50%;
	transform: translateX(50%);
	background: url(../images/arrow_more_top_crane.svg) no-repeat top left;
	background-size: contain;
}
#recruit_area .btn_more a:after {
	width: 40px;
	height: 11px;
	display: block;
	content: "";
	position: absolute;
	top: 76%;
	right: 50%;
	transform: translateX(50%);
	background: url(../images/arrow_more_top_b.svg) no-repeat top left;
	background-size: contain;
}
@media  print, screen and (max-width: 767px) {
#recruit_area{
	margin:-36px auto 0;;
	height:auto;
	background:none ;
	}
#recruit_area:before {
	content: '';
    display: block;
    position: absolute;
    top: 36px;
    left: 0;
	width: 100%;
    height: 200px;
    background: #f6f9fd;
    z-index: 0;
}  
#recruit_area .inner {
    width: calc(100% - 40px);
	height:auto;
    padding: 80px 0 20px;
    margin:-80px auto 0;
    box-sizing: border-box;
	font-size:0;
}
/*@media  print, screen and (max-width: 320px) {
#recruit_area .inner {
    width: calc(100% - 20px);
}
}*/
#recruit_area h2{
	margin-bottom: 40px;
	font-size:18px;
    letter-spacing: 0.1em;
}
#recruit_area h2::after {
  height: 3px;
  bottom: -12px;
}
#recruit_area h2 br{
	display:inherit;
}
#recruit_area .title_en  {
    width: auto;
    height: 100px;
    top: 0px;
}
#recruit_area .title_en img {
    width: auto;
    height: 100%;
}
#recruit_area p {
    width: 100%;
	margin-bottom: 25px;
    font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
    text-align: left;
}
#recruit_area ul {
    width: 78%;
	margin: 0 auto 22px;
	gap: 20px;
}
#recruit_area li{
	width: 100%;
	height:auto;
}
#recruit_area li a{
	display: flex;
	}
#recruit_area li a:before {
	width: 100%;
    height: 100%;
}
#recruit_area li .inner_text{
	padding:24px 25px;
	}
@media  print, screen and (max-width: 320px) {
#recruit_area li .inner_text{
	padding:20px 20px;
	}
}
#recruit_area li .inner_text:before {
	width: 36px;
	height: 10px;
	bottom: 30px;
	right: 25px;
}
@media  print, screen and (max-width: 320px) {
#recruit_area li .inner_text:before {
    width: 34px;
	right: 18px;
    bottom: 25px;
}
}
#recruit_area h3{
    font-size: 20px;
    line-height: 1.3;
}
@media  print, screen and (max-width: 320px) {
#recruit_area h3{
    font-size: 18px;
}
}
#recruit_area li .scale_wrap{
	margin:0;
	padding:0;
	position: relative;
	}
#recruit_area li .scale_wrap img{
	width:100%;
	height:auto;
	}
#recruit_area .btn_more {
    width: 140px;
    height: 140px;
    margin:0 auto;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
}
#recruit_area .btn_more a{
    width: 140px;
    height: 140px;
	letter-spacing: 0.10em;
	padding: 16px 0 0;
}
@media  print, screen and (max-width: 320px) {
#recruit_area .btn_more {
    width: 130px;
    height: 130px;
}
#recruit_area .btn_more a{
    width: 130px;
    height: 130px;
}
}
#recruit_area .btn_more a:before {
	width: 42px;
	height: 41px;
	top: 16px;
	background: url(../images/arrow_more_top_crane.svg) no-repeat top left;
	background-size: contain;
}
@media  print, screen and (max-width: 320px) {
#recruit_area .btn_more a:before {
	width: 40px;
	height: 39px;
}
}
#recruit_area .btn_more a:after {
	top: 74%;
	right: 50%;
	transform: translateX(50%);
}
#recruit_area .image_wrap{
	width: 100%;
    position: relative;
    display: flex!important;
    justify-content: center;
}
#recruit_area .image_wrap img{
    width: 180%;
    height: auto;
}
}