@charset "UTF-8";

/* Loading画面 */
#splash{
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #182578;
  text-align: center;
  display: none;
}
/* Loading画面中央配置 */
#splash_logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.mv {
  padding-top: 8.0rem;
}
.video-wrap {
  position: relative;
}
.video {
  display: block;
  opacity: 0.5;
}
.appeartext {      
  color: #093C7B;
  font-size: 4.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  mix-blend-mode: multiply;
}
.mv_message {
  margin-top: 13%;
  margin-left: 8%;
  position: absolute;
  z-index: 2;
}
.mv_subtitle {
  margin-top: 1.0rem;
  mix-blend-mode: multiply;
}
.rhombus__inner {
  position: relative;
}
.item {
  position: absolute;
}
.item1 {
  top: 22.0rem;
  right: 6.0rem;
  z-index: 1;
}
.item2 {
  top: 27.0rem;
  right: 8.0rem;
  z-index: 1;
}
.item3 {
  top: 32.0rem;
  right: 10.0rem;
  z-index: 1;
}
.item4 {
  top:37.0rem;
  right: 12.0rem;
  z-index: 1;
}
.item5 {
  top: 42.0rem;
  right: 14.0rem;
  z-index: 1;
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box{
	opacity: 0;
}
/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/
.fadeUpMv {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
  opacity: 0;
	transform: translateY(-100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .video{
    height: 88vh;
    max-height: 640px;
  }
  .appeartext {      
    color: #093C7B;
    font-size: 3.0rem;
  }
  .item1 {
    width: 340px;
    top: 24.0rem;
    right: 0;
  }
  .item2 {
    width: 340px;
    top: 29.0rem;
    right: 2.0rem;
  }
  .item3 {
    width: 340px;
    top: 34.0rem;
    right: 4.0rem;
  }
  .item4 {
    width: 340px;
    top: 39.0rem;
    right: 6.0rem;
  }
  .item5 {
    width: 340px;
    top: 44.0rem;
    right: 8.0rem;
  }
  .mv_subtitle{
    width: 50vw;
  }
}
@media screen and (max-width: 390px) {
  .video{
    height: 88vh;
    max-height: 610px;
  }
  .appeartext {
    font-size: 2.6rem;
  }
  .item1 {
    width: 240px;
    top: 25.0rem;
  }
  .item2 {
    width: 240px;
    top: 29.0rem;
  }
  .item3 {
    width: 240px;
    top: 34.0rem;
  }
  .item4 {
    width: 240px;
    top: 39.0rem;
  }
  .item5 {
    width: 240px;
    top: 44.0rem;
  }
  .mv_subtitle {
    width: 45vw;
    top: 26vh;
  }
}

.topService_inner {
  padding-right: 10.0rem;
  margin-top: 16.0rem;
  max-width: 1440px;
}
.topService_column {
  display: flex;
  flex-direction: row;
  background-color: #E7F6FF;
  /* 仮の数値 */
  padding: 10.0rem;
  justify-content: space-between; /* 余白を追加するために追加 */
}
.underline h2 {
  position: relative;
}
.underline h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #003F8E;
  position: absolute;
  bottom: -0.4rem;
  left: 0;
}
.topService__group {
  margin-right: 6.0vw;
}
.topService__group h2 { 
  margin-bottom: 6.2rem;
  position: relative;
}
.topService__group h2::before {
  content:'';
  position: absolute;
  background-image: url("../images/common/service.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 506px;
  height: 204px;
  top: -21.6rem;
  left: -12.2rem;
}
.topService__group h3 { 
  color: #003F8E;
  font-size: 2.1rem;
  margin-bottom: 3.6rem;
}
.topService__group p {
  margin-bottom: 3.0rem;
}
.topService__image {
  width: 120vw;
  margin: auto;
  margin-right: -28.0rem;
}
@media screen and (max-width: 1200px) {
  .topService__group h2::before {
    top: -16.0rem;
    left: 0;
    width: 528px;
    height: 128px;
  }
  .topService_column {
    flex-direction: column;
  }
  .topService_inner {
    padding-right: 0;
    margin-top: 9.0rem;
  }
  .topService__image {
    margin-top: 8.0rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .topService__group  h2::before {
    top: -12.0rem;
    right: 0;
    width:332px;
    height: 128px;
  }
  .topService_column {
    padding: 5.0rem 2.0rem 8.0rem 2.0rem;
    padding-right: 2.0rem;
    padding-left: 2.0rem;
  }
}
@media screen and (max-width: 390px) {
  .topService__image {
    width: 100vw;
    margin-top: 8rem;
    margin-left: -2.0rem;
  }
}
.topProduct__group h2 {
  position: relative;
}
.topProduct__group h2::before {
  content:"";
  position: absolute;
  background-image: url("../images/common/product.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 524px;
  height: 204px;
  top: -19.4rem;
  right: -5.4rem;
}
.topProduct_inner {
  margin-top: 32rem;
  max-width: 1440px;
}
.topProduct_column {
  display: flex;
  flex-direction: row-reverse;
}
.topProduct__group {
  padding-right: 10.0rem;
}
.topProduct__group h2 { 
  margin-bottom: 6.2rem;
}
.topProduct__group h3 { 
  color: #003F8E;
  font-size: 2.1rem;
  margin-bottom: 3.6rem;
}
.topProduct__group p {
  margin-bottom: 3.0rem;
}
.product_column {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  align-content: flex-start;
  margin-left: 4rem;
}
.productList {
  min-width: 250px;
  width: calc(50% - 60px);
  box-sizing: border-box;
  padding-top: 1.6rem;
}
.productList_img {
  margin-bottom: 0.8rem;
  overflow: hidden;
  margin-left: auto;
  max-width: 300px;
  line-height: 1;
}
.productList_img img{
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.productList_img:hover img {
  transform: scale(1.1); /* 拡大 */
}
@media screen and (max-width:1040px){
  .topProduct__group h2::before {
    top: -11.0rem;
    right: 0;
    width:332px;
    height: 128px;
  }
  .topProduct_column{
    flex-direction: column;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .topProduct__group {
    padding-right: 0;
  }
  .product_column  {
    gap: 2.0rem;
    margin-top: 8.0rem;
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }
  .productList {
    padding-top: 3.0rem;
    padding-right: 0;
    padding-left: 0;
    min-width: 165px;
  }
}

@media screen and (max-width:390px) {
  .topProduct__group h2::before {
    top: -11.0rem;
    right: 2.0rem;
    width:332px;
    height: 128px;
  }
}
.topCompany__group {
  position: relative;
}
.topCompany__group h2::before {
  content:"";
  position: absolute;
  background-image: url("../images/common/company.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 618px;
  height: 204px;
  top: -19.0rem;
  left: -7.6rem;
}
.topCompany_inner {
  margin-left: auto;
  background-color: #E7F6FF;
  margin-top: 32.0rem;
  padding: 6%;
  max-width: 1280px;
}
.topCompany__group h2 { 
  margin-bottom: 2.4rem;
}
.topCompany__group p {
  margin-bottom: 2.4rem;
} 

.topCompany_column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topCompanyCard {
  margin-right: 3.0rem;
  width: 30%;
  min-width: 200px;
}
.topCompanyCard:last-child {
  margin-right: 0;
}
.topCompanyCard a{
  display: block;
  text-align: right;
}
.topCompanyCard_image {
  margin-bottom: 0.8rem;
  max-width: 334px;
  overflow: hidden;
  line-height: 1;
}
.topCompanyCard_image img{
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.topCompanyCard_image:hover img {
  transform: scale(1.1); /* 拡大 */
}
@media screen and (max-width:768px) {
  .topCompany__group h2::before {
    top: -11.0rem;
    left: -5.0rem;
    width: 346px;
    height: 102px;
  }
  .topCompany_inner {
    padding-top: 12.0rem;
  }
}
@media screen and (max-width:490px) {
  .topCompany__group h2::before {
    top: -10.0rem;
    left: -0.4rem;
}
  .topCompany_column {
    row-gap: 4.0rem;
    flex-direction: column;
    align-items: center;
    max-width: 334px;
  }
  .topCompanyCard {
    margin-right: 0;
    width: 100%;
  }
  .topCompanyCard_image {
    min-width: 318px;
  }
}
.topEnvironment_column {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  background-color: #FFF;
  padding: 3.4rem 3.6rem 2.4rem 5.8rem;
  margin-top: 6.0rem;
  margin-bottom: 4.0rem;
}
.environment__decoration {
  color: #4C9453;
  font-weight: 500;
}
.environment__group {
  margin-left: 8.0rem;
}
.environment__group h4 {
  font-size: 2.1rem;
  margin-top: 1.0rem;
}
.environment__image {
  min-width: 270px;
  overflow: hidden;
  max-width: 354px;
  line-height: 1;
}
.environment__image img{
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.environment__image:hover img {
  transform: scale(1.1); /* 拡大 */
}
.environment__text {
  margin-top: 3.8rem;
}
.environment_btn {
  text-align: right;
  margin-top: 1.6rem;
}

@media screen and (max-width:768px) {
  .topEnvironment_column {
    flex-direction: column;
    padding: 4.0rem 3.0rem;
  }
  .environment__group {
    margin-left: 0;
  }
  .environment__image {
    min-width: 260px;
  }
  .environment__text {
    margin-top: 3.0rem;
    margin-bottom: 2.0rem;
  }
}
.topRecruit__bg {
  background-image:  url("../images/top/recruit.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 80%;
  height: 460px;
  margin-top: 32rem;
}
.topRecruit__bg::before {
  content:"";
  position: absolute;
  background-image: url("../images/common/recruit.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 36vw;
  height: 10vw;
  top: -9.2rem;
  right: -8.4rem;
}
.topRecruit_inner h3 {
  position: absolute;
  font-size: 5.0rem;
  color: #FFF;
  margin-top: 8.0rem;
  margin-left: 10.0rem;
}
.more__button.more__arrow.recruit {
  margin-top: 28.0rem;
  margin-left: 10.0rem;
}
@media screen and (max-width:768px) {
  .topRecruit__bg {
    width: 100%;
    height: 342px;
    margin-top: 20.0rem;
  }
  .topRecruit__bg::before {
    width: 338px;
    height: 140px;
    top: -9.2rem;
    right: 0;
  }
  .topRecruit_inner h3 {
    font-size: 3.2rem;
    margin-top: 8.0rem;
    margin-left: 2.0rem;
  }
  .more__button.more__arrow.recruit {
    margin-top: 22.0rem;
    margin-left: 2.0rem;
  }
}
@media screen and (max-width:390px) {
  .topRecruit_inner h3 {
    font-size: 2.6rem;
  }
}