@charset "UTF-8";

@media screen and (min-width: 1281px) {
  .mobile-menu {
    display: none;
  }
}

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

  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  h4 {
    font-size: 16px !important;
  }

  p,
  a {
    font-size: 14px !important;
  }

  span {
    font-size: 12px !important;
  }




  /* main */
  .m_box {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    height: 100vh;
    width: 100dvw;
    text-align: center;
    padding: 70px 24px;
    overflow-y: auto;
    box-sizing: border-box;
    font-family: var(--pre);
    backdrop-filter: blur(10px);
  }

  .mobile-menu {
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 40px 0 0 0;
  }

  .mobile-menu > li {
    margin-bottom: 20px;
  }

  .mobile-menu > li > h2 {
    display: block;
    /* color: #1a1a1a; */
    color: white;
    padding: 15px;
    font-size: 32px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
  }

  .mobile-menu > li > h2:hover {
    color: #0068b6;
  }

  .mobile-menu .depth {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 0 0 0 #ededed;
  }

  .mobile-menu .depth li {}

  .mobile-menu .depth li:first-child {
    border-top: none;
  }

  .mobile-menu .depth li a {
    display: block;
    padding: 10px 15px;
    line-height: 1.5;
    font-size: 22px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
  }

  .mobile-menu .depth li a:hover {
    color: #0068b6;
  }

  .buy a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
  }

  .buy a:hover {}

  .buy i {
    margin-right: 10px;
  }

  .buy img {
    width: 24px;
    height: 24px;
  }



  header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10%;
    z-index: 1000;
    transition: all 0.7s ease 0.1s;
    background-color: white;
    overflow: hidden;

    &:hover {
      height: 10%;
      overflow: hidden;

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

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

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

      .logo {
        top: auto;

        img {
          height: 14.1rem;
          display: block;
          object-fit: scale-down;
        }
      }

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

      > ul {
        display: none;
        position: absolute;
        right: 50%;
        height: 100%;
        width: 100%;
        flex-direction: column;
        text-align: center;

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

          > a {
            line-height: 10vh;
            position: relative;
            padding: 0 1.6vw;
            display: block;
            color: var(--main-color);
            font-weight: 500;

            &::after {
              position: absolute;
              width: 100%;
              height: 0.18rem;
              opacity: 0;
              left: 0;
              bottom: 0;
              z-index: 1;
              margin: 0 auto;
              background-color: #0068b6;
              content: "";
              display: block;
              transition: all 0.45s ease;
              transform: scaleX(0);
            }
          }

          &: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.5vw 0;
                color: #999;
                font-size: 0.8vw;
                font-weight: 400;
                line-height: 1vw;
                font-family: var(--pre);
              }

              &:hover a {
                color: #0068b6;
                transition: 0.3s all;
                font-weight: 500;
              }
            }
          }

          &: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);

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

              span {
                color: white;
                font-size: 0.8vw;
              }
            }

            img {
              vertical-align: middle;
              min-height: 1rem;
              max-height: 1rem;
              display: block;
            }
          }
        }
      }
    }

    .ham {
      display: flex;
    }
  }

  img {
    height: 100%;
    object-fit: cover;
  }

  main {
    & .m1 {
      height: 100dvh;

      .wrap {
        width: 100%;
        height: 100%;
      }

      .ms_1 {
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
        transition: all 0.5s;
        position: static;
        animation: none;
        z-index: 9;
        filter: none;

        & .swiper-slide {
          & .ms_intro {
            position: absolute;
            content: "";
            width: 70%;
            height: auto;
            left: 9%;
            top: 50%;
            transform: translateY(-50%);

            & h2 {
              margin-bottom: 8px;
            }
          }
        }
      }
    }

    .m2 {
      padding: 10vh 0 5vh;

      & .wrap {}

      & h3 {
        display: inline;

        &::after {}
      }

      & hr {}

      & span {}

      & p {
        margin-top: 5rem;
      }

      .flex_wrap {
        flex-wrap: wrap;

        .flex_left {
          text-align: center;
          width: 100%;

          hr {
            margin-inline: auto;
          }
        }

        .flex_right {
          text-align: center;
          width: 100%;

          .ms_2 {
            .swiper-wrapper {}

            .swiper-slide {
              .slide_intro {
                bottom: 25%;
              }
            }

            .swiper-slide-active {
              transform: scale(1);
            }

            img {}

            .swiper-horizontal > .swiper-pagination-progressbar,
            .swiper-pagination-progressbar.swiper-pagination-horizontal {
              width: 60%;
              left: 50%;
              margin: 0 auto;
              display: block;
              transform: translateX(-50%);
            }

            .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {}
          }
        }
      }
    }

    .m3 {
      padding: 100px 5% 80px;

      & .m3_intro {

        & span {


          &::before {}
        }

        & h3 {}
      }

      .ms_3 {

        .swiper-horizontal > .swiper-pagination-progressbar,
        .swiper-pagination-progressbar.swiper-pagination-horizontal {
          margin: 10% 0;
        }

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

          .swiper-slide {
            border-radius: 2rem;
            min-height: 388px;
            padding: 0;


            & .ms3_img {
              position: static;
              transform: none;

              &:hover {}
            }

            img {
              object-fit: contain;
              width: 100%;
              max-height: 200px;
              height: 100%;
            }

            & .ms3_desc {
              position: absolute;
              padding: 10%;
              padding-top: 0;
              left: 50%;
              transform: translateX(-50%);
              z-index: 2;
              width: 100%;
              height: auto;

              & h4 {
                margin-bottom: 8px;

                & + p {}
              }

              & .category {
                gap: 4px;
                margin-top: 8%;
                width: 100%;

                span {


                  &.on {}
                }
              }
            }
          }
        }
      }
    }


    .m4 {
      padding: 10% 5%;

      & .m4_intro {
        margin-top: 2vw;
      }

      & img {}

      & h3 {
        margin-top: 5%;
      }

      & p {
        margin-top: 5%;
        color: white;
        font-size: 1.2vw;
        font-family: var(--pre);
        line-height: 1.25;
      }

      & 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;
        }
      }
    }

    .m5 {
      height: 100%;
      text-align: center;
      width: 100%;
      display: block;

      & .m5_intro {
        padding: 80px 5% 40px;

        & span {
          position: relative;
          display: inline-block;
          color: #35490c;
          font-weight: 500;
          font-size: 1.15vw;
          margin-bottom: 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;
          }
        }

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

      & .m5_grid {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        gap: 15rem;
        padding: 10% 5%;
        justify-content: center;

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

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

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

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

            & + p {
              font-family: var(--pre);
              color: #44444D;
              font-size: 1.05vw;
            }
          }
        }
      }
    }


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

      .wrap {
        display: grid;
        justify-items: center;
        align-items: center;
        gap: 1.6rem;
        grid-template-columns: 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: 15%;
          width: 100%;
          height: 100%;
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;

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

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

          .contents {
            display: flex;
            justify-content: space-between;
            cursor: pointer;
            overflow: hidden;
            margin-top: 0;

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

            span {
              display: none;
              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;
          display: inline-block;
          text-align: center;
          width: 100%;
        }

        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;
          margin: 1rem 0;
          color: #fafafa;

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


    }

  }


  footer {
    & .footer_inner {
      padding: 5% 10%;

      & .footer_info {
        & .footer_desc {
          flex-wrap: wrap;

          h5 {
            display: inline-block;
            font-size: 16px;
            font-weight: 500;
            color: #0068B6;
            margin: 2rem;
          }
        }

        & .footer_list {
          display: none;
        }

        & .footer_nav {
          gap: 3.2vw;
          width: 100%;

          & li a {
            img {
              height: 7.25rem;
              max-height: 25px;
            }
          }
        }
      }
    }

    & .footer_inner2 {
      & .footer_address {
        & .fam {
          img {
            height: 5rem;
          }
        }
      }
    }


    .footer_address {
      flex-wrap: wrap;

      .add p {
        margin-top: 1rem;
      }
    }

    .fam {
      margin-top: 12px;
    }
  }


  /* sub */
  main.sub_p {
    margin-top: 10vh;

    section {
      padding: 10% 0;
      position: relative;
      max-width: 100%;
      margin: 0 auto;
    }

    .sub_wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      gap: 3rem;

      & h2 {
        font-size: 3.125vw;
        color: var(--main-color);
        font-weight: 500;

        + hr {
          width: 1px;
          height: 22px;
        }
      }

      & p {
        margin-inline: 20px;
        line-height: 1.5;
      }

      & .sign {
        margin-inline: 5%;
        margin-top: 40px;
        flex-direction: column;

        p {
          letter-spacing: -0.15rem;
          margin-right: 1.4vw;
          font-family: var(--maru);
        }

      }

    }

    /* sub1 */
    .s1 {}

    .s1_2 {
      margin-top: 0;

      .grid_wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px;

        > li {
          padding-bottom: 1rem;
          margin-bottom: 40px;
        }
      }
    }

    .s1_3 {}

    .history {
      margin: 0 auto;
      padding-top: 0;

      h3 {
        text-align: center;
        font-size: 3rem;
        padding: 1rem 0;
      }

      .flex_wrap {
        display: flex;
        justify-content: center;

        .flex_right {
          flex: 1;
          border-left: 0.02rem solid #666666;
          position: relative;

          ul {
            padding: 2rem 0;

            li {
              display: flex;
              padding-bottom: 1.75rem;
              padding-left: 12px;
              font-family: var(--pre);
              flex-direction: column;
              align-items: flex-start;

              &:last-of-type {
                padding-bottom: 0;
              }

              span {
                color: var(--sub-color);
                font-size: 1.85rem;
                display: inline-block;
                min-width: 6rem;
                margin-right: 1.75rem;
                text-align: right;
                font-weight: 600;
              }

              p {
                font-size: 1.85rem;
                color: #666;
                line-height: 1.5;
              }
            }

            &::before {
              position: absolute;
              left: 0;
              top: 0;
              width: 10px;
              height: 10px;
              content: '';
              border-radius: 100%;
              transform: translate(-50%);
              background-color: var(--sub-color);
            }
          }
        }

        .flex_left {
          flex: 1;
          border-right: 0.02rem solid #666666;
          position: relative;

          ul {
            padding: 2rem 0;

            li {
              display: flex;
              flex-direction: row-reverse;
              padding-bottom: 1.75rem;
              padding-left: 0;
              padding-right: 12px;
              font-family: var(--pre);
              flex-direction: column;
              align-items: flex-end;

              &:last-of-type {
                padding-bottom: 0;
              }

              span {
                color: var(--sub-color);
                font-size: 1.85rem;
                display: inline-block;
                min-width: 6rem;
                margin-right: 1.75rem;
                text-align: right;
                font-weight: 600;
              }

              p {
                font-size: 1.85rem;
                color: #666;
                text-align: right;
                line-height: 1.5;
              }
            }

            &::before {
              position: absolute;
              right: 0;
              top: 0;
              width: 10px;
              height: 10px;
              content: '';
              border-radius: 100%;
              transform: translate(50%);
              background-color: var(--sub-color);
            }
          }
        }
      }
    }

    .s1_4 {

      width: 100%;
      max-width: 100%;
      text-align: center;

      .s3_anchor {
        display: flex;
        width: 100%;
        position: relative;
        align-items: center;
        justify-content: center;

        > li {
          position: relative;

          &.on {
            &::after {
              position: absolute;
              width: 100%;
              display: block;
              height: 0.1rem;
              background-color: var(--sub-color);
              content: '';
              bottom: 0;
              left: 0;
              z-index: 1;
            }
          }

          &.on a,
          &:hover a {
            color: var(--main-color);
            font-family: var(--pre);
            font-weight: 500;
          }
        }

        li > a {
          padding: 1rem 5vw;
          color: #999;
          font-family: var(--pre);
          font-size: 1.25vw;
          transition: color 0.3s;
          position: relative;
          display: block;
        }

        ::before {
          position: absolute;
          left: -200%;
          width: 200vw;
          border-bottom: 0.02rem solid #ccc;
          content: '';
          bottom: 0;
        }
      }

      article {
        width: 100%;
        padding: 10% 0 5%;

        h3 {
          color: #333;
          font-family: var(--pre);
          font-weight: 400;
          font-size: 1.88vw;
          text-align: left;
          max-width: 80%;
          display: block;
          margin-inline: auto;
          margin-bottom: 0.45rem;
        }

        &.a1 {
          background: url(../72ppi/s3_grid_bg1.png);
          background-size: cover;
          background-repeat: no-repeat;
          background-position-x: center;
        }

        &.a3 {
          background: url(../72ppi/s3_grid_bg3.png);
          background-size: cover;
          background-repeat: no-repeat;
        }

        .s3_grid {
          display: grid;
          max-width: 80%;
          margin: 0 auto;
          grid-template-columns: 1fr 1fr 1fr;
        }
      }
    }


    /* sub2 */
    .s2 {
      gap: 3rem;
      max-width: 100%;

      & .tab__content {
        & .flex_wrap {
          & .flex_left {
            a {
              padding-top: 50%;
              display: inline-block;
            }
          }
        }
      }


      p {
        line-height: 1.45;
      }

      & .s2_movie {
        & ul {
          gap: 2rem;

          li {
            padding: 8px 18px;

            & .tri {
              scale: 0.8;
            }
          }

        }

      }

      article {
        padding: 10% 0 5% 0;
        background: url(../72ppi/s2_bg.png);
        background-position-x: center;
        background-repeat: no-repeat;
        background-position-y: center;

        .flex_wrap {
          display: flex;
          flex-wrap: wrap;
          gap: 5rem;
          width: 100%;
          justify-content: center;
          flex-direction: column-reverse;
          padding: 15% 10%;

          .img_box {
            margin: 0 auto;
            width: 50%;

            > img {
              width: 50%;
              margin: 0 auto;
              display: block;
            }
          }

          & .desc_txt {
            width: 100%;
            text-align: center;

            h3 {
              font-size: 3.07rem;
              margin-bottom: 2rem;
            }

            p {
              line-height: 1.35;
            }
          }
        }

        .s2_bg {
          position: relative;
          width: 100%;
          height: 100%;
          display: block;
          margin-bottom: 20vw;

          img {
            width: 100%;
          }
        }
      }

      .s2_2 {
        position: absolute;
        display: block;
        margin: 0 auto;
        left: 10%;
        width: 100%;
        top: 35%;
        padding: 0;
        height: 100%;

        & .flex_wrap {
          display: flex;
          flex: 1 1 auto;
          width: 100%;
          height: 100%;
          position: relative;

          & .flex_left {
            width: 47.5%;
            background: url(../72ppi/sub2_img.png) no-repeat;
            background-size: contain;
          }

          & .flex_right {
            padding-left: 4vw;
            padding-top: 1rem;

            h3 {
              font-size: 2.5vw;
              font-weight: 500;
              margin-bottom: 1.3vw;
              position: relative;

              &::after {
                position: absolute;
                content: "";
                display: block;
                width: 2.63vw;
                height: 2.63vw;
                background-color: #bdd7e4;
                border-radius: 999px;
                left: -7.5%;
                top: -10%;
                z-index: -1;
              }
            }

            p {
              font-size: 1.35vw;
              font-family: var(--pre);
              color: #999;
              font-weight: 300;
            }
          }
        }

        .marks {
          display: flex;
          position: absolute;
          width: 100%;
          top: 50%;
          padding-left: 45%;
          right: 0;
          align-items: center;
          justify-content: center;
        }
      }

      .s2_3 {
        background: url(../72ppi/sub2_img6.png) center center no-repeat;
        background-size: cover;
        margin: 10%;
      }
    }


    /* sub3 */
    .s3 {
      padding-bottom: 0;
      max-width: 100%;

      h3 {
        display: inline-block;
        font-size: 3.07rem;
        font-weight: 500;
        position: relative;

        &::after {
          position: absolute;
          display: block;
          left: -1rem;
          top: 0;
          content: '';
          background-color: #bdd7e4;
          border-radius: 9rem;
          width: 3rem;
          height: 3rem;
          z-index: -1;
        }
      }

      section {
        padding-bottom: 0;
      }

      article {
        width: 100%;

        img {
          display: block;
          width: 100%;
          margin: 0 auto;
        }
      }
    }

    .s3 .s3_2 {
      background: url(../72ppi/s3_2_bg.png);
      max-width: 100%;
      margin-inline: auto;
      background-repeat: no-repeat;
      background-size: 100% 100%;
    }

    .s3_2_2 {
      margin: 10% 0;

      & .flex_wrap {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        align-items: center;
        gap: 7rem;

        & .flex_left {
          min-width: 900px;
          flex: 1;
        }

        & .flex_right {
          flex: 1;

          ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-inline: 20px;

            > li {
              display: flex;
              align-items: center;
              font-family: var(--pre);
              gap: 16px;

              img {
                max-height: 48px;
              }

              h5 {
                font-size: 16px;
                padding-bottom: 1rem;
              }

              p {
                font-size: 2rem;
                color: #666666;
              }
            }
          }
        }
      }

      a {
        background-color: #1a1a1a;
        color: white;
        font-family: var(--pre);
        text-align: center;
        font-size: 1.88rem;
        border-radius: 5rem;
        margin: 0 auto;
        width: 120px;
        padding: 3rem 1rem;
        min-width: fit-content;
      }
    }


    /* sub4 */
    .s4 {
      padding-top: 0;

      .s4_grid {
        padding: 20px;
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 10%;
        justify-content: center;

        .s4_item {
          cursor: pointer;
          background-color: #fff;
          padding: 16px 24px 24px 24px;
          position: relative;
          border-radius: 1rem;
          width: 100%;
          height: 100%;
          display: grid;
          grid-template-rows: 1fr auto;

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

          & .s4_img {
            display: block;
            width: 100%;
            position: relative;
          }

          img {
            width: 60%;
            height: 100%;
            display: block;
            padding: 10%;
            margin: 0 auto;
            transition: 0.3s;
          }

          & .s4_desc {
            display: grid;
            grid-template-rows: 1fr;
            text-align: left;
            position: relative;
            z-index: 1;

            & h4 {
              font-size: 1.67vw;
              font-family: var(--pre);
              margin-bottom: 8px;


              & + p {
                font-family: var(--pre);
                color: #999999;
                font-weight: 300;
                font-size: 0.94vw;
                min-height: 4rem;
                width: 95%;
                margin-bottom: 18px;
              }
            }

            .category {
              gap: 6px;

              span {
                padding: 2px 10px;

              }
            }
          }
        }
      }
    }

    .s4_p1 {
      padding: 5% 0 10%;

      & .flex_wrap {
        display: flex;
        flex-direction: column;
        gap: 2.3vw;
        justify-content: space-between;
        width: 100%;
        position: relative;

        & .flex_left {
          position: relative;
          left: 0;
          height: 100%;
        }

        & .flex_right {
          display: flex;
          flex-direction: column;
          padding: 20px;
          justify-content: space-between;

          :last-child img {
            cursor: pointer;
          }

          h2 {
            font-weight: 500;
            font-size: 2.5vw;
            padding-bottom: 0;
          }

          > p {
            font-size: 1vw;
            font-weight: 300;
            font-family: var(--pre);
            color: #999;
            margin-bottom: 12px;
            width: 95%;

            &:last-of-type {
              margin-bottom: 46px;
            }
          }

          .category {
            gap: 6px;
            margin: 8px 0 24px;

            span {
              margin-top: 0;
              margin-bottom: 4px;
              padding: 2px 8px;
            }
          }

          & .s4_p_desc {
            margin-bottom: 4px;
            display: flex;
            align-items: center;

            p {
              line-height: 1.5;
              margin-left: 4px;
              display: inline-block;
              font-size: 1vw;
              font-weight: 300;
              font-family: var(--pre);
              color: #999;
              padding: 4px;
            }

            span {
              width: 25px;
              height: 25px;
              display: inline-block;

              img {
                min-height: 100%;
              }
            }
          }

          a {
            display: inline-block;
            padding: 10px 18px;
            background-color: var(--main-color);
            color: white;
            font-weight: 500;
            font-size: 1.45rem;
            font-family: var(--pre);
            border-radius: 5rem;
            margin-top: 22px;
            width: 100%;
            text-align: center;
            min-width: fit-content;
          }

          .s4_p_thumb {
            margin-top: 60px;
            display: flex;
            gap: 4px;
          }

        }
      }

      .go_pr {
        position: absolute;
        top: 5%;
        right: 10%;
        font-style: var(--pre);
        font-size: 1.33vw;
        color: var(--main-color);
      }
    }

  }

}