@charset "utf-8";
.inner {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}
.section-titile {
  font-weight: bold;
  font-size: 4rem;
  text-align: left;
  color: #004690;
}
.section-titile span {
  font-weight: 500;
  font-size: 1.6rem;
  text-align: left;
  color: #004690;
  display: block;
  margin-top: 9px;
}
.section-summary-area {
  width: 50%;
  /* margin-left: 90px; */
}
.section-summary-area h3 {
  font-weight: bold;
  font-size: 3rem;
  text-align: left;
  color: #004690;
  margin-top: 34px;
  line-height: 1.66;
}

.section-summary-area p {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  margin-top: 41px;
}
/* ヘッダー部分の動き */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-out;
}
.header-inner {
  width: 90%;
  max-width: 1000px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.is-fixed {
  transition: all 0.3s ease-out;
}
#header-sp {
  display: none;
}
@media screen and (max-width: 959px) {
  #header-pc {
    display: none;
  }
  .header-inner {
    height: 60px;
  }
  #header-sp {
    display: block;
  }
  #header-sp .header-sp-top {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
  }
  .globalMenuSp {
    transform: translateX(200vw);
  }
}
/* TOPメインビジュアル */
.mainVisual {
  width: 100%;
  height: 100vh;
  position: relative;
}
.mainVisual::before {
  content: "";
  display: block;
  padding-top: 50.5%;
}
.mainVisual-catch {
  width: 80%;
  position: absolute;
  z-index: 15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -66%);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}
.mainVisual-catch h1 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.2em;
  line-height: 2.5;
  text-align: center;
  color: #fff;
  /* text-shadow: 0px 0px 10px rgb(0 0 0); */
}
.mainVisual-catch p {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  text-align: center;
  color: #fff;
  /* text-shadow: 0px 0px 10px rgb(0 0 0); */
}

.slide {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 9s 0s infinite;
  animation: anime 15s 0s infinite;
}

.slide:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.slide:nth-of-type(3) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
/* 
/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/* NEWS ------------------------*/
#news {
  background: linear-gradient(90deg, #f0faff 0%, #f0faff 50%, #ffffff 50%, #ffffff 100%);
  width: 100%;
}
#news .inner {
  display: flex;
}
#news .news-title {
  width: 260px;
  padding-top: 80px;
  padding-bottom: 118px;
  padding-left: 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: baseline;
}
#news .news-title a {
  display: block;
  font-size: 1.6rem;
  text-align: left;
  color: #004690;
  line-height: 22px;
}
#news .news-title a::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(../images/news-arrow-icon.png);
  margin-left: 6px;
  position: relative;
  top: 3px;
}
#news ul {
  background-color: #fff;
  padding-top: 101px;
  padding-left: 56px;
  width: calc(100% - 260px);
  padding-bottom: 95px;
  padding-right: 30px;
}
#news ul li {
  position: relative;
}
#news ul li::before {
  content: "";
  width: calc(100% - 94px);
  /* width: 560px; */
  height: 1px;
  display: block;
  border-top: 1px dotted #585858;
  position: absolute;
  right: 0;
  top: 7px;
}
.news-time {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: left;
  color: #004690;
}
.news-text {
  font-weight: normal;
  font-size: 1.6rem;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 60px;
}
/* COMPANY --------------------------- */
#company {
  display: flex;
  position: relative;
  padding-top: 100px;
  padding-bottom: 20px;
}
.company-bk {
  /* background-color: #f0faff; */
  width: 30%;
  height: 300px;
  position: absolute;
  left: 0;
  top: 0;
}
#company .company-img-wrap {
  width: 50%;
  position: relative;
  z-index: 2;
}
#company img {
  object-fit: cover;
  object-position: right;
  position: absolute;
  right: 60px;
  height: 100%;
  max-height: 500px;
}

#company .section-summary-area {
  margin-top: 16px;
  margin-left: 36px;
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

.link-btn a {
  display: inline-block;
  background: #fff;
  border: 1px solid #1d468b;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: left;
  color: #004690;
  padding: 17px 70px 18px 70px;
  position: relative;
  margin-top: 72px;
}
.link-btn a::after {
  width: 7px;
  height: 11px;
  content: "";
  display: inline-block;
  background-image: url(../images/icon-arrow.png);
  position: absolute;
  top: 19px;
  right: 18px;
}
/*  BUSINESS --------------*/

#business {
  margin-top: 130px;
  overflow: hidden;
}
#business .section-summary-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

#business .section-summary-area {
  width: 50%;
  padding: 60px 12px 86px 125px;
}

#business .summary-img {
  object-fit: cover;
  height: 100%;
  max-height: 500px;
  object-position: center;
  position: absolute;
  top: 0;
  left: 50%;
  width: 590px;
  /* width: calc(100vw / 2); */
  overflow: hidden;
}

#division {
  padding-top: 10px;
  padding-bottom: 90px;
  background: linear-gradient(90deg, #fff 0%, #fff 60%, #f0faff 60%, #f0faff 100%);
}

.division-wrap {
  margin-top: 90px;
  position: relative;
}

.division-title-wrap,
.division-title-wrap-back {
  width: 400px;
  height: 200px;
}

.division-title-wrap {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
  /* margin-bottom: 220px; */
}
.division-title-wrap::after {
  content: "";
  width: 13px;
  height: 22px;
  display: block;
  background-image: url(../images/division_arrow_icon.png);
  position: absolute;
  bottom: 24px;
  right: 21px;
  z-index: 3;
}
.division-title-wrap-back {
  background: #004690;
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.division-title-wrap:hover,
.division-title-wrap-back:hover {
  /* z-index: 5; */
}
.division-title-wrap h3 {
  font-weight: bold;
  font-size: 30px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  mix-blend-mode: normal;
  z-index: 3;
}
.division-title-wrap p {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.division-wrap img {
  /* position: absolute;
  right: 0;
  top: 40px; */
  display: block;
  margin: -40px 0 0 auto;
}
#works {
  margin-bottom: 120px;
  margin-top: 140px;
}
#works .section-titile,
#works .section-titile span {
  text-align: center;
}
#works .link-btn a {
  margin-left: auto;
  margin-right: auto;
  width: 232px;
  display: block;
}
/* recruit */
#recruit {
  position: relative;
}
.recruit_bkimg img {
  height: 400px;
  object-fit: cover;
}
.recruit_bkimg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(29, 70, 139, 0.4);
  mix-blend-mode: multiply;
  display: inline-block;
  position: absolute;
  z-index: 2;
}

#recruit .inner {
  padding-top: 44px;
  padding-left: 95px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
#recruit .inner h2,
#recruit .inner h2 span {
  color: #fff;
}
#recruit .inner p {
  font-weight: bold;
  font-size: 30px;
  line-height: 50px;
  text-align: left;
  color: #fff;
  margin-top: 35px;
}

#recruit .link-btn a {
  margin-top: 46px;
}
@media screen and (max-width: 1024px) {
  #company .section-summary-area {
    margin-left: 0;
  }
  #company img {
    right: 4vw;
  }
  #company .link-btn a {
    margin-top: 40px;
  }
  #business .section-summary-area {
    padding: 60px 4vw 86px 4vw;
  }
}
@media screen and (max-width: 700px) {
  .mainVisual-catch {
    width: 90%;
  }
  .mainVisual-catch h1 {
    font-size: 6.7vw;
  }
  .recruit_bkimg img {
    object-position: 58% 50%;
  }
}
@media screen and (max-width: 599px) {
  .mainVisual-catch h1 {
    font-size: 6.7vw;
  }
  .mainVisual-catch p {
    font-size: 1.8rem;
  }
  .section-summary-area h3 {
    font-size: 2.4rem;
    margin-top: 30px;
  }
  #news {
    background: linear-gradient(90deg, #f0fafd 0%, #f0faff 30%, #ffffff 30%, #ffffff 100%);
  }
  #news .news-title {
    padding-top: 38px;
    padding-left: 10px;
    padding-bottom: 40px;
  }
  #news .inner {
    display: block;
  }
  #news ul {
    background-color: transparent;
  }
  #news .news-title a.pc {
    display: none;
  }
  #news .sp {
    display: block;
    font-size: 1.6rem;
    text-align: right;
    color: #004690;
    line-height: 22px;
  }
  #news .sp::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../images/news-arrow-icon.png);
    margin-left: 6px;
    position: relative;
    top: 3px;
    margin-right: 10px;
  }

  #news ul {
    width: 100%;
    padding: 0 10px 4px;
  }
  .news-text {
    margin-bottom: 38px;
  }
  #company {
    flex-direction: column;
  }
  .company-bk {
    height: 150px;
  }
  #company img {
    position: absolute;
    right: initial;
    top: 0;
  }
  #company .company-img-wrap {
    width: 100%;
    padding-top: 48%;
    height: auto;
    position: relative;
    margin-top: 46px;
  }
  #company .section-summary-area {
    width: 90%;
    margin: 30px auto;
    padding-right: 0;
  }
  .section-summary-area p {
    margin-top: 24px;
  }
  .link-btn a {
    display: block;
    width: 220px;
    margin: 30px auto;
  }
  #business {
    margin-top: 35px;
    background: linear-gradient(90deg, #fff 0%, #fff 70%, #f0faff 70%, #f0faff 100%);
  }
  #business .section-summary-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  #business .section-summary-area {
    width: 90%;
    padding: 0;
    margin: 30px auto;
  }
  #business .summary-img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  .business-img-wrap {
    width: 100%;
    padding-top: 48%;
    height: auto;
    position: relative;
    /* margin-top: 46px; */
  }
  #division {
    background: none;
  }
  #division .inner {
    width: 100%;
  }
  .division-wrap {
    margin-top: 55px;
  }
  .division-title-wrap,
  .division-title-wrap-back {
    width: 280px;
    height: 131px;
  }
  .division-title-wrap h3 {
    font-size: 2.2rem;
  }
  .division-title-wrap::after {
    bottom: 12px;
    right: 11px;
  }
  .division-wrap-imgWrap {
    width: 84%;
    padding-top: 67%;
    position: relative;
    margin: -40px 0 0 auto;
  }
  .division-wrap-imgWrap img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin-top: 0;
  }

  #works {
    margin-bottom: 80px;
    margin-top: 67px;
  }
  #works .link-btn a {
    text-align: center;
    padding: 16px 20px;
    margin: 0 auto;
  }
  #recruit .inner {
    width: 90%;
    padding-left: 0;
  }
  #page-top {
    width: 74px;
    height: 74px;
    right: 12px;
    bottom: 12px;
  }
}
/* animation */

@media screen and (min-width: 600px) {
  .fadeInTarget02 .division-wrap-imgWrap {
    position: relative;
    overflow: hidden;
    top: -40px;
    transition: all 0.5s;
  }
  .fadeInTarget02 .division-wrap-imgWrap img {
    margin: 0px 0 0 auto;
    opacity: 0;
    position: absolute;
    top: 0px;
    right: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  /* .fadeInTarget .division-wrap-imgWrap img::before {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  background-color: #333;
  opacity: 1;
} */
  .fadeInTarget02 .img-mask {
    opacity: 0;
    display: block;
    margin: 0px 0 0 auto;
    width: 750px;
    /* height: 380px; */
    padding-top: 37.6%;
    background-color: #000a15;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .fadeInTarget02.show .img-mask {
    transform: translateX(0%);
    opacity: 1;
  }
  .fadeInTarget02.show .division-wrap-imgWrap img {
    transform: translateX(0%);
    transition-delay: 0.5s;
    opacity: 1;
  }
  .division-wrap .division-title-wrap-back,
  .division-wrap .division-title-wrap {
    transform: translate(-20px, -20px);
    opacity: 0;
    transition: all 0.5s ease-in;
  }
  .fadeInTarget02.show .division-title-wrap-back,
  .fadeInTarget02.show .division-title-wrap {
    transform: translate(0, 0);
    opacity: 1;
  }
  .division-wrap:active .division-title-wrap-back {
    mix-blend-mode: normal;
  }
  /* .division-wrap:hover{

  }
  .division-wrap{
    transition: .3s;
  } */
}
