.keyvisual {
  width: 100%;
  height: 100vh;
}
body {
  background-color: #fff;
}
.keyvisual_bg {
  width: 100%;
  height: 100%;
  background: url(../../img/interior/interiorStart/interior-kv.jpg) no-repeat
    center/cover;
}
.keyvisual_wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.keyvisual_title h1 {
  font-size: 54px;
  line-height: 68px;
  letter-spacing: -1px;
  font-weight: 400;
  color: #fff;
}
.keyvisual_title {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.7px;
  color: #fff;
}

/* check */
.check {
  padding: 100px 0;
}
.check_wrap {
  display: flex;
}
.common_title {
  flex: 1;
}
.check_contents {
  flex: 3;
}
.common_title h2,
.common_title h4 {
  font-size: 24px;
  font-weight: 500;

  letter-spacing: -0.7px;
  color: #333;
}

.check_contents_wrap {
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  grid-template-rows: 593px 761px 593px;
  column-gap: 50px;
  row-gap: 100px;
}
.check_content:first-child {
  grid-column: 1/3;
  grid-row: 1/2;
}
.check_content:nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.check_content:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.check_content:nth-child(4) {
  grid-column: 1/3;
  grid-row: 3/4;
}

.check_content_text p {
  font-size: 12px;
  color: #333;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: -0.1px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.check_content_text h3 {
  font-size: 24px;
  font-weight: 300;

  letter-spacing: -0.7px;
  color: #333;
}
.check_content_text p:last-child {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.7px;
  color: #333;
}

/* checktab */
.checktab {
  padding: 100px 0;
  background-color: #fcfbfa;
  height: 100%;
}
.checkSlide {
  flex: 3;
  height: 100%;

  overflow: hidden;
}
.checktab_wrap {
  display: flex;
}
.slide_wrap {
  padding: 50px;
}
.check_top {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
.check_top_title h5 {
  font-size: 42px;
  color: #333;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: -0.1px;
  padding-bottom: 2px;
}
.check_top_title h5 span {
  font-size: 37px;
  color: #707070;
  font-weight: 300;
  line-height: 54px;
  letter-spacing: -0.7px;
}
.check_top_img {
  width: 580px;
}
.check_bottom {
  width: 100%;
  height: 100%;
  padding-top: 30px;
  border-top: 1px solid #707070;
  display: flex;
  gap: 20px;
}
.check_bottom_title h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.7px;
  color: #333;
  position: relative;
}
.check_bottom_title p {
  padding-top: 10px;
  font-size: 13px;
  color: #707070;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: -0.7px;
  word-break: keep-all;
}

.checkSlide_wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.checkSlide_page {
  display: flex;
  background-color: #fcfbfa;
  width: 100%;
  height: 50px;
  margin-bottom: -10px;
  /* justify-content: space-around; */
  opacity: 1;
  align-items: center;
  position: relative;
}
.checkSlide_page li {
  width: auto;
  height: 100%;
  padding: 0 14px;
  background: none;
  opacity: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.checkSlide_page li span {
  font-size: 14px;
  color: rgba(51, 51, 51, 0.281);
  font-weight: 700;
}
.checkSlide_page li::before {
  width: 100%;
  height: 5px;
  background-color: #333;
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  opacity: 0;
}

.checkSlide_page li:after {
  width: 10px;
  height: 10px;
  background: url(../../img/icons/icon-input-success-small.png) no-repeat
    center/contain;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  opacity: 0;
}
.checkSlide_page li.active:after {
  opacity: 1;
}
.checkSlide_page li.active span {
  font-weight: 500;
  color: #333;
}
.checkSlide_page li.active::before {
  opacity: 1;
}
.keyvisual_scroll {
  width: 1px;
  height: 60px;
  z-index: 1;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #fff;
}
.keyvisual_scrollbar {
  width: 100%;
  height: 100%;
  background-color: #ffffff91;
  position: relative;
  overflow: hidden;
}
.keyvisual_scrollbar-color {
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scrollBar 2s infinite linear;
}
@keyframes scrollBar {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
