@charset "utf-8";

#header {
    background: transparent;
    padding: 0 60px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

#header.scroll {
    background: rgb(0, 0, 0);
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

#header a {
    color: #ffffff;
}

#header #logo a {
    display: block;
    width: 150px;
    height: 60px;
    background-image: url(../images/layout/logo_sonoseason.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
}

#header > #gnb {
    display: flex;
    flex-direction: row;
    gap: 48px;
}

#header > #gnb > li > a {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    position: relative;
    padding: 16px;
}

#header > #gnb > li > a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    transition: all 0.3s;
}

#header > #gnb > li > a:hover::after {
    width: calc(100% - 32px);
}

#header .ico-menu {
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../images/layout/ico_menu.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
    margin-left: 75px;
}

.mobile-menu {
    display: none;
}

#main-visual {
    height: 785px;
    background: #c09c88;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#main-visual .slogan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
    padding-bottom: 130px;
}

#main-visual .slogan p {
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s;
    font-family: "Lato", "Noto Sans KR", sans-serif;
    font-size: 4rem;
    line-height: 5rem;
}

#main-visual .slogan p.scroll-in {
    opacity: 1;
    transform: translateY(0px);
}

#main-visual .swiper-slide {
    height: 785px;
}

#main-visual .swiper-slide img {
    width: 100%;
    height: 785px;
    object-fit: cover;
}

#main-visual .scroll-down {
    position: absolute;
    bottom: 163px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s;
}

#main-visual .scroll-down.scroll-in {
    opacity: 1;
    transform: translateY(0);
}

#main-visual .scroll-down .bar {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

#main-visual .scroll-down .bar::after {
    content: "";
    height: 14px;
    width: 1px;
    top: 0;
    left: 0;
    background: #ffffff;
    position: absolute;
    animation: wheel 1.5s infinite;
    -webkit-animation: wheel 1.5s infinite;
}

@keyframes wheel {
    to {
        top: 26px;
    }
}

@-webkit-keyframes wheel {
    to {
        top: 26px;
    }
}

#main-visual .scroll-down p {
    font-size: 0.875rem;
    font-family: "Lato", "Noto Sans KR", sans-serif;
    font-weight: 700;
    line-height: 1.05rem;
    margin-top: 10px;
}

#footer {
    background-color: #3e3b38;
    color: rgba(255, 255, 255, 0.6);
}

#footer .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#footer .wrapper.column {
    flex-direction: column;
    align-items: flex-start;
}

#footer .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 50px;
}

#footer .divider:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

#footer .footer-logo {
    width: 400px;
    height: 16px;
    background-image: url(../images/layout/logo_footer.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

#footer .group-site {
    position: relative;
}

#footer .group-site .site-list {
    position: absolute;
    top: 39px;
    width: 100%;
    background: #3e3b38;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    flex-direction: column;
    padding: 10px 20px;
    gap: 5px;
    font-size: 0;
}

#footer .group-site .site-list li {
    display: inline-block;
    width: 50%;
}

#footer .group-site .site-list li a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

#footer .group-site .site-list li a::before {
    content: "·  ";
    display: inline;
}

#footer .group-site .selector {
    width: 250px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    cursor: pointer;
}

#footer .group-site .selector span {
    font-family: "Lato", "Noto Sans KR", sans-serif;
    font-weight: 700;
}

#footer .group-site .selector i.ico-arrow {
    width: 24px;
    height: 24px;
    background-image: url(../images/layout/footer_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#footer .address {
    display: flex;
    flex-direction: row;
}

#footer .address dd {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    line-height: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

#footer .address dd:last-child {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
}

#footer .copyright {
    font-family: "Lato", "Noto Sans KR", sans-serif;
    margin-top: 7px;
    font-size: 1rem;
}

#site-map {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(192, 156, 136, 0.8);
    z-index: 99999;
}

.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.fab .btn-top {
    display: flex;
    width: 64px;
    height: 64px;
    background-color: #c09c88;
    background-image: url(../images/layout/ico_top.svg);
    background-repeat: no-repeat;
    background-size: 40px 20px;
    background-position: center 20px;
    border-radius: 32px;
    align-items: center;
    justify-content: center;
    text-indent: -9999px;
    overflow: hidden;
}

/* nav-icon */

* {
    margin: 0;
    padding: 0;
}

/* Icon 1 */

.nav-icon {
    width: 20px;
    height: 16px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/* Icon 3 */

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 7px;
}

.nav-icon span:nth-child(4) {
    top: 14px;
}

.nav-icon.open span {
    background: #484747;
}

.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
