@keyframes goAnimate {
  100% {
    transform: translateX(-50%); } }
@keyframes yAnimate {
  0% {
    transform: translateY(60px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }
img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; }

.common_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }

.item_hover {
  overflow: hidden; }
  .item_hover:hover img {
    transform: scale(1.05); }
  .item_hover img {
    width: 100%;
    height: 100%;
    transition: .6s ease; }

.home .section1 {
  padding: 4.7916666667vw 10.4166666667vw 8.0729166667vw 10.4166666667vw;
  background: #F9F9F9; }
  .home .section1 .top {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 5; }
    .home .section1 .top .item .p1 {
      color: #000;
      font-weight: bold;
      margin: 0 0 0.8333333333vw; }
    .home .section1 .top .item .select {
      position: relative; }
      .home .section1 .top .item .select.on .hide {
        opacity: 1;
        pointer-events: auto; }
      .home .section1 .top .item .select .show {
        width: 38.75vw;
        height: 3.125vw;
        background: #FFF;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2.03125vw 0 0.8854166667vw;
        cursor: pointer; }
        .home .section1 .top .item .select .show p {
          color: #000; }
        .home .section1 .top .item .select .show svg {
          width: 1.0416666667vw;
          height: fit-content; }
      .home .section1 .top .item .select .hide {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transition: 1s; }
        .home .section1 .top .item .select .hide .list {
          height: 2.3958333333vw;
          padding: 0 0.8854166667vw;
          border-bottom: 1px solid rgba(0, 0, 0, 0.3);
          display: flex;
          align-items: center;
          color: #000;
          transition: .3s ease;
          cursor: pointer; }
          .home .section1 .top .item .select .hide .list:first-child {
            border-top: 1px solid rgba(0, 0, 0, 0.3); }
          .home .section1 .top .item .select .hide .list.on {
            color: rgba(0, 0, 0, 0.4); }
  .home .section1 .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6666666667vw;
    margin: 3.125vw 0 0 0; }
    .home .section1 .content .item {
      width: 100%;
      height: 14.0104166667vw;
      background: #FFF;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center; }
      .home .section1 .content .item:hover .position {
        opacity: 1; }
      .home .section1 .content .item .img {
        object-fit: contain; }
      .home .section1 .content .item .end {
        position: absolute;
        right: 0;
        bottom: 0;
        display: flex;
        z-index: 1; }
        .home .section1 .content .item .end .p1 {
          width: 3.125vw;
          height: 1.6666666667vw;
          background: #FBFBFB;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000; }
        .home .section1 .content .item .end .p2 {
          width: 4.3229166667vw;
          height: 1.6666666667vw;
          background: #F1F1F1;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000; }
      .home .section1 .content .item .position {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 3;
        padding: 2.6041666667vw 2.0833333333vw;
        opacity: 0;
        transition: 1s; }
        .home .section1 .content .item .position .p1 {
          color: #000;
          margin: 0 0 1.1458333333vw; }
        .home .section1 .content .item .position .p2 {
          color: #000;
          line-height: 1.25vw;
          /* 150% */
          letter-spacing: 0.48px; }
        .home .section1 .content .item .position .more {
          position: absolute;
          right: 0;
          bottom: 0;
          z-index: 1;
          width: 6.5104166667vw;
          height: 1.6666666667vw;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.625vw; }
          .home .section1 .content .item .position .more svg {
            width: 0.78125vw;
            height: fit-content; }
          .home .section1 .content .item .position .more p {
            color: #fff; }
@media screen and (max-width: 768px) {
  .home {
    padding-top: 60px; }
    .home .section1 {
      padding: 50px 5%; }
      .home .section1 .top {
        margin: 0 0 30px;
        flex-direction: column;
        gap: 20px; }
        .home .section1 .top .item {
          width: 100%; }
          .home .section1 .top .item:first-child {
            position: relative;
            z-index: 5; }
          .home .section1 .top .item .p1 {
            margin: 0 0 10px; }
          .home .section1 .top .item .select .show {
            width: 100%;
            padding: 0 5%;
            height: 50px; }
            .home .section1 .top .item .select .show svg {
              width: 20px; }
          .home .section1 .top .item .select .hide .list {
            height: 40px;
            padding: 0 5%; }
      .home .section1 .content {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px; }
        .home .section1 .content .item {
          height: 250px; }
          .home .section1 .content .item .end .p1, .home .section1 .content .item .end .p2 {
            width: fit-content;
            height: 30px;
            padding: 0 10px; }
          .home .section1 .content .item .position {
            padding: 30px 5%; }
            .home .section1 .content .item .position .p1 {
              margin: 0 0 10px; }
            .home .section1 .content .item .position .p2 {
              line-height: 28px; }
            .home .section1 .content .item .position .more {
              width: fit-content;
              height: 35px;
              padding: 0 5%;
              gap: 10px; }
              .home .section1 .content .item .position .more svg {
                width: 15px;
                height: fit-content; } }

/*# sourceMappingURL=ecological.css.map */
