@charset "utf-8";

a:hover {
  color: #fff;
}

/* topの共通項目 */
.top-ttl {
  font-size: 2rem;
  font-weight: 300;
  color: var(--base-blue);
  text-align: center;
  line-height: 0.8;
  letter-spacing: 0.06em;
}

.top-subttl {
  font-size: 1rem;
  color: #333;
  text-align: center;
}


.btn-size-top {
  display: block;
  display: grid;
  place-items: center;
  width: 200px;
  height: 60px;
}

.button-pattern1 {
  margin-inline: auto;
}

.bg-blue {
  position: relative;
}

.bg-blue::before {
  content: "";
  width: 84.1%;
  height: 66.9%;
  background: linear-gradient(to right, #c1e2ff 0%, #fff 51.23%, #c1e2ff 100%);
  opacity: 0.8;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

@media all and (min-width: 768px) {
  .top-ttl {
    font-size: 3.125rem;
    text-align: left;
  }

  .top-subttl {
    text-align: left;
    font-size: 1.25rem;
  }

  .button-pattern1 {
    margin-inline: 0;
  }

  .bg-blue::before {
    width: 68.1%;
    height: 71.9%;
  }
}

@media all and (min-width: 992px) {
  .top-ttl {
    font-size: 3.75rem;

  }

  .bg-blue::before {
    height: 66.9%;
  }
}

/* topの共通項目 */

/* fv */
.none {
  display: none;
}

.fv-wrap {
  overflow: hidden;
  height: 95svh;
  min-height: 300px;

}

.mainslider, .fv-wrap .splide__track {
  height: 100%;
}

.splide__slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fv-container {
  position: relative;
  height: 97.2svh;
  width: 100%;

}

.fv-imgbox {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90.48%;

}

.fv-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 50%;
}

.fv-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 54.57%;
  background: linear-gradient(#c1e2ff 0%, #f2f5f7 51.23%, #c1e2ff 100%);
  opacity: 0.8;
}

.fv-txtbox {
  position: absolute;
  top: 30%;
  left: 3vw;
}

.fv-txt1, .fv-txt2 {
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.38);
}

.fv-txt1 {
  font-size: 2.67vw;
  letter-spacing: 0.08em;
}

.fv-txt2 {
  font-size: 5.87vw;
}

/* スクロール */
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 2vw;
  left: 3.35vw;
  width: 8.82px;
}

.scrolldown1-txt {
  position: absolute;
  bottom: 122px;
  left: -18px;
  height: 51.39px;
  width: 8.82px;
  font-size: 0.875rem;
  color: #fff;
  transform: rotate(90deg);
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.38);
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown1:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--base-blue);
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  z-index: 5;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 95px;
  }

  100% {
    bottom: 5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown1:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 102.5px;
  background: #000;
}

@media all and (min-width: 768px) {
  .scrolldown1 {
    bottom: 5.4vw;
    left: 2.5vw;
    width: 11px;
  }

  .scrolldown1:after {
    height: 180px;
  }

  .scrolldown1 img {
    bottom: 150px;
    width: 11px;
    height: 70px;
  }

  .scrolldown1:before {
    width: 14px;
    height: 14px;
    left: -6px;
  }

  @keyframes circlemove {
    0% {
      bottom: 170px;
    }

    100% {
      bottom: 5px;
    }
  }
}


@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {
  .fv-container {
    height: 55vw;
  }

  .fv-imgbox {
    width: 94.79%;
    height: 90.48%;
  }

  .fv-txtbox {
    top: 15vw;
    left: 11vw;
  }

  .fv-bg {
    width: 94.79%;
    height: 54.57%;
  }

  .fv-txt1 {
    font-size: 1.35vw;
  }

  .fv-txt2 {
    font-size: 3.125vw;
  }

  .scrolldown1-txt {
    bottom: 202px;
  }
}

@media all and (min-width: 992px) {}

@media all and (min-width: 1200px) {}

/* fv */

/* news */
.news {
  padding-top: 70px;
}

.postlist-simple {
  width: 100%;
}

.postlist-simple-ttl {
  color: #333;
}

.news-container {}

@media all and (min-width: 768px) {
  .news {
    padding-top: 100px;
  }

  .news .button-pattern1 {
    margin-top: 26px;
  }

  .news-container {
    display: grid;
    grid-template-rows: 100px 100px;
    grid-template-columns: 1fr 80.55%;
    position: relative;
    column-gap: 30px;
  }

  .ttl-box {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }

  .postlist-simple {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    margin-top: 20px;
  }

  .btn-box {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .postlist-simple {
    width: 80%;
  }
}

@media all and (min-width: 992px) {
  .news-container {
    column-gap: 60px;
  }
}

@media all and (min-width: 1200px) {
  .postlist-simple {
    width: 100%;
  }
}

/* //news */

/* company */
.company {
  margin-top: 70px;
  padding-bottom: 50px;
}

.company.bg-blue::before {
  left: 0;
}

.company-imgbox,
.service-imgbox {
  max-width: 500px;
  margin-inline: auto;
}

.company__txt1,
.service__txt1 {
  line-height: 2;
  margin-bottom: 37px;
}


@media all and (min-width: 768px) {
  .company {
    margin-top: 87px;
    padding-bottom: 0;
  }

  .company .top-ttl,
  .service .top-ttl {
    padding-top: 50px;
    padding-bottom: 12px;
  }

  .company-container {
    position: relative;
  }

  .company-imgbox {
    max-width: 300px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .company-txtbox {
    max-width: 360px;
    padding: 25px 0 60px 0;
  }

}

@media all and (min-width: 992px) {
  .company-imgbox {
    width: 46%;
    max-width: 600px;

  }

  .company-txtbox {
    max-width: 572px;
    padding: 50px 0 172px 0;
  }

  .company-txtbox {
    width: 44%;
  }

  .company .top-ttl,
  .service .top-ttl {
    padding-top: 87px;
    padding-bottom: 12px;
  }
}

/* //company */

/* service */
.service {
  margin-top: 70px;
  margin-bottom: 70px;
  padding-bottom: 50px;
}

.service.bg-blue::before {
  right: 0;
}

.service-container {
  display: grid;
  justify-content: right;
  position: relative;
}



@media all and (min-width: 768px) {
  .service {
    margin-top: 100px;
    margin-bottom: 120px;
    padding-bottom: 0;
  }

  .service-inner {
    margin-left: auto;
    max-width: 360px;
  }

  .service-imgbox {
    max-width: 300px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .service-txtbox {

    padding: 25px 0 60px 0;
  }
}

@media all and (min-width: 992px) {

  .service-inner {
    max-width: 410px;
  }

  .service-imgbox {
    width: 46%;
    max-width: 600px;
  }

  .service-txtbox {

    padding: 50px 0 142px 0;
  }
}

@media all and (min-width: 1200px) {
  .service-inner {
    max-width: 530px;
  }
}

@media all and (min-width: 1400px) {
  .service-inner {
    max-width: 572px;
  }
}

/* //service */

/* recruit */

.bg-white {
  background-color: #fff;
}

.recruit-container {
  margin-top: -30%;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  width: 93%;
}

.recruit-container h3 {
  font-size: 1.25rem;
  margin-top: 30px;
}

.recruit .top-ttl,
.recruit .top-subttl {
  text-align: center;
}

.recruit .button-pattern1 {
  margin-inline: auto;
}

.recruit-txt {
  margin-bottom: 45px;
  line-height: 2;
}

.recruit-imgbox img {
  width: 100%;
  max-height: 574px;
  object-fit: cover;
}

@media all and (min-width: 768px) {
  .recruit-container {
    margin-top: -50px;
  }

  .recruit-container {
    padding-top: 83px;
  }

  .recruit-container h3 {
    margin-top: 57px;
    font-size: 1.625rem;
  }

  .recruit-txt {
    width: 76.1%;
    margin-inline: auto;
  }
}

@media all and (min-width: 992px) {
  .recruit-container {
    margin-top: -85px;
  }
}

@media all and (min-width: 1200px) {
  .recruit-container {
    margin-top: -105px;
  }
}

@media all and (min-width: 1600px) {
  .recruit-container {
    margin-top: -190px;
  }
}

/* //recruit */

/* cta */
.cta-contact__txt1 img {
  margin-right: 10px;
  vertical-align: baseline;
}

/* //cta */