@charset "utf-8";

/* 프리텐다드 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

/* SUIT-Regular */
@font-face {
  font-family: 'SUIT-Regular';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* 프랭크고딕 */
@font-face {
  font-family: 'FranklinGothicITALIC';
  src: url('../fonts/FranklinGothicITALIC.ttf') format('ttf');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'FranklinGothicITALIC';
  src: url('../fonts/FranklinGothicITALIC.ttf') format('ttf');
  font-weight: normal;
  font-style: medium;
}

/* 임팩트 */
@font-face {
  font-family: 'Impact';
  src: url('../fonts/Impact.ttf') format('ttf');
  font-weight: normal;
  font-style: medium;
}

:root {
  --frank: 'FranklinGothicITALIC' 'sans-serif';
  --pre: "Pretendard Variable";
  --im: "Impact";
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard Variable", sans-serif;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  padding: 0;
  font-weight: 400;
  scroll-behavior: smooth;
}

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


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

/* --common end-- */

/* -- header --*/
header {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: fixed;
  z-index: 99;
}

.header_scroll {
  background-color: rgba(0, 0, 0, 0.55);
}

header .header_wrap {
  width: 100%;
  height: 100%;
  max-width: unset;
  margin: 0 auto;
  padding-inline: 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

header .header_wrap h1 a img {
  max-width: initial;
}

header .nav {
  margin-left: 25%;
}

header .nav .depth {
  display: flex;
  gap: 1vw;
  position: relative;
}

header .nav .depth > li {
  position: relative;
  min-width: 150px;
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.8px;
}

header .nav .depth > li > a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding-block: 40px;
}


header .nav .depth2 {
  position: absolute;
  width: 100%;
  top: 100%;
  text-align: center;
  padding-block: 2rem;
  padding-inline: 0.8rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

header .nav .depth2 > li {
  font-weight: 300;
  transition: 0.3s;
  font-size: 18px;
}

header .nav .depth2 > li:hover {
  font-weight: 700;
  transition: 0.3s;
}

header .nav .depth > li:hover .depth2 {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

header .toggle_wrap {
  display: flex;
  align-items: center;
}

/* lang */

.lang {
  position: relative;
}

.lang > .lang_opt_wrap > a {
  display: block;
}

.lang > .lang_opt_wrap > a img {
  margin-left: 1rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.lang .opt {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  padding: 5px 0;
  border-radius: 1rem;
}

.lang .opt li {
  list-style: none;
}

.lang .opt li a {
  display: block;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  border-radius: 0.8rem;
}

.lang .opt li a:hover {
  background: #f0f0f0;
}

.lang .opt li a.on {
  color: #000;
  font-weight: bold;
}

/* ham */
.ham {
  cursor: pointer;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  gap: 0.62rem;
  height: 100%;
  padding: 0.9rem 0;
  padding-right: 0;
  margin-left: 2rem;
  z-index: 99;
}

.ham .line {
  display: block;
  background-color: #fff;
  border-radius: 5rem;
  width: 45px;
  height: 1px;
}

.ham .line:last-child {
  width: 22px;
}

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

/* ham end */

.mb {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  position: fixed;
  top: -100vh;
  left: 0;
  height: 100vh;
  transition: top 0.3s;
}

.mb.show {
  top: 0;
}

.mb .mb_depth {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 2rem;
}

.mb .mb_depth > li {
  height: 21%;
  font-size: 20px;
  min-width: 170px;
  border-right: 1px solid #fff;
}

.mb .mb_depth > li h4 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.mb .mb_depth .depth2 {
  display: flex;
  flex-direction: column;
  min-width: 170px;
  font-size: 20px;
  text-align: left;
  gap: 1.25rem;
}

.mb .mb_depth .depth2 > li {
  font-weight: 300;
}

/* -- header end*/
.main {
  overflow-x: hidden;
}

.m1 {
  position: relative;
}

.m1_inner {
  transition: all 0.7s 0.5s;
  clip-path: inset(100px 60px 60px round 30px);
}

.m1_inner.active {
  clip-path: inset(0 0 0);
  transition: 0.5s;
}

.m1_swiper {
  position: relative;
}

.m1_swiper .swiper-slide .bg img {
  width: 100%;
}

.m1_swiper .txtbox {
  position: absolute;
  top: 38%;
  left: 14%;
  color: #fff;
}

.m1_swiper .txtbox h2 {
  font-size: 4.3rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  margin-bottom: 1.7rem;
}

.m1_swiper .txtbox h2 .extra {
  font-weight: 800;
}

.m1_swiper .txtbox p {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.m1_swiper .txtbox2 {
  color: #1A1A1A;
}

.m1_swiper .txtbox2 p {
  color: rgba(26, 26, 26, 0.75);
}

.m1_swiper .m1_toolbox {
  position: relative;
  bottom: 15rem;
  left: 14%;
  display: flex;
  width: 25rem;
}

.m1_swiper .m1_next::after,
.swiper-button-prev:after {
  content: none;
}

.m1_swiper .m1_next {
  width: 47px;
  height: 47px;
  background: url(../img/ic/swip_next.png) center no-repeat;
  opacity: 1;
}

.m1_swiper .m1_prev {
  width: 47px;
  height: 47px;
  background: url(../img/ic/swip_prev.png) center no-repeat;
  opacity: 1;
}

.m1_swiper .m1_pagi {
  display: inline;
  color: #fff;
  font-size: 20px;
  width: 43px;
  font-weight: 300;
  position: absolute;
  left: 4.5rem;
  top: -0.5rem;
}

.m1_swiper .swiper-pagination-current {
  font-weight: 600;
}

.m1 .m1_toolbox .autoplay_prog {
  position: absolute;
  right: 4.5rem;
  width: 183px;
  height: 3px;
  background: #B2B2B2;
  border-radius: 3px;
  overflow: hidden;
  z-index: 99;
}

.m1 .m1_toolbox .prog_bar {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.1s linear;
}

/* m1 end */

.m2 {
  background-color: #F2F2F2;
  background-size: cover;
}

.m2_inner {
  margin: 0 auto;
  clip-path: inset(60px 60px 60px);
  transition: all 0.7s 0.5s;
  width: calc(100% - 60px);
  margin: 0 auto;
  background: url(../img/m2_bg.png) center no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding-inline: 7%;
  padding-top: 30px;
  position: relative;
}

.m2_inner.active {
  clip-path: inset(30px 0 0 round 24px);
}

.m2 .flex_box {
  display: flex;
  padding-top: 165px;
  gap: 3.3rem;
}

.m2 .flex_box .img_box {
  flex: 0 0 61%;
}

.m2 .txt_box {
  color: #fff;
}

.m2 .flex_box .txt_box h2 {
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 57px;
  margin-left: -9.3rem;
  margin-top: 8.6rem;
  position: relative;
  z-index: 2;
}

.m2 .flex_box .txt_box p {
  font-size: 22px;
  font-weight: 300;
  color: #ccc;
  letter-spacing: -0.4px;
  margin-bottom: 75px;
}

.m2 .flex_box2 {
  flex-direction: row-reverse;
}

.m2 .flex_box2 .txt_box h2 {
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 57px;
  margin-right: -9.3rem;
  margin-top: 8.6rem;
  text-align: right;
}

.m2 .flex_box2 .txt_box p {
  font-size: 22px;
  font-weight: 300;
  color: #ccc;
  letter-spacing: -0.4px;
  margin-bottom: 75px;
  text-align: right;
  line-height: 1.35;
}

.m2 .flex_box2 .view {
  justify-content: end;
  display: flex;
}

.m2 .txt_wrap {
  margin-top: 9.6rem;
  display: flex;
  align-items: end;
  gap: 3rem;
}

.m2 .txt_wrap .fs60 {
  font-size: 3.75rem;
  margin-bottom: 45px;
  color: #fff;
}

.m2 .txt_wrap p {
  font-size: 22px;
  color: #ccc;
  font-weight: 300;
  letter-spacing: -0.4px;
  line-height: 1.4;
}

/* view css */
.view a {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 0.5rem;
}

/* view css */
.m2 .m2_swiper {
  align-items: center;
  margin-top: 100px;
  padding-bottom: 10rem;
  margin-left: 15%;
}

.m2 .m2_swiper .swiper-slide {
  position: relative;
  width: 100%;
}

.m2 .m2_swiper .swiper-slide img {
  transition: 0.3s;
}

.m2 .m2_swiper .swiper-slide img:hover {
  filter: brightness(1.42);
  transition: 0.3s;
}

.m2 .m2_swiper .desc {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.m2 .m2_swiper .desc h4 {
  font-size: 28px;
  color: #fff;
}

.m2 .m2_toolbox {
  position: relative;
  bottom: 12rem;
  left: 18rem;
  height: 100%;
}

.m2 .m2_prev {
  position: absolute;
  left: -14.5rem;
  width: 53px;
  height: 53px;
  background: url(../img/ic/swip_prev.png) center no-repeat;
  background-size: cover;
  opacity: 0.8;
}

.m2 .m2_next {
  position: absolute;
  left: -8.5rem;
  width: 53px;
  height: 53px;
  background: url(../img/ic/swip_next.png) center no-repeat;
  background-size: cover;
  opacity: 0.8;
}

.m2 .m2_prev::after,
.m2 .m2_next::after {
  content: none;
}

/* m2 end */

.m3 {
  background-color: #F2F2F2;
  padding-block: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m3 .text_box {
  padding-left: 9.6rem;
  flex: 0 0 30%;
}

.m3 .text_box h2 {
  color: #262626;
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 50px;
}

.m3 .text_box p {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.4px;
  line-height: 1.4;
  color: #666;
  margin-bottom: 80px;
}

.m3 .text_box .view a {
  color: #BFBFBF;
  font-size: 1.125rem;
  letter-spacing: -0.4px;
}

.m3 .m3_swiper {
  padding: 2rem 1rem;
}

.m3 .swiper-slide {
  display: flex;
  filter: drop-shadow(5px 8px 12px rgba(0, 0, 0, 0.35));
}

.m3 .desc {
  width: 50%;
  background-color: #fff;
  padding: 3rem;
  border-radius: 1.5rem 0 0 1.5rem;
}

.m3 .desc_top p {
  color: #666;
  font-size: 1.125rem;
  letter-spacing: -0.4px;
  line-height: 1.5;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(125, 125, 125, 0.5);
}

.m3 .desc_btm h4 {
  font-size: 2rem;
  color: rgba(26, 26, 26, 0.8);
  font-weight: 600;
  font-family: 'SUIT-Regular';
  margin-block: 2rem;
}

.m3 .desc_btm p {
  color: #666;
  font-size: 22px;
  letter-spacing: -0.4px;
  line-height: 1.3;
  font-weight: 300;
}

.m3 .swiper-slide .imgbox img {
  border-radius: 0 1.5rem 1.5rem 0;
  height: 100%;
  object-fit: cover;
}

/* m3 end */

.m4 {
  background: url(../img/m4_bg.jpg) center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 9.6rem;
  padding-block: 8.5%;
}

.m4 .text_box {
  flex: 0 0 43%;
}

.m4 .text_box h2 {
  color: #262626;
  font-size: 3.75rem;
  letter-spacing: -1px;
  line-height: 1.35;
  font-weight: 900;
  padding-top: 3rem;
  font-weight: 900;
}

.m4 .text_box p {
  color: #666;
  font-size: 22px;
  letter-spacing: -0.4px;
  line-height: 1.35;
  font-weight: 300;
  margin-block: 2.5rem 5.5rem;
}

.m4 .text_box .view a {
  color: #BFBFBF;
}

.m4 .video_box video {
  background-color: #333;
  height: 100%;
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
}

/* m4 end */

.m5 {
  background: url(../img/m5_bg.jpg) no-repeat center / cover;
  display: flex;
  padding-block: 10%;
  padding-inline: 10.5% 14.5%;
  align-items: start;
  justify-content: space-between;
  background-attachment: fixed;
}

.m5 .title {
  flex: 1 1 65%;
  width: 100%;
}

.m5 .title h2 {
  color: #fff;
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 50px;
}

.m5 .title p {
  color: #CCCCCC;
  font-size: clamp(18px, 1.1vw, 22px);
  letter-spacing: -0.4px;
  line-height: 1.35;
  font-weight: 300;
}


.send {
  width: 100%;
  letter-spacing: -0.25px;
  color: white;
}

.send > p {
  color: inherit;
  font-size: 20px;
  display: block;
  width: 100%;
  text-align: right;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 1rem;
}

.send ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-block: 3.1rem;
}

.send ul li {
  display: inline-flex;
  color: white;
  gap: 3rem;
}

.send ul li .input_box {
  display: flex;
  /* background: rgba(240, 240, 240, 0.4); */
  padding: 0.5rem;
  border-radius: 6px;
  min-width: 47%;
  margin-bottom: 1.7rem;
  color: white;
  border-bottom: 1px solid #B2B2B2;
}

.send ul li .input_box p {
  color: inherit;
  font-size: 18px;
  margin-right: 1.25rem;
}

input:focus {
  outline: none;
}

.send ul li .input_box input {
  background: transparent;
  color: inherit;
  border: none;
  min-width: fit-content;
  width: 48%;
  box-sizing: border-box;
  font-size: 1rem;
  color: #fff;
}

.send ul li .input_box2 {
  width: 100%;
  color: inherit;
}

.send textarea {
  border: 1px solid #ccc;
  background: rgba(240, 240, 240, 0.4);
  overflow: auto;
  min-height: 100px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
  resize: none;
  padding: 0.625rem;
  color: #000;
  font-size: 1rem;

  border-radius: 0.75rem;

  &::placeholder {
    color: #fff;
    font-family: 'pretendard';
    font-size: 18px;
    margin-right: 1.25rem;
  }

  &:focus {
    outline: none;
  }
}

.send .check {
  display: flex;
  justify-content: space-between;
  margin-top: 1.325rem;
}

.send .check label {
  color: white;
  font-size: 20px;
}

.send .check #info_check {
  position: relative;
  background: none;
}

.send .check #info_check::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../img/ic/check.png) center no-repeat;
}

.send .check .submit {
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 0.45rem 4.75rem;
  min-width: 160px;
  background: #fff;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  cursor: pointer;
}

/* m5 end */

footer {
  background-color: #000000;
  position: relative;
}

footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 8rem;
  background-color: rgba(255, 255, 255, 0.75);
}

footer .footer_inner {
  padding-inline: 14% 8%;
  padding-block: 3rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

footer .top {
  position: absolute;
  right: 4rem;
  top: -2rem;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}

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

footer .info_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
}

footer .info_box {
  display: flex;
  gap: 1rem;
  color: #fff;
  font-weight: 300;
}

footer .info_box .add p {
  line-height: 1.5;
}

footer .info_box .bold {
  font-weight: 700;
  min-width: 100px;
}

footer .info_box .spanbold {
  font-weight: 700;
}

footer .footer_nav {
  margin-top: -6rem;
  font-size: 1rem;
}

footer .footer_nav .footer_depth1 {
  display: flex;
  gap: 3rem;
}

footer .footer_nav .footer_depth1 > li {
  color: #fff;
}

footer .footer_nav .footer_depth1 > li > a {
  font-weight: bold;
}

footer .footer_nav .footer_depth2 {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.25rem;
}

footer .footer_nav .footer_depth2 > li {
  padding-block: 0.5rem;
}

footer .copy {
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 2rem;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.4px;
}

footer .copy .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .copy .left p:nth-child(1) {
  border-right: 1px solid #fff;
  padding-right: 1rem;
}

/* responsive start */

@media screen and (max-width: 1441px) {
  header .nav {
    margin-left: 18%;
  }

  .m1_swiper .txtbox h2 {
    font-size: 3.3rem;
  }

  .m1_swiper .txtbox p {
    font-size: 20px;
  }

  .m1_swiper .m1_toolbox {
    bottom: 9rem;
  }

  .m2_inner {
    width: calc(100% - 32px);
  }

  .m2_inner.active {
    clip-path: inset(16px 0 0 round 24px);
  }

  .m2 .flex_box .txt_box h2 {
    text-wrap: nowrap;
    font-size: 3.5rem;
    margin-bottom: 26px;
    margin-left: -8.3rem;
    margin-top: 6.6rem;
  }

  .m2 .flex_box .txt_box p {
    font-size: 20px;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 3.5rem;
  }

  .m2 .txt_wrap p {
    font-size: 20px;
  }

  .m2 .m2_toolbox {
    left: 15%;
  }

  .m3 {
    padding-inline: 5% 0;
  }

  .m3 .text_box {
    padding-left: 16px;
    flex: 0 0 22%
  }

  .m3 .text_box h2 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
  }

  .m3 .text_box p {
    font-size: 20px;
  }

  .m3 .desc {
    padding: 2rem;
  }

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

  .m3 .desc_btm h4 {
    font-size: 1.75rem;
  }

  .m3 .desc_btm p {
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .m4 {
    padding-inline: 5%;
  }

  .m4 .text_box h2 {
    font-size: 3rem;
    letter-spacing: -0.8px;
    padding-top: 1rem;
  }

  .m4 .text_box p {
    font-size: 20px;
  }

  .m5 {
    padding-inline: 5%;
  }

  footer .footer_inner {
    padding-inline: 5%;
  }
}

@media screen and (max-width : 1281px) {
  header .nav {
    margin-left: 3rem;
  }

  .m1_swiper .txtbox {
    left: 5%;
  }

  .m1_swiper .txtbox h2 {
    font-size: 2.75rem;
  }

  .m1_swiper .txtbox p {
    font-size: 1.125rem;
  }

  .m1_swiper .m1_toolbox {
    left: 5%;
  }

  .m2_inner {
    padding-inline: 5%;
  }

  .m2 .flex_box .txt_box h2 {
    margin-top: 3.5rem;
    font-size: 3rem;
  }

  .m2 .flex_box .txt_box p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 4rem;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 2.75rem;
  }

  .m2 .txt_wrap p {
    font-size: 1.125rem;
  }

  .m2 .m2_toolbox {
    left: 17%;
  }

  .m3 .text_box h2 {
    font-size: 3rem;
  }

  .m3 .text_box p {
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
  }

  .m3 .desc {
    width: 60%;
  }

  .m3 .desc_btm h4 {
    font-size: 1.5rem;
  }

  .m3 .desc_btm p {
    font-size: 14px;
  }

  .m4 .text_box h2 {
    font-size: 2.75rem;
  }

  .m4 .text_box p {
    font-size: 1.125rem;
    margin-block: 2rem 3rem;
  }

  .m5 .title h2 {
    font-size: 3.5rem;
  }

  .send > p {
    font-size: 1.125rem;
  }

  .top {
    width: 60px;
  }

  footer .footer_nav .footer_depth1 {
    gap: 2rem;
  }

  .mb .mb_depth > li {
    height: 25%;
  }
}

@media screen and (max-width : 1025px) {

  header .header_wrap {
    justify-content: initial;
  }

  header .nav {
    margin-left: 1rem;
  }

  header .nav .depth > li {
    min-width: 120px;
    font-size: 1.125rem;
  }

  header .nav .depth2 {
    min-width: 120px;
    padding-inline: 0.5rem;
  }

  .m1_swiper .txtbox h2 {
    font-size: 2.5rem;
  }

  .m1_swiper .txtbox p {
    font-size: 1rem;
  }

  .m1_swiper .m1_toolbox {
    bottom: 6rem;
  }

  .m1_swiper .m1_prev,
  .m1_swiper .m1_next {
    height: 35px;
    width: 35px;
    background-size: cover;
  }

  .m1_swiper .m1_pagi {
    left: 3.5rem;
    top: -0.8rem;
    font-size: 16px;
    width: 40px;
  }

  .m1 .m1_toolbox .autoplay_prog {
    right: 5.5rem;
  }

  .m2 .flex_box {
    padding-top: 5rem;
    gap: 2.3rem;
  }

  .m2 .flex_box .txt_box h2 {
    font-size: 2.5rem;
    margin-left: -6.3rem;
  }

  .m2 .flex_box .txt_box p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 2.25rem;
  }

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

  .m2 .m2_toolbox {
    left: 22%;
  }

  .m2 .m2_prev {
    left: -13.5rem;
    width: 45px;
    height: 45px;
  }

  .m2 .m2_next {
    width: 45px;
    height: 45px
  }

  .m2 .m2_swiper .desc {
    bottom: 1rem;
    left: 1rem;
  }

  .m2 .m2_swiper .desc h4 {
    font-size: 1.125rem;
  }

  .m3 {
    padding-block: 6rem;
    padding-inline: 1rem 0;
  }

  .m3 .text_box h2 {
    font-size: 2.75rem;
  }

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

  .m3 .desc_btm h4 {
    font-size: 1.25rem;
    margin-block: 1rem;
  }

  .m3 .desc_btm p {
    font-size: 14px;
  }

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

  .m4 {
    padding-block: 10%;
    padding-inline: 1rem;
  }

  .m4 .text_box {
    flex: 0 0 45%;
  }

  .m4 .text_box h2 {
    font-size: 2rem;
  }

  .m4 .text_box p {
    font-size: 1rem;
  }

  .m5 {
    flex-direction: column;
    height: auto;
    padding-block: 10%;
  }

  footer .footer_btm {
    flex-direction: column-reverse;
    align-items: start;
    gap: 2rem;
    width: 100%;
  }

  footer .footer_nav {
    margin-top: -4rem;
    display: flex;
    align-items: end;
    justify-content: end;
    width: 100%;
  }

  footer .info_wrap {
    flex-direction: column-reverse;
  }

  footer .copy {
    align-items: start;
    justify-content: start;
  }
}

@media screen and (max-width : 900px) {
  header .header_wrap {
    justify-content: space-between;
  }

  header .nav {
    display: none;
  }

  .lang {
    margin-left: 28rem;
  }

  .mb .mb_depth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-items: center;
    gap: 2rem 0;
  }

  .mb .mb_depth > li {
    min-width: 100%;
    text-align: center;
    height: 100%;
  }

  .mb .mb_depth .depth2 {
    text-align: center;
  }

  .m1 {
    height: 100vh;
  }

  .m1_inner {
    height: 100%;
  }

  .m1_inner.active {
    height: 100%;
    clip-path: inset(0 0 0);
  }

  .m1_swiper {
    height: 100%;
  }

  .m1 .m1_inner .bg {
    height: 100%;
  }

  .m1 .m1_inner .bg img {
    height: 100%;
    object-fit: cover;
  }

  .m1_swiper .m1_toolbox {
    bottom: 2rem;
  }

  .m2 .flex_box .img_box {
    flex: 0 0 55%;
  }

  .m2 .flex_box .txt_box h2 {
    font-size: 2rem;
    margin-left: -7.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .m2 .flex_box .txt_box p {
    margin-bottom: 0.8rem;
  }

  .m2 .txt_wrap {
    margin-top: 5.5rem;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .m2 .m2_toolbox {
    left: 28%;
  }

  .m2 .m2_next {
    left: -9.5rem;
  }

  .m3 {
    flex-direction: column;
  }

  .m3 .text_box {
    padding-left: 0;
    flex: initial;
    width: 100%;
    text-align: center;
  }

  .m3 .text_box h2 br {
    display: none;
  }

  .m3 .text_box .view a {
    justify-content: center;
  }

  .m3 .desc {
    width: unset;
  }

  .m3 .desc_btm p br {
    display: block;
  }

  .m3 .swiper-slide {
    width: 100% !important;
  }

  .m3 .desc {
    width: 50%;
  }

  .m4 {
    flex-direction: column;
    gap: 2rem;
  }

  .m4 .text_box {
    flex: 1;
    width: 100%;
  }

  footer .footer_nav {
    display: none;
  }

  header .header_wrap h1 a img {
    width: 120px;
  }

  .lang > .lang_opt_wrap > a {
    width: 22px;
  }
}

@media screen and (max-width : 430px) {

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

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

  .lang {
    margin-left: 10vw;
  }

  .mb .mb_depth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    row-gap: 2rem;
    padding-inline: 20px;
    align-content: center;
  }

  .mb .mb_depth > li h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .mb .mb_depth > li:nth-child(even) {
    border: none;
  }

  .mb .mb_depth .depth2 > li a {
    font-size: 1rem;
  }

  .view img {
    width: 40px;
  }

  .m1_swiper {
    height: 100%;
  }

  .m1_swiper .txtbox h2 {
    font-size: 2rem;
  }

  .m1_swiper .txtbox p {
    font-size: 14px;
  }

  .m1_swiper .m1_toolbox {
    width: 100%;
    left: 0;
    bottom: 3rem;
  }

  .m1 .m1_toolbox .autoplay_prog {
    right: 18%;
    width: 50%;
  }

  .m2 .flex_box {
    flex-direction: column;
  }

  .m2 .flex_box .txt_box h2 {
    margin-left: 0;
  }

  .m2 .flex_box2 .txt_box h2 {
    margin-right: 0;
    font-size: 1.5rem;
  }

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

  .m2 .txt_wrap {
    flex-direction: column;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 1.5rem;
  }

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

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

  .m2 .m2_toolbox {
    left: 68%;
    bottom: 6rem;
  }

  .m3 {
    padding-inline: 0;
    padding-block: 3rem;
  }

  .m3 .text_box {
    margin-bottom: 2rem;
  }

  .m3 .text_box h2 {
    font-size: 2rem;
  }

  .m3 .text_box p {
    margin-bottom: 1rem;
  }

  .m3 .m3_swiper {
    width: 100%;
    padding: 0rem;
  }

  .m3 .swiper-slide {
    width: fit-content !important;
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .m3 .desc {
    width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
    text-align: center;
  }

  .m3 .swiper-slide .imgbox img {
    transform: rotate(90deg);
    border-radius: 0 1.5rem 1.5rem 0;
    width: 100%;
  }

  .m4 {
    padding-block: 2rem 6rem;
  }

  .m4 .text_box h2 {
    font-size: 1.5rem;
  }

  .m4 .text_box p {
    font-size: 14px;
    margin-block: 1rem 3rem;
  }

  .m5 {
    padding-block: 6rem 2rem;
  }

  .m5 .title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .m5 .title p {
    margin-bottom: 3rem;
  }

  .send > p {
    font-size: 14px;
  }

  .send ul li .input_box p {
    font-size: 1rem;
  }

  .send ul li {
    flex-direction: column;
  }

  .send .check {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .send .check label,
  .send textarea,
  .send textarea::placeholder {
    font-size: 14px;
  }

  .send .check .btn_submit {
    margin: 0 auto;
  }

  .send .check .submit {
    font-size: 1rem;
    padding: 0.45rem 2.75rem;
    margin-top: 1.25rem;
  }

  footer .top {
    right: 1rem;
  }

  footer .info_box {
    font-size: 14px;
  }

  footer .info_box .add p:nth-child(1) {
    margin-bottom: 1rem !important;
  }

  footer .copy {
    flex-direction: column;
  }

  footer .footer_top img {
    width: 120px;
  }

}

@media screen and (max-width : 321px) {
  .mb .mb_depth {
    gap: 0.5rem;
    row-gap: 1.25rem;
  }

  .mb .mb_depth .depth2 {
    min-width: 100%;
    gap: 0.5rem;
  }

  .mb .mb_depth > li h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }

  .mb .mb_depth .depth2 > li a {
    font-size: 14px;
  }

  .lang {
    margin-left: 4rem;
  }

  .m1_swiper .txtbox h2 {
    font-size: 1.75rem;
  }

  .m1_swiper .txtbox p {
    max-width: 85%;
    line-height: 1.35;
  }

  .m2 .flex_box .txt_box h2 {
    font-size: 1.5rem;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 1.25rem;
  }

  .m2 .m2_toolbox {
    left: 88%;
  }

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

  .m4 .text_box p br {
    display: none;
  }

  .send ul li {
    gap: 0;
  }

  .send ul li .input_box p {
    margin-right: 0.25rem;
    font-size: 14px;
  }

  footer::before {
    top: 6rem;
  }

  footer .footer_inner {
    gap: 2.25rem;
    padding-block: 2rem 3rem;
  }

  footer .footer_inner .footer_top img {
    width: 145px;
  }

  footer .info_box:nth-of-type(1) {
    flex-direction: column;
  }
}