@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%;
}

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

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(1) 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;
}

.m-text {
    display: none;
}

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

.title>img {
    width: 100%;
}

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

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

.text-area h4 {
    font-size: 1.6rem;
    color: #AA9777;
    font-weight: 500;
}

.line {
    width: 8%;
    top: 3%;
    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: 25%;
    color: #241607;
}

.title2 {
    top: 38%;
}

.line2 {
    top: 41.5%;
}

.img-area2 {
    top: 43.2%;
}

.sub-title {
    position: absolute;
    left: -4%;
    width: 65%;
}

.sub-title>img {
    width: 100%;
}

.sub1 {
    top: 64%;
}

.text1 {
    top: 67% !important;
}

.sub2 {
    top: 72.5%;
}

.text2 {
    top: 75.5% !important;
}

.sub3 {
    top: 81%;
}

.text3 {
    top: 84% !important;
}

.sub4 {
    top: 89.5%;
}

.text4 {
    top: 92.5% !important;
}

.sub5 {
    top: 98%;
}

.text5 {
    top: 101% !important;
}


/* 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%;
}