@charset "utf-8";

/*
  File Name   : top.css
  Description : コンテンツエリア関係 他
*/

/* section-top
============================================================ */
.section-top {
  position: relative;
  height: 100vh;
  min-height: 650px;
  max-height: 1080px;
  overflow: hidden;
  transition: background 1.5s ease-in-out;
  animation: first-view-bg 1.5s forwards;
  animation-delay: 3s;
  background: #004095;
}
.section-top .section-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vh * 1.06);
  min-width: 690px;
  max-width: 1145px;
  height: 100vh;
  min-height: 650px;
  max-height: 1080px;
  margin-left: clamp(-50px, calc(100vh * -0.047), -30px);
  transform: translate(-50%, -50%);
}
.top-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vh * 1.05 * 0.49);
  min-width: 333px;
  max-width: 553px;
  height: calc(100vh * 1.05);
  min-height: calc(650px * 1.05);
  max-height: calc(1080px * 1.05);
  margin-left: clamp(104px, calc(100vh * 0.16), 173px);
  transform: translate(-50%, -50%);
  text-align: center;
}
.top-title__img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translateX(-50%);
  opacity: 0;
}
.top-title__img--wht {
  z-index: 1;
  transition: opacity 1.75s ease-in-out;
  animation: first-view--01 1.75s forwards;
  animation-delay: 1s;
}
.top-title__img--blu {
  z-index: 2;
  transition: opacity 1.5s ease-in-out;
  animation: first-view--01 1.5s forwards;
  animation-delay: 4.5s;
}
.top-body {
  position: absolute;
  text-align: center;
}
.top-body--01 {
  bottom: clamp(78px, calc(100vh * 0.12), 130px);
  left: 0;
  width: calc(100vh * 0.51204);
  min-width: 333px;
  max-width: 553px;
  height: calc(100vh * 0.35556);
  min-height: 235px;
  max-height: 384px;
}
.top-body__img {
  position: relative;
  width: auto;
  height: 100%;
  opacity: 0;
}
.top-body__img--01 {
  transition:
    top 1.5s ease-in-out,
    left 1.5s ease-in-out,
    opacity 1.5s ease-in-out;
  animation: first-view--02 1.5s forwards;
  animation-delay: 6s;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .section-top {
    height: calc(100vh - 60px - 50px);
    height: calc(100svh - 60px - 50px);
    min-height: calc(320px - 60px - 50px);
    transition: background 1.5s ease-in-out;
    animation: first-view-bg 1.5s forwards;
    animation-delay: 3s;
  }
  .section-top .section-inner {
    width: 100%;
    min-width: calc(320px - 60px - 50px);
    height: calc(100vh - 60px - 50px);
    height: calc(100svh - 60px - 50px);
    min-height: calc(320px - 60px - 50px);
    margin-left: 0;
  }
  .top-title {
    top: -1.8vh;
    top: -1.8svh;
    width: calc((100vh - 60px - 50px) * 0.424);
    width: calc((100svh - 60px - 50px) * 0.424);
    min-width: 0;
    max-width: 100%;
    height: calc((100vh - 60px - 50px) * 0.87);
    height: calc((100svh - 60px - 50px) * 0.87);
    min-height: calc((320px - 60px - 50px) * 0.718);
    max-height: calc((1080px - 60px - 50px) * 0.718);
    margin-left: calc((100vh - 60px - 50px) * 0.065);
    margin-left: calc((100svh - 60px - 50px) * 0.065);
    transform: translateX(-50%);
    line-height: 1;
  }
  .top-title__img--wht {
    transition: opacity 1.75s ease-in-out;
    animation: first-view--01 1.75s forwards;
    animation-delay: 1s;
  }
  .top-title__img--blu {
    transition: opacity 1.5s ease-in-out;
    animation: first-view--01 1.5s forwards;
    animation-delay: 4.5s;
  }
  .top-body--01 {
    top: calc((100vh - 60px - 50px) * 0.467);
    top: calc((100svh - 60px - 50px) * 0.467);
    bottom: inherit;
    left: 50%;
    width: calc((100vh - 60px - 50px) * 0.267);
    width: calc((100svh - 60px - 50px) * 0.267);
    min-width: 0;
    max-width: 100%;
    height: calc((100vh - 60px - 50px) * 0.186);
    height: calc((100svh - 60px - 50px) * 0.186);
    min-height: 0;
    max-height: 100%;
    margin-left: calc((100vh - 60px - 50px) * -0.2);
    margin-left: calc((100svh - 60px - 50px) * -0.2);
    transform: translateX(-50%);
  }
  .top-body__img {
    line-height: 1;
  }
  .top-body__img--01 {
    transition:
      top 1.5s ease-in-out,
      left 1.5s ease-in-out,
      opacity 1.5s ease-in-out;
    animation: first-view--02 1.5s forwards;
    animation-delay: 5.5s;
  }
}

/* @keyframes
------------------------------------------------------------ */
@keyframes first-view--01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes first-view--02 {
  0% {
    top: 200px;
    left: -200px;
    opacity: 0;
  }
  100% {
    top: 0;
    left: 0;
    opacity: 1;
  }
}

@keyframes first-view-bg {
  0% {
    background: #004095;
  }
  100% {
    background: #fff;
  }
}

/* section-about
============================================================ */
.section-about {
  padding: 120px 0 0;
  background: #0042a3 url(../img/top/about-bg.jpg) no-repeat center top;
  background-size: 100% auto;
}
.about-body {
  margin-top: 85px;
  text-align: center;
}
.about-body__title__img {
  width: 100%;
  max-width: 430px;
  height: auto;
}
.about-body__txt {
  margin-top: 65px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 4.3px;
  line-height: 2;
  text-align: center;
}
.about-slider {
  width: 100%;
  margin-top: 150px;
  overflow: hidden;
}
.about-slider__item {
  width: 612px;
}
.about-slider__item:not(:first-child) {
  display: none;
}
.js-loop-slider-wrap .about-slider__item:not(:first-child) {
  display: block;
}
.about-slider__item__img {
  width: 100%;
  height: auto;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .section-about {
    padding: 60px 0 0;
  }
  .about-body {
    margin-top: 45px;
  }
  .about-body__title__img {
    max-width: 215px;
  }
  .about-body__txt {
    margin-top: 35px;
    font-size: 13px;
  }
  .about-slider {
    margin-top: 75px;
  }
  .about-slider__item {
    width: 306px;
  }
}

/* section-work
============================================================ */
.section-work {
  padding: 155px 0 100px;
  background: url(../img/top/work-bg.jpg) repeat center top;
}
.work-body {
  width: 100%;
  max-width: 1070px;
  margin: 65px auto 0;
}
.work-body__title__img {
  width: 100%;
  max-width: 230px;
  height: auto;
}
.work-body__txt {
  margin-top: 50px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 2.4;
}
.work-dept {
  margin-top: 140px;
}
.work-dept__list__item {
  width: 300px;
  padding: 0 2.083vw;
}
.work-dept__list__item__img {
  width: 100%;
  height: auto;
}
.work-dept__list__item__img:not(:first-child) {
  display: none;
}
.is-initialized .work-dept__list__item__img {
  display: block;
}
.work-slider__wrap {
  position: relative;
}
.work-slider__wrap::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: calc(50% + 100px);
  background: #fff;
}
.work-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1070px;
  margin: 255px auto 0;
}
.work-slider__list__item {
  width: 100%;
}
.work-slider__list__item__img {
  width: 100%;
  height: auto;
}
.work-slider__list__item__img:not(:first-child) {
  display: none;
}
.is-initialized .work-slider__list__item__img {
  display: block;
}
.work-slider .splide__pagination {
  bottom: -70px;
}
.work-slider .splide__pagination li {
  position: relative;
  width: 110px;
  margin: 10px 12px 0;
  font-size: 0;
}
.work-slider .splide__progress {
  visibility: hidden;
}
.work-slider .splide__pagination__page,
.work-slider .splide__pagination__page.is-active {
  width: 100%;
  height: 6px;
  margin: 0;
  transform: scale(1);
  border-radius: 0;
  opacity: 1;
  background: #c6c6c6;
}
.work-slider .splide__pagination__page + .progress {
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  background: #adadad;
}
.work-slider .splide__pagination__page.is-active + .progress {
  display: block;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .section-work {
    padding: 80px 0 50px;
  }
  .work-body {
    margin-top: 35px;
  }
  .work-body__title__img {
    max-width: 115px;
  }
  .work-body__txt {
    margin-top: 25px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  .work-dept {
    margin-top: 70px;
  }
  .work-dept__list__item {
    width: 150px;
    padding: 0 2.469vw;
  }
  .work-slider__wrap::after {
    bottom: -50px;
    height: calc(50% + 50px);
  }
  .work-slider {
    margin-top: 115px;
  }
  .work-slider .splide__pagination {
    bottom: -35px;
  }
  .work-slider .splide__pagination li {
    width: 55px;
    margin: 10px 6px 0;
  }
}

@media screen and (max-width: 481px) {
  .work-dept__list__item {
    padding: 0 10.417vw;
  }
  .work-slider .splide__pagination li {
    width: 30px;
  }
  .work-slider {
    margin-top: 95px;
  }
}

/* section-interview
============================================================ */
.section-interview {
  padding: 95px 0 145px;
  background: #fff;
}
.interview-body {
  width: 100%;
  max-width: 1080px;
  margin: 45px auto 0;
}
.interview-body__title__img {
  width: 100%;
  max-width: 750px;
  height: auto;
}
.interview-body__txt {
  margin-top: 55px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 2.4;
}
.interview-staffs {
  margin-top: 55px;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .section-interview {
    padding: 50px 0 75px;
  }
  .interview-body {
    margin-top: 30px;
  }
  .interview-body__title__img {
    max-width: 375px;
  }
  .interview-body__txt {
    margin-top: 25px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  .interview-staffs {
    margin-top: 35px;
  }
}

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

/* section-qa
============================================================ */
.section-qa {
  padding: 175px 0 145px;
  background: #0042a3;
}
.qa-body {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  border: 1px solid #fff;
}
.qa-body + .qa-body {
  margin-top: 70px;
}
.qa-body__title {
  position: relative;
  padding: 40px 20px 40px 100px;
  background: #fff;
  color: #000;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.4;
}
.qa-body__title__icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: auto;
}
.qa-body__txt {
  position: relative;
  padding: 30px 20px 35px 100px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.75;
  text-align: justify;
}
.qa-body__txt__icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: auto;
}
.qa-btn {
  width: 100%;
  max-width: 1070px;
  margin: 80px auto 0;
  text-align: center;
}
.qa-btn__link {
  display: inline-block;
  width: 100%;
  max-width: 210px;
}
.qa-btn__link__img {
  width: 100%;
  height: auto;
}

/* @media
------------------------------------------------------------ */
@media screen and (max-width: 1200px) {
  .com-title + .qa-body {
    margin-top: 55px;
  }
}

@media screen and (max-width: 811px) {
  .com-title + .qa-body {
    margin-top: 30px;
  }
  .section-qa {
    padding: 90px 0 75px;
  }
  .qa-body + .qa-body {
    margin-top: 35px;
  }
  .qa-body__title {
    padding: 20px 10px 20px 50px;
    font-size: 16px;
  }
  .qa-body__title__icon {
    top: 5px;
    left: 5px;
    width: 30px;
  }
  .qa-body__txt {
    padding: 15px 10px 20px 50px;
    font-size: 13px;
  }
  .qa-body__txt__icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
  }
  .qa-btn {
    margin-top: 40px;
  }
  .qa-btn__link {
    max-width: 105px;
  }
}
