.homeFv {
  height: calc(100vh - 100px);
  background: linear-gradient(to bottom, #00A8E8 0%, #004EAB 100%);
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 100px;
  @media screen and (max-width: 750px){
    height: calc(100dvh - 72px);
    top: 72px;
  }
}
.homeFv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeFv__first,
.homeFv__second,
.homeFv__third {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeFv__first {
  z-index: 1;
  opacity: 0;
  filter: blur(10px);
  .__wrapper {
    width: 61.3vw;
    background: url(../img/home/fv_01_bg.png) no-repeat center / contain;
    @media screen and (max-width: 750px){
      width: 90vw;
    }
  }
  img {
    transition: opacity 1.2s ease-in-out;
  }
  &.is-active {
    opacity: 1;
    filter: blur(0);
    transition: opacity 1.2s ease-in-out, filter 1.2s ease-in-out;
  }
  &.is-fadeout {
    img {
      opacity: 0;
    }
  }
}
.homeFv__second {
  z-index: 2;
  .__wrapper {
    font-size: 1.2vw;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 2;
    color: #fff;
    text-align: center;
    @media screen and (max-width: 750px){
      font-size: 3.6vw;
    }
  }
  p {
    opacity: 0;
    transform: translateY(1em);
    + p {
      margin-top: 1.5em;
    }
  }
  &.is-active {
    p {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
      &:nth-child(2) {
        transition-delay: 0.3s;
      }
      &:nth-child(3) {
        transition-delay: 0.6s;
      }
      &:nth-child(4) {
        transition-delay: 0.9s;
      }
    }
  }
  &.is-fadeout {
    p {
      opacity: 0;
      transform: translateY(-1em);
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
      &:nth-child(2) {
        transition-delay: 0.3s;
      }
      &:nth-child(3) {
        transition-delay: 0.6s;
      }
      &:nth-child(4) {
        transition-delay: 0.9s;
      }
    }
  }
}
.homeFv__third {
  z-index: 3;
  opacity: 0;
  filter: blur(10px);
  .__wrapper {
    width: 55.56vw;
    padding-left: 10.6vw;
    img {
      width: 40vw;
    }
    @media screen and (max-width: 750px){
      width: 90vw;
      padding-left: 5vw;
      img {
        width: 72vw;
      }
    }
  }
  &.is-active {
    opacity: 1;
    filter: blur(0);
    transition: opacity 2s ease-in-out, filter 2s ease-in-out;
  }
}
.homeFv__sns {
  position: absolute;
  right: 35px;
  top: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.homeFv__recruit {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  @media screen and (max-width: 750px){
    display: none;
  }
  a {
    display: flex;
    align-items: center;
    padding-left: 65px;
    background-color: #0d4ea6;
    color: #fff;
    font-family: var(--font-josefin);
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -.002em;
    width: 383px;
    height: 98px;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    text-decoration: none;
    position: relative;
    &:after {
      content: "";
      width: 39px;
      aspect-ratio: 77 / 27;
      background: url(../img/arrow_link.svg) no-repeat center / contain;
      position: absolute;
      left: 250px;
      top: 42px;
    }
  }
}
.home__content {
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.homeWork {
  margin-top: 100vh;
  padding-top: 80px;
  overflow: hidden;
  @media screen and (max-width: 750px){
    padding: 48px 20px 0;
  }
}
.homeWorkBlock {
  position: relative;
  display: flex;
  gap: 80px;
  max-width: 1460px;
  padding: 0 35px;
  margin: 40px auto 0;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    gap: 30px;
    padding: 0;
    flex-direction: column;
  }
  + .homeWorkBlock {
    margin-top: 110px;
    @media screen and (max-width: 750px){
      margin-top: 60px;
    }
  }
  &.-reverse {
    flex-direction: row-reverse;
    @media screen and (max-width: 750px){
      flex-direction: column;
    }
  }
}
.homeWorkBlock__left {
  flex: 1;
}
.homeWorkBlock__title {
  img {
    height: 56px;
  }
  @media screen and (max-width: 750px){
    img {
      height: 33px;
    }
  }
}
.homeWorkBlock__subtitle {
  font-size: 38px;
  font-weight: 500;
  color: var(--color-blue);
  letter-spacing: 0.34em;
  @media screen and (max-width: 750px){
    font-size: 21px;
  }
}
.homeWorkBlock__text {
  font-size: 19px;
  font-weight: bold;
  line-height: 2;
  margin-top: 1em;
  color: var(--color-blue);
  @media screen and (max-width: 750px){
    font-size: 11px;
  }
}
.homeWorkBlock__thumb {
  width: 920px;
  margin-right: -190px;
  @media screen and (max-width: 750px){
    width: calc(100% + 20px);
    margin-right: -20px;
  }
  .-reverse & {
    margin-right: 0;
    margin-left: -190px;
    @media screen and (max-width: 750px){
      margin-right: 0;
      margin-left: -20px;
    }
  }
}
.homeWorkBlock__link {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.homeSns {
  margin-top: 120px;
  background: var(--grad-blue);
  border-radius: 50px;
  padding-top: 160px;
  padding-bottom: 240px;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    border-radius: 36px;
    padding: 40px 30px 80px;
  }
}
.homeSns__inner {
  max-width: 1460px;
  padding: 0px 35px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.homeSns__hader {
  display: flex;
  gap: 40px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 0px;
  }
}
.homeSns__title {
  font-size: 100px;
  font-weight: bold;
  font-family: var(--font-josefin);
  letter-spacing: -0.02em;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: 54px;
  }
}
.homeSns__desc {
  font-size: 22px;
  letter-spacing: 0.18em;
  color: #fff;
  font-weight: bold;
  padding-top: 36px;
  @media screen and (max-width: 750px){
    font-size: 12px;
    padding-top: 0;
  }
}
.homeInstagram {
  margin-top: 100px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.homeInstagram__title {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  font-family: var(--font-josefin);
  letter-spacing: -0.02em;
}
.homeInstagram__inner {
  margin-top: 28px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.homeInstagram__btn {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.homeSns__banners {
  display: flex;
  gap: 40px;
  margin-top: 100px;
  @media screen and (max-width: 750px){
    margin-top: 48px;
    gap: 20px;
    flex-direction: column;
  }
}
.homeRecruit {
  margin-top: -50px;
  text-align: center;
  padding-top: 240px;
  padding-bottom: 280px;
  color: #fff;
  background: url(../img/home/bg_recruit.jpg) no-repeat center / cover;
  @media screen and (max-width: 750px){
    margin-top: -36px;
    padding-top: 100px;
    padding-bottom: 130px;
  }
}
.homeRecruit__title {
  font-size: 80px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 54px;
  }
}
.homeRecruit__small {
  font-size: 18px;
  letter-spacing: 0.18em;
  margin-top: 2em;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.homeRecruit__subtitle {
  margin-top: 20px;
  img {
    width: 720px;
    @media screen and (max-width: 750px){
      margin-top: 10px;
      width: 240px;
    }
  }
}
.homeRecruit__read {
  font-size: 30px;
  letter-spacing: .18em;
  margin-top: 1em;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.homeRecruit__btn {
  margin-top: 3em;
  display: flex;
  justify-content: center;
  @media screen and (max-width: 750px){
    margin-top: 2em;
  }
}
.homeNews {
  padding: 170px 0 140px;
  background-color: #ebf0f7;
  @media screen and (max-width: 750px){
    background-color: #fff;
    padding: 60px 20px;
  }
}
.homeNews__inner {
  max-width: 1460px;
  padding: 0px 35px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.homeNews__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 30px;
  }
}
.homeNews__right {
  width: 100%;
  max-width: 1000px;
}
.homeNewsList__item {
  border-bottom: 1px solid var(--color-blue);
  a {
    display: flex;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-decoration: none;
    color: var(--color-blue);
    @media screen and (max-width: 750px){
      padding: 20px 0 20px 20px;
      font-size: 14px;
    }
  }
}
.homeNewsList__title {
  margin-left: 1.5em;
}
.homeNews__btn {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    margin-top: 30px;
    margin-right: 10px;
  }
}
.homeNews__banners {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  gap: 40px;
  a {
    max-width: 420px;
  }
  @media screen and (max-width: 750px){
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    a {
      width: calc(50% - 7.5px);
    }
  }
}
.access {

}
.access__gallery {
  img {
    height: 380px;
    width: auto;
    @media screen and (max-width: 750px){
      height: 360px;
    }
  }
}
.access__title {
  margin-top: 50px;
}
.access__map {
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
  iframe {
    width: 100%;
    height: 480px;
    vertical-align: bottom;
    @media screen and (max-width: 750px){
      height: 360px;
    }
  }
}