@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

@font-face {
  font-family: 'S-CoreDream-3Light';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.gowun-batang-regular {
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.scoredream-regular {
  font-family: 'S-CoreDream-3Light';
  font-weight: 400;
  font-size: normal;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

:root {
  --main-color: #1a1a1a;
  --brown: #534740;
  --maru: "MaruBuri";
  --pre: "Pretendard Variable";
  --gowun: "Gowun Batang" serif;
  --poppin: "Poppins", serif;
  --sdream: 'S-CoreDream-3Light';
  --serif: "Noto Serif JP", serif;
}

/* 공통 */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  /* font-size: 0.85vw; */
  color: var(--main-color);
}

body,
html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  font-family: var(--serif);
}

img {
  max-width: 100%;
  vertical-align: top;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.wrap {
  padding: 5%;
}

.m_box {
  display: none;
}

.mobile-menu {
  display: none;
}


/* 헤더 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 10%;
  z-index: 1000;
  transition: all 0.7s ease 0.1s;
  background-color: transparent;

  &:hover {
    height: 15vw;
    background-color: rgba(255, 255, 255, 0.574);

    .header_wrap ul li .depth {
      max-height: 100%;
      opacity: 1;
    }

    .header_wrap .logo img {
      filter: brightness(0.055);
      transition: 0.3s;
    }

    .header_wrap > ul > li > a {
      color: #1a1a1a;
      transition: 0.3s;
    }
  }

  &::before {
    background-color: #ccc;
    height: 0.05vw;
    position: absolute;
    width: 100%;
    content: "";
    left: 0;
    bottom: 0;
    display: block;
  }

  .header_wrap {
    position: absolute;
    width: 80%;
    left: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;

    .logo {
      top: 1.5rem;

      img {
        /* height: 7.05rem; */
        display: block;
        max-height: 40px;
        transition: 0.3s;
      }
    }

    > a {
      position: fixed;
      left: 10vw;
    }

    > ul {
      position: absolute;
      right: 0;
      height: 100%;
      display: flex;

      > li {
        height: 100%;
        flex: 1 1 auto;
        position: relative;

        > a {
          line-height: 10vh;
          position: relative;
          padding: 0 1.6vw;
          display: block;
          color: #fff;
          font-weight: 600;
          font-family: var(--pre);
          transition: 0.3s;
        }

        &:hover:not(.buy) > a::after {
          width: 100%;
          opacity: 1;
          transform: scaleX(1);
        }

        .depth {
          position: absolute;
          width: 100%;
          font-size: 1vw;
          overflow: hidden;
          max-height: 0;
          opacity: 0;
          padding-top: 0.2vw;
          -webkit-transition: all 0.5s ease 0.1s;
          transition: all 0.5s ease 0.1s;

          li {
            a {
              text-align: center;
              padding: 0.35vw 0;
              color: #534740;
              font-size: 0.8vw;
              font-weight: 400;
              line-height: 1vw;
              font-family: var(--pre);
            }

            &:hover a {
              color: #534740;
              transition: 0.3s all;
              font-weight: 700;
            }
          }
        }

        &:last-child {

          a {
            position: relative;
            margin-left: 1.2vw;
            display: flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0 1.2vw;
            font-family: var(--pre);
            color: white;
            font-size: 0.8vw;
            font-weight: 400;
            height: auto;

            &::before {
              background-color: #534740;
              height: 50%;
              z-index: -1;
              width: 100%;
              content: "";
              left: 0;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              border-radius: 2rem;
            }

          }

          img {
            vertical-align: middle;
            display: block;
            filter: brightness(2);
            max-width: 1.5rem;
          }
        }
      }
    }
  }


  .ham {
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    z-index: 88;
    position: absolute;
    right: 5vw;

    .line {
      display: block;
      background-color: #1a1a1a;
      border-radius: 5rem;
      width: 25px;
      height: 2px;
    }
  }

  #ham-toggle:checked + .ham .line:first-child,
  #ham-toggle:checked + .ham .line:last-child {
    opacity: 0;
    translate: 200%;
    transition: 0.5s
  }
}

.lang {
  position: absolute;
  content: '';
  right: 5vw;
  flex-direction: column;
  display: flex;
  height: 40px;
  font-family: var(--gowun);
  top: 30px;
  z-index: 1;
}

.lang > a {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #111;
  border-radius: 6px;
  font-family: var(--pre);
  background: rgba(255, 255, 255, 0.5);

  &:hover {
    background-color: rgba(83, 71, 64, 0.75);
    color: #fff;
  }
}

.lang .l_box2,
.lang .l_box3,
.lang .l_box4 {
  display: none;
  text-align: center;
}

.lang:hover .l_box2,
.lang:hover .l_box3,
.lang:hover .l_box4 {
  display: block;
}

@media screen and (max-width: 1281px) {
  .lang {
    display: none;
  }
}

.swiper-btn {
  display: flex;
  gap: 0rem;
  align-items: center;
  padding-top: 2rem;
  cursor: pointer;
}

.m3 .swiper-btn {
  justify-content: end;
  padding-top: 2.5rem;
  padding-right: 8rem;

  > div {
    /* border: 1px solid #1a1a1a; */
    padding: 1rem;
    border-radius: 900px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
  }
}

/* 메인 */
main {
  overflow: hidden;
  letter-spacing: -0.4px;

  .m1 {
    height: 100dvh;

    .wrap {
      padding: 0;
      margin-top: 2rem;
    }

    .ms_1 {
      margin-top: -2%;
      left: 50%;
      transform: translate(-50%, 0);
      width: 100%;
      height: auto;
      transition: all 0.5s;
      position: fixed;
      animation: scale linear both;
      animation-timeline: scroll();
      animation-range: 0vh 20dvh;
      z-index: 99;
      border-radius: 0 0 2rem 2rem;
      overflow: hidden;
      filter: brightness(1.05);

      .swiper {
        width: 100%;
        height: 100%;
        background-color: #1a1a1a;
      }

      .swiper-slide {
        width: 100%;
        height: 100%;
        cursor: grab;
        position: relative;


        & .ms_intro {
          position: absolute;
          display: inline-block;
          content: "";
          width: auto;
          height: auto;
          left: 15%;
          top: 50%;
          transform: translateY(-50%);


          & h2 {
            color: white;
            font-size: 3.125vw;
            margin-bottom: 1.2rem;
            font-weight: 500;
            font-family: var(--serif);
          }

          & p {
            color: white;
            font-size: 22px;
            font-family: var(--poppin);
            font-weight: 400;
            opacity: 0.7;
          }

          & a {
            color: white;
            font-size: 1vw;
            font-family: var(--pre);
            margin-top: 10%;
            display: inline-block;

            > i {
              display: inline-block;
              width: 2.5vw;
              margin-left: 0.6rem;
            }
          }
        }
      }

      img {
        display: block;
        margin: 0 auto;
        width: 100%;
        pointer-events: none;
      }

      .swiper-button-next,
      .swiper-rtl .swiper-button-prev {
        right: 3vw;
        content: "";
        width: 15px;
        height: 30px;
      }

      .swiper-button-prev:after,
      .swiper-rtl .swiper-button-next:after {
        content: "";
      }

      .swiper-button-next:after,
      .swiper-rtl .swiper-button-prev:after {
        content: "";
      }

      .swiper-button-prev,
      .swiper-rtl .swiper-button-next {
        left: 3vw;
        width: 15px;
        height: 30px;
        content: "";
      }
    }
  }

  .m2 {
    padding: 5% 0;
    padding-top: 0;

    & .wrap {
      padding: 0 0 0 12%;
    }

    & h3 {
      font-size: 2.3vw;
      font-weight: 500;
      position: relative;
      color: var(--brown);
      font-family: var(--serif);
      letter-spacing: -2.5px;
      line-height: 1.3;
      margin-bottom: 2rem;
    }

    & span {
      font-size: 20px;
      color: #999999;
      font-weight: 400;
      font-family: var(--serif);
    }


    & p {
      margin-top: 1rem;
      font-weight: 300;
      color: #999;
      font-size: 1.2vw;
    }

    .flex_wrap {
      display: flex;
      padding: 0;
      gap: 2vw;
      align-items: center;

      .flex_left {
        text-align: left;
        width: 35%;

        & .view {
          display: table;
          font-family: var(--serif);
          color: rgba(51, 51, 51, 0.4);

          margin-top: 4rem;

          & img {
            vertical-align: baseline;
          }
        }
      }



      .flex_right {
        width: calc(100% - 20%);
        overflow: hidden;
        height: 590px;

        .ms_2 {
          width: 100%;
          height: 100%;
          padding: 1.5rem 0.5rem;

          .swiper-wrapper {
            width: 100%;
          }

          .swiper-slide {
            width: 100%;
            height: 100%;
            cursor: grab;
            position: relative;

            & img {
              filter: drop-shadow(5px 10px 12px rgba(0, 0, 0, 0.15));
            }



            .slide_intro {
              padding: 0 2vw;
              position: absolute;
              content: "";
              display: block;
              left: 0;
              bottom: 5.5vw;
              width: 100%;
              height: auto;
              text-align: center;

              & h4 {
                font-size: 1.45vw;
                font-weight: 500;
              }

              & p {
                font-size: 0.95vw;
              }
            }
          }

          /* .swiper-slide-active {
            transform: scale(1.23);
            transition: all 0.6s;
          } */

          img {
            display: block;
            /* margin: 0 auto; */
            width: 100%;
            height: 100%;
            object-fit: contain;
            pointer-events: none;
          }

          .swiper-horizontal > .swiper-pagination-progressbar,
          .swiper-pagination-progressbar.swiper-pagination-horizontal {
            top: auto;
            width: 58%;
            left: 38%;
            background-color: #ccc;
            height: 0.05rem;
            margin-top: 2vw;
          }

          .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
            background-color: #534740;
            height: 0.1rem;
          }
        }
      }
    }
  }

  .banner {
    background: url(../72ppi/banner_bg.jpg) center no-repeat;
    background-size: cover;
    height: 120vh;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-block: 12rem;
    padding-inline: 14rem 13rem;
  }

  .banner .txt_box {
    width: fit-content;
  }

  .banner .txt_box h2 {
    font-size: 1.8vw;
    font-weight: 700;
    color: var(--brown);
    font-family: var(--serif);
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }

  .banner .txt_box span {
    font-size: 20px;
    font-family: var(--serif);
    color: #999999;
    line-height: 1.5;
    letter-spacing: -0.8px;
  }

  .banner .desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 55%;
    gap: 2rem;
  }

  .banner .desc .desc_i {
    position: relative;
  }

  .banner .desc .desc_i:nth-child(1) {
    grid-row: 1 / 3;
    align-self: center;
  }

  .banner .desc .desc_i:nth-child(3) {
    grid-column: 2 / 3;
  }

  .banner .desc .desc_i img {
    border-radius: 1rem;
    filter: drop-shadow(5px 12px 14px rgba(0, 0, 0, 0.3));
  }

  .banner .desc .desc_i .desc_t {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    padding-top: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
    height: 100%;
  }

  .banner .desc .desc_i .desc_t span {
    font-size: 22px;
    letter-spacing: -0.4px;
    line-height: 1.5;
    color: #534740;
  }

  .banner .desc .desc_i .desc_t h3 {
    color: #4d4d4d;
    font-size: 1.7vw;
    letter-spacing: -0.4px;
    line-height: 1.35;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-family: var(--serif);
  }

  .banner .desc .desc_i .desc_t p {
    color: #666666;
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.35;
    font-family: var(--serif);
  }

  .m3 {
    background: url(../72ppi/m3_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    height: 100%;
    text-align: center;
    width: 100%;
    display: block;

    & .m3_intro {
      padding: 7% 0 0;

      & span {
        position: relative;
        display: inline-block;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 400;
        font-size: 22px;
        margin-bottom: 0.5rem;
        font-family: var(--gowun);
      }

      & h3 {
        font-size: 2.35vw;
        font-weight: 500;
        color: #fff;
        font-family: var(--serif);
      }
    }

    .ms_3 {
      padding-bottom: 6%;
      margin-top: -7rem;

      .swiper-horizontal > .swiper-pagination-progressbar,
      .swiper-pagination-progressbar.swiper-pagination-horizontal {
        top: auto;
        width: 60%;
        left: 20%;
        background-color: #ccc;
        height: 0.05rem;
        margin: 4% 0;
      }

      .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background-color: #534740;
        height: 0.1rem;
      }

      .swiper-wrapper {
        margin-top: 10%;

        .swiper-slide {
          background-color: white;
          padding: 0 3rem 2.5rem;
          position: relative;
          border-radius: 1rem;
          overflow: hidden;
          filter: drop-shadow(5px 5px 7px rgba(0, 0, 0, 0.15));

          & .ms3_img {
            transition: scale 0.3s;

            &:hover {
              scale: 1.06;
              transition: 0.3s;
            }
          }

          img {
            height: 100%;
            display: block;
            padding: 0 0 10% 0;
            margin: 0 auto;
          }

          & .ms3_desc {
            text-align: left;
            position: relative;
            z-index: 1;

            & h4 {
              font-size: 1.45vw;
              font-family: var(--serif);
              margin-bottom: 0.4rem;
              color: #4d4d4d;
              font-weight: 600;

              & + p {
                font-family: var(--serif);
                color: #999;
                font-weight: 300;
                font-size: 0.94vw;
                min-height: 1rem;
              }
            }

            & .category {
              display: flex;
              /* flex-wrap: wrap; */
              align-items: center;
              text-align: center;
              gap: 0.4rem;
              margin-top: 1rem;
              width: 100%;
              min-height: 4rem;

              span {
                border-radius: 1rem;
                border: 1px solid #534740;
                color: #222;
                letter-spacing: -1px;
                padding: 0.1rem 0.8rem;
                text-align: center;

                &.on {
                  color: white;
                  background-color: #534740;
                  font-family: var(--gowun);
                }
              }
            }
          }
        }
      }
    }
  }

  .m4 {
    background-color: #f2f2f2;
    padding-block: 9%;


    & .m4_intro {
      margin-top: 2vw;
      max-width: 1440px;
      padding-inline: 20px;
      margin: 0 auto;
    }

    & img {
      /* width: 2.9vw; */
      display: inline-block;
    }

    & .desc {
      max-width: 1440px;
      margin: 0 auto;
      padding-inline: 20px;
      display: flex;
      align-items: flex-end;
      gap: 1rem;
      margin-top: 4%;
    }

    & .desc_i {
      position: relative;
      cursor: pointer;

      & .img_box {
        position: relative;
        transition: 0.3s;

        &:hover {
          filter: brightness(1.655);
          transition: 0.3s;
        }
      }

      &:hover {
        & .plus {
          display: none;
        }
      }
    }

    & .plus {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    & .txt_box {
      position: absolute;
      left: 2rem;
      bottom: 2rem;

      & p {
        color: #fff;
        font-weight: 600;
        letter-spacing: -0.4px;
        font-size: 1.25vw;
      }

      & span {
        font-size: 20px;
        color: #fff;
        font-weight: 300;
        letter-spacing: -0.4px;
        font-family: var(--pre);
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: 0.3s;
      }
    }
  }

  & .desc_i3 {
    width: 18.75vw;
    object-fit: cover;

    & .img_box img {
      transform-origin: left bottom;
      transition: 0.3s all;
    }


    &:hover {
      & .img_box img {
        transform: scale(1.65);
        transition: 0.3s all;
      }

      & span {
        visibility: visible;
        opacity: 1;
        display: block;
        transition: 0.3s;
        transform: scale(1);
      }
    }
  }


  & h3 {
    font-size: 2.3vw;
    color: #534740;
    font-weight: 700;
    margin-top: 1rem;
    line-height: 1.2;
    letter-spacing: -0.8px;
  }

  & p {
    margin-top: 2rem;
    color: #999999;
    font-size: 20px;
    font-family: var(--pre);
    line-height: 1.25;
  }

  & a {
    color: rgba(51, 51, 51, 0.4);
    font-size: 1vw;
    font-family: var(--pre);
    margin-top: 2rem;
    display: table;

    & img {
      vertical-align: baseline;
    }

    > i {
      display: inline-block;
      width: 2.5vw;
      margin-left: 0.6rem;
    }
  }
}

.m5 {
  height: 100%;
  text-align: center;
  width: 100%;
  display: block;
  background: url(../72ppi/global_bg.jpg) center no-repeat;
  background-size: contain;
  padding-bottom: 8%;


  & .m5_intro {
    padding: 10% 0 6rem;

    & span {
      position: relative;
      display: inline-block;
      color: #35490c;
      font-weight: 500;
      font-size: 1.15vw;
      margin-bottom: 2rem;
      margin-top: 2rem;

      /* &::before {
        position: absolute;
        content: "";
        display: inline-block;
        width: 2.63vw;
        height: 2.63vw;
        background-color: #dfe6bc;
        border-radius: 999px;
        left: 50%;
        transform: translateX(-50%);
        top: -0.7rem;
        line-height: 2;
        z-index: -1;
        display: none;
      } */
    }

    & h3 {
      font-size: 2.5vw;
      font-weight: 500;
    }
  }

  & .m5_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 10% 5%;
    background: url(../72ppi/m5_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    gap: 2rem;
    margin: 0 1.5rem;

    .item {
      text-align: center;
      transition: 0.3s;

      &:hover img {
        scale: 1.05;
        transition: 0.5s;
      }

      img {
        min-width: 100%;
        transition: 0.3s;
      }

      h4 {
        font-size: 1.55vw;
        margin: 2rem 0 1rem;

        & + p {
          font-family: var(--pre);
          color: #44444D;
          font-size: 1.05vw;
        }
      }
    }
  }
}
.m5 ul {
    max-width: 1640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
}
.m5 ul li {
    position: relative;
    padding-block: 1.5rem;
}
.m5 ul li::before {
    position: absolute;
    bottom: 4rem;
    right: -3rem;
    width: 31%;
    height: 1px;
    background-color: #999;
    content: '';
    transform: rotate(90deg);
}
.m5 ul li::after {
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 88%;
    height: 1px;
    background-color: #999;
    content: '';
}
.m5 ul li:nth-child(n+6)::after  {
    display: none;
}
.m5 ul li:nth-child(5n)::before  {
    display: none;
}

.m6 {
  padding: 5%;
  margin: 0 1rem;

  .wrap {
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 1.6rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 0 1rem;

    img {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
    }

    > div {
      width: 100%;
      position: relative;
      transition: 0.3s;

      &:hover {
        transform: translateY(-0.5rem);
        transition: 0.5s;
      }

      .intro_desc {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        text-align: center;

        span {
          margin-bottom: 1.2rem;
          display: block;
        }

        hr {
          width: 1rem;
          height: 0.1rem;
          text-align: center;
          display: inline-block;
          background-color: white;
          border-color: white;
          color: white;
          margin: 1.5rem 0;
        }
      }
    }


    .intro_1 {
      background: url(../72ppi/m6_1_1.png);
      background-size: cover;
      padding: 3rem 2.5rem;
      width: 100%;
      height: 100%;
      color: white;

      & > div {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
        padding-bottom: 0.8rem;

        &:first-of-type {
          border-bottom: 0.1rem solid #ccc;
        }
      }

      .contents {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        cursor: pointer;
        overflow: hidden;
        align-items: center;
        margin-top: 1rem;
        gap: 0.8rem;

        p {
          color: white;
          font-family: var(--pre);
          font-size: 1vw;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: 9rem;
        }

        span {
          letter-spacing: -0.02rem;
          color: #ccc;
          font-size: 1rem;
        }
      }
    }

    span {
      text-transform: uppercase;
      color: #999999;
      font-family: var(--pre);
      letter-spacing: 1.1px;
      font-size: 0.95vw;
    }

    img {
      vertical-align: top;
    }

    h3 {
      color: white;
      font-size: 2vw;
      font-weight: 500;
      margin-top: 0.55rem;
    }

    a {
      color: white;
      font-size: 0.85vw;
      font-family: var(--pre);
      display: flex;
      align-items: center;
      justify-content: center;

      > i {
        display: inline-block;
        width: 0.7vw;
        height: 100%;
        color: white;
        margin-left: 0.6rem;
      }
    }
  }


}


/* 푸터 */

footer {
  border-top: 0.1rem solid #ccc;
  /* overflow: hidden; */
  position: relative;

  .gotop {
    position: absolute;
    border-radius: 9rem;
    right: 10%;
    top: -3.5rem;
    transform: translateY(50%);
    z-index: 2;

    a {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 9rem;

      img {
        width: 100%;
      }
    }
  }

  & > * {
    font-family: var(--pre);
  }

  & .footer_inner {
    padding: 2rem 10%;
    margin: 0 1.5rem;
    padding-right: 15%;

    & .footer_info {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;

      & .footer_desc {
        display: flex;
        gap: 4.5rem;

        span {
          color: #534740;
          font-size: 0.95vw;
          font-weight: 600;
        }

        h5 {
          font-size: 2rem;
          font-weight: 500;
          color: #534740;
          margin: 0.5rem 0;
          font-family: var(--pre);
        }

        p {
          color: #999;
          font-weight: 300;
          font-size: 14px;
          line-height: 1.5;
        }
      }

      & .footer_nav {
        display: flex;
        gap: 2.5vw;

        li {
          flex: 1 1 auto;
        }

        li a {
          display: flex;
          align-items: center;
          flex-direction: column;
          justify-content: center;
          gap: 0.8rem;
          height: 100%;

          img {
            height: 2.25rem;
          }

          & p {
            font-weight: 500;
            font-size: 1rem;
            color: #999999;
          }
        }
      }

      & .footer_list {
        li {
          padding: 0.5rem;
        }

        a {
          color: #999;
          font-weight: 500;
        }
      }
    }
  }

  .footer_inner2 {
    border-top: 0.1rem solid #ccc;
    padding: 2rem 10%;

    .footer_address {
      margin: 1.5rem;
      color: #999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-block: 0.3rem;

      .add p {
        color: #999;
        font-weight: 300;

        span {
          color: #999;
          font-weight: 500;
        }
      }

      .add p:not(:last-child) {
        /* display: inline; */
      }

      & .copy {
        font-size: 14px;
        display: block;
      }

      & .fam {
        display: flex;
        gap: 0.8rem;

        img {
          height: 2.1rem;
        }
      }
    }
  }
}




@keyframes scale {
  10% {
    filter: brightness(0.75);
  }

  to {
    padding-top: 3rem;
    width: 80%;
    position: absolute;
    filter: brightness(0.85);
  }
}

@scroll-timeline scroll {
  scroll-source: auto;
  scroll-timeline-name: scroll;
  scroll-timeline-duration: 5s;
}

@media screen and (min-width: 1281px) {
  .mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    transition: 0.5s ease;
  }

  .lds-dual-ring {
    /* change color here */
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(0, -50%);
    color: var(--sub-color);
  }

  .lds-dual-ring,
  .lds-dual-ring:after {
    box-sizing: border-box;
  }

  .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
  }

  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }

  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
}


@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: black;
  }
}

#typing-effect {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  /* border-right: 2px solid black; */
  animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
}