/* *****************************************

              *** README ***

****************************************** */

/* *****************************************

              *** common ***
              공통 적용 부분

****************************************** */
.main__contents h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.main__contents .title {
  font-size: 3.875rem;
  margin-bottom: 30px;
}

.main__contents.en .title {
  font-size: 3.75rem;
}

.main__contents.jp .title {
  font-size: 3.25rem;
}

.main__contents .title span {
  font-weight: 700;
}

.main__contents .desc {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 46px;
}

.main__contents .desc span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.main__contents .more {
  font-size: 1.125rem;
  padding: 10px 16px;
  letter-spacing: 2px;
}

@media (max-width: 1600px) {

  .main__contents .title {
    font-size: 3.5rem;
  }

  .main__contents.en .title {
    font-size: 3.375rem;
  }

  .main__contents.jp .title {
    font-size: 3rem;
  }

}

@media (max-width: 1440px) {

  .main__contents h2 {
    font-size: 1.5rem;
  }

  .main__contents .title {
    font-size: 3rem;
  }

  .main__contents.en .title {
    font-size: 2.875rem;
  }

  .main__contents.jp .title {
    font-size: 2.625rem;
  }

  .main__contents .desc {
    font-size: 1.375rem;
  }

  .main__contents .desc span {
    font-size: 1.75rem;
  }

}

@media (max-width: 1024px) {

  .main__contents h2 {
    font-size: 1.375rem;
  }

  .main__contents .title {
    font-size: 2.5rem;
  }

  .main__contents.en .title {
    font-size: 2.375rem;
  }

  .main__contents.jp .title {
    font-size: 2.25rem;
  }

  .main__contents .desc {
    font-size: 1.25rem;
  }

  .main__contents .desc span {
    font-size: 1.5rem;
  }

}

@media (max-width: 768px) {

  .main__contents h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .main__contents .title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .main__contents.en .title {
    font-size: 1.875rem;
  }

  .main__contents.jp .title {
    font-size: 1.75rem;
  }

  .main__contents .desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }

  .main__contents .desc span {
    font-size: 1.375rem;
  }

  .main__contents .more {
    font-size: 1rem;
  }

}

@media (max-width: 480px) {

  .main__contents h2 {
    font-size: 1.125rem;
  }

  .main__contents .title {
    font-size: 1.625rem;
  }

  .main__contents.en .title {
    font-size: 1.5rem;
  }

  .main__contents.jp .title {
    font-size: 1.375rem;
  }

  .main__contents .desc {
    font-size: 1rem;
    line-height: 1.5;
  }

  .main__contents .desc span {
    font-size: 1.125rem;
  }

  .main__contents .more {
    font-size: .9375rem;
    padding: 8px 14px;
  }

}

/* *****************************************

              *** hero__slide ***
              메인 슬라이드 영역

****************************************** */
.hero {
  position: relative;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* Swiper 전체 컨테이너 크기 지정 */
.hero__slide {
  width: 100%;
}

/* Swiper 메인 부분 */
.hero__slide .swiper-slide {
  width: 100%;
  height: 100svh;
}

.hero__slide__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__slide__bg .hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 5s;
}

.hero__slide__content {
  height: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero__slide__name {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero__slide__slogan {
  font-size: 3.25rem;
  font-weight: 600;
  margin-bottom: 32px;
  word-break: keep-all;
}

.hero__slide__slogan span {
  font-weight: 400;
}

.hero__slide__txt {
  font-size: 1.375rem;
  margin-bottom: 64px;
}

.hero__slide__link a {
  font-size: 1.25rem;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .3);
  transition: background-color .3s;
}

.hero__slide__link a:hover {
  background-color: rgba(255, 255, 255, .6);
}

/* ================================
    HERO IMG SCALE ANIMATION
================================ */
.slide-x-right .hero__bg {
  transform: scale(1.1) translateX(30px);
}

.slide-x-left .hero__bg {
  transform: scale(1.1) translateX(-30px);
}

.slide-y-up .hero__bg {
  transform: scale(1.1) translateY(30px);
}

/* 활성화 */
.swiper-slide-active.slide-x-right .hero__bg {
  transform: scale(1.1) translateX(-30px);
}

.swiper-slide-active.slide-x-left .hero__bg {
  transform: scale(1.1) translateX(30px);
}

.swiper-slide-active.slide-y-up .hero__bg {
  transform: scale(1.1) translateY(-30px);
}

/* ================================
    HERO TEXT SLIDE-IN ANIMATION
================================ */
/* 초기 상태 */
.hero__slide__name,
.hero__slide__slogan,
.hero__slide__txt,
.hero__slide__link {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* 순차 딜레이 */
.hero__slide__slogan {
  transition-delay: 0.2s;
}

.hero__slide__txt {
  transition-delay: 0.3s;
}

.hero__slide__link {
  transition-delay: 0.4s;
}

/* 활성 슬라이드 */
.swiper-slide-active .hero__slide__name,
.swiper-slide-active .hero__slide__slogan,
.swiper-slide-active .hero__slide__txt,
.swiper-slide-active .hero__slide__link {
  opacity: 1;
  transform: translateY(0);
}

/* 컨트롤러 커스텀 */
.hero__pagenation {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 50px !important;
  display: flex;
  gap: 0;
  padding: 0 5%;
}

.hero__pagenation .swiper-pagination-bullet {
  flex: 1;
  height: 4px;
  opacity: 1;
  cursor: pointer;
  border-radius: 0;
  margin: 0 !important;
  background-color: rgba(255, 255, 255, .3);
}

.hero__pagenation .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
}

/* ================================
    미디어쿼리
================================ */

@media (max-width: 1600px) {

  .hero__scroll {
    right: 60px;
  }

  .hero__slide__slogan {
    font-size: 3rem;
  }

}

@media (max-width: 1440px) {

  .hero__slide__name {
    font-size: 1.375rem;
  }

  .hero__slide__slogan {
    font-size: 2.75rem;
  }

  .hero__slide__txt {
    font-size: 1.25rem;
    margin-bottom: 50px;
  }

  .hero__slide__link a {
    font-size: 1.125rem;
  }

}

@media (max-width: 1024px) {

  .hero__scroll {
    display: none;
  }

  .hero__slide__slogan {
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .hero__slide__txt {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }

}

@media (max-width: 768px) {

  .hero__slide__content {
    padding: 0 40px;
  }

  .hero__slide__name {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .hero__slide__slogan {
    font-size: 1.875rem;
    margin-bottom: 24px;
  }

  .hero__slide__txt {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero__slide__link a {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .hero__pagenation {
    bottom: 30px !important;
  }

  /* ================================
      HERO IMG SCALE ANIMATION
  ================================ */
  .slide-x-right .hero__bg {
    transform: scale(1.1) translateX(20px);
  }

  .slide-x-left .hero__bg {
    transform: scale(1.1) translateX(-20px);
  }

  /* 활성화 */
  .swiper-slide-active.slide-x-right .hero__bg {
    transform: scale(1.1) translateX(-20px);
  }

  .swiper-slide-active.slide-x-left .hero__bg {
    transform: scale(1.1) translateX(20px);
  }

}

@media (max-width: 480px) {

  .hero__slide__content {
    padding: 0 20px;
  }

  .hero__slide__name {
    font-size: 1.125rem;
  }

  .hero__slide__slogan {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .hero__slide__txt {
    font-size: .9375rem;
  }

  .hero__slide__link a {
    font-size: .9375rem;
  }

  .hero__pagenation {
    bottom: 20px !important;
  }

  /* ================================
        HERO IMG SCALE ANIMATION
    ================================ */
  .slide-x-right .hero__bg {
    transform: scale(1.1) translateX(14px);
  }

  .slide-x-left .hero__bg {
    transform: scale(1.1) translateX(-14px);
  }

  /* 활성화 */
  .swiper-slide-active.slide-x-right .hero__bg {
    transform: scale(1.1) translateX(-14px);
  }

  .swiper-slide-active.slide-x-left .hero__bg {
    transform: scale(1.1) translateX(14px);
  }

}

/* *****************************************

            *** main__company ***
                  회사 소개

****************************************** */
.main__company {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

.main__company::before {
  content: "";
  background-image: url('/assets/img/main/company_bg.jpg');
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  z-index: -1;
}

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

.main__company__text {
  flex: 1;
}

.main__company__text h2 {
  color: #0f1b3d;
}

.main__company__text .more {
  color: #0f1b3d;
  border: 1px solid #0f1b3d;
}

.main__company__img {
  width: 55%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, .1);
}

.main__company__img img {
  width: 100%;
}

/* ================================
    MAIN COMPANY MEDIA
================================ */

@media (max-width: 1600px) {

  .main__company {
    padding: 110px 0;
  }

  .main__company__img {
    width: 52%;
  }

}

@media (max-width: 1440px) {

  .main__company {
    padding: 100px 0;
  }

  .main__company__img {
    width: 50%;
    border-radius: 32px;
  }

}

@media (max-width: 1024px) {

  .main__company .inner {
    gap: 60px;
  }

  .main__company__img {
    width: 48%;
    border-radius: 28px;
  }

}

@media (max-width: 768px) {

  .main__company {
    padding: 80px 0;
  }

  .main__company .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .main__company__img {
    width: 100%;
    border-radius: 24px;
  }

}

@media (max-width: 480px) {

  .main__company {
    padding: 70px 0;
  }

  .main__company__img {
    border-radius: 20px;
  }

}

/* *****************************************

            *** main__products ***
                  제품 소개

****************************************** */
.main__products {
  position: relative;
  background: url(/assets/img/main/products_bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 220px 0 200px;
}

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

.main__products__space {
  width: 65%;
}

.main__products__text {
  flex: 1;
  color: #ffffff;
}

.main__products__text h2 {
  color: #ff593b;
}

.main__products__text .title {
  position: relative;
}

.main__products__text .title::before {
  content: '';
  position: absolute;
  z-index: 2;
  left: -40px;
  top: 33px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff593b;
}

.main__products__text .title::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: -270px;
  top: 37px;
  width: 230px;
  height: 1px;
  background-color: #ffffff;
}

.main__products__text .more {
  border: none;
  background-color: rgba(255, 255, 255, .3);
}

/* ================================
    MAIN PRODUCTS MEDIA
================================ */

@media (max-width: 1600px) {

  .main__products {
    padding: 200px 0 180px;
  }

  .main__products__space {
    width: 60%;
  }

  .main__products__text .title::after {
    left: -220px;
    width: 180px;
  }

}

@media (max-width: 1440px) {

  .main__products {
    padding: 180px 0 160px;
  }

  .main__products__space {
    width: 55%;
  }

  .main__products__text .title::before {
    left: -30px;
  }

  .main__products__text .title::after {
    left: -180px;
    width: 140px;
  }

}

@media (max-width: 1024px) {

  .main__products {
    padding: 160px 0 140px;
  }

  .main__products .inner {
    gap: 60px;
  }

  .main__products__space {
    width: 45%;
  }

  .main__products__text .title::before {
    left: -24px;
    top: 28px;
  }

  .main__products__text .title::after {
    left: -120px;
    width: 90px;
  }

}

@media (max-width: 768px) {

  .main__products {
    padding: 120px 0;
  }

  .main__products .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .main__products__space {
    display: none;
  }

  .main__products__text .title::before {
    left: -18px;
    top: 24px;
  }

  .main__products__text .title::after {
    display: none;
  }

}

@media (max-width: 480px) {

  .main__products {
    padding: 100px 0;
  }

  .main__products__text .title::before {
    left: -14px;
    top: 22px;
    width: 8px;
    height: 8px;
  }

}

/* *****************************************

            *** main__process ***
                  제조 공정

****************************************** */
.main__process {
  text-align: center;
  display: flex;
  height: 700px;
}

.main__process__box {
  flex: 1;
  overflow: hidden;
  color: #fff;
  transition: flex .3s;
  background-repeat: no-repeat !important;
  background-position: center !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.main__process__box::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  transition: background-color .3s;
}

.main__process__box:hover {
  flex: 1.3;
}

.main__process__box:hover::after {
  background-color: rgba(0, 0, 0, 0);
}

.materials {
  background: url(/assets/img/main/process_materials.jpg);
}

.precision {
  background: url(/assets/img/main/process_precision.jpg);
}

.packaging {
  background: url(/assets/img/main/process_packaging.jpg);
}

.main__process__box h3 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

.main__process__line {
  width: 40px;
  height: 3px;
  background-color: #ff593b;
  margin: 12px 0 16px;
  transition: opacity .3s;
}

.main__process__box:hover .main__process__line {
  opacity: 0;
}

.main__process__desc {
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

/* ================================
    MAIN PROCESS MEDIA
================================ */

@media (max-width: 1600px) {

  .main__process {
    height: 640px;
  }

  .main__process__box h3 {
    font-size: 2.6rem;
  }

}

@media (max-width: 1440px) {

  .main__process {
    height: 600px;
  }

  .main__process__box h3 {
    font-size: 2.3rem;
  }

  .main__process__desc {
    font-size: 1.125rem;
  }

}

@media (max-width: 1024px) {

  .main__process {
    height: 540px;
  }

  .main__process__box:hover {
    flex: 1;
  }

  .main__process__box h3 {
    font-size: 2rem;
  }

  .main__process__line {
    width: 32px;
  }

}

@media (max-width: 768px) {

  .main__process {
    flex-direction: column;
    height: auto;
  }

  .main__process__box {
    flex: none;
    height: 300px;
  }

  .main__process__box:hover {
    flex: none;
  }

  .main__process__box h3 {
    font-size: 1.75rem;
  }

  .main__process__desc {
    font-size: 1rem;
  }

}

@media (max-width: 480px) {

  .main__process__box {
    height: 250px;
  }

  .main__process__box h3 {
    font-size: 1.5rem;
  }

  .main__process__line {
    width: 26px;
    height: 2px;
  }

  .main__process__desc {
    font-size: .9375rem;
  }

}

/* *****************************************

              *** main__news ***
                    뉴스

****************************************** */
.main__news {
  padding: 120px 0;
}

.main__news h2 {
  font-size: 5.5rem;
  color: #0f1b3d;
}

.main__news h2 span {
  font-weight: 400;
}

.main__news__desc {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* ================================
            MAIN NEWS MEDIA
================================ */

@media (max-width: 1600px) {

  .main__news {
    padding: 110px 0;
  }

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

}

@media (max-width: 1440px) {

  .main__news {
    padding: 100px 0;
  }

  .main__news h2 {
    font-size: 4.5rem;
  }

  .main__news__desc {
    font-size: 1.375rem;
  }

}

@media (max-width: 1024px) {

  .main__news {
    padding: 90px 0;
  }

  .main__news h2 {
    font-size: 3.75rem;
  }

  .main__news__desc {
    font-size: 1.25rem;
  }

}

@media (max-width: 768px) {

  .main__news {
    padding: 80px 0;
  }

  .main__news h2 {
    font-size: 3rem;
  }

  .main__news__desc {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }

}

@media (max-width: 480px) {

  .main__news {
    padding: 70px 0;
  }

  .main__news h2 {
    font-size: 2.4rem;
  }

  .main__news__desc {
    font-size: 1rem;
    margin-bottom: 20px;
  }

}

/* *****************************************

            *** main__contact ***
                  문의하기

****************************************** */
.main__contact {
  background: url(/assets/img/main/contact_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  padding: 140px 0 120px;
}

.main__contact__text {
  font-size: 2.5rem;
}

.main__contact__text span {
  font-weight: 700;
}

.main__contact__link {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, .3);
  border-radius: 999px;
  margin-top: 50px;
  transition: background-color .3s;
}

.main__contact__link:hover {
  background-color: rgba(255, 255, 255, .6);
}

/* ================================
        MAIN CONTACT MEDIA
================================ */

@media (max-width: 1600px) {

  .main__contact {
    padding: 130px 0 110px;
  }

  .main__contact__text {
    font-size: 2.2rem;
  }

}

@media (max-width: 1440px) {

  .main__contact {
    padding: 120px 0 100px;
  }

  .main__contact__text {
    font-size: 2rem;
  }

  .main__contact__link {
    font-size: 1.375rem;
    margin-top: 45px;
  }

}

@media (max-width: 1024px) {

  .main__contact {
    padding: 100px 0 90px;
  }

  .main__contact__text {
    font-size: 1.75rem;
  }

  .main__contact__link {
    font-size: 1.25rem;
    margin-top: 40px;
  }

}

@media (max-width: 768px) {

  .main__contact {
    padding: 90px 0 80px;
  }

  .main__contact__text {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .main__contact__link {
    font-size: 1.125rem;
    padding: 10px 32px;
    margin-top: 35px;
  }

}

@media (max-width: 480px) {

  .main__contact {
    padding: 80px 0 70px;
  }

  .main__contact__text {
    font-size: 1.25rem;
    word-break: keep-all;
  }

  .main__contact__text br {
    display: none;
  }

  .main__contact__link {
    font-size: 1rem;
    padding: 8px 26px;
    margin-top: 30px;
  }

}