#intro {
  height: 100vh;
}
.intro_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; /*축 바꾸기*/
  justify-content: flex-end;

  padding: 16px;
}
.intro_title {
  color: var(--black100);
  font-size: 8vw;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.3vw;
  white-space: nowrap; /*글자가 밑으로 안 떨어지게*/
}
.intro_text {
  width: 100%;
  height: 40vh;
  background-color: peru;
  background: url(../../img/intro.jpg) center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--white);
  cursor: all-scroll;
}
.intro_text .text {
  font-size: 3vw;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-align: center;
  position: relative;
  z-index: 100;
  transition: opacity 0.2s;
}
.intro_text .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  overflow: hidden;
  filter: grayscale(100%);
}
.intro_text:hover .img {
  filter: grayscale(0);
}
.intro_lines {
  width: 100%;
}
.intro_lines .line {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 0.5vw;
  background-color: var(--black100);
  background: url(../../img/intro.jpg) center;
  background-size: cover;
  background-attachment: fixed;
}
.intro_lines.bottom .line {
  margin-top: 0.5vw;
  display: none;
}
.intro_lines .line:nth-child(1) {
  height: 1px;
}
.intro_lines .line:nth-child(2) {
  height: 2px;
}
.intro_lines .line:nth-child(3) {
  height: 5px;
}
.intro_lines .line:nth-child(4) {
  height: 9px;
}
.intro_lines .line:nth-child(5) {
  height: 13px;
}
.intro_lines .line:nth-child(6) {
  height: 17px;
}
.intro_lines .line:nth-child(7) {
  height: 25px;
}

/* bottom */
.intro_lines.bottom .line:nth-child(7) {
  height: 1px;
}
.intro_lines.bottom .line:nth-child(6) {
  height: 2px;
}
.intro_lines.bottom .line:nth-child(5) {
  height: 5px;
}
.intro_lines.bottom .line:nth-child(4) {
  height: 9px;
}
.intro_lines.bottom .line:nth-child(3) {
  height: 13px;
}
.intro_lines.bottom .line:nth-child(2) {
  height: 17px;
}
.intro_lines.bottom .line:nth-child(1) {
  height: 25px;
}

@media (max-width: 800px) {
  .intro_inner {
    justify-content: center;
  }
  .intro_lines.bottom .line {
    display: block;
  }
  .intro_text .text {
    font-size: 24px;
  }
}

@media (max-width: 360px) {
  .intro_title {
    display: none;
  }
}
