@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
}
a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  /* overflow: hidden; */
}

/* top (common) */

.wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  /* height: 100vh; */
}
.main {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 2.5vw;
}
.main-bg {
  background: url("../img/main-bg.png") no-repeat center center;
  background-size: cover;
}

.logo {
  width: 31.7%;
  margin: 0 auto;
}
.logo img {
  width: 100%;
}
.inner {
  width: 72.3vw;
  margin: 0 auto;
}
.inner .call {
  width: 100%;
  text-align: center;
}
.inner .call img {
  width: 50%;
  margin: 3vw 0;
}

.contents {
  width: 100%;
}
.contents .items {
  width: 100%;
  height: 66.7vw;
  background: pink;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.contents .items-01 {
  background: url("../img/item01.png") no-repeat center center;
  background-size: cover;
  margin-bottom: 6vw;
}
.contents .items-01::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.3);
}
.contents .items-02 {
  background: url("../img/item02.png") no-repeat center center;
  background-size: cover;
}
.contents .items-02::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.contents .items img {
  position: relative;
  z-index: 10;
}
.contents .items img.item01 {
  width: 90%;
  margin-bottom: 6vw;
}
.contents .items img.item05 {
  width: 48%;
  position: absolute;
  bottom: 2.5vw;
}

.footer {
  width: 100%;
  margin: 10vw auto;
}
.footer img.ft_logo {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.footer p {
  font-size: 2vw;
  color: white;
  line-height: 3vw;
  text-align: center;
}
.footer p a {
  color: white;
}
