@import url("https://cdn.jsdelivr.net/gh/poposnail61/min-sans@main/web/css/minsansvf-dynamic-subset.css");
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

@font-face {
  font-family: "Montserrat";
  src: url(../font/Montserrat-Regular.ttf);
}

@font-face {
  font-family: "Pretendard";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "MinSans-Regular";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/MinSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ONE-Mobile-Regular';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}



@font-face {
  font-family: 'KoddiUDOnGothic-Regular';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/KoddiUDOnGothic-Regular.woff') format('woff');
}

@font-face {
  font-family: 'godoMaum';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/godoMaum.woff') format('woff');
}

:root {
  /* color */
  --white: #fff;
  --black: #000;
  --black28: #282828;
  --black33: #333;
  --black91: #919191;
  --bg: #fef5d8;
  --green: #7cbf0f;
  --orange: #ff9100;

  /* padding */
  --pd60: 3.75rem;

  /* font size */
  --fs104: 6.5rem;
  --fs40: 2.5rem;
  --fs38: 2.375rem;
  --fs30: 1.875rem;
  --fs26: 1.625rem;
  --fs22: 1.375rem;
  --fs20: 1.25rem;
  --fs18: 1.125rem;
  --fs14: 0.875rem;

  /* font family */
  --anto: "Antonio", serif;
  --roboto: "Roboto", serif;
  --minsans: "MinSans-Regular", serif;
  --pre: "Pretendard", serif;
  --mont: "Montserrat", serif;
  --onemb: 'ONE-Mobile-Regular', serif;
  --courg: "Courgette", serif;
  --koddi: 'KoddiUDOnGothic-Regular';
  --godo: 'godoMaum';
}

/* reset css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--minsans);
  color: #000;
  letter-spacing: -0.5px;
  margin: 0;
  font-size: 1rem;
  width: 100%;
  overflow-x: hidden;
  padding: 0;
  font-weight: 400;
  background-color: var(--bg);
}

div,
ul,
li,
input,
textarea,
select,
em,
address,
fieldset,
form,
iframe,
menu,
button {
  margin: 0;
  padding: 0;
}

menu,
ul,
li {
  list-style: none;
}

iframe {
  max-width: 100%;
}

input,
select,
textarea {
  vertical-align: top;
}

input,
select,
textarea {
  border-radius: 0;
}

em,
address {
  font-style: normal;
}

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

button {
  border: none;
  cursor: pointer;
  background-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

/* ---- */


header.open {
  background: transparent;
  transition: 0.7s;
}

header.open .depth_menu {
  visibility: visible;
  opacity: 1;
  border-top: 1px solid #ccc;
  transition: 0.5s;
}

header .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1840px;
  padding-inline: 70px;
  margin: 0 auto;
}

.ham {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.62rem;
  height: 100%;
  padding: 0.9rem 0;
  padding-right: 0;
  margin-left: 1rem;
}

.ham .line {
  display: block;
  background-color: var(--green);
  border-radius: 5rem;
  width: 2.2vw;
  height: 3px;
}

#ham-toggle:checked + .ham {
  gap: 0;
  transition: 0.5s;
}

#ham-toggle:checked + .ham .line:first-child {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

header.open .depth_menu {
  width: 100%;
  height: 450px;
  transition: 0.7s;
  visibility: visible;
  opacity: 1;
}

.depth_menu {
  height: auto;
  width: 100%;
  position: absolute;
  top: 100px;
  left: 0;
  background: rgba(124, 191, 15, 0.9);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out;
  border-radius: 2.5rem;
}

.depth_menu .depth {
  display: flex;
  width: 100%;
  gap: 2vw;
  padding-inline: 5%;
  height: 100%;
}

.depth_menu .depth > li {
  padding-inline: 40px;
  letter-spacing: -0.3px;
  padding: 20px;
  flex: 1;
}

.depth_menu .depth li h2 {
  color: #fff;
  margin-block: 1.5rem;
  font-size: 2rem;
  font-weight: 400;
}

.depth_menu .depth li > ul li {
  padding-block: 1rem;
}

.depth_menu .depth li > ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  padding-bottom: 3px;
  font-family: "Pretendard Variable", sans-serif;
}

.depth_menu .depth li > ul li a:hover {
  color: black;
  border-bottom: 1px solid black;
  transition: 0.4s;
}

header {
  position: relative;
  height: 165px;
  z-index: 99;
  width: 100%;
  transition: 0.7s;
}

.header_wrap {
  display: flex;
  padding-inline: 5%;
  width: 100%;
  height: 100%;
  align-items: center;
  position: relative;
  justify-content: space-between;
  background: transparent;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav ul {
  display: flex;
  color: var(--green);
  height: 22px;
}

.nav ul li a {
  color: var(--green);
  padding-inline: 1rem;
  font-size: 1rem;
  font-family: var(--roboto);
}

.ham {
  cursor: pointer;
}

.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  cursor: pointer;
}

.lang span {
  margin-top: 2px;
  font-weight: 300;
}

summary {
  display: flex;
  align-items: center;
}

.no_scroll {
  height: 100vh;
  overflow: hidden;
}

/* header end */

.m1 {
  padding-inline: var(--pd60);
  margin: 0 auto;
  position: relative;
}

.m1 .m1_bg {
  border-radius: 6.5rem;
  overflow: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.m1 .m1_cont {
  max-width: 1640px;
  padding-inline: 20px;
  margin: 0 auto;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  height: 62.5rem;
}

.m1 .m1_cont span {
  width: 3.5vw;
  height: 7px;
  background-color: #fff;
  margin-block: 40px;
}

.m1 .m1_cont h5 {
  font-family: var(--minsans);
  font-weight: 100;
  font-size: var(--fs22);
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
}

.m1 .m1_cont .brand {
  color: #fff;
  font-size: var(--fs18);
  font-family: var(--pre);
  line-height: 1.5;
  border: 1px solid #fff;
  padding-inline: 1.2rem;
  padding-block: 0.65rem;
  border-radius: 2rem;
}

.m2 {
  max-width: 1680px;
  padding-inline: 20px;
  background: url(../img/m2_item1.png) no-repeat center;
  padding-block: 26rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--minsans);
  padding-left: 5vw;
  margin: 0 auto;
}

.m2 .tit {
  margin-left: 4.8vw;
}

.m2 .m2_cont {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.m2 .m2_cont h3 {
  font-size: var(--fs40);
  line-height: 1.2;
}

.m2 .m2_cont .green {
  position: relative;
}

.m2 .m2_cont .green::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.25rem;
  background-color: #fff;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: -1;
}

.m2 .m2_cont p {
  font-size: var(--fs20);
  color: var(--black28);
  font-weight: 300;
  line-height: 1.6;
  margin-block: 1.5rem 8.2rem;
}

.m2 .m2_cont .more {
  color: #000;
  font-size: var(--fs18);
  font-family: var(--pre);
  line-height: 1.5;
  border: 1px solid #969696;
  padding-inline: 0.5rem;
  padding-block: 0.2rem;
  border-radius: 3rem;
}

.m2 .m2_cont .more a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.m2 .m2_cont .more span {
  margin-left: 1.5rem;
  font-weight: 400;
}

.m2 .m2_cont .more img {
  display: inline;
  margin-left: 0.5rem;
}

/* m2 end */

/* main 공통 요소 start */
.main .green {
  color: var(--green);
}

.main .inner {
  max-width: 1840px;
  margin-inline: 20px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5rem;
  padding-inline: 100px;
  padding-block: 84px;
}

.tit {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.tit h2 {
  font-family: var(--mont);
  color: var(--green);
  font-size: var(--fs104);
  font-weight: 600;
  line-height: 1.4;
}

.tit span {
  color: #fff;
  font-size: var(--fs104);
}

/* main 공통 요소 end */

.m3 .tit {
  align-items: end;
  padding-right: 100px;
}

.m3 .inner {
  padding-inline: 100px 0;
}

.m3 .m3_next {
  height: 47px;
  width: 47px;
  background: url(../img/ic/ic_m3_arrow2.png) center no-repeat;
}

.m3 .m3_prev {
  height: 47px;
  width: 47px;
  background: url(../img/ic/ic_m3_arrow.png) center no-repeat;
}

.m3 .m3_next::after,
.m3 .m3_prev::after {
  content: none;
}

.m3 .swiper-slide img {
  transition: 0.3s;
  transform: scale(0.8);
  border-radius: 4rem;
  overflow: hidden;
}

.m3 .swiper-slide-active img {
  transition: 0.3s;
  transform: scale(1);
  filter: brightness(0.6);
}

.m3 .swiper-slide {
  transition: 0.3s;
  position: relative;
}

.m3 .cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 4rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--pre);
}

.m3 .cont h3 {
  font-size: var(--fs38);
  line-height: 1.5;
}

.m3 .cont p {
  font-size: var(--fs22);
  font-weight: 200;
  line-height: 1.5;
}

.m3 .cont .product a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 5rem;
}

.m3 .swiper-slide-active .cont {
  visibility: visible;
  opacity: 1;
}

/* m3 prev 안 보이도록 */

.m4 {
  max-width: 1840px;
  padding-inline: 20px;
  background: url(../img/m4_item1.png) center no-repeat;
  height: 70vh;
  margin: 0 auto;
  margin-block: 2rem 4.75rem;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;

}

.m4 .m4_cont {
  padding-left: 100px;
}

.m4 .m4_cont h4 {
  font-size: var(--fs30);
  color: var(--black33);
}

.m4 .m4_cont h3 {
  font-size: var(--fs40);
  color: var(--black33);
  font-weight: 600;
  line-height: 1.3;
}

/* m4 end */

.m5 {
  max-width: 1840px;
  padding-inline: 20px;
  margin: 0 auto;
}

.m5 .tit {
  margin-left: 9vw;
  margin-bottom: 1.2rem;
}

.m5 .fs88 {
  font-size: clamp(1.75rem, 4vw, 5rem);
}

.m5 .hover_wrap {
  width: 100%;
  height: 537px;
  display: flex;
  gap: 1rem;
}

.m5 .hover_wrap .hov_item {
  flex: 1;
  overflow: hidden;
  transition: all 0.8s;
  color: #fff;
  position: relative;
  cursor: pointer;
  border-radius: 3rem;
  overflow: hidden;
}

.m5 .hover_wrap .hov_item:nth-of-type(1) {
  width: 100%;
  background: url(../img/m5_item1.png) center no-repeat;
}

.m5 .hover_wrap .hov_item:nth-of-type(2) {
  width: 100%;
  background: url(../img/m5_item2.png) center no-repeat;
}

.m5 .hover_wrap .hov_item:nth-of-type(3) {
  width: 100%;
  background: url(../img/m5_item3.png) center no-repeat;
}

.m5 .hover_wrap .hov_item p {
  color: #fff;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  text-align: center;
}

.m5 .hover_wrap .hovOn {
  flex: 3;
  filter: none;
  border-radius: 4rem;
}

.m5 .hover_wrap .hovOn p {
  left: 5rem;
}

/* m5 end */

.m6 {
  margin-block: 2rem;
}

.m6 .inner {
  padding-inline: 150px;
  padding-block: 150px;
}

.m6 .flex_wrap {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-top: 2rem;
}

.m6 .flex_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: end;
  border-left: 1px solid #ADADAD;
  padding-left: 2rem;
}

.m6 .flex_item:nth-of-type(1) {
  border-left: none;
}


.m6 .flex_item:nth-of-type(2) .flx_tit p {
  margin-block: 1rem;
}

.m6 .flx_tit h4 {
  font-size: var(--fs30);
  font-weight: 500;
  line-height: 1.4;
}

.m6 .flx_tit p {
  font-size: var(--fs18);
  line-height: 1.5;
  font-weight: 300;
  color: var(--black91);
  margin-block: 1rem 2.5rem;
}

.m6 .flex_link {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.m6 .flex_link .flxmore {
  margin-left: 2rem;
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 5rem;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s;
}

.m6 .flex_link .flxmore img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: filter 0.3s;
}

.m6 .flex_link .flxmore::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--orange);
  z-index: 0;
  transition: height 0.3s;
  border-radius: 100%;
}

.m6 .flex_link .flxmore:hover::before {
  height: 100%;
}

.m6 .flex_link .flxmore:hover img {
  filter: brightness(1000%);
  transition: 0.3s;
}

/* m6 end */
footer {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding-inline: 20px;
  background-color: var(--green);
  border-radius: 5rem 5rem 0 0;
  font-family: var(--pre);
}

footer .footer_wrap {
  padding-inline: 5%;
  color: #fff;
  padding-block: 4rem;
  display: flex;
  gap: 120px;
  flex-direction: column;
}

footer .footer_top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

footer .footer_nav ul {
  display: flex;
  gap: 2rem;
  font-family: var(--roboto);
}

footer .footer_nav ul li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.2;
}

footer .footer_nav .footer_sub {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 14px;
}

footer .footer_btm {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

footer .footer_btm .footer_info .left {
  font-weight: 300;
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

footer .footer_btm .footer_info .copy {
  font-weight: 300;
  margin-top: 1rem;
}

footer .footer_btm .footer_info .semi {
  font-weight: 600;
  margin-right: 1rem;
}

footer .footer_btm .footer_info .right {
  font-weight: 300;
  font-family: var(--pre);
}

@media screen and (max-width: 1441px) {
  header.open .depth_menu {
    width: calc(100% - 40px);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .depth_menu .depth li h2 {
    font-size: 1.875rem;
  }

  .depth_menu .depth li > ul li a {
    font-size: 1.125rem;
  }

  .m1 .m1_bg {
    width: 100%;
    position: relative;
  }

  .m1 .m1_cont {
    position: absolute;
    z-index: 8;
    top: 50%;
    left: 5rem;
    transform: translateY(-50%);
    height: auto;
  }

  .m1 .m1_logo {
    max-width: 85%;
  }

  .tit h2 {
    font-size: 5rem;
  }

  .tit span {
    font-size: 5rem;
  }

  .m2 {
    padding-left: 20px;
    padding-block: 25rem;
  }

  .m2 .tit {
    margin-left: 8.5vw;
  }

  .m2 .m2_cont {
    margin-left: 3rem;
  }

  .m2 .m2_cont h3 {
    font-size: 2rem;
  }

  .m2 .m2_cont p {
    font-size: 1.125rem;
    margin-block: 1rem 4rem;
  }

  .main .inner {
    max-width: calc(100% - 40px);
    margin-inline: 0;
    padding-inline: 20px 0;
    margin: 0 auto;
    padding-block: 4rem;
  }

  .m4 {
    max-width: calc(100% - 40px);
    background: url(../img/m4_item1.png) center / 100% no-repeat;
    height: 50vh;
    margin-block: 5rem;
  }

  .m4 .m4_cont h4 {
    font-size: 28px;
  }

  .m4 .m4_cont h3 {
    font-size: 2.5rem;
  }


  .m6 .inner {
    padding-block: 4rem;
  }

  .m6 .tit {
    margin-left: 2rem;
  }

  .m6 .flex_link .flxmore {
    margin-left: 1rem;
  }

  footer {
    max-width: calc(100% - 40px);
  }

  footer .footer_wrap {
    padding-block: 4rem 2rem;
  }

  footer .footer_nav ul li {
    flex: 1;
    text-wrap: nowrap;
  }
}

@media screen and (max-width : 1281px) {
  header {
    height: 100px;
  }

  .ham {
    gap: 0.4rem;
  }

  .m1 .m1_logo {
    max-width: 65%;
  }

  .m1 .m1_cont h5 {
    font-size: 20px;
  }

  .m1 .m1_cont span {
    margin-block: 2rem;
  }

  .m1 .m1_cont .brand {
    font-size: 1rem;
  }

  .tit h2 {
    font-size: 4rem;
  }

  .tit span {
    font-size: 4rem;
  }

  .m2 {
    background-size: 40%;
    padding-block: 20rem;
  }

  .m2 .tit {
    margin-left: 10rem;
  }

  .m2 .m2_cont h3 {
    font-size: 1.8rem;
  }

  .m2 .m2_cont p {
    font-size: 1rem;
  }

  .m2 .m2_cont .more img {
    width: 45px;
  }

  .m3 .cont h3 {
    font-size: 2rem;
  }

  .m3 .cont p {
    font-size: 1.125rem;
  }

  .m3 .cont .product a {
    margin-top: 3rem;
  }

  .m4 {
    border-radius: 5rem;
  }

  .m4 .m4_cont h4 {
    font-size: 26px;
  }

  .m4 .m4_cont h3 {
    font-size: 2.25rem;
  }

  .m5 .hover_wrap {
    height: 450px;
  }

  .m6 .flx_tit h4 {
    font-size: 1.75rem;
  }

  .m6 .flx_tit p {
    max-width: 95%;
  }

  .m6 .flx_tit p br {
    display: none;
  }

  .m6 .flex_item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .m6 .flex_link {
    width: 95%;
  }

  .m6 .flex_link .flxmore {
    margin-left: 0;
  }

}

@media screen and (max-width : 1025px) {
  header .header_wrap {
    padding-inline: 3rem;
  }

  header h1 a img {
    max-width: 75%;
  }

  header.open .depth_menu {
    height: auto;
  }

  .depth_menu .depth li h2 {
    font-size: 1.5rem;
    margin-block: 1.25rem;
  }

  .depth_menu .depth li > ul li {
    padding-block: 0.5rem;
  }

  .depth_menu .depth li > ul li a {
    font-size: 1rem;
  }

  .m1 {
    padding-inline: 20px;
  }

  .m1 .m1_logo {
    max-width: 45%;
  }

  .m1 .m1_cont {
    left: 3rem;
  }

  .m1 .m1_cont span {
    margin-block: 1.2rem;
  }

  .m1 .m1_cont h5 {
    font-size: 1rem;
    line-height: 1.55;
  }

  .tit h2 {
    font-size: 2.7rem;
  }

  .tit span {
    font-size: 2.7rem;
  }

  .tit .dot a img {
    max-width: 90%;
  }

  .m2 {
    background-size: 38%;
    padding-block: 12rem;
  }

  .m2 .tit {
    margin-left: 10rem;
  }

  .m2 .m2_cont {
    margin-left: initial;
  }

  .m2 .m2_cont h3 {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .m2 .m2_cont .more a {
    gap: 0.5rem;
  }

  .m2 .m2_cont .more span {
    margin-left: 0.5rem;
  }

  .m2 .m2_cont p {
    font-size: 14px;
  }

  .main .inner {
    border-radius: 4rem;
  }

  .m3 .cont h3 {
    font-size: 1.7rem;
  }

  .m3 .cont p {
    font-size: 1rem;
  }

  .m3 .cont .product a {
    font-size: 14px;
  }

  .m4 .m4_cont {
    padding-left: 3vw;
  }

  .m5 .tit {
    margin-left: 3vw;
  }

  .m5 .hover_wrap {
    height: 400px;
  }

  .m6 .flx_tit h4 {
    font-size: 1.5rem;
  }

  .m6 .flx_tit p {
    font-size: 1rem;
  }

  .m6 .flex_link .flxmore {
    width: 40px;
    height: 40px;
  }

  footer {
    border-radius: 4rem 4rem 0 0;
  }

  footer .footer_wrap {
    padding-inline: 40px;
    gap: 2rem;
  }

  footer .footer_top img {
    max-width: 170px;
  }

  footer .footer_btm .footer_info .left {
    font-size: 14px;
    font-weight: 300;
    gap: 0.3rem;
  }

  footer .footer_btm .footer_info .semi {
    font-weight: 500;
  }

  footer .footer_btm .info_right p {
    font-size: 14px;
    font-weight: 300;
  }

}

@media screen and (max-width : 900px) {
  .m1 .m1_bg {
    border-radius: 3rem;
  }

  .tit h2 {
    font-size: 2.5rem;
  }

  .tit span {
    font-size: 2.5rem;
  }

  .tit .dot a img {
    max-width: 60%;
  }

  .main .inner {
    padding-block: 3rem;
    border-radius: 3rem;
  }

  .m2 {
    padding-block: 11rem;
    background-size: 40%;
  }

  .m2 .tit {
    margin-left: 1rem;
  }

  .m2 .tit span {
    color: var(--green);
  }

  .m2 .m2_cont {
    text-align: right;
    align-items: end;
  }

  .m2 .m2_cont p {
    margin-block: 1rem 3rem;
  }

  .m3 .tit {
    padding-right: 3rem;
    margin-bottom: 1rem;
  }

  .m3 .m3_swiper {
    padding-top: 3rem;
  }

  .m3 .m3_prev {
    width: 40px;
    height: 40px;
    background-size: cover;
    top: 2rem;
    right: 8rem;
    left: initial;
  }

  .m3 .m3_next {
    width: 40px;
    height: 40px;
    background-size: cover;
    top: 2rem;
    right: 3rem;
  }

  .m3 .swiper-slide img {
    border-radius: 2.5rem;
  }

  .m3 .cont {
    gap: 0.75rem;
  }

  .m3 .cont h3 {
    font-size: 1.5rem;
  }

  .m3 .cont .product a {
    margin-top: 1rem;
  }

  .m4 {
    height: 30vh;
    margin-block: 60px;
  }

  .m4 .m4_cont h4 {
    font-size: 22px;
  }

  .m4 .m4_cont h3 {
    font-size: 1.75rem;
    line-height: 1.5;
  }

  .m5 {
    margin-bottom: 100px;
  }

  .m5 .hover_wrap {
    height: 300px;
  }

  .m5 .hover_wrap .hov_item {
    border-radius: 2.5rem;
  }

  .m6 .tit {
    margin-left: 0;
    align-items: center;
  }

  .m6 .flx_tit h4 {
    font-size: 20px;
  }

  .m6 .flx_tit p {
    font-size: 14px;
  }

  .m6 .flex_link .flxmore {
    width: 35px;
    height: 35px;
  }

  .m6 .flex_link .date {
    font-size: 14px;
  }

  footer {
    border-radius: 3rem 3rem 0 0;
  }

  footer .footer_wrap {
    padding-inline: 20px;
  }

  footer .footer_top img {
    max-width: 150px;
  }

  footer .footer_top .footer_nav {
    display: none;
  }

  footer .footer_btm {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

}

@media screen and (max-width : 769px) {
  header.open .depth_menu {
    height: auto;
  }

  .depth_menu .depth {
    gap: 0rem;
    padding-inline: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .m1 .m1_logo {
    max-width: 33%;
  }

  .m4 {
    height: 40vh;
    margin-block: 1rem;
    border-radius: 3rem;
  }

  .m6 .flx_tit h4 {
    text-wrap: nowrap;
  }
}

@media screen and (max-width : 430px) {
  body:has(.sub) header {
    padding-inline: 20px !important;
  }

  header .header_wrap {
    padding-inline: 20px;
    max-width: initial;
  }

  header h1 a img {
    max-width: 60%;
  }

  .nav ul:not(.lang ul) {
    display: none;
  }

  header.open .depth_menu {
    height: auto;
    width: calc(100% - 40px);
  }

  .depth_menu .depth {
    padding-inline: 20px;
    flex-wrap: wrap;
  }

  .depth_menu .depth > li {
    padding: 0.4rem;
  }

  .depth_menu .depth li h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-block: 1rem;
  }

  .depth_menu .depth li > ul li a {
    font-size: 14px;
  }

  .ham .line {
    width: 2rem;
  }

  .m1 {
    height: 420px;
  }

  .m1 .m1_bg {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.675);
  }

  .m1 .m1_logo {
    max-width: 55%;
  }

  .m1 .m1_cont {
    left: 0;
    align-items: center;
  }

  .m1 .m1_cont h5 {
    font-size: 14px;
    text-align: center;
    padding-inline: 20px;
  }

  .m1 .m1_cont span {
    height: 3px;
  }

  .m1 .m1_cont .brand {
    font-size: 14px;
    padding-inline: 0.8rem;
    padding-block: 0.5rem;
    line-height: 1;
  }

  .tit h2 {
    font-size: 2rem;
  }

  .tit span {
    font-size: 2rem;
  }

  .main .inner {
    padding-inline: 0;
  }

  .m2 {
    width: calc(100% - 40px);
    padding-block: 3rem;
    background-size: 166%;
    margin-block: 3rem;
    padding-inline: 20px;
    border-radius: 3rem;
    overflow: hidden;
    flex-direction: column;
    margin-block: 4rem;
    position: relative;
  }

  .m2::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.325);
    top: 0;
  }

  .m2 .tit {
    position: relative;
    z-index: 2;
  }

  .m2 .tit .dot {
    margin: 0 auto;
  }

  .m2 .m2_cont {
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 3;
  }

  .m2 .m2_cont h3 {
    font-size: 24px;
    color: #fff;
    margin-top: 1rem;
  }

  .m2 .m2_cont .green::after {
    content: none;
  }

  .m2 .m2_cont p {
    color: #fff;
    font-size: 1rem;
    letter-spacing: -0.8px;
    max-width: 92%;
  }

  .m2 .m2_cont p br {
    display: none;
  }

  .m2 .m2_cont .more {
    border: 1px solid #fff;
    color: #fff;
  }

  .m2 .m2_cont .more img {
    width: 34px;
  }

  .m3 .tit {
    padding-right: 0;
    align-items: center;
  }

  .m3 .tit .dot a img {
    margin: 0 auto;
  }

  .m3 .m3_swiper {
    padding-top: 4rem;
    padding-inline: 20px;
  }

  .m3 .m3_prev {
    right: initial;
    left: 20px;
    top: 1.5rem;
  }

  .m3 .m3_next {
    top: 1.5rem;
    right: 20px;
  }

  .m3 .cont h3 {
    font-size: 20px;
  }

  .m3 .cont p {
    font-size: 14px;
    padding-inline: 20px;
  }

  .m3 .cont p br {
    display: none;
  }

  .m4 {
    background-size: 325%;
    overflow: hidden;
    height: 320px;
    margin-block: 4rem;
  }

  .m4 .m4_cont h4 {
    font-size: 1.125rem;
  }

  .m4 .m4_cont h3 {
    font-size: 1.5rem;
  }

  .m4 .m4_cont h3 br {
    display: none;
  }

  .m5 {
    margin-bottom: 65px;
  }

  .m5 .hover_wrap {
    flex-direction: column;
    height: 420px;
  }

  .m5 .hover_wrap .hov_item {
    padding-block: 1rem;
    border-radius: 1.5rem;
    background-size: 100% !important;
  }

  .m5 .hover_wrap .hov_item p {
    left: 20px;
  }

  .m6 .tit .dot a img {
    margin: 0 auto;
  }

  .m6 .flex_wrap {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .m6 .flex_item {
    align-items: center;
    text-align: center;
    border: none;
  }

  .m6 .flex_item img {
    max-width: 75%;
  }

  .m6 .flx_tit {
    width: calc(100% - 40px);
    padding-top: 1.5rem;
    border-top: 1px solid #ADADAD;
  }

  .m6 .flx_tit p {
    max-width: 75%;
    margin: 0 auto;
    margin-top: 0.5rem;
  }

  .m6 .flex_link {
    justify-content: space-between;
    gap: 2rem;
    width: 68%;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
  }

  .m6 .flex_link .flxmore img {
    max-width: 100%;
  }

  footer .footer_wrap {
    padding-inline: 0;
    align-items: center;
    padding-block: 2.5rem 1rem;
  }


}

@media screen and (max-width : 391px) {
  header {
    height: 80px;
  }

  header.open .depth_menu {
    height: auto;
  }

  .depth_menu .depth {
    padding-block: 0.5rem;
    text-align: center;
  }

  .depth_menu {
    background-color: rgba(124, 191, 15, 1);
  }

  header.open .depth_menu {
    top: 80px;
  }

  .tit h2 {
    font-size: 1.75rem;
  }

  .tit span {
    font-size: 1.75rem;
  }

  .main .inner {
    padding-block: 3rem 1rem;
  }

  .m2 {
    padding-block: 4.1rem;
  }

  .m2 .m2_cont h3 {
    font-size: 18px;
  }

  .m2 .m2_cont p {
    font-size: 14px;
  }

  .m3 .m3_swiper {
    padding-inline: 20px;
  }

  .m3 .swiper-slide-active img {
    transform: scale(0.9);
  }

  .m4 {
    background-size: 340%;
    height: 420px;
    position: relative;
  }

  .m4::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.325);
    position: absolute;
    top: 0;
    left: 0;
  }

  .m4 .m4_cont {
    position: relative;
    z-index: 2;
  }

  .m4 .m4_cont h4 {
    color: #fff;
    font-weight: 400;
  }

  .m4 .m4_cont h3 {
    color: #fff;
  }

  .m5 .hover_wrap {
    height: 380px;
  }

  .m5 .hover_wrap .hov_item {
    padding-block: 1rem;
  }

  .m6 .inner {
    padding-block: 3rem;
  }

  .m6 .flex_link .date {
    font-size: 13px;
  }

  footer .footer_btm .info_right p {
    line-height: 1.5;
  }
}