:root {
  --main-color: #2ee2e2;
  --font-ko: "Pretendard", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --spacing: 2rem;
  --foot-border_color: #2c2c2c;
}

.display_title {
  font-size: 10vw;
  white-space: nowrap;
  line-height: 1;
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  text-align: left;
  margin-bottom: 2rem;
}

.display_title img {
  width: 100%;
  display: block;
}

.lead {
  font-size: 1.15em;
}
.header_height_space {
  position: relative;
  width: 100%;
  height: 20vh;
}

@media only screen and (max-width: 768px) {
  .header_height_space {
    position: relative;
    width: 100%;
    height: 10vh;
  }
}

hr {
  margin: 15px 0;
  background: #c5c5c5;
  border: none;
  height: 1px;
}
/*  */
.for-mo {
  display: none;
}

/* 기본: 일반 PC용 보이기 */
.for-pc {
  display: block;
}

/* 768px 이하 + 세로 비율이 가로보다 큰 경우 (portrait) */
@media screen and (max-width: 768px) and (orientation: portrait) {
  .for-pc {
    display: none;
  }
  .for-mo {
    display: block;
  }
}
