@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  /*color*/
  margin: 0px;
  padding: 0px;
  --black: #000;
  --white: #fff;
  --point: #a128b3;
  --point-semi: #faf4fb;
  --pink: #e82493;
  --red: #ff5570;
  --orange: rgb(255, 142, 85);
  --strong-yellow: #ffc550;
  --yellow: #f9f871;
  font-family: "GmarketSansMedium";
}
*::-webkit-scrollbar {
  display: none;
}
.wrap {
  width: 100%;
  position: relative;
}

.inner {
  width: 1300px;
  margin: auto;
  position: relative;
}
.inner-in-line {
  width: 950px;
  margin: auto;
}
.mobile-show {
  display: none;
}
a {
  text-decoration: none;
  color: var(--black);
}
.section-title {
  font-size: 32px;
  font-weight: bold;
}
.section-title-center,
.section-subtitle-center {
  text-align: center;
}
.section-subtitle {
  font-size: 32px;
  margin-top: 12px;
}

.hidden {
  width: 0px !important;
  height: 0px !important;
  display: none !important;
  overflow: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  border: none !important;
  outline: none !important;
}

.l-k .eng {
  display: none !important;
}
.kor {
  display: inline;
}
.l-e .kor {
  display: none !important;
}
.eng {
  display: inline;
}
/*header*/
header {
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 9999;
  left: 0px;
}
.header .inner {
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo-img {
  height: 22px;
}
.header-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.header-lang img {
  width: 24px;
  height: 24px;
}
.header-left {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 30px;
}
.header-links {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 40px;
}
.dropdown-area {
  position: relative;
}
.dropdown-menu2 {
  position: absolute;
  max-height: 0px;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;

  height: auto;
}
.dropdown-item {
  display: block;
}

.dropdown-item {
  padding: 12px;
  min-width: max-content;
  box-sizing: border-box;
  background-color: var(--white);
}
.dropdown-item:hover {
  color: var(--point);
  background-color: #f5f5f5;
}
.dropdown-top:hover + .dropdown-menu2,
.dropdown-menu2:hover {
  max-height: 1000px;
}
.dropdown-top {
  height: 90px;
  cursor: pointer;
  display: flex;
  position: relative;
  top: 0px;
  left: 0px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  gap: 12px;
}

.dropdown-top i {
  display: flex;
  align-items: center;
}
.header-button {
  height: 42px;
  width: 150px;
  background-color: var(--pink);
  color: var(--white);
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
/*first section*/
#main-first-section {
  overflow: hidden;
}

.first-bg {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 800px;
  left: 0px;
  top: 0px;
  opacity: 0.3;
}

#main-first-section .wrap {
  overflow-y: hidden;
}
#main-first-section .wrap .inner {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-title {
  font-size: 32px;
  line-height: 42px;
  text-align: center;
  font-weight: bold;
}
.main-subtitle {
  font-size: 24px;
  text-align: center;
  margin-top: 12px;
}

.main-button {
  padding: 12px 20px;
  display: inline-block;
  text-align: center;
  background-color: var(--pink);
  border-radius: 100px;
  cursor: pointer;
  font-size: 18px;
  margin: auto;
  margin-top: 24px;
  color: var(--white);
}

/*second section*/
#section-2nd {
  padding: 240px 0px;
}
.table-area {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.table-main-area {
  padding: 12px;
  box-sizing: border-box;
  background-color: var(--orange);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 142, 85, 0.2);
}
.table-item {
  width: 40%;
}
.table-item-lg {
  width: 50%;
}
.table-line-lg {
  padding: 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-body {
  background-color: #f5f5f5;
  padding: 12px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  font-size: 14px;
}
.table-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
  color: #888;
  margin-top: 12px;
}
.table-line {
  display: flex;
  align-items: center;
  padding: 12px;
}
.table-line-left {
  color: #888;
  margin-right: 24px;
  width: 120px;
}
.table-line-lg i {
  color: var(--white);
  opacity: 0.4;
}
.table-title-lg {
  font-size: 28px;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 24px;
  text-align: center;
}

#section-2nd .main-button {
  background-color: var(--orange);
}
.button-row {
  text-align: center;
  margin-top: 24px;
}

/*section-3rd*/
#section-3rd {
  padding: 120px 0px;
  background-color: var(--point-semi);
}
.item-name {
  width: 100%;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
.gray-title {
  color: var(--white);
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--pink);
  font-size: 42px;
  text-align: center;
  font-weight: bold;
  margin-top: 60px;
}

.intro-text {
  text-align: center;
  margin-top: 60px;
  word-break: keep-all;
  font-size: 28px;
}

.slider-container {
  width: 100%;
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

/* 슬라이드 영역 */
.slide-area {
  width: 100%;
  white-space: nowrap;

  transition: transform 1s ease-in-out;
}

/* 개별 이미지 스타일 */
.slide-area img {
  width: calc((1300px - 24px) / 3);
  height: 300px;
  margin-right: 12px;
  border-radius: 5px;
  object-fit: cover;
}
.intro-text strong {
  font-size: 42px;
}

/*section 4*/
#section-4th {
  padding: 180px 0px;
}

#section-4th .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.img-item-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.img-item {
  width: calc((100% - 20px) / 2);
  position: relative;
  height: 400px;
  border-radius: 20px;
}

.img-item:last-child {
  width: 100%;
}

.img-item img {
  width: 100%;
  height: 100%;
  border-radius: 20px;

  object-fit: cover;
  filter: brightness(0.5);
  display: block;
}
.item-textarea {
  position: absolute;
  left: 50%;
  color: var(--white);
  border-radius: 20px;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.item-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}
.item-text {
  font-size: 18px;
}

/*section-5th*/
#section-5th {
  padding: 120px 0px;
}

#section-5th .section-title {
  text-align: center;
}
#section-5th .section-title strong {
  color: var(--point);
}
.compnay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 60px;
}
.company-item {
  width: calc((100% - 72px) / 7);
  object-fit: cover;
}

/*section-6th*/
#section-6th {
  padding: 120px 0px;
}
#section-6th .section-title {
  text-align: center;
  color: var(--point);
  letter-spacing: 3px;
}
.faq-list {
  margin-top: 60px;
}
.faq-item {
  width: 100%;
  background-color: var(--point-semi);
  display: block;
  max-height: 60px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border-radius: 10px;
  box-sizing: border-box;
}
.faq-item-top {
  height: 60px;
  display: flex;
  padding: 20px;
  color: var(--point);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
.faq-list input:checked + .faq-item {
  max-height: 1000px;
}
.faq-item-body {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  word-break: keep-all;
}
.carousel-item .w-100 {
  width: 100%;
  background-color: var(--point-semi);
  height: 150px;
  border-radius: 10px;
}
.review-area {
  margin-top: 60px;
}

/*final section*/
#section-final {
  padding: 120px 0px;
}
.img-people {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.img-people img {
  width: calc(100% / 3);
}
.ask-button {
  padding: 12px 24px;
  background-color: var(--point);
  display: inline-block;
  border-radius: 100px;
  cursor: pointer;
  color: var(--white);
  margin-top: 24px;
}

.final-textarea {
  text-align: center;
}

/*footer*/
footer {
  width: 100%;
  background-color: var(--point-semi);
  padding: 30px 0px;
}
.footer-logo {
  height: 22px;
}
.footer-top {
  border-bottom: 1px solid var(--point);
  padding-bottom: 12px;
}
.footer-bottom {
  margin-top: 12px;
}
.footer-line {
  display: flex;
  padding: 4px;
  font-size: 12px;
  align-items: center;
  justify-content: left;
}
.footer-label {
  color: #888;
  width: 150px;
  padding-right: 24px;
  box-sizing: border-box;
}

/*production page*/
.pd-1-bg {
  height: 50vh;
  width: 100%;
}
#pd-1 .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pd-1-text-area strong {
  color: var(--pink);
}
.pd-ask-button {
  padding: 12px 28px;
  background-color: var(--pink);
  border-radius: 100px;
  font-size: 18px;
  color: var(--white);
}
.pd-ask-center {
  margin-top: 60px;
  text-align: center;
}
#pd-2 {
  padding: 120px 0px;
}
.section-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-left {
  font-size: 28px;
  font-weight: bold;
}

.section-left strong {
  color: var(--point);
}
#pd-3 {
  background-image: url(../assets/slide/2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#pd-3 .wrap {
  padding: 120px 0px;
  background: rgba(0, 0, 0, 0.4);
}

.item-flex-pd-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.ifdp-item {
  border: 2px solid var(--white);
  padding: 24px;
  border-radius: 10px;
}

.center-title {
  font-size: 28px;
  color: var(--white);
  text-align: center;
  font-weight: bold;
  margin-bottom: 24px;
}
.center-text {
  font-size: 20px;
  color: var(--white);
  text-align: center;
}
.ifdp-item-title {
  font-size: 24px;
  text-align: center;
  color: var(--white);
}
.ifdp-item-value {
  font-size: 48px;
  text-align: center;
  margin-top: 12px;
  color: var(--white);
  font-weight: bold;
}

#pd-4 {
  padding: 120px 0px;
}

.order-item {
  width: calc((100% - 72px) / 4);
  position: relative;
}

.order-item img {
  width: 100%;
  display: block;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}
.order-item-title {
  font-size: 18px;
  height: 48px;
}
.order-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
}
#pd-4 .center-title {
  color: var(--black);
}
.order-item-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 18px;
}

/*discription page*/
.ds-bg {
  width: 100%;
  padding: 120px 0px;
  display: block;
}
.ds-1-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ds-label {
  font-size: 20px;
  font-weight: bold;
  opacity: 0.6;
  text-align: center;
}
.ds-title {
  font-size: 24px;
  font-weight: bold;
  word-break: keep-all;
  margin-top: 12px;
  margin-bottom: 24px;
  text-align: center;
}
.ds-button-center {
  text-align: center;
}

.ds-button {
  padding: 12px 24px;
  font-size: 18px;
  color: var(--white);
  border-radius: 100px;
  background-color: var(--orange);
}

#ds-2 {
  padding: 120px 0px;
}

#ds-2 .center-title {
  color: var(--black);
}

.ds-center-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.ds-img-item {
  width: calc((100% - 40px) / 2);
  border-radius: 10px;
  height: auto;
  object-fit: cover;
}
#ds-3 {
  padding: 120px 0pxz;
}
#ds-3 .center-title {
  color: var(--black);
}
.ds-form-img {
  display: block;
}

.ds-form-img img {
  display: block;
  width: 80%;
  padding: 10% 5%;
  margin: auto;
}

.ds-form-img img:hover {
  filter: brightness(0.8);
}
#ds-4 {
  padding: 120px 0px;
}
#ds-4 iframe {
  width: 100%;
  margin-top: 32px;
}

#ds-4 .center-title {
  color: var(--black);
}

/*brand page*/
#br-1 {
}
.br-text {
  text-align: center;
  margin-top: 60px;
  word-break: keep-all;
}
.br-section .pd-1-bg {
  height: 80vh;
  width: 100%;
}
.br-img {
  height: 300px;
  display: block;
  margin: auto;
  margin-top: 30px;
  border-radius: 10px;
}

#br-2 {
  padding: 120px 0px;
}
.section-title-center {
  color: var(--black);
  text-align: center;
  font-weight: bold;
  font-size: 28px;
}
.br-ask-center {
  text-align: center;
  margin-top: 30px;
}
.br-imp-list {
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 30px;
}
.br-imp-item {
  width: calc((100% - 60px) / 3);
  border: 1px solid #ccc;
  border-radius: 20px;
}
.br-imp-img {
  width: 100%;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.br-imp-text {
  font-size: 16px;
  height: 80px;
  padding: 12px;
}

.flex-line-br {
  display: flex;
  margin-bottom: 80px;
  align-items: center;
  justify-content: space-between;
}
.flb-left,
.flb-right {
  width: 50%;
}
.flb-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin: auto;
}
.flb-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
}
.flb-text {
  font-size: 18px;
}
.ask-section .pd-1-bg {
  height: auto !important;
}
.center {
  text-align: center;
  margin-top: 12px;
}

#ask-section {
  padding: 120px 0px;
}

.form-line {
  margin-bottom: 24px;
}
.form-label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.form-label span {
  color: var(--red);
  margin-right: 8px;
}
.form-input {
  background-color: #f5f5f5;
  border: none;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 10px;
  outline: none;
}

.form-textarea {
  background-color: #f5f5f5;
  border: none;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 10px;
  outline: none;
  resize: none;
  height: 240px;
}
.check-item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  margin-bottom: 8px;
}
.form-button {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-show {
  display: none;
}

@media (max-width: 1000px) {
  .mobile-show {
    display: block;
    font-size: 20px;
  }
  .inner {
    width: 90vw;
  }
  .header .inner {
    height: 60px;
  }
  header {
    background-color: var(--white);
    position: fixed;
    top: 0px;
    left: 0px;
  }
  .header-logo-img {
    height: 15px;
  }
  .header-button {
    display: none;
  }
  .header-links {
    position: fixed;
    width: 100vw;
    top: 60px;
    transition: all 0.3s ease;
    left: 100%;
    display: block;
    background-color: var(--white);
    height: calc(100vh - 60px);
    padding: 30px 5vw;
    box-sizing: border-box;
  }

  .header-links.active {
    left: 0px;
  }
  .dropdown-top {
    display: none;
  }
  .dropdown-menu2 {
    max-height: 1000px !important;
    position: relative;
  }
  .dropdown-item {
    padding: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);

    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .header-link,
  .header-lang {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 12px;
    margin-bottom: 12px;

    display: flex;
    align-items: center;
  }

  .first-bg {
    height: 100vh;
  }
  .main-title {
    font-size: 24px;
  }
  .main-subtitle {
    font-size: 16px;
  }
  .main-button {
    font-size: 14px;
  }
  #section-2nd,
  #section-3rd,
  #section-4th,
  #section-5th,
  #section-6th,
  #section-final {
    padding: 60px 0px;
  }
  .table-area {
    margin-top: 30px;
  }
  .table-line-lg {
    font-size: 16px;
  }
  .table-area {
    display: block;
  }
  .table-item,
  .table-item-lg {
    width: 100%;
  }

  .table-item {
    margin-bottom: 30px;
  }
  .item-name {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .gray-title {
    font-size: 24px;
    margin-top: 30px;
  }
  .intro-text {
    font-size: 18px;
    margin-top: 30px;
  }
  .intro-text strong {
    font-size: 24px;
  }
  .img-item-list {
    gap: 8px;
  }
  .img-item {
    width: calc((100% - 8px) / 2);
    border-radius: 10px;
    height: 200px;
  }
  .item-title {
    font-size: 16px;
  }
  .item-text {
    font-size: 12px;
  }
  .item-title {
    margin-bottom: 8px;
  }
  .section-title {
    font-size: 24px;
    word-break: keep-all;
  }
  .img-item img {
    border-radius: 10px;
  }
  .compnay-list {
    gap: 4px;
  }
  .company-item {
    width: calc((100% - 8px) / 3);
  }
  .review-area,
  .faq-list {
    margin-top: 30px;
  }
  .faq-item-top {
    height: 40px;
    padding: 12px;
    font-size: 14px;
  }
  .faq-item {
    max-height: 40px;
  }
  .faq-item-body {
    padding: 12px;
    font-size: 12px;
  }
  .footer-logo {
    height: 12px;
  }
  .footer-line {
    font-size: 8px;
  }
  .section-flex {
    display: block;
  }
  .pd-2-img {
    width: 100%;
    display: block;
  }
  .item-flex-pd-line {
    gap: 12px;
  }
  .ifdp-item {
    padding: 12px;
  }
  .ifdp-item-value {
    font-size: 18px;
  }
  .ifdp-item-title {
    font-size: 14px;
  }
  .ifdp-item-value {
    margin-top: 8px;
  }
  .ifdp-item {
    border-radius: 5px;
    border: 1px solid var(--white);
  }
  .pd-ask-center {
    margin-top: 30px;
  }
  .pd-ask-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  #pd-2,
  #pd-4,
  #ds-2 {
    padding: 60px 0px;
  }
  .section-left {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .center-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .center-text {
    font-size: 14px;
  }
  .order-list {
    margin-top: 30px;
  }
  .order-list {
    gap: 16px;
  }
  .order-item {
    width: calc((100% - 16px) / 2);
  }
  .order-item-arrow {
    width: 24px;
    height: 24px;
    font-size: 13px;
    top: 8px;
    right: 8px;
  }
  .order-item-title {
    font-size: 14px;
  }
  .ds-bg {
    display: none;
  }
  .ds-1-text {
    position: relative;
    width: 100%;
    transform: none;
    left: 0px;
    top: 0px;
  }
  #ds-1 {
    padding: 120px 0px;
  }
  .ds-button {
    font-size: 14px;
  }
  .ds-center-flex {
    gap: 12px;
  }
  #ds-4 iframe {
    height: 300px;
  }
  .br-img {
    width: 100%;
    height: auto;
  }
  .section-title-center {
    font-size: 20px;
    word-break: keep-all;
  }
  .br-imp-list {
    display: block;
  }
  .br-imp-item {
    width: 100%;
    margin-bottom: 24px;
  }
  .br-imp-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .br-imp-item {
    border-radius: 10px;
  }
  .br-imp-text {
    font-size: 14px;
  }
  .flb-title {
    font-size: 16px;
  }
  .flb-text {
    font-size: 12px;
  }
  .ask-section .pd-1-bg {
    height: 50vh !important;
  }
  #ask-section {
    padding: 60px 0px;
  }
  .form-label {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .form-input {
    padding: 8px;
    border-radius: 5px;
  }
  .form-line {
    margin-bottom: 16px;
  }
  .form-button {
    font-size: 14px;
    height: 40px;
  }
}
