@charset "UTF-8";
.fv {
  padding: 190px 40px 130px;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 32vw 5.3333333333vw 16vw;
  }
}
.fv__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    flex-direction: column;
  }
}
.fv__contents {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .fv__contents {
    width: 100%;
    margin-bottom: 13.3333333333vw;
  }
}
.fv__img {
  width: 50%;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .fv__img {
    width: 85%;
    margin-left: auto;
  }
}
.fv__img .img01 {
  margin-left: auto;
  display: block;
  width: 73%;
}
.fv__img .img01::after {
  content: "";
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #88D8F2;
  position: absolute;
  bottom: 70px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .fv__img .img01::after {
    width: 60px;
    height: 60px;
    bottom: 20px;
  }
}
.fv__img .img02 {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 40%;
}
.fv__img .img02::after {
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.fv__title {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 5.3333333333vw;
  }
}
.fv__title span {
  font-weight: bold;
  font-size: 64px;
  color: #047CA9;
}
@media screen and (max-width: 768px) {
  .fv__title span {
    font-size: 10.6666666667vw;
  }
}

.intro {
  padding: 150px 40px;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 21.3333333333vw 5.3333333333vw;
  }
}
.intro .inner {
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.8);
  padding: 70px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .intro .inner {
    padding: 8vw 5.3333333333vw;
    border-radius: 16px;
  }
}
.intro__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .intro__box {
    flex-direction: column;
    gap: 25px;
  }
}
.intro__contents {
  width: 54%;
}
@media screen and (max-width: 768px) {
  .intro__contents {
    width: 100%;
  }
}
.intro__contents h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 2;
  color: #047CA9;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .intro__contents h2 {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
}
.intro__contents p {
  font-size: 16px;
  line-height: 2;
  font-weight: normal;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .intro__contents p {
    font-size: 3.7333333333vw;
    margin-bottom: 8vw;
  }
}
.intro__contents p span {
  color: #047CA9;
}
.intro__img {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .intro__img {
    width: 100%;
  }
}

.job {
  padding: 70px 40px 50px;
}
@media screen and (max-width: 768px) {
  .job {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.job .section__text {
  max-width: 640px;
  font-size: 18px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .job .section__text {
    max-width: 100%;
    font-size: 4vw;
  }
}
.job__lists {
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .job__lists {
    margin: 10.6666666667vw auto;
  }
}

.job__lists {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .job__lists {
    display: block;
  }
}

/* ======================
左側
====================== */
.job__lists--left {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .job__lists--left {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
  }
}

/* 上2列 */
.job__lists--left .job__list:nth-child(1) {
  grid-column: 1/4;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .job__lists--left .job__list:nth-child(1) {
    height: auto;
    width: 48.5%;
    margin-bottom: 15px;
  }
}

.job__lists--left .job__list:nth-child(2) {
  grid-column: 4/7;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .job__lists--left .job__list:nth-child(2) {
    height: auto;
    width: 48.5%;
    margin-bottom: 15px;
  }
}

/* 下3列 */
.job__lists--left .job__list:nth-child(3) {
  grid-column: 1/3;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .job__lists--left .job__list:nth-child(3) {
    height: auto;
    width: 31.5%;
  }
}

.job__lists--left .job__list:nth-child(4) {
  grid-column: 3/5;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .job__lists--left .job__list:nth-child(4) {
    height: auto;
    width: 31.5%;
  }
}

.job__lists--left .job__list:nth-child(5) {
  grid-column: 5/7;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .job__lists--left .job__list:nth-child(5) {
    height: auto;
    width: 31.5%;
  }
}

/* ======================
右側（縦長）
====================== */
.job__lists--right {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .job__lists--right {
    width: 100%;
  }
}

.job__lists--right .job__list {
  height: 452px;
}
@media screen and (max-width: 768px) {
  .job__lists--right .job__list {
    height: auto;
    width: 100%;
  }
}

/* 共通 */
.job__list {
  overflow: hidden;
  border-radius: 12px;
}

.job__list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}/*# sourceMappingURL=top.css.map */