.title-banner-wrap {
  background: url(../images/saeraon/searaon_banner.png);
}

/* intro-wrap */
/* about-info-wrap */

.scroll-event{
  scroll-behavior: smooth;

}

.intro-wrap{
  margin-top: 40px;
}
.about-title-wrap {
  display: flex;
  flex-direction: column;
  margin: 80px 0;
  align-items: center;
  text-align: center;
}
.about-title {
  /* margin-right: 185px; */
  font-size: var(--font-h3);
  font-weight: var(--weight-h3);
  letter-spacing: var(--ls-h3);
  color: var(--color-main);
  position: relative;
}

.about-title:after {
  width: 9px;
  height: 1.5px;
  display: block;
  content: "";
  background-color: var(--color-main);
  position: absolute;
  top: -27px;
  left: 130px;
}
.about-title-wrap > p {
  font-size: var(--font-body2);
  font-weight: var(--weight-body2);
  letter-spacing: var(--ls-body2);
  color: var(--color-light-gray);
}
.about-info-wrap {
  position: relative;
}
.info-box-wrap {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
}
.info-box {
  width: 100%;
  height: 380px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--color-light);
  background: linear-gradient(180deg , #FFFFFF 10.78%, #EAEAEA 85.61%);
  margin: 0 15px;
}
.info-box::after{
  display: block;
  content: "";
  width: 95%;
  height: 95%;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: linear-gradient(0deg , #FFFFFF 10.78%, #EAEAEA 85.61%);
}
.info-logo {
  font-size: 72px;
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 20px;
}
.info-title {
  margin-top: 20px;
  font-size: var(--font-body1);
  font-weight: var(--weight-body1);
  letter-spacing: var(--ls-body1);
  color: var(--color-dark);
  position: relative;
}
.info-title::after {
  display: block;
  content: "";
  width: 18px;
  border-top: 1px solid var(--color-dark);
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
}
.info-title span {
  font-size: var(--font-body1);
  font-weight: var(--weight-body1);
  letter-spacing: var(--ls-body1);
  color: var(--color-main);
}
.info-text {
  font-size: var(--font-body4);
  font-weight: var(--weight-body4);
  letter-spacing: var(--ls-body4);
  color: var(--color-light-gray);
  margin-bottom: 25px;
}
.info-text > p {
  padding: 5px 0;
}

/* about-info-wrap animation */
.info-box-wrap.in-view > div {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  /* animation-timing-function: linear; */
  animation-fill-mode: both;
}
.info-box-wrap.in-view > div:nth-child(1) {
  animation-delay: 0.1s;
}
.info-box-wrap.in-view > div:nth-child(2) {
  animation-delay: 0.25s;
}
.info-box-wrap.in-view > div:nth-child(3) {
  animation-delay: 0.35s;
}
.info-box-wrap.in-view > div:nth-child(4) {
  animation-delay: 0.45s;
}
@keyframes fadeInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* saeraon-banner-wrap */
.saeraon-banner-wrap {
  position: relative;
  height: 100%;
}
.swiper {
  height: 100%;
  width: calc(100vw - (100vw - 1180px) / 2);
}
.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ci-wrap */
.ci-wrap{
  margin-top: 20px;
}
.ci-content > img{
  display: block;
  min-width: 100%;
  min-height: 100%;
}
.ci-text{
  text-align: center;
  margin-top: 20px;
  font-size: var(--font-body2);
  font-weight: var(--weight-body5);
  letter-spacing: var(--ls-body2);
  color: var(--color-dark);
}


/* media qr */
@media screen and (max-width: 1920px) {
  /* about-info-wrap */
  .info-box-wrap {
    justify-content: space-between;
  }
  .info-box {
    left: 0;
    margin: 0 20px;
  }
}
@media screen and (max-width: 1450px) {
  .center {
    width: 90%;
  }
  /* intro-wrap */
  .about-title-wrap {
    display: block;
  }
  .about-title-wrap > p {
    margin-top: 10px;
  }

  /* about-info-wrap */
  .info-box-wrap {
    display: block;
  }
  .info-box {
    display: block;
    margin: 0;
    height: 100%;
    margin: 20px 0;
    padding: 10px 0 20px 0;
  }
  .info-box > div {
    margin: 0;
  }
  .info-title::after {
    top: -5px;
  }

  /* ci-wrap */
  .ci-wrap .pc-view {
    display: none;
  }
  .ci-content > img{
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1023px) {
  /* ci-wrap */
  .ci-text{
    font-size: var(--font-body4);
    letter-spacing: var(--ls-body4);
  }
}
@media screen and (max-width: 767px) {
  /* intro-wrap */
  .about-title-wrap {
    margin: 50px 0;
  }
  .about-title-wrap > p {
    font-size: var(--font-body4);
    font-weight: var(--weight-body4);
    letter-spacing: var(--ls-body4);
  }
  .about-title {
    font-size: 20px;
  }

  /* about-info-wrap */
  .info-logo {
    font-size: 50px;
  }
  .info-title {
    font-size: 17px;
  }
  .info-title::after {
    top: 0px;
  }
  /* ci-wrap */
  .ci-text{
    font-size: var(--font-body5);
    letter-spacing: var(--ls-body5);
  }

  /* banner */
  .swiper {
    width: 100%;
  }
}
