@charset "UTF-8";
/* ========================= /
/  mixin
/* =========================*/
/* ========================= /
/  カラー
/* =========================*/
body {
  color: #fff;
}

.first-animation {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #186FB1;
  z-index: 10000;
}
.first-animation__container {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .first-animation__container {
    position: relative;
    top: -80px;
  }
}
.first-animation__container.hide {
  opacity: 0;
  transition: 0.3s;
}
.first-animation__img {
  position: relative;
  opacity: 0;
}
.first-animation__img.show {
  animation: clip-text 0.3s ease-in-out forwards;
}
.first-animation__img img {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .first-animation__img img {
    width: 60%;
  }
}
.first-animation__img::after {
  position: absolute;
  display: block;
  content: "";
  width: 80%;
  height: 140%;
  inset: 0;
  margin: auto;
  border-radius: 10px;
  background: #fff;
}
.first-animation__img.show::after {
  animation: clip-cover 0.2s forwards;
  animation-delay: 0.5s;
}
.first-animation__ttl {
  position: relative;
  left: 60px;
  font-size: 13rem;
  font-weight: bold;
  font-style: italic;
  overflow: hidden;
  transform-origin: top;
  max-height: 0;
  transition: max-height 0.6s ease;
  transition-delay: 1s;
}
@media screen and (max-width: 768px) {
  .first-animation__ttl {
    left: 20px;
  }
}
.first-animation__ttl.show {
  max-height: 220px;
}
@media screen and (max-width: 768px) {
  .first-animation__ttl.show {
    max-height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .first-animation__ttl {
    font-size: 6.5rem;
  }
}

/* アニメーション： */
@keyframes clip-text {
  from {
    opacity: 1;
    clip-path: inset(0 120% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes clip-cover {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}
/* ========================= /
/  ファーストビュー
/* =========================*/
.fv {
  padding-block: 250px;
  background-image: url("../img/top/fv.webp");
  background-position: 60% center;
  background-size: auto 148%;
}
@media screen and (max-width: 768px) {
  .fv {
    position: relative;
    padding-block: 450px 75px;
    background-position: 67% bottom;
    background-size: auto 110%;
    z-index: 1;
  }
  .fv::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -1px;
    background: linear-gradient(rgba(24, 111, 177, 0) 50%, rgb(24, 111, 177) 100%);
    z-index: -1;
  }
}
.fv__ttl {
  font-size: 13rem;
  font-weight: bold;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .fv__ttl {
    font-size: 6.5rem;
  }
}
.fv__desc {
  margin-top: 70px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fv__desc {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}

/* ========================= /
/  INTERVIEW
/* =========================*/
.interview {
  overflow: hidden;
}
.interview__desc {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .interview__desc {
    margin-top: 20px;
  }
}
.interview .staff-list {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .interview .staff-list {
    margin-top: 25px;
  }
}
.interview .staff-list__item img {
  transition: 0.3s ease-out;
}
.interview .staff-list__item .btn.--allow {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.interview .staff-list__item .btn.--allow::before {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.interview .staff-list__item:hover img {
  opacity: 0.9;
  scale: 1.1;
}
.interview .staff-list__item:hover .btn.--allow {
  color: #186FB1;
}
.interview .staff-list__item:hover .btn.--allow::before {
  transform: scale(1, 1);
}
.interview .staff-list__image {
  aspect-ratio: 1/1.18421053;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interview .staff-list__image {
    aspect-ratio: 1/0.75075;
  }
}
.interview .staff-list__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.interview .staff-list__name-roman {
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interview .staff-list__name-roman {
    font-size: 2rem;
  }
}
.interview .staff-list__name {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interview .staff-list__name {
    font-size: 1.7rem;
  }
}
.interview .staff-list__position {
  margin-top: 10px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .interview .staff-list__position {
    margin-top: 6px;
    font-size: 1.3rem;
  }
}

.mySwiper {
  position: relative;
  width: 100vw;
}

/* スライド3枚が親に収まるように調整 */
.mySwiper .swiper-slide {
  flex-shrink: 0;
  width: 24vw;
}
@media screen and (min-width: 1200px) {
  .mySwiper .swiper-slide {
    max-width: 368px;
    width: calc((80vw - 48px) / 3); /* 3枚分の幅（間にspaceBetween 24px×2） */
  }
}
@media screen and (max-width: 768px) {
  .mySwiper .swiper-slide {
    width: calc(100vw - 40px);
  }
}

/* Swiper全体の右側には余白を追加してはみ出し演出 */
.mySwiper .swiper-wrapper {
  padding-right: 10vw;
}

/* ========================= /
/  WORK PLACE
/* =========================*/
.work-place {
  padding: 0;
  background: #0060A9;
}
.work-place__inner {
  display: flex;
  flex-wrap: wrap;
}
.work-place__left {
  width: 50%;
  background-image: url("../img/top/work-place.webp");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .work-place__left {
    width: 100%;
    height: 273px;
  }
}
.work-place__right {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-block: 150px;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .work-place__right {
    padding-block: 40px;
  }
}
.work-place__container {
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .work-place__container {
    padding-inline: 20px;
  }
}
.work-place__desc {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .work-place__desc {
    margin-top: 20px;
  }
}

/* ========================= /
/  DATA
/* =========================*/
.data {
  padding: 0;
  background: #0060A9;
}
.data__inner {
  display: flex;
  flex-wrap: wrap;
}
.data__left {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-block: 150px;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .data__left {
    padding-block: 40px;
    order: 2;
  }
}
.data__right {
  width: 50%;
  background-image: url("../img/top/data.webp");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .data__right {
    width: 100%;
    height: 273px;
    order: 1;
  }
}
.data__container {
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .data__container {
    padding-inline: 20px;
  }
}
.data__desc {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .data__desc {
    margin-top: 20px;
  }
}

/* ========================= /
/  CROSS TALK
/* =========================*/
.cross-talk__inner {
  width: 96%;
  max-width: 1780px;
}
.cross-talk-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(20px, -60px + 7.81vw, 40px);
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .cross-talk-list {
    gap: 40px;
    margin-top: 40px;
  }
}
.cross-talk-list__item {
  flex: 0 0 calc((100% - clamp(40px, -120px + 15.63vw, 80px)) / 3);
}
.cross-talk-list__item img {
  transition: 0.3s ease-out;
}
.cross-talk-list__item .btn.--allow {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cross-talk-list__item .btn.--allow::before {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.cross-talk-list__item:hover img {
  opacity: 0.9;
  scale: 1.1;
}
.cross-talk-list__item:hover .btn.--allow {
  color: #186FB1;
}
.cross-talk-list__item:hover .btn.--allow::before {
  transform: scale(1, 1);
}
@media screen and (max-width: 768px) {
  .cross-talk-list__item {
    flex: 0 0 100%;
  }
}
.cross-talk-list__thumb {
  aspect-ratio: 1/0.7978;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cross-talk-list__thumb {
    aspect-ratio: 1/0.7634;
  }
}
.cross-talk-list__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cross-talk-list__footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  font-size: clamp(16px, 2px + 1.37vw, 22px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cross-talk-list__footer {
    margin-top: 14px;
  }
}
.cross-talk-list__staff {
  font-size: clamp(12px, -12px + 2.34vw, 18px);
}
@media screen and (max-width: 768px) {
  .cross-talk-list__staff {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .cross-talk-list__allow {
    position: absolute;
    top: -73px;
    right: 20px;
  }
}
.cross-talk::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: #0060A9;
  z-index: -1;
}

/* ========================= /
/  MISSION
/* =========================*/
.mission {
  background: linear-gradient(rgba(5, 42, 110, 0.6), rgba(5, 42, 110, 0.6)), url("../img/top/mission.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .mission {
    padding-block: 100px;
  }
}/*# sourceMappingURL=top.css.map */