@charset "UTF-8";
/* font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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");

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
  font-style: normal;
  word-break: keep-all;
}

ul,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

body {
  overflow: scroll;
}

html {
  scroll-behavior: smooth;
}

section {
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
}

header .header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  border-bottom: 1px solid #3f3f3f;
  background: #ffffff;
  transition: all 0.5s;
}

header .header.hidden {
  border-bottom: 0;
  background: transparent;
}

header .header .wrap {
  /* max-width: 1680px; */
  width: 80%;
  height: 120px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header .wrap .left {
  position: relative;
}

header .header .wrap .left .menu-btn {
  position: relative;
  cursor: pointer;
  width: 36px;
  height: 24px;
  z-index: 99999;
}

header .header .wrap .left .menu-btn span {
  position: absolute;
  display: block;
  width: 36px;
  height: 3px;
  background: #3f3f3f;
  border-radius: 36px;
  transition: all 0.5s;
}

header .header .wrap .left .menu-btn span:nth-child(1) {
  top: 0;
}

header .header .wrap .left .menu-btn span:nth-child(2) {
  top: 10px;
}

header .header .wrap .left .menu-btn span:nth-child(3) {
  top: 20px;
}

header .header .wrap .left .menu-btn.open span:nth-child(1) {
  animation: open01-01 0.5s forwards;
}

@keyframes open01-01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(10px) rotate(0);
  }

  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

header .header .wrap .left .menu-btn.open span:nth-child(2) {
  display: none;
}

header .header .wrap .left .menu-btn.open span:nth-child(3) {
  animation: open01-02 0.5s forwards;
}

@keyframes open01-02 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(0);
  }

  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}

header .header .wrap .right {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}

header .header .wrap .right.hidden {
  visibility: hidden;
  opacity: 0;
}

header .header .wrap .right ul {
  display: flex;
  align-items: center;
  gap: 80px;
}

header .header .wrap .right ul li a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #3f3f3f;
}

header .header .wrap .right ul li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: #3f3f3f;
  bottom: -4px;
  left: 0;
  transition: all 0.3s;
}

header .header .wrap .right ul li a:hover::after {
  width: 100%;
}

header .left-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  border-right: 1px solid #3f3f3f;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  padding-left: 120px;
  transform: translateX(-100%);
  transition: all 0.5s;
}

header .left-menu-open.active {
  transform: translateX(0px);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

header .left-menu-open ul {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

header .left-menu-open ul li a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 35px;
  color: #3f3f3f;
}

header .left-menu-open ul li a img {
  transition: all 0.3s;
  opacity: 0;
}

header .left-menu-open ul li a:hover img {
  margin-left: 40px;
  opacity: 1;
  height: 20px;
}

header .left-menu-open .lang {
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  top: 144px;
  right: 15px;
  width: 178px;
  height: 32px;
  border: 2px solid #686868;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f3f3f;
}

header .left-menu-open .lang a {
  color: #3f3f3f;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

header .left-menu-open .lang a.on {
  font-weight: 800;
  color: #000000;
}

html[data-sub-name="hiso"] header .header .wrap .right ul li:nth-child(2) a::after {
  width: 100%;
}

html[data-sub-name="brand"] header .header .wrap .right ul li:nth-child(3) a::after {
  width: 100%;
}

html[data-sub-name="product"] header .header .wrap .right ul li:nth-child(4) a::after {
  width: 100%;
}

html[data-sub-name="contact"] header .header .wrap .right ul li:nth-child(5) a::after {
  width: 100%;
}

html[data-sub-name="news"] header .header .wrap .right ul li:nth-child(6) a::after {
  width: 100%;
}

footer {
  position: relative;
  width: 100%;
  background: #151515;
  z-index: 9999;
}

footer .footer-wrap {
  /* max-width: 1600px; */
  width: 80%;
  margin: auto;
  padding: 18px 10px;
}

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

footer .footer-wrap .top .left h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: #ffffff;
}

footer .footer-wrap .top .left a p {
  color: #fff;
}

footer .footer-wrap .top .right ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

footer .footer-wrap .top .right ul li a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f7f7f7;
}

footer .footer-wrap .top .right ul li a span {
  color: #a4a4a4;
}

footer .footer-wrap .top .right ul li a span:after {
  content: "|";
  display: inline-block;
  color: #f7f7f7;
  margin-left: 16px;
  margin-right: 16px;
}

footer .footer-wrap .top .right ul li a:last-of-type span:after {
  display: none;
}

/* 
footer .footer-wrap .bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #eeeeee;
  text-align: center;
} */

/* sub 공통 */
.sub-banner {
  max-width: 1800px;
  width: 100%;
  height: 400px;
  margin: auto;
  margin-top: 180px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-banner h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 68px;
  color: #ffffff;
}

.content-wrap .tab-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.content-wrap .tab-wrap a {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #adadad;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.content-wrap .tab-wrap a.active {
  color: #151515;
}

.content-wrap .tab-wrap a:hover {
  color: #151515;
}

/* .content-wrap .tab-wrap span {
  display: block;
  width: 2px;
  height: 24px;
  background: #151515;
  margin: 0 40px;
} */
.content-wrap .tab-wrap a::after {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background: #151515;
  margin: 0 20px;
}

.content-wrap .tab-wrap a:last-of-type::after {
  content: none;
}

/* product */
.product-section .product-banner {
  background: url(../img/sub/product-banner.jpg) no-repeat center center;
  background-size: cover;
}

.product-section .content-wrap {
  margin-bottom: 100px;
}

.product-section .content-wrap .content {
  max-width: 1380px;
  width: 100%;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  display: none;
}

.product-section .content-wrap .content.active {
  display: grid;
}

.product-section .content-wrap .content .cont .img-box {
  position: relative;
  background: #f6f6f6;
  padding: 8px 12px;
  margin-bottom: 32px;
}

.product-section .content-wrap .content .cont .img-box img {
  width: 100%;
}

.product-section .content-wrap .content .cont .img-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s;
}

.product-section .content-wrap .content .cont .img-box a::after {
  position: absolute;
  content: "";
  width: 122px;
  height: 44px;
  border: 1px solid #ffffff;
}

.product-section .content-wrap .content .cont .img-box:hover a {
  opacity: 1;
}

.product-section .content-wrap .content .cont .text-box h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #151515;
  margin-bottom: 8px;
}

.product-section .content-wrap .content .cont .text-box p {
  font-family: "SUIT";
  font-size: 1rem;
  color: #8e8e8e;
  margin-bottom: 8px;
}

.product-section .content-wrap .content .cont .text-box b {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #151515;
}

body.popup-open {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  touch-action: none;
}

.popup-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.popup-wrap.active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.popup-wrap .bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
}

.popup-wrap .content-wrap {
  position: relative;
  width: 80%;
  background: #f6f6f6;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.15);
  padding: 60px;
  z-index: 9999;
  max-height: 80%;
  overflow: auto;
}
.popup-wrap .content-wrap::-webkit-scrollbar {
  width: 8px;
}

.popup-wrap .content-wrap::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
}

.popup-wrap .content-wrap::-webkit-scrollbar-track {
  background: #dddddd;
  border-radius: 10px;
}

.popup-wrap .close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-wrap .content-wrap .text-box {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.channel {
  display: flex;
  align-items: center;
  justify-content: end;
  /* width: 93.5%;;
  margin: auto; */
  max-width: 1800px;
  width: 100%;
  margin: auto;
}

.channel a {
  font-family: "SUIT";
  font-size: 14px;
}

.channel svg {
  transform: rotate(90deg);
  width: 20px;
  height: 20px;
}

.popup-wrap-detail {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.popup-wrap-detail .content-wrap {
  position: relative;
  width: 100%;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-wrap-detail .content-wrap .img-box {
  background: #f6f6f6;
  padding: 10px 8px;
  margin-bottom: 40px;
  margin-right: 200px;
  width: auto;
  max-width: 800px;
}

.popup-wrap-detail .content-wrap .img-box img {
  display: block;
  width: 100%;
}

.popup-wrap-detail .content-wrap .text-box {
  width: 600px;
}

.popup-wrap-detail .content-wrap .text-box .text01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-wrap-detail .content-wrap .text-box .text01 h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #151515;
}

.popup-wrap-detail .content-wrap .text-box .text01 p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #686868;
}

.popup-wrap-detail .content-wrap .text-box>span {
  display: block;
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin: 24px 0;
}

.popup-wrap-detail .content-wrap .text-box .text02 {
  margin-bottom: 48px;
}

.popup-wrap-detail .content-wrap .text-box .text02 p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #8e8e8e;
}

.popup-wrap-detail .content-wrap .text-box .text03 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-wrap-detail .content-wrap .text-box .text03 .inbox {
  display: flex;
}

.popup-wrap-detail .content-wrap .text-box .text03 p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #151515;
}

.popup-wrap-detail .content-wrap .text-box .text03 a {
  display: block;
  background: #151515;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}

.popup-wrap-detail .content-wrap .text-box .text03 a:last-child {
  margin-left: 20px;
}

.popup-wrap-detail .description {
  width: 100%;
  max-width: 1800px;
  margin-bottom: 100px;
  padding: 0 60px;
}

.popup-wrap-detail .description h4 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  color: #151515;
  text-align: center;
  margin-bottom: 100px;
  padding-top: 100px;
  border-top: 1px solid #d8d8d8;
}

.popup-wrap-detail .description .desc_content {
  width: 100%;
  margin: 0 auto;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-wrap-detail .description .desc_content img {
  display: block;
  width: 100%;
}

/* contact - address */
.contact-section .contact-banner {
  background: url(../img/sub/contact-banner.jpg) no-repeat center center;
  background-size: cover;
}

.contact-section .content-wrap {
  margin-bottom: 100px;
}

.contact-section .content-wrap .content {
  max-width: 1380px;
  width: 100%;
  margin: auto;
}

.contact-section .content-wrap .content .top {
  width: 100%;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-section .content-wrap .content .top iframe {
  width: 100%;
  height: 800px;
}

.contact-section .content-wrap .content .bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.contact-section .content-wrap .content .bottom .cont {
  border-top: 2px solid #023e7c;
  padding: 20px 0px 0px 15px;
}

.contact-section .content-wrap .content .bottom .cont .box {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 24px;
}

.contact-section .content-wrap .content .bottom .cont .box h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #151515;
}

.contact-section .content-wrap .content .bottom .cont .box h3 span {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  color: #151515;
}

.contact-section .content-wrap .content .bottom .cont p,
.contact-section .content-wrap .content .bottom .cont a {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #686868;
}

/* contact - mail */
.contact-mail-section .contact-banner {
  background: url(../img/sub/contact-banner.jpg) no-repeat center center;
  background-size: cover;
}

.contact-mail-section .content-wrap {
  margin-bottom: 100px;
}

.contact-mail-section .content-wrap .tab-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.contact-mail-section .content-wrap .tab-wrap a {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 38px;
  color: #adadad;
  transition: all 0.3s;
}

.contact-mail-section .content-wrap .tab-wrap a.active {
  color: #151515;
}

.contact-mail-section .content-wrap .tab-wrap a:hover {
  color: #151515;
}

.contact-mail-section .content-wrap .tab-wrap span {
  display: block;
  width: 2px;
  height: 24px;
  background: #151515;
  margin: 0 40px;
}

.contact-mail-section .content-wrap .content {
  max-width: 1380px;
  width: 100%;
  margin: auto;
}

.contact-mail-section .content-wrap .content form .top {
  position: relative;
  margin-bottom: 42px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.contact-mail-section .content-wrap .content form .top h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #151515;
  margin-bottom: 40px;
}

.contact-mail-section .content-wrap .content form .top .bg {
  position: absolute;
  width: 100%;
  height: 200px;
  z-index: -1;
  background: #f6f6f6;
}

.contact-mail-section .content-wrap .content form .top .text-box {
  width: 98.5%;
  height: 200px;
  padding: 40px;
  overflow: auto;
  margin-bottom: 40px;
}

.contact-mail-section .content-wrap .content form .top .text-box p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #8e8e8e;
}

.contact-mail-section .content-wrap .content form .top .text-box::-webkit-scrollbar {
  width: 5px;
}

.contact-mail-section .content-wrap .content form .top .text-box::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
}

.contact-mail-section .content-wrap .content form .top .text-box::-webkit-scrollbar-track {
  background: #dddddd;
  border-radius: 10px;
  margin: 20px;
}

.contact-mail-section .content-wrap .content form .top .radio-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-mail-section .content-wrap .content form .top .radio-box p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3f3f3f;
  margin-right: 10px;
}

.contact-mail-section .content-wrap .content form .top .radio-box label {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #8e8e8e;
  margin-left: 10px;
  position: relative;
}

.contact-mail-section .content-wrap .content form .top .radio-box label span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dddddd;
  left: -30px;
  top: -2px;
  transition: all 0.3s;
}

.contact-mail-section .content-wrap .content form .top .radio-box label span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #dddddd;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}

.contact-mail-section .content-wrap .content form .top .radio-box label span.active {
  background: #023e7c;
  transition: all 0.3s;
}

.contact-mail-section .content-wrap .content form .top .radio-box label span.active::after {
  background: #ffffff;
  transition: all 0.3s;
}

.contact-mail-section .content-wrap .content form .top .radio-box input {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  cursor: pointer;
}

.contact-mail-section .content-wrap .content form .top .pricy_btn {
  text-decoration: underline;
  cursor: pointer;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.contact-mail-section .content-wrap .content form .middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
  width: 100%;
  margin-bottom: 24px;
}

.contact-mail-section .content-wrap .content form .middle>div {
  display: flex;
  align-items: center;
  gap: 52px;
  width: 100%;
}

.contact-mail-section .content-wrap .content form .middle>div.title {
  grid-column: 1 / 4;
}

.contact-mail-section .content-wrap .content form .middle>div>label {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #3f3f3f;
}

.contact-mail-section .content-wrap .content form .middle>div>input {
  width: 100%;
  height: 50px;
  border: 1px solid #d8d8d8;
  padding: 14px 24px;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3f3f3f;
}

.contact-mail-section .content-wrap .content form .middle>div>input:placeholder {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #8e8e8e;
}

.contact-mail-section .content-wrap .content form .bottom {
  width: 100%;
  margin-bottom: 60px;
}

.contact-mail-section .content-wrap .content form .bottom .message {
  display: flex;
  align-items: flex-start;
  gap: 52px;
  width: 100%;
}

.contact-mail-section .content-wrap .content form .bottom .message label {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #3f3f3f;
  margin-top: 12px;
  display: block;
}

.contact-mail-section .content-wrap .content form .bottom .message textarea {
  width: 100%;
  height: 300px;
  background: #ffffff;
  border: 1px solid #c9c9c9;
  padding: 24px;
  resize: none;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3f3f3f;
}

.contact-mail-section .content-wrap .content form .bottom .message textarea:placeholder {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #8e8e8e;
}

.contact-mail-section .content-wrap .content form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background: #000000;
  border-radius: 24px;
  cursor: pointer;
  margin: 0 auto;
  border: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  color: #ffffff;
}

/* news */
.news-section .news-banner {
  background: url(../img/sub/news-banner.jpg) no-repeat center center;
  background-size: cover;
}

.news-section .content-wrap {
  margin-bottom: 100px;
}

.news-section .content-wrap .content {
  max-width: 1380px;
  width: 100%;
  margin: auto;
  /* .but_number:last-child{
                border-right:0 ;
            } */
}

.news-section .content-wrap .content>h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  color: #151515;
  text-align: center;
  margin-bottom: 100px;
}

.news-section .content-wrap .content table {
  width: 100%;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
  border-collapse: collapse;
  margin-bottom: 48px;
}

.news-section .content-wrap .content table thead tr,
.news-section .content-wrap .content table tbody tr {
  border-bottom: 1px solid #d8d8d8;
  transition: 0.3s;
}

.news-section .content-wrap .content table tbody tr:hover {
  background: #f7f7f7;
}

.news-section .content-wrap .content table tbody tr:last-child {
  border-bottom: none;
}

.news-section .content-wrap .content table thead tr th {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #151515;
  padding: 18px 40px;
}

.news-section .content-wrap .content table tbody tr td {
  text-align: center;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #8e8e8e;
  padding: 18px 40px;
}

.news-section .content-wrap .content table tbody tr td a.table_link {
  text-align: center;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #8e8e8e;
  display: flex;
}

.news-section .content-wrap .content table tbody tr td:nth-child(2) {
  text-align: unset;
  padding-left: 80px;
}

.news-section .content-wrap .content .but_box {
  display: flex;
  justify-content: center;
}

.news-section .content-wrap .content .but_left,
.news-section .content-wrap .content .but_right {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  cursor: pointer;
}

.news-section .content-wrap .content .but_number_box {
  display: flex;
}

.news-section .content-wrap .content .but_number {
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.1s;
}

.news-section .content-wrap .content .but_number a {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #151515;
  margin-bottom: 0;
}

.news-section .content-wrap .content .but_number.active {
  height: 40px;
  border-bottom: 2px solid #023e7c;
}

.news-section .content-wrap .content .detail-wrap .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #d8d8d8;
}

.news-section .content-wrap .content .detail-wrap .top div {
  padding: 24px 40px 18px;
}

.news-section .content-wrap .content .detail-wrap .top div p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #151515;
}

.news-section .content-wrap .content .detail-wrap .bottom {
  padding: 40px;
  margin-bottom: 54px;
  border-bottom: 1px solid #d8d8d8;
}

.news-section .content-wrap .content .detail-wrap .bottom p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #686868;
}

.news-section .content-wrap .content .detail-wrap .list-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 156px;
  height: 56px;
  border: 1px solid #d8d8d8;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #151515;
}

/*brand*/
.brand-section .brand-banner {
  background: url(../img/sub/brand-banner.jpg) no-repeat center center;
  background-size: cover;
}

.brand-section .content-wrap {
  margin-bottom: 100px;
}

.brand-section .content-wrap .content {
  display: block;
}

.brand-section .content-wrap .content.viate {
  width: 100%;
  margin: auto;
}

.brand-section .content-wrap .content.viate .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.brand-section .content-wrap .content.viate .title h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  color: #151515;
}

.brand-section .content-wrap .content.viate .title figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.brand-section .content-wrap .content.viate .title figure figcaption {
  font-size: 1.375rem;
}

.brand-section .content-wrap .content.viate .attbox {
  width: 100%;
  background: url(../img/sub/brand01.jpg) no-repeat center center;
  background-size: cover;
  padding: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;
}

.brand-section .content-wrap .content.viate .attbox img {
  max-width: 400px;
  width: 100%;
  position: relative;
}

.brand-section .content-wrap .content.viate .attbox img:nth-child(1) {
  left: 80px;
}

.brand-section .content-wrap .content.viate .attbox img:nth-child(3) {
  left: -80px;
}

.brand-section .content-wrap .content.viate .title02 {
  margin-bottom: 120px;
}

.brand-section .content-wrap .content.viate .title02 h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  color: #151515;
  margin-bottom: 40px;
}

.brand-section .content-wrap .content.viate .title02 p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  text-align: center;
  color: #686868;
}

.brand-section .content-wrap .content.viate .title02 p span {
  font-weight: 500;
}

.brand-section .content-wrap .content.viate .text-wrap {
  max-width: 1380px;
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.brand-section .content-wrap .content.viate .text-wrap .box {
  position: relative;
}

.brand-section .content-wrap .content.viate .text-wrap .box .bigtxt {
  left: -150px;
  top: -91px;
  position: absolute;
  z-index: -1;
}

.brand-section .content-wrap .content.viate .text-wrap .box .bigtxt h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 700;
  font-size: 160px;
  line-height: 180px;
  color: #f7f7f7;
}

.brand-section .content-wrap .content.viate .text-wrap .box .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.brand-section .content-wrap .content.viate .text-wrap .box .top h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #151515;
}

.brand-section .content-wrap .content.viate .text-wrap .box .top span {
  display: block;
  width: 72%;
  height: 1px;
  background: #d8d8d8;
}

.brand-section .content-wrap .content.viate .text-wrap .box p {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #686868;
}

.brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .bigtxt {
  left: unset;
  right: -150px;
  top: -91px;
}

.brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .top {
  flex-direction: row-reverse;
}

.brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .top h3 {
  text-align: right;
}

.brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .top span {
  width: 37%;
}

.brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) p {
  text-align: right;
}

.brand-section .content-wrap .content.viate .text-wrap .box:nth-child(3) .bigtxt {
  left: -98px;
  top: -91px;
}

.brand-section .content-wrap .content.viate .text-wrap .box:nth-child(3) .top span {
  width: 42%;
}

.brand-section .content-wrap .content.beaute .img_box,
.brand-section .content-wrap .content.dream .img_box {
  width: 83.3%;
  max-width: 1600px;
  margin: 0 0 0 auto;
  position: relative;
}

.brand-section .content-wrap .content.beaute .img_box #trigger,
.brand-section .content-wrap .content.dream .img_box #trigger {
  position: absolute;
  top: 40%;
}

.brand-section .content-wrap .content.beaute .txt_wrap,
.brand-section .content-wrap .content.dream .txt_wrap {
  width: 71.9%;
  max-width: 1380px;
  margin: -43px auto 100px;
}

.brand-section .content-wrap .content.beaute .txt_wrap .slogan,
.brand-section .content-wrap .content.dream .txt_wrap .slogan {
  font-weight: 500;
  font-size: 3.125vw;
  line-height: 1.3em;
  margin-bottom: 1em;
  position: relative;
}

.brand-section .content-wrap .content.beaute .txt_wrap .txt_box:first-of-type,
.brand-section .content-wrap .content.dream .txt_wrap .txt_box:first-of-type {
  margin-bottom: 60px;
}

.brand-section .content-wrap .content.beaute .txt_wrap .txt_box .sub_slogan,
.brand-section .content-wrap .content.dream .txt_wrap .txt_box .sub_slogan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.brand-section .content-wrap .content.beaute .txt_wrap .txt_box .sub_slogan b,
.brand-section .content-wrap .content.dream .txt_wrap .txt_box .sub_slogan b {
  font-family: "SUIT";
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.42em;
  color: #151515;
}

.brand-section .content-wrap .content.beaute .txt_wrap .txt_box .sub_slogan span,
.brand-section .content-wrap .content.dream .txt_wrap .txt_box .sub_slogan span {
  display: block;
  width: calc(100% - 225px);
  max-width: 1155px;
  height: 1px;
  border-bottom: 1px solid #d8d8d8;
}

.brand-section .content-wrap .content.beaute .txt_wrap .txt_box p,
.brand-section .content-wrap .content.dream .txt_wrap .txt_box p {
  font-family: "SUIT";
  font-size: 1.125rem;
  line-height: 1.56em;
  color: #686868;
  white-space: pre-line;
}

/* hiso */
.hiso-section .hiso-banner {
  background: url(../img/sub/hiso-banner.jpg) no-repeat center center;
  background-size: cover;
}

.hiso-section .content-wrap .content h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto 80px;
  padding: 1.25rem 2.5rem;
  font-family: "SUIT";
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.36em;
  color: #151515;
  text-align: center;
}

.hiso-section .content-wrap .content.hiso,
.hiso-section .content-wrap .content.history,
.hiso-section .content-wrap .content.ci {
  display: block;
}

.hiso-section .content-wrap .content.hiso .img_box {
  width: 83.3%;
  max-width: 1600px;
  margin: 0 0 0 auto;
  position: relative;
}

.hiso-section .content-wrap .content.hiso .img_box #trigger {
  position: absolute;
  top: 40%;
}

.hiso-section .content-wrap .content.hiso .txt_wrap {
  width: 71.9%;
  max-width: 1380px;
  margin: -70px auto 100px;
}

.hiso-section .content-wrap .content.hiso .txt_wrap .slogan {
  font-weight: 500;
  font-size: 4.17vw;
  line-height: 1.25em;
  margin-bottom: 4.17vw;
  position: relative;
}

.hiso-section .content-wrap .content.hiso .txt_wrap .txt_box:first-of-type {
  margin-bottom: 60px;
}

.hiso-section .content-wrap .content.hiso .txt_wrap .txt_box .sub_slogan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hiso-section .content-wrap .content.hiso .txt_wrap .txt_box .sub_slogan b {
  font-family: "SUIT";
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.42em;
  color: #151515;
}

.hiso-section .content-wrap .content.hiso .txt_wrap .txt_box .sub_slogan span {
  display: block;
  width: calc(100% - 225px);
  max-width: 1155px;
  height: 1px;
  border-bottom: 1px solid #d8d8d8;
}

.hiso-section .content-wrap .content.hiso .txt_wrap .txt_box p {
  font-family: "SUIT";
  font-size: 1.125rem;
  line-height: 1.56em;
  color: #686868;
  white-space: pre-line;
}

.hiso-section .content-wrap .content.history,
.hiso-section .content-wrap .content.ci {
  width: 80%;
  max-width: 1380px;
  margin: 0 auto 100px;
}

.hiso-section .content-wrap .content.history .flex-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hiso-section .content-wrap .content.history .flex-wrap .wrap_1 {
  position: relative;
}

.hiso-section .content-wrap .content.history .flex-wrap .wrap_1 #trigger {
  position: absolute;
  top: 40%;
}

.hiso-section .content-wrap .content.history .flex-wrap .flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hiso-section .content-wrap .content.history .flex-wrap .flex h4 {
  width: 10rem;
  font-size: 3.75rem;
  line-height: 5rem;
  color: #151515;
}

.hiso-section .content-wrap .content.history .flex-wrap .flex .linebar {
  width: 14.5%;
  max-width: 200px;
  height: 1px;
  background-color: #d8d8d8;
}

.hiso-section .content-wrap .content.history .flex-wrap .flex .flex-detail {
  width: 53.63%;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hiso-section .content-wrap .content.history .flex-wrap .flex .flex-detail li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.hiso-section .content-wrap .content.history .flex-wrap .flex .flex-detail li b {
  width: 60px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.5rem;
  color: #151515;
}

.hiso-section .content-wrap .content.history .flex-wrap .flex .flex-detail li span {
  font-family: "SUIT";
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #686868;
}

.hiso-section .content-wrap .content.history .flex-wrap .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3.75em 0;
  width: 100%;
  height: 200px;
  background: url("../img/sub/hiso_history_bar.jpg") center/cover no-repeat;
}

.hiso-section .content-wrap .content.ci .ci_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hiso-section .content-wrap .content.ci .ci_wrap::after {
  content: "";
  display: block;
  width: 8.7%;
  max-width: 120px;
  height: 1px;
  background: #151515;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -50%);
}

.hiso-section .content-wrap .content.ci .img-box {
  width: 47.7%;
  max-width: 658px;
}

.hiso-section .content-wrap .content.ci .img-box img {
  width: 100%;
}

.hiso-section .content-wrap .content.ci .txt-box {
  width: 45%;
  max-width: 621px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  white-space: pre-line;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #686868;
}

.hiso-section .content-wrap .content.ci .txt-box p {
  font-family: "SUIT";
}

.hiso-section .content-wrap .content.ci .txt-box p b {
  color: #151515;
}

header .header .wrap .left {
  display: block;
}

@media (max-width: 900px) {
  header .header .wrap {
    max-width: unset;
    width: 80%;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .header .wrap .right {
    display: none;
  }

  header .header .wrap .left {
    display: block;
  }

  header .left-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    max-width: unset;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    padding-left: 10%;
    transform: translateX(-100%);
    transition: all 0.5s;
  }

  header .left-menu-open ul {
    gap: 30px;
  }

  header .left-menu-open ul li a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
  }

  header .left-menu-open ul li a svg {
    display: none;
  }

  section {
    overflow: hidden;
    max-width: unset;
    margin: auto;
  }

  section .sub-banner {
    max-width: unset;
    width: 100%;
    height: 150px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  section .sub-banner h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .product-section .content-wrap .tab-wrap {
    margin-bottom: 40px;
  }

  .product-section .content-wrap .tab-wrap a {
    font-size: 20px;
    line-height: 30px;
  }

  .product-section .content-wrap .content {
    max-width: unset;
    width: 80%;
    margin: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    display: none;
  }

  .product-section .content-wrap .content .cont .img-box {
    position: relative;
    background: #f6f6f6;
    padding: 8px 12px;
    margin-bottom: 12px;
  }

  .product-section .content-wrap .content .cont .img-box a::after {
    width: 100px;
    height: 40px;
  }

  .product-section .content-wrap .content .cont .text-box h3 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }

  .product-section .content-wrap .content .cont .text-box p {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-section .content-wrap {
    margin-bottom: 40px;
  }

  .contact-section .content-wrap .tab-wrap {
    margin-bottom: 40px;
  }

  .contact-section .content-wrap .tab-wrap a {
    font-size: 20px;
    line-height: 30px;
  }

  .contact-section .content-wrap .tab-wrap span {
    display: block;
    width: 1px;
    height: 14px;
    background: #151515;
    margin: 0px 12px;
  }

  .contact-section .content-wrap .content {
    max-width: unset;
    width: 80%;
    margin: auto;
  }

  .contact-section .content-wrap .content .top {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9d9d9;
    margin-bottom: 40px;
  }

  .contact-section .content-wrap .content .bottom {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }

  .contact-section .content-wrap .content .bottom .cont {
    border-top: 2px solid #023e7c;
    padding: 20px;
  }

  .contact-section .content-wrap .content .bottom .cont .box {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
  }

  .contact-section .content-wrap .content .bottom .cont p,
  .contact-section .content-wrap .content .bottom .cont a {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-mail-section .content-wrap {
    margin-bottom: 40px;
  }

  .contact-mail-section .content-wrap .tab-wrap {
    margin-bottom: 40px;
  }

  .contact-mail-section .content-wrap .tab-wrap a {
    font-size: 20px;
    line-height: 30px;
  }

  .contact-mail-section .content-wrap .tab-wrap span {
    display: block;
    width: 1px;
    height: 14px;
    background: #151515;
    margin: 0px 12px;
  }

  .contact-mail-section .content-wrap .content {
    max-width: unset;
    width: 80%;
    margin: auto;
  }

  .contact-mail-section .content-wrap .content form .top h3 {
    font-family: "SUIT";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #151515;
    margin-bottom: 20px;
  }

  .contact-mail-section .content-wrap .content form .top .bg {
    position: absolute;
    width: 100%;
    height: 100px;
    z-index: -1;
    background: #f6f6f6;
  }

  .contact-mail-section .content-wrap .content form .top .text-box {
    width: 100%;
    height: 100px;
    padding: 20px;
    overflow: auto;
    margin-bottom: 20px;
  }

  .contact-mail-section .content-wrap .content form .top .text-box p {
    font-size: 12px;
    line-height: 20px;
  }

  .contact-mail-section .content-wrap .content form .middle {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 24px;
  }

  .contact-mail-section .content-wrap .content form .middle>div {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .contact-mail-section .content-wrap .content form .middle>div>label {
    font-family: "SUIT";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3f3f3f;
    width: 80px;
  }

  .contact-mail-section .content-wrap .content form .middle>div.title {
    grid-column: unset;
  }

  .contact-mail-section .content-wrap .content form .bottom {
    width: 100%;
    margin-bottom: 40px;
  }

  .contact-mail-section .content-wrap .content form .bottom .message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .contact-mail-section .content-wrap .content form .bottom .message>label {
    font-family: "SUIT";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3f3f3f;
    width: 80px;
  }

  .contact-mail-section .content-wrap .content form .bottom .message textarea {
    width: 100%;
    height: 200px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    padding: 24px;
    resize: none;
    font-family: "SUIT";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #3f3f3f;
  }

  .news-section .content-wrap {
    margin-bottom: 40px;
  }

  .news-section .content-wrap .content {
    max-width: unset;
    width: 80%;
    margin: auto;
  }

  .news-section .content-wrap .content>h3 {
    font-family: "SUIT";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    color: #151515;
    text-align: center;
    margin-bottom: 40px;
  }

  .news-section .content-wrap .content table {
    width: 100%;
    border-top: 1px solid #151515;
    border-bottom: 1px solid #151515;
    border-collapse: collapse;
    margin-bottom: 24px;
  }

  .news-section .content-wrap .content table thead tr th {
    font-family: "SUIT";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #151515;
    padding: 12px;
  }

  .news-section .content-wrap .content table tbody tr td {
    text-align: center;
    font-family: "SUIT";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #8e8e8e;
    padding: 12px;
  }

  .news-section .content-wrap .content table tbody tr td a.table_link {
    text-align: center;
    font-family: "SUIT";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #8e8e8e;
    display: flex;
  }

  .news-section .content-wrap .content table tbody tr td:nth-child(2) {
    text-align: unset;
    padding-left: 12px;
  }

  .news-section .content-wrap .content .detail-wrap .top {
    display: flex;
    align-items: flex-start;
    justify-content: unset;
    border-top: 1px solid #151515;
    border-bottom: 1px solid #d8d8d8;
    flex-direction: column;
    padding: 12px;
    gap: 8px;
  }

  .news-section .content-wrap .content .detail-wrap .top div {
    padding: 0px;
  }

  .news-section .content-wrap .content .detail-wrap .bottom {
    padding: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d8d8d8;
  }

  .news-section .content-wrap .content .detail-wrap .bottom p {
    font-family: "SUIT";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #686868;
  }

  .brand-section .content-wrap {
    margin-bottom: 40px;
  }

  .brand-section .content-wrap .tab-wrap {
    padding: 0 5%;
    margin-bottom: 40px;
  }

  .brand-section .content-wrap .tab-wrap a {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }

  .brand-section .content-wrap .tab-wrap span {
    display: block;
    width: 1px;
    height: 14px;
    background: #151515;
    margin: 0px 12px;
  }

  .brand-section .content-wrap .content.viate .title {
    padding: 0 5%;
    gap: 40px;
    margin-bottom: 40px;
  }

  .brand-section .content-wrap .content.viate .title h3 {
    width: 80%;
    margin: auto;
    font-size: 24px;
    line-height: 38px;
  }

  .brand-section .content-wrap .content.viate .attbox {
    margin-bottom: 40px;
    padding: 40px;
  }

  .brand-section .content-wrap .content.viate .attbox img {
    min-width: 200px;
    max-width: unset;
    width: 100%;
    position: relative;
  }

  .brand-section .content-wrap .content.viate .attbox img:nth-child(1) {
    left: 80px;
  }

  .brand-section .content-wrap .content.viate .attbox img:nth-child(3) {
    left: -80px;
  }

  .brand-section .content-wrap .content.viate .title02 {
    padding: 0 5%;
    margin-bottom: 80px;
  }

  .brand-section .content-wrap .content.viate .title02 h3 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 20px;
  }

  .brand-section .content-wrap .content.viate .title02 p {
    width: 80%;
    margin: auto;
    font-size: 20px;
    line-height: 38px;
  }

  .brand-section .content-wrap .content.viate .text-wrap {
    padding: 0 10%;
    max-width: unset;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box {
    position: relative;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box .bigtxt {
    left: -40px;
    top: -60px;
    position: absolute;
    z-index: -1;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box .bigtxt h3 {
    font-family: "SUIT";
    font-style: normal;
    font-weight: 700;
    font-size: 100px;
    line-height: 100px;
    color: #f7f7f7;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box .top {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box .top h3 {
    font-size: 22px;
    line-height: 34px;
    text-align: center;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box .top span {
    width: 100%;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box p {
    text-align: center;
    font-size: 16px;
    line-height: 25px;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .bigtxt {
    left: unset;
    right: -40px;
    top: -60px;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .top {
    flex-direction: column;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .top h3 {
    text-align: center;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) .top span {
    width: 100%;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box:nth-child(2) p {
    text-align: center;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box:nth-child(3) .bigtxt {
    left: -40px;
    top: -60px;
  }

  .brand-section .content-wrap .content.viate .text-wrap .box:nth-child(3) .top span {
    width: 100%;
  }

  .hiso-section .content-wrap .content.hiso>h3 {
    font-size: 1.5rem;
    margin: 0 auto 40px;
  }

  .hiso-section .content-wrap .content.hiso .img_box {
    width: 100%;
    margin: 0 0 0 auto;
  }

  .hiso-section .content-wrap .content.hiso .img_box img {
    width: 100%;
    min-width: 700px;
    object-fit: cover;
  }

  .hiso-section .content-wrap .content.hiso .txt_wrap {
    width: 80%;
    max-width: 1380px;
    margin: 40px auto 40px;
    text-align: center;
  }

  .hiso-section .content-wrap .content.hiso .txt_wrap .slogan {
    display: none;
  }

  .hiso-section .content-wrap .content.hiso .txt_wrap .txt_box:first-of-type {
    margin-bottom: 80px;
  }

  .hiso-section .content-wrap .content.hiso .txt_wrap .txt_box .sub_slogan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
  }

  .hiso-section .content-wrap .content.hiso .txt_wrap .txt_box .sub_slogan b {
    font-family: "SUIT";
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.42em;
    color: #151515;
    margin-bottom: 1.25rem;
  }

  .hiso-section .content-wrap .content.hiso .txt_wrap .txt_box .sub_slogan span {
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #d8d8d8;
  }

  .hiso-section .content-wrap .content.hiso .txt_wrap .txt_box p {
    font-family: "SUIT";
    font-size: 1rem;
    line-height: 1.56em;
    color: #686868;
    white-space: pre-line;
  }

  .popup-wrap .content-wrap {
    position: relative;
    width: 80%;
    background: #ffffff;
    box-shadow: 0px 2px 20px black;
    padding: 40px;
    z-index: 9999;
  }

  .popup-wrap .content-wrap .close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .popup-wrap .content-wrap .img-box {
    background: #f6f6f6;
    padding: 10px 8px;
    margin-bottom: 20px;
  }

  .popup-wrap .content-wrap .text-box .text01 {
    display: flex;
    justify-content: unset;
    align-items: center;
    flex-direction: column;
  }

  .popup-wrap .content-wrap .text-box>span {
    display: block;
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    margin: 12px 0;
  }

  .popup-wrap .content-wrap .text-box .text02 {
    margin-bottom: 24px;
  }

  .popup-wrap .content-wrap .text-box .text02 p {
    font-size: 14px;
    line-height: 20px;
  }

  footer {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
    background: #151515;
    z-index: 9999;
  }

  footer .footer-wrap {
    max-width: unset;
    width: 80%;
    margin: auto;
    padding: 20px 0;
  }

  footer .footer-wrap .top {
    display: flex;
    align-items: flex-start;
    justify-content: unset;
    margin-bottom: 24px;
    flex-direction: column;
    gap: 24px;
  }

  footer .footer-wrap .top .right ul {
    display: flex;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: wrap;
  }

  footer .footer-wrap .bottom p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #eeeeee;
    text-align: center;
  }

  .contact-section .content-wrap .content .top iframe {
    width: 100%;
    height: 300px;
  }

  .contact-section .content-wrap .content {
    width: 80%;
  }

  .content-section .content-wrap {
    width: 90%;
  }

  .news-section .content-wrap .content {
    width: 90%;
  }

  .contact-section .content-wrap .content .top iframe {
    width: 100%;
    height: 300px;
  }

  .contact-section .content-wrap .content {
    width: 90%;
  }

  .contact-mail-section .content-wrap .content {
    width: 90%;
  }

  .product-section .popup-wrap-detail .content-wrap {
    padding: 30px;
  }

  .product-section .popup-wrap-detail .channel {
    padding-right: 30px;
  }

  body>section>div.popup-wrap-detail>div.content-wrap {
    flex-direction: column;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.img-box {
    padding: 30px;
    width: 80%;
    margin: 0;
    margin-bottom: 48px;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.text-box {
    width: 80%;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.text-box>div.text03 {
    flex-direction: column;
    align-items: flex-end;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.text-box>div.text03>p {
    margin-bottom: 1rem;
  }

  .hiso-section .content-wrap .content.ci .ci_wrap {
    gap: 48px;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .hiso-section .content-wrap .content.ci .ci_wrap::after {
    display: none;
  }

  .hiso-section .content-wrap .content.ci .ci_wrap .img-box {
    width: 100%;
  }

  .hiso-section .content-wrap .content.ci .ci_wrap .txt-box {
    width: 100%;
  }

  .hiso-section .content-wrap .content.history .flex-wrap .flex {
    flex-direction: column;
  }

  .hiso-section .content-wrap .content.history .flex-wrap .flex .flex-detail {
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .content-section .content-wrap {
    width: 90%;
  }

  .news-section .content-wrap .content {
    width: 90%;
  }

  .contact-section .content-wrap .content .top iframe {
    width: 100%;
    height: 300px;
  }

  .contact-section .content-wrap .content {
    width: 90%;
  }

  .contact-mail-section .content-wrap .content {
    width: 90%;
  }

  .product-section .popup-wrap-detail .content-wrap {
    padding: 30px;
  }

  .product-section .popup-wrap-detail .channel {
    padding-right: 30px;
  }

  body>section>div.popup-wrap-detail>div.content-wrap {
    flex-direction: column;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.img-box {
    padding: 30px;
    width: 100%;
    margin: 0;
    margin-bottom: 48px;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.text-box {
    width: 100%;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.text-box>div.text03 {
    flex-direction: column;
    align-items: flex-end;
  }

  body>section>div.popup-wrap-detail>div.content-wrap>div.text-box>div.text03>p {
    margin-bottom: 1rem;
  }

  .brand-section .content-wrap .tab-wrap {
    padding: 0 5%;
    margin-bottom: 40px;
    width: 100%;
  }

  .brand-section .content-wrap .tab-wrap a::after {
    content: "";
    display: block;
    width: 2px;
    height: 24px;
    background: #151515;
    margin: 0 10px;
  }

  .brand-section .content-wrap .tab-wrap a:last-of-type::after {
    display: none;
  }

  .brand-section .content-wrap .content.beaute .txt_wrap .txt_box .sub_slogan b,
  .brand-section .content-wrap .content.dream .txt_wrap .txt_box .sub_slogan b {
    z-index: 100;
  }
}