@charset "UTF-8";
:root {
  /* color */
  --color-main: #FDD000;
  --color-black: #474747;
  --color-white: #ffffff;
  --color-gray: #CECECE;
  /* weight */
  --weight-thin: 100;
  --weight-extralight: 200;
  --weight-light: 300;
  --weight-regularlight: 350;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-heavy: 900;
  --fz-10: 0.62rem;
  --fz-11: 0.68rem;
  --fz-12: 0.75rem;
  --fz-13: 0.81rem;
  --fz-14: 0.875rem;
  --fz-15: 0.94rem;
  --fz-16: 1rem;
  --fz-18: 1.12rem;
  --fz-20: 1.25rem;
  --fz-22: 1.37rem;
  --fz-24: 1.5rem;
  --fz-26: 1.62rem;
  --fz-28: 1.75rem;
  --fz-30: 1.875rem;
  --fz-35: 2.1875rem;
  --fz-36: 2.25rem;
  --fz-38: 2.375rem;
  --fz-40: 2.5rem;
  --fz-42: 2.625rem;
  --fz-44: 2.75rem;
  --fz-46: 2.875rem;
  --fz-48: 3rem;
  --fz-50: 3.125rem;
  --fz-70: 4.375rem;
  --fz-74: 4.625rem;
  --fz-90: 5.625rem;
}

/* common */
.flex-ac {
  display: flex;
  align-items: center;
}

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

.flex-jc {
  justify-content: center;
}

.direction-col {
  display: flex;
  flex-direction: column;
}

.hidden-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.inner {
  width: 100%;
  height: 100%;
  padding: 0 5%;
}
.inner.over-fadding {
  padding-right: 0;
}

/* header */
#header {
  width: 100%;
  padding: 35px 6%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  transition: all 0.6s ease-out;
  margin: 0 auto;
}
#header .main-logo {
  margin-right: 20px;
}
#header .main-logo.active {
  z-index: -2;
}
#header .header-utils {
  position: absolute;
  right: 2.7%;
  top: 35PX;
  padding: 5px 13px;
  border-radius: 20px;
  transition: all 0.5s ease-out;
  overflow: hidden;
  height: 41px;
  cursor: pointer;
}
#header .header-utils .lan-select-btn {
  cursor: pointer;
  color: var(--color-white);
  font-weight: var(--weight-semibold);
  font-size: var(--fz-18);
  position: relative;
  margin-right: 8px;
  transition: all 0.6s ease-out;
}
#header .header-utils .lan-select-btn::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--color-white);
  transition: all 0.6s ease-out;
}
#header .header-utils svg path {
  stroke: var(--color-white) !important;
  transition: all 0.6s ease-out;
}
#header .header-utils .hidden-lan {
  color: var(--color-white);
  font-weight: var(--weight-semibold);
  font-size: var(--fz-16);
  margin-top: 10px;
  margin-bottom: 5px;
}
#header .header-utils.active {
  background: var(--color-main);
}
#header .header-utils.active .lan-select-btn {
  color: var(--color-white);
}
#header .header-utils.active .lan-select-btn::before {
  background: var(--color-white);
}
#header .header-utils.click {
  background: var(--color-main);
  height: 75px;
}
#header.no-top {
  background: var(--color-white);
}
#header.no-top .lan-select-btn {
  color: var(--color-black);
}
#header.no-top .lan-select-btn::before {
  background: var(--color-black);
}
#header.no-top .gnb-list > a {
  color: var(--color-black);
}
#header.no-top .gnb-list.active > a {
  color: var(--color-main);
}
#header.no-top svg path {
  stroke: var(--color-black) !important;
}

/* side menu */
.side-menu {
  transform: translateX(100%);
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.side-menu.active {
  display: block;
  transform: translateX(0);
}
.side-menu ul {
  position: absolute;
  right: 0;
  width: 80%;
  height: 100%;
  background: #fff;
  padding: 20px;
}
.side-menu ul > span {
  display: block;
  text-align: center;
  font-size: var(--fz-16);
  font-weight: bold;
  margin-bottom: 20px;
}
.side-menu ul li {
  cursor: pointer;
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
}
.side-menu ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: var(--weight-bold);
}

/* gnb */
.gnb .gnb-list {
  position: relative;
  padding: 10px 20px;
}
.gnb .gnb-list a {
  color: var(--color-white);
  font-size: var(--fz-22);
  font-weight: var(--weight-semibold);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.gnb .gnb-list .hidden-nav {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.16);
  padding: 15px 0;
  min-width: 130px;
  text-align: center;
  display: none;
}
.gnb .gnb-list .hidden-nav li {
  padding: 10px 0;
  font-size: var(--fz-18);
  font-weight: var(--weight-medium);
  cursor: pointer;
}
.gnb .gnb-list.active .hidden-nav {
  display: block;
}
.gnb .gnb-list.active a {
  color: var(--color-main);
}
.gnb .gnb-list.active a::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  background: var(--color-main);
}
.gnb .gnb-list.active a.go-menu {
  color: var(--color-black);
  text-decoration: none;
  font-weight: var(--weight-medium);
  font-size: var(--fz-18);
}
.gnb .gnb-list.active a.go-menu::before {
  display: none;
}

/* sections */
#main {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}
#main::-webkit-scrollbar {
  display: none;
}

.main-section {
  height: 100vh;
  padding-top: 115px;
}

.main-section.num1 {
  position: relative;
  background: url("../imgs/main-section1-bg.png") no-repeat center center;
  background-size: cover;
  background-color: black;
}
.main-section.num1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.43);
  overflow: hidden;
}
.main-section.num2 .left-area {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
}
.main-section.num2 .left-area.animate {
  opacity: 1;
  transform: translateY(0);
}
.main-section.num2 .right-area {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease-in-out;
}
.main-section.num2 .right-area.animate {
  opacity: 1;
  transform: translateX(0);
}
.main-section.num3 .left-area {
  width: 50%;
}
.main-section.num5 {
  background: url("../imgs/yl-bg-logo.png") no-repeat center;
  background-color: #FFFDF5;
}

.sub-nav-section {
  padding: 150px 0;
  position: relative;
  margin-bottom: 150px;
}
.sub-nav-section .title-area {
  color: var(--color-white);
  text-align: center;
}
.sub-nav-section .title-area span {
  font-size: var(--fz-22);
  font-weight: var(--weight-bold);
  display: inline-block;
  margin-bottom: 10px;
}
.sub-nav-section .title-area p {
  font-weight: var(--weight-extrabold);
  font-size: var(--fz-50);
}
.sub-nav-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.sub-nav-section.intro {
  background: url("../imgs/top-intro-bg.png") no-repeat center;
}
.sub-nav-section .sub-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 80%;
  cursor: pointer;
}
.sub-nav-section .sub-nav li {
  background: rgba(71, 71, 71, 0.7490196078);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  font-weight: var(--weight-semibold);
  font-size: var(--fz-22);
  color: var(--color-white);
  padding: 15px 0;
  text-align: center;
  letter-spacing: -1px;
}
.sub-nav-section .sub-nav li.active {
  background: var(--color-white);
  color: var(--color-main);
}

.sub-section {
  margin-bottom: 200px;
}
.sub-section .page-title {
  text-align: center;
  margin-bottom: 150px;
}
.sub-section .page-title h3 {
  font-size: var(--fz-46);
  margin-bottom: 30px;
  font-weight: var(--weight-bold);
}
.sub-section .page-title h4 {
  font-weight: var(--weight-medium);
  font-size: var(--fz-28);
}
.sub-section .picture {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.sub-section .picture img {
  width: 100%;
}
.sub-section .greetings {
  width: calc(100% - 60px);
  padding: 80px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.1);
  margin-left: 30px;
  margin-top: -50px;
  z-index: 1000;
  border-radius: 25px;
}
.sub-section .greetings h5 {
  font-weight: var(--weight-bold);
  font-size: var(--fz-40);
  padding-bottom: 30px;
  border-bottom: 5px solid var(--color-main);
}
.sub-section .greetings p {
  margin-top: 30px;
  margin-bottom: 80px;
  font-size: var(--fz-28);
  font-weight: var(--weight-medium);
}
.sub-section .greetings .name {
  text-align: right;
}
.sub-section .greetings .name span {
  font-weight: var(--weight-medium);
  font-size: var(--fz-28);
  display: inline-block;
  margin-right: 30px;
}
.sub-section .greetings .name strong {
  font-weight: var(--weight-bold);
  font-size: var(--fz-35);
}

.history-section {
  border-top: 5px solid var(--color-main);
  border-bottom: 5px solid var(--color-main);
}
.history-section .history-list-wrap .history-list {
  display: flex;
  align-items: center;
  gap: 200px;
  padding: 50px 200px;
}
.history-section .history-list-wrap .history-list .year-area {
  align-self: flex-start;
  font-weight: var(--weight-extrabold);
  font-size: var(--fz-70);
}
.history-section .history-list-wrap .history-list .details li {
  list-style: disc;
  font-weight: var(--weight-medium);
  font-size: var(--fz-30);
  line-height: 50px;
}

.section-wrapper {
  padding: 130px 0 100px;
}

.about-brand .title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}
.about-brand .title::before {
  content: "";
  width: 40px;
  height: 10px;
  background: var(--color-main);
  position: absolute;
  top: -20px;
  left: 0;
}
.about-brand .title h2 {
  font-weight: var(--weight-bold);
  font-size: var(--fz-50);
}
.about-brand .title h3 {
  font-size: var(--fz-30);
  font-weight: var(--weight-bold);
}
.about-brand .text {
  font-size: var(--fz-30);
  font-weight: var(--weight-semibold);
  display: inline-block;
  margin-bottom: 30px;
}
.about-brand .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F9F9;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 50px;
}
.about-brand .product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.about-brand .product .product-list {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F9F9;
  border: 1px solid #ddd;
  padding: 40px;
  border-radius: 25px;
  aspect-ratio: 1;
}
.about-brand .product .product-list img {
  height: 100%;
}
.about-brand .product p {
  text-align: center;
  margin-top: 20px;
  font-size: var(--fz-26);
  letter-spacing: -1px;
}
.about-brand.brand_manmul .product-list {
  background: white;
}

.brand-detail {
  box-shadow: 0 4px 23px 0 rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 400px;
  aspect-ratio: 1/1.2;
}
.brand-detail .top {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70%;
}
.brand-detail .bottom {
  padding: 30px;
}
.brand-detail .bottom p {
  font-weight: var(--weight-semibold);
  font-size: var(--fz-24);
  margin-bottom: 10px;
}
.brand-detail .bottom span {
  font-size: var(--fz-18);
  font-weight: var(--weight-medium);
  color: #AAAAAA;
  letter-spacing: -1px;
}

.certification .certification-list-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.certification .certification-list .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border: 1px solid #DDDDDD;
  border-radius: 25px;
  margin-bottom: 20px;
}
.certification .certification-list p {
  text-align: center;
  font-weight: var(--weight-semibold);
  font-size: var(--fz-30);
  letter-spacing: -1px;
}

.certification-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.certification-pagination button {
  width: 44px;
  height: 44px;
  font-size: var(--fz-24);
  font-weight: var(--weight-medium);
}
.certification-pagination nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.certification-pagination .prev-area,
.certification-pagination .page-area,
.certification-pagination .next-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
.certification-pagination .page-area button.active {
  color: var(--color-main);
  border: 2px solid var(--color-main);
  border-radius: 8px;
}

.detail-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 200px;
}
.detail-info > div {
  padding: 30px 0 60px;
  border-top: 2px solid #474747;
  border-bottom: 2px solid #ddd;
}
.detail-info > div span {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: var(--weight-semibold);
  font-size: var(--fz-30);
}
.detail-info > div p {
  font-weight: var(--weight-medium);
  font-size: var(--fz-22);
  letter-spacing: -1px;
  word-break: keep-all;
}

.side-page-nation {
  position: fixed;
  top: 50%;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.side-page-nation span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D9D9D9;
  transition: border-radius 0.3s ease-out, height 0.3s ease-out;
}
.side-page-nation span.active {
  border-radius: 9px;
  background: var(--color-main);
  height: 55px;
}

.section-content .section-title {
  display: inline-block;
  font-size: var(--fz-35);
  font-weight: var(--weight-light);
  color: var(--color-gray);
  margin-bottom: 10px;
}
.section-content .section-main-text {
  font-weight: var(--weight-extrabold);
  font-size: var(--fz-70);
  margin-bottom: 40px;
}
.section-content .img-box {
  border-radius: 50px;
  overflow: hidden;
  max-width: 500px;
}
.section-content .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-content .section-sub-text strong {
  display: inline-block;
  font-size: var(--fz-35);
  font-weight: var(--weight-semibold);
  margin-bottom: 12px;
}
.section-content .section-sub-text span {
  font-size: var(--fz-26);
}
.section-content.intro {
  color: var(--color-white);
  z-index: 1;
}
.section-content.intro h3 {
  font-size: var(--fz-44);
  font-weight: var(--weight-light);
  margin-bottom: 1.5rem;
}
.section-content.intro h4 {
  font-size: var(--fz-70);
  font-weight: var(--weight-extrabold);
  margin-bottom: 2.25rem;
}
.section-content.intro button {
  color: var(--color-white);
  padding: 12px 25px;
  font-weight: var(--weight-medium);
  font-size: var(--fz-24);
  border: 1.5px solid var(--color-white);
  border-radius: 36px;
  transition: all 0.2s ease-out;
}
.section-content.intro button:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.section-content.about {
  padding: 0 30px;
  gap: 30px;
}
.section-content.about .more-page-button {
  margin-top: 70px;
  color: var(--color-main);
  border-radius: 35px;
  border: 1px solid var(--color-main);
  padding: 12px 25px;
  font-size: var(--fz-24);
  font-weight: var(--weight-medium);
  transition: all 0.2s ease-out;
}
.section-content.about .more-page-button:hover {
  background: var(--color-main);
  color: var(--color-white);
}
.section-content.brand {
  padding-left: 30px;
  gap: 30px;
}
.section-content.brand .section-main-text {
  font-size: var(--fz-70);
}
.section-content.brand .section-sub-text span {
  display: inline;
  margin-bottom: 15px;
  font-size: var(--fz-24);
  font-weight: var(--weight-semibold);
  color: #DDDDDD;
  cursor: pointer;
}
.section-content.brand .section-sub-text span.active {
  font-size: var(--fz-28);
  color: var(--color-black);
}
.section-content.notice {
  padding-left: 30px;
}
.section-content.notice .left-area {
  margin-bottom: 80px;
}

.news-notice .notice-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-radius: 55px;
  border: 2px solid #DDDDDD;
  max-width: 300px;
  aspect-ratio: 1;
}
.news-notice .notice-list .content .category {
  display: inline-block;
  font-weight: var(--weight-bold);
  font-size: var(--fz-26);
  color: var(--color-main);
  margin-bottom: 10px;
}
.news-notice .notice-list .content p {
  width: 100%;
  font-size: var(--fz-26);
  font-weight: var(--weight-semibold);
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 37px;
}
.news-notice .notice-list .reg-date {
  align-self: flex-end;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000000;
  width: 40%;
  padding: 15px;
  border: 4px solid var(--color-main);
  background: var(--color-white);
  border-radius: 50px;
  font-size: var(--fz-24);
  font-weight: var(--weight-semibold);
}
.contact-button span {
  margin-left: 30px;
}
.contact-button:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
}
.slider-wrap .img-box {
  min-width: 400px;
  white-space: nowrap;
}

/* hamburger button */
.hamburger {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger.no-top span {
  background: #000;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
  transform-origin: center;
}

/* X로 변할 때 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #000;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  background: #000;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
  background: #000;
}

/* footer */
#footer {
  background: #474747;
  padding: 100px 80px;
}
#footer .footer-main-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .title-area {
  color: var(--color-white);
}
#footer .title-area .main-logo {
  display: inline-block;
  margin-bottom: 15px;
}
#footer .title-area p {
  font-weight: var(--weight-medium);
  margin-bottom: 30px;
}
#footer .title-area .contact-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
#footer .title-area .contact-buttons button, #footer .title-area .contact-buttons a {
  color: var(--color-white);
  font-weight: var(--weight-medium);
  padding: 10px 20px;
  border-radius: 20px;
  background: #373737;
}
#footer address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
#footer address.text-area > div:nth-last-child(1) {
  display: none;
}
#footer address .address, #footer address .service {
  font-size: var(--fz-14);
  margin-top: 20px;
}
#footer address .address span, #footer address .service span {
  display: inline-block;
  font-weight: var(--weight-bold);
}

/* swiper */
.swiper.mainPageSwipers {
  padding: 50px;
}

.swiper.mainPageSwipers2 {
  position: relative;
  padding-bottom: 150px;
}

.swiper-pagination-progressbar.mainPageSwiper {
  top: auto !important;
  bottom: 0;
}
.swiper-pagination-progressbar.mainPageSwiper .swiper-pagination-progressbar-fill {
  background: var(--color-main);
}

.notice-swiper-button-wrap {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.notice-swiper-button-wrap .swiper-button-next,
.notice-swiper-button-wrap .swiper-button-prev,
.notice-swiper-button-wrap .swiper-button-prev.swiper-button-disabled,
.notice-swiper-button-wrap .swiper-button-next.swiper-button-disabled {
  position: relative;
  background: var(--color-white) !important;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1) !important;
  border-radius: 50% !important;
  width: 80px !important;
  height: 80px !important;
  opacity: 1 !important;
}
.notice-swiper-button-wrap .swiper-button-next::after,
.notice-swiper-button-wrap .swiper-button-prev::after,
.notice-swiper-button-wrap .swiper-button-prev.swiper-button-disabled::after,
.notice-swiper-button-wrap .swiper-button-next.swiper-button-disabled::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  font-weight: var(--weight-extrabold);
  color: var(--color-main);
}
.notice-swiper-button-wrap .swiper-button-prev.swiper-button-disabled::after,
.notice-swiper-button-wrap .swiper-button-next.swiper-button-disabled::after {
  color: #AAAAAA;
}

/* media query */
@media (max-width: 1023px) {
  #header .main-logo {
    margin-right: 10px;
    max-width: 180px;
  }
  .gnb .gnb-list {
    padding: 5px 10px;
  }
  .gnb .gnb-list a {
    font-size: var(--fz-18);
  }
  .section-content .section-main-text, .section-content.brand .section-main-text {
    font-size: var(--fz-50);
  }
  .history-section .history-list-wrap .history-list {
    padding: 10px 0;
  }
}
@media (max-width: 764px) {
  .history-section .history-list-wrap .history-list {
    gap: 80px;
  }
  .history-section .history-list-wrap .history-list .year-area {
    font-size: var(--fz-30);
  }
  .history-section .history-list-wrap .history-list .details {
    font-size: var(--fz-20);
  }
  .sub-nav-section .sub-nav li {
    font-size: var(--fz-16);
  }
  .gnb {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .main-section.num2 .right-area {
    margin-top: 20px;
  }
  .main-section.num2 .right-area.animate {
    justify-self: center;
  }
  .section-content .img-box.section-2img {
    max-width: 300px;
  }
  .main-section.num3 .left-area {
    width: 100%;
  }
  .slider-wrap {
    width: 100%;
  }
  .section-content.flex-ac {
    display: block;
  }
  .section-content .section-main-text {
    font-size: 30px;
  }
  .arrow-img {
    display: none;
  }
  .contact-button span {
    font-size: 18px;
    margin-left: 0;
    word-break: keep-all;
    text-align: center;
  }
  .section-content.intro h3 {
    font-size: 24px;
  }
  .section-content.intro h4 {
    font-size: 44px;
  }
  .sub-section .greetings .name span {
    font-size: 18px;
  }
  .sub-section .greetings .name strong {
    margin-top: 5px;
    display: block;
  }
  .about-brand .title h2 {
    font-size: 25px;
  }
  .about-brand .title h3 {
    font-size: 18px;
  }
  .about-brand .product .product-list {
    padding: 10px;
  }
  .about-brand .text {
    font-size: 20px;
  }
  .about-brand .product p {
    font-size: 16px;
  }
  .certification .certification-list p {
    font-size: 20px;
  }
  .detail-info {
    gap: 15px;
  }
  .detail-info > div span {
    font-size: 22px;
  }
  .detail-info > div p {
    font-size: 16px;
  }
  #footer {
    padding: 30px 20px;
  }
  #footer address {
    gap: 20px;
    font-size: 12px;
  }
  #footer .footer-main-section {
    gap: 10px;
  }
  #footer .title-area .main-logo {
    max-width: 180px;
  }
  #footer .title-area p {
    font-size: 14px;
    word-break: keep-all;
  }
  #footer .title-area .contact-buttons {
    flex-direction: column;
    gap: 5px;
  }
  #footer .title-area .contact-buttons a {
    font-size: 12px;
    padding: 5px 10px;
  }
  .sub-section .greetings {
    padding: 20px;
  }
  .sub-section .greetings h5 {
    font-size: 26px;
  }
  .sub-section .greetings p {
    font-size: 16px;
  }
  .certification .certification-list .img-box {
    padding: 10px;
  }
  .history-section .history-list-wrap .history-list .details li {
    font-size: 20px;
    line-height: 30px;
  }
  .brand-detail {
    border-radius: 10px;
  }
  .brand-detail .bottom {
    padding: 10px;
  }
  .brand-detail .bottom p {
    font-size: 16px;
  }
  .brand-detail .bottom span {
    font-size: 12px;
  }
}/*# sourceMappingURL=styles.css.map */