@charset "utf-8";

:root{
  --main-color: #616160;
}


/*header*/
header .nav_1 .gnb li a{
  color: var(--main-color);
}


header .nav_2 ul li a{
  color: var(--main-color);
}

header{
  width: 100%;
  height: 240px;
  background-color: #fff;
}

header .nav_1 .depth2 li a{
  color: var(--main-color);
}

.ham span {
  background-color: var(--main-color);
}

.mobile-header{
  position: static;
  height: 50px;
}


/*collection*/

.collection {
    margin: 300px auto;
}


.collection-banner{
  height: 330px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  url(../img/collection_banner.jpg) no-repeat center top -100px / cover;
  position: relative;
  transition: all 0.8s ease-in-out;
}

.collection-banner.act{
  height: 0;
}

.collection-banner h1{
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 35px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.collection ul li {
    width: 1100px;
    height: 500px;
    box-shadow: 8px 7px 30px 0 rgba(0, 0, 0, 0.09);
    margin: 100px auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.collection ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.collection ul li:nth-child(1)::before {
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0) 48%, rgba(255, 215, 215, 0.28) 100%);
}

.collection ul li:nth-child(2)::before {
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0) 48%, rgba(217, 203, 191, 0.28) 100%);
}

.collection ul li:nth-child(3)::before {
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0) 48%, rgba(190, 227, 255, 0.28) 100%);
}

.collection ul li:nth-child(4)::before {
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0) 48%, rgba(244, 199, 255, 0.28) 100%);
}

.collection ul li:hover::before {
    opacity: 1;
}

.collection ul li .collection-box {
    display: flex;
    justify-content: center;
}

.collection ul li .collection-box .collection-img {
    width: 648px;
    height: 550px;
}

.collection ul li .collection-box .collection-txt {
    width: calc(100% - 648px);
    height: 550px;
    padding: 80px 60px 0;
}

.collection ul li .collection-box .collection-txt h2 {
    font-size: 30px;
    font-weight: normal;
    line-height: 1.5;
    padding-bottom: 40px;
}

.collection ul li .collection-box .collection-txt p {
    font-size: 15px;
    line-height: 1.5;
}

.collection ul li .collection-box .collection-img img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.collection ul li .collection-box .collection-txt p:nth-of-type(2) {
    padding-top: 40px;
}

.collection ul li .more {
    position: absolute;
    right: 70px;
    bottom: 50px;
}

.collection .more .more-arrow {
    margin-top: 8px;
    z-index: 20;
    width: 40px;
    height: 10px;
}

.collection .more .more-arrow a p {
    font-size: 16px;
}

.collection .more .more-arrow img {
    z-index: 20;
}

.collection .more .more-arrow::before {
    z-index: -10;
    width: 30px;
    height: 30px;
    top: -10px;
    right: -10px;
}

@media(max-width:1200px) {
    .collection ul li {
        width: 760px;
        height: 390px;
        margin: 60px auto;
    }

    .collection ul li .collection-box .collection-img {
        width: 408px;
        height: 390px;
    }

    .collection ul li .collection-box .collection-txt {
        width: calc(100% - 408px);
        height: 390px;
        padding: 55px 35px 0;
    }

    .collection ul li .collection-box .collection-txt h2 {
        font-size: 19px;
        line-height: 1.5;
        padding-bottom: 40px;
    }

    .collection ul li .collection-box .collection-txt p {
        font-size: 11px;
        line-height: 1.5;
    }

    .collection ul li .more {
        position: absolute;
        right: 50px;
        bottom: 30px;
    }

    .collection ul li .more a {
        gap: 20px;
    }

    .collection .more .more-arrow {
        margin-top: 8px;
        z-index: 20;
        width: 40px;
        height: 10px;
    }

    .collection .more a p {
        font-size: 15px;
        padding-top: 5px;
    }

    .collection .more .more-arrow {
        width: 30px;
    }

}

@media(max-width:800px) {

    .collection {
        margin: 0 auto 150px;
    }
    .collection ul li {
        width: 630px;
        height: 322px;
        margin: 80px auto;
    }

    .collection ul li .collection-box .collection-img {
        width: 338px;
        height: 322px;
    }

    .collection ul li .collection-box .collection-txt {
        width: calc(100% - 338px);
        height: 322px;
        padding: 45px 30px 0;
    }

    .collection ul li .collection-box .collection-txt h2 {
        font-size: 15px;
        padding-bottom: 20px;
    }

    .collection ul li .collection-box .collection-txt p {
        font-size: 10px;
    }

    .collection ul li .more {
        position: absolute;
        right: 50px;
        bottom: 30px;
    }

    .collection ul li .more a {
        gap: 20px;
    }

    .collection .more .more-arrow {
        margin-top: 8px;
        z-index: 20;
        width: 40px;
        height: 10px;
    }

    .collection .more a p {
        font-size: 15px;
        padding-top: 5px;
    }

    .collection .more .more-arrow {
        width: 30px;
    }
}

.more a {
    display: flex;
    gap: 27px;
}

.more a:hover .more-arrow img {
    transform: translateX(15px);
}

.more a:hover .more-arrow::before{
    background-color: #bbc2d1;
}
.more a p {
    font-size: 20px;
    font-family: 'KBO-Dia-Gothic_light', cursive;
    color: var(--main-color);
}

.more .more-arrow {
    margin-top: 5px;
    width: 50px;
    height: 17px;
    position: relative;
}

.more .more-arrow img {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.more .more-arrow::before {
    content: "";
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 50%;
    background-color: #D9D9D9;
    position: absolute;
    top: -13px;
    right: -20px;
    z-index: -10;
    transition: all 0.5s;
}

@media(max-width:1024px){
  .collection-banner{
    margin-top: 7px;
    height: 280px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/collection_banner.jpg) no-repeat center top -50px / cover;
  }

  .collection-banner h1{
    font-size: 29px;
  }
}


@media(max-width:765px){
  .collection-banner{
    height: 260px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/collection_banner.jpg) no-repeat center top 0px / cover;
  }

  .collection-banner h1{
    font-size: 25px;
  }
}