@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* 반응형 데스크탑 스타일 */

* {margin: 0; padding: 0;}
li {list-style: none;}
a {text-decoration: none; color: #000000;}
body, html {
    height: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    display: block;
}

.site-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

header {
    width: 100%;
    transition: all 0.3s ease-in-out;
    position: fixed;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.header-area {
    width: 54%;
    height: 60px;
    margin: 0 auto;
    /* background-color: aliceblue; */
    /* 자식객체를 옆으로 나란히 하되, 부모보다 가로크기가 커질 경우 아래로 떨어지게,,, */
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    width: 80%;
}
.logo a img {
    display: block;
    width: 100%;
}

/* 스크롤시 헤더 고정 */

.h-bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    background-color: #ffffff;
    z-index: 100;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* header.sticky {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    z-index: 100;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

header.sticky .header-area {
    height: 60px;
    line-height: 60px;
}

header.sticky .logo a {
    line-height: 60px;
} */

/* pc에서는 메뉴버튼과 클로즈 버튼 안보이게 해야함. */

.menu-btn, .close-btn {
    display: none;
}

.logo a {
    line-height: 100px;
    display: block;
    transition: all 0.3s ease-in-out;
}

/* nav 버튼 굵기 및 색 변경 */

nav ul li {
    float: left;
    margin-left: 1.7vw;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
}

nav ul li:nth-child(2) a {
    font-weight: 700;
    color: #AB7A42;
}

nav ul li a:hover {
    color:#AB7A42;
}

.close-btn {
    display: none;
}

/* a-start */
section {
    width: 100%;
    position: relative;
}

section>img {
    width: 100%;
    position: relative;
}

section>img:nth-child(2) {
    display: none;
}

.title {
    position: absolute;
    width: 20%;
    top: 7.15%;
    left: 23%;
}

.title>img {
    width: 100%;
}

.title>img:nth-child(2) {
    display: none;
}

.text-area {
    position: absolute;
    top: 10.5%;
    width: 45.2%;
    height:80%;
    left: 50%;
    transform: translateX(-50%);
    /* background-color: antiquewhite; */
}

.line {
    width: 8%;
    top: 6%;
    position: absolute;
    border-bottom: 4px solid #AA9777;
}

.img-area {
    position: absolute;
    width: 100%;
    top: 5%;
}

.img-area>img {
    width: 100%;
}

.text-area p {
    position: absolute;
    font-weight: 400;
    font-size: 1rem;
    top: 8%;
    color: #241607;
}

.text-area h3 {
    position: absolute;
    font-size: 1.3rem;
    color: #AA9777;
    font-weight: 500;
    top: 13%;
}

.text-area>img {
    display: none;
}

.person-img {
    position: absolute;
    width: 100%;
    top: 20%;
}

.per-area {
    width: 22.75%;
    position: absolute;
}

.per-area img {
    width: 100%;
}

.per-area p {
    font-size: 1.2rem;
    position: absolute;
    top: 105%;
    color: #4D2E1C;
    font-weight: 700;
}

.per-area2 {
    left: 25.75%;
}

.per-area3 {
    right: 25.75%;
}

.per-area4 {
    right: 0;
}

.live {
    cursor: pointer;
}

.live-area {
    width: 100%;
    position: absolute;
    top: 40%;
}

.live-area img {
    width: 100%;
    margin: 2% 0 7% 0;
}

.per-area>img:nth-child(2) {
    display: none;
}

/* popup-area */
.popup {
    width: 43%;
    position: fixed;
    top: 20%;
    left: 49.6%;
    transform: translateX(-50%);
    display: none;
}

.popup img:nth-child(1) {
    width: 100%;
    position: relative;
}

.popup img:nth-child(2) {
    display: none;
}

.popup img:nth-child(3) {
    width: 30%;
    position: absolute;
    bottom: 16%;
    left: 13.5%;
    cursor: pointer;
}

.modal-back {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: none;
}

/* footer */

footer {
    width: 100%;
    position: relative;
    margin-top: -1%;
}

footer>img {
    width: 100%;
    position: relative;
}

footer>img:nth-child(2) {
    display: none;
}

footer>a {
    position: absolute;
    width: 3.8%;
    height: 10%;
    /* background-color: #ffffff; */
    top: 50%;
    left: 65.2%;
}