@charset "UTF-8";
/* ===================================
   제품소개 페이지 스타일
   =================================== */
.product-hero {
  padding-block: 10rem;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-hero {
    padding-block: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-hero {
    padding-block: 5rem;
  }
}
.product-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.product-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  text-align: center;
}
.product-hero-label {
  font-family: "Pretendard", sans-serif;
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  color: #111111;
  line-height: 1.5;
  letter-spacing: 0.24rem;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-hero-label {
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-hero-label {
    font-size: 1rem;
    letter-spacing: 0.16rem;
  }
}
.product-hero-title {
  font-family: "Pretendard", sans-serif;
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-hero-title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-hero-title {
    font-size: 2rem;
  }
}
.product-hero-image {
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  overflow: hidden;
  position: relative;
}
.product-hero-image img {
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-hero-image {
    height: 5rem;
    gap: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-hero-image {
    height: 2.5rem;
    gap: 1.5rem;
  }
}

.product-problems {
  position: relative;
  padding-block: 15rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-problems {
    padding-block: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problems {
    padding-block: 7.5rem;
  }
}
.product-problems-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../images/product/leather-texture-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.product-problems-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(140, 74, 74, 0.58);
}
.product-problems-inner {
  position: relative;
  z-index: 1;
}
.product-problems .product-section-header {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-problems .product-section-header {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problems .product-section-header {
    margin-bottom: 2.5rem;
  }
}
.product-problems .product-section-header .product-section-title {
  font-size: var(--f4);
  font-weight: var(--fw-medium);
  color: #fff;
  line-height: var(--l4);
  margin-bottom: 0.25rem;
}
@media only screen and (max-width: 767px) {
  .product-problems .product-section-header .product-section-title {
    font-size: 1.125rem;
  }
}
.product-problems .product-section-header .product-section-subtitle {
  font-size: var(--f1);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--l1);
}
@media only screen and (max-width: 767px) {
  .product-problems .product-section-header .product-section-subtitle {
    font-size: var(--f2);
  }
}

.product-problems-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-problems-grid {
    gap: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problems-grid {
    gap: 1.5rem;
  }
}
.product-problem-item {
  display: flex;
  gap: 1.25rem;
}
.product-problem-item:last-of-type .product-problem-detail {
  width: 20rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-problem-item {
    flex-direction: column;
    gap: 0.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problem-item {
    flex-direction: column;
    gap: 0.625rem;
  }
  .product-problem-item:last-of-type .product-problem-detail {
    width: auto;
    flex: 1;
  }
}

.product-problem-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  flex-shrink: 0;
  width: 20rem;
  height: 18.75rem;
  background: rgba(116, 33, 33, 0.8);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-problem-header {
    width: 100%;
    height: auto;
    padding: 1.5rem 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problem-header {
    width: 100%;
    height: auto;
    padding: 1.25rem 1rem;
  }
}
.product-problem-title {
  font-size: var(--f4);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--l4);
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-problem-title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problem-title {
    font-size: 1rem;
  }
}
.product-problem-label {
  font-size: var(--f6);
  font-weight: var(--fw-regular);
  color: #fff;
  line-height: var(--l6);
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-problem-label {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problem-label {
    font-size: 0.8125rem;
  }
}
.product-problem-details {
  display: flex;
  position: relative;
  z-index: 1;
  gap: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .product-problem-details {
    flex-direction: column;
  }
}
.product-problem-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 4.375rem 2rem;
  border-radius: 1.25rem;
  background: rgba(34, 12, 4, 0.8);
  color: #fff;
  width: 25rem;
  height: 18.75rem;
}
.product-problem-detail.en {
  padding: 3rem 2rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-problem-detail {
    padding: 1.5rem;
    width: auto;
    flex: 1;
  }
  .product-problem-detail.en {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problem-detail {
    padding: 1rem;
    width: 100%;
    height: auto;
  }
  .product-problem-detail.en {
    padding: 1rem;
  }
}
.product-problem-detail h4 {
  font-family: "Pretendard", sans-serif;
  font-size: var(--f5);
  font-weight: var(--fw-bold);
  line-height: var(--l5);
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-problem-detail h4 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problem-detail h4 {
    font-size: 0.9375rem;
  }
}
.product-problem-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-problem-detail ul li {
  font-family: "Pretendard", sans-serif;
  font-size: var(--f6);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .product-problem-detail ul li {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-problem-detail ul li {
    font-size: 0.8125rem;
  }
}
.product-problem-detail ul li:before {
  content: none;
}

.product-section-header {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .product-section-header {
    margin-bottom: 2.5rem;
  }
}

.product-section-title {
  font-size: var(--f2);
  font-weight: var(--fw-bold);
  color: var(--font1);
  line-height: var(--l2);
  margin-bottom: 0.9375rem;
}
@media only screen and (max-width: 767px) {
  .product-section-title {
    font-size: var(--f3);
  }
}

.product-section-subtitle {
  font-size: var(--f1);
  font-weight: var(--fw-bold);
  color: var(--font1);
  line-height: var(--l1);
}
@media only screen and (max-width: 767px) {
  .product-section-subtitle {
    font-size: var(--f2);
  }
}

.product-section-note {
  font-size: var(--f7);
  font-weight: var(--fw-regular);
  color: var(--font3);
  line-height: var(--l7);
  margin-top: 0.9375rem;
}

.product-features {
  padding-top: 10rem;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-features {
    padding-top: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-features {
    padding-top: 6.25rem;
  }
}
.product-features .product-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .product-features .product-section-header {
    margin-bottom: 2rem;
  }
}
.product-features .product-section-label {
  font-family: "Pretendard", sans-serif;
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-features .product-section-label {
    font-size: 1.125rem;
  }
}
.product-features .product-section-title {
  font-family: "Pretendard", sans-serif;
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-features .product-section-title {
    font-size: 1.875rem;
  }
}
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-features-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

.product-feature-card {
  background: #fff1d8;
  border: none;
  border-radius: 1.25rem;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.product-feature-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.625rem 1.875rem rgba(140, 74, 74, 0.15);
}
@media only screen and (max-width: 767px) {
  .product-feature-card {
    padding: 1.25rem 1.5rem;
  }
}

.product-feature-icon {
  width: 5.625rem;
  height: 5.625rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  border: none;
}
.product-feature-icon img {
  width: 5.625rem;
  height: 5.625rem;
}
@media only screen and (max-width: 767px) {
  .product-feature-icon {
    width: 4.5rem;
    height: 4.5rem;
  }
  .product-feature-icon img {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.product-feature-title {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .product-feature-title {
    font-size: 1rem;
  }
}

.product-feature-desc {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: #505050;
  line-height: 1.5;
  margin: 0;
}
.product-feature-desc strong {
  font-weight: var(--fw-bold);
  color: #505050;
}
@media only screen and (max-width: 767px) {
  .product-feature-desc {
    font-size: 0.9375rem;
  }
}

.product-colors {
  padding-top: 12.5rem;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-colors {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-colors {
    padding-top: 7.5rem;
  }
}
.product-colors .product-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  align-items: center;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .product-colors .product-section-header {
    margin-bottom: 2.5rem;
  }
}
.product-colors .product-section-label {
  font-family: "Pretendard", sans-serif;
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-colors .product-section-label {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-colors .product-section-label {
    font-size: 1rem;
  }
}
.product-colors .product-section-title {
  font-family: "Pretendard", sans-serif;
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-colors .product-section-title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-colors .product-section-title {
    font-size: 2rem;
  }
}
.product-colors-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.75rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-colors-showcase {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-colors-showcase {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.product-color-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}
@media only screen and (max-width: 767px) {
  .product-color-group {
    gap: 1.25rem;
  }
}

.product-color-pair {
    display: flex;
}
@media only screen and (max-width: 767px) {
    .product-color-pair {
        justify-content: center;
    }
    .product-color-pair .product-color-circle:first-of-type {
        left: 7%;
    }
    .product-color-pair .product-color-circle:last-of-type {
        left: -7% !important;
    }
}


.product-color-circle {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.product-color-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-color-circle {
    width: 10rem;
    height: 10rem;
    border-width: 0.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-color-circle {
    width: 8rem;
    height: 8rem;
    border-width: 0.3125rem;
  }
}

.product-color-label {
  background: #333333;
  border-radius: 5.625rem;
  padding: 0.25rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-color-label span {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: #fff;
  line-height: 1.5;
  text-align: center;
  white-space: pre;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-color-label {
    padding: 0.1875rem 0.875rem;
  }
  .product-color-label span {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-color-label {
    padding: 0.125rem 0.75rem;
  }
  .product-color-label span {
    font-size: 0.875rem;
    white-space: normal;
  }
}

.product-comparison {
  padding-top: 12.1875rem;
  padding-bottom: 6.25rem;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-comparison {
    padding-top: 9.6875rem;
    padding-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-comparison {
    padding-top: 7.1875rem;
    padding-bottom: 2.5rem;
  }
}
.product-comparison .product-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .product-comparison .product-section-header {
    margin-bottom: 2.5rem;
  }
}
.product-comparison-label {
  font-family: "Pretendard", sans-serif;
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-comparison-label {
    font-size: 1rem;
  }
}
.product-comparison-title {
  font-family: "Pretendard", sans-serif;
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-comparison-title {
    font-size: 1.75rem;
  }
}
.product-comparison-table-wrapper {
  position: relative;
  overflow-x: visible;
  margin: 0 auto;
  max-width: 67.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-comparison-table-wrapper {
    transform: scale(0.65);
    transform-origin: top left;
    margin-bottom: -7rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 767px) {
  .product-comparison-table-wrapper {
    transform: scale(0.6);
    transform-origin: top left;
    margin-bottom: -15rem;
    width: -moz-max-content;
    width: max-content;
  }
}
@media only screen and (max-width: 767px) {
  .product-comparison-table-wrapper.en {
    transform: scale(0.45);
    margin-bottom: -20rem;
  }
}
.product-comparison-table {
  display: flex;
  flex-direction: column;
  border: 0.0625rem solid #8c4a4a;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
}

.comparison-row {
  display: flex;
  width: 100%;
  border-bottom: 0.0625rem solid #8c4a4a;
}
.comparison-row:last-child {
  border-bottom: none;
}
.comparison-row.comparison-header {
  background: #8c4a4a;
}
.comparison-row.comparison-header .comparison-cell {
  height: 3.5rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: #fff;
  line-height: 1.5;
  border-right: 0.0625rem solid #a36565;
}
.comparison-row.comparison-header .comparison-cell:last-child {
  font-weight: var(--fw-bold);
  border-right: none;
}
@media only screen and (max-width: 767px) {
  .comparison-row.comparison-header .comparison-cell {
    font-size: 0.625rem;
    height: 2.5rem;
  }
}
.comparison-row.comparison-row-last .comparison-cell {
  height: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .comparison-row.comparison-row-last .comparison-cell {
    height: auto;
    min-height: 5rem;
  }
}

.comparison-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  padding: 0.625rem 1.25rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: #111111;
  line-height: 1.5;
  text-align: center;
  border-right: 0.0625rem solid #8c4a4a;
  flex: 1;
  min-width: 0;
}
.comparison-cell:first-child {
  flex: 0 0 7.5rem;
}
@media only screen and (max-width: 767px) {
  .comparison-cell:first-child {
    flex: 0 0 3rem;
  }
}
.comparison-cell:not(:first-child) {
  flex: 0 0 15rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .comparison-cell:not(:first-child) {
    flex: 0 0 9rem;
  }
}
@media only screen and (max-width: 767px) {
  .comparison-cell:not(:first-child) {
    flex: 0 0 4.25rem;
  }
}
.comparison-cell:last-child {
  border-right: none;
}
.comparison-cell.category {
  font-weight: var(--fw-medium);
  background: rgba(214, 159, 159, 0.2);
}
.comparison-row:not(.comparison-header) .comparison-cell:last-child {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
}
@media only screen and (max-width: 767px) {
  .comparison-row:not(.comparison-header) .comparison-cell:last-child {
    font-size: 0.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .comparison-cell {
    padding: 0.25rem;
    font-size: 0.625rem;
    height: 2.5rem;
  }
}

.product-comparison-highlight-box {
  position: absolute;
  right: 0rem;
  top: -0.5rem;
  width: 16rem;
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0.125rem 0.25rem 1.25rem 0 rgba(104, 43, 43, 0.37);
  overflow: hidden;
  z-index: 10;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-comparison-highlight-box {
    width: 9.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-comparison-highlight-box {
    right: -1rem;
    top: -2.625rem;
    width: 6rem;
    transform: scale(0.85);
  }
}
@media only screen and (max-width: 767px) {
  .product-comparison-highlight-box.en {
    right: -0.5rem;
    top: -4.625rem;
    transform: scale(0.94);
  }
  .product-comparison-highlight-box.en .highlight-box-item {
    height: auto;
  }
}

.highlight-box-header {
  height: 3.75rem;
  background: #8c4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-box-header p {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .highlight-box-header p {
    font-size: 0.75rem;
  }
}

.highlight-box-body {
  background: #fff;
}

.highlight-box-item {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: #111111;
  line-height: 1.5;
  text-align: center;
  border-bottom: 0.066875rem solid #c8c8c8;
  padding: 0.625rem 1.25rem;
}
@media only screen and (max-width: 767px) {
  .highlight-box-item {
    font-size: 0.75rem;
    padding: 0.625rem;
    height: 3rem;
  }
}
.highlight-box-item:last-child {
  border-bottom: none;
}
.highlight-box-item-last {
  height: 6.25rem;
  line-height: 1.4;
}

.product-process {
  position: relative;
  padding: 2.5rem 0;
  overflow: visible;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process {
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-process {
    padding: 1.5rem 0;
  }
}
.product-process-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .product-process-inner {
    gap: 2rem;
  }
}
.product-process-title {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .product-process-title {
    font-size: 1.75rem;
  }
}
.product-process-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 8.4375rem;
}
@media only screen and (max-width: 767px) {
  .product-process-header {
    gap: 0.375rem;
    margin-top: 2rem;
  }
}
.product-process-subtitle {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-process-subtitle {
    font-size: 1rem;
  }
}
.product-process-label {
  font-family: "Pretendard", sans-serif;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-process-label {
    font-size: 1.5rem;
  }
}
.product-process-steps {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-steps {
    flex-flow: column;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-steps {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.product-process .mid-arrow {
  position: absolute;
  display: block;
  background: url(../../../images/product/arrows.svg) no-repeat center/cover;
  width: 1.25rem;
  height: 2.5625rem;
  z-index: 100;
}
.product-process .mid-arrow:nth-of-type(1) {
  left: 31.7%;
}
.product-process .mid-arrow:nth-of-type(2) {
  right: 31.7%;
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process .mid-arrow {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product-process .mid-arrow {
    display: none;
  }
}
.product-process-step {
  width: 20rem;
  height: 20rem;
  background: #fff;
  border: 0.125rem solid #d4d2d2;
  border-radius: 50%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  box-shadow: 0.125rem 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-step {
    width: 18rem;
    height: 18rem;
    padding: 2.5rem 2rem;
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-step {
    width: 16rem;
    height: 16rem;
    padding: 2rem 1.5rem;
    gap: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-step.en {
    width: 21rem;
    height: 21rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-step.en {
    width: 18rem;
    height: 18rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-step.en .product-process-step-title {
    font-size: 1.15rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-step.en .product-process-step-title {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-step.en .product-process-step-desc li {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-step.en .product-process-step-desc li {
    font-size: 0.875rem;
  }
}
.product-process-step::before {
  content: "";
  width: calc(100% + 0.25rem);
  height: 100%;
  position: absolute;
  border: 2.5rem solid #8c4a4a;
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 110% 51%, 0 51%);
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-step::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-step::before {
    display: none;
  }
}
.product-process-step:nth-of-type(1)::after {
  content: "";
  position: absolute;
  left: -2.625rem;
  width: 2.5rem;
  height: 5%;
  background: #8c4a4a;
  border-radius: 0 0 0.3125rem 0.3125rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-step:nth-of-type(1)::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-step:nth-of-type(1)::after {
    display: none;
  }
}
.product-process-step:nth-of-type(2)::before {
  clip-path: polygon(0 49%, 101% 49%, 100% 100%, 0 100%);
}
.product-process-step:nth-of-type(3)::after {
  content: "";
  position: absolute;
  right: -3.4rem;
  bottom: 42%;
  width: 4rem;
  height: 2.0625rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="33" viewBox="0 0 64 33" fill="none"><path d="M34.2062 31.6136C32.6877 32.9723 30.3904 32.9723 28.8719 31.6136L1.34132 6.98096C-1.39496 4.53271 0.336841 1.57954e-06 4.0085 1.90053e-06L59.0696 6.71413e-06C62.7413 7.03511e-06 64.4731 4.53273 61.7368 6.98097L34.2062 31.6136Z" fill="%238C4A4A"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transform-origin: left bottom;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-process-step:nth-of-type(3)::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product-process-step:nth-of-type(3)::after {
    display: none;
  }
}
.product-process-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}
.product-process-step-number {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-process-step-number {
    font-size: 1rem;
  }
}
.product-process-step-title {
  font-family: "Pretendard", sans-serif;
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-process-step-title {
    font-size: 1.125rem;
  }
}
.product-process-step-desc {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.product-process-step-desc li {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  color: #000;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-process-step-desc li {
    font-size: 1rem;
  }
}
.product-process-step-desc li:before {
  content: none;
}

.bg-merge {
  position: relative;
  padding-top: 10.625rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .bg-merge {
    padding-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .bg-merge {
    padding-top: 15rem;
  }
  .bg-merge.en {
    padding-top: 22rem;
  }
}
.bg-merge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../../images/product/process-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.product-structure {
  padding: 3.75rem 0;
  position: relative;
  margin-top: 7.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-structure {
    padding: 2.5rem 0;
    margin-top: 6.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-structure {
    padding: 2rem 0;
    margin-top: 5rem;
  }
}
.product-structure-inner {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2.5rem 3.75rem;
  box-shadow: 0.125rem 0.25rem 0.875rem 0 rgba(0, 0, 0, 0.03);
}
@media only screen and (max-width: 767px) {
  .product-structure-inner {
    padding: 2rem 1.5rem 3rem;
  }
}
.product-structure .product-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .product-structure .product-section-header {
    margin-bottom: 2rem;
  }
}
.product-structure .product-section-header .product-section-title {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-structure .product-section-header .product-section-title {
    font-size: 1rem;
  }
}
.product-structure .product-section-header .product-section-subtitle {
  font-family: "Pretendard", sans-serif;
  font-size: 1.625rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-structure .product-section-header .product-section-subtitle {
    font-size: 1.375rem;
  }
}
.product-structure-diagram {
  max-width: 41.8125rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .product-structure-diagram {
    max-width: 100%;
  }
}
.product-structure-functions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .product-structure-functions {
    gap: 0.75rem;
  }
}
.product-structure-function {
  background: #8c4a4a;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  color: #fff;
  line-height: 1.5;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .product-structure-function {
    padding: 0.75rem;
    font-size: 0.8125rem;
  }
}
.product-structure-function-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.product-structure-function-box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-structure-function-box h4 {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: #000;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-structure-function-box h4 {
    font-size: 1rem;
  }
}
.product-structure-function-box p {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  margin: 0;
}
.product-structure-function-box p:first-of-type {
  color: #000;
}
.product-structure-function-box p:last-of-type {
  color: #8c4a4a;
}
@media only screen and (max-width: 767px) {
  .product-structure-function-box p {
    font-size: 0.875rem;
  }
}
.product-structure-function-box-border {
  position: absolute;
  top: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 0.5rem);
  height: calc(100% + 0.5rem);
  border: 0.125rem dashed #8c4a4a;
  border-radius: 1.25rem;
  pointer-events: none;
  z-index: 1;
}
.product-structure-function-arrow {
  position: absolute;
  width: 1.5rem;
  height: 0;
  border-top: 0.125rem solid #8c4a4a;
}
.product-structure-function-arrow-left {
  left: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.product-structure-function-arrow-right {
  right: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.product-structure-arrow-down {
  width: 3rem;
  height: 1.625rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-structure-arrow-down > span {
  background: url(../../../images/product/arrow-down.svg) no-repeat center/cover;
  width: 3rem;
  height: 1.625rem;
}
.product-structure-layers {
  position: relative;
  margin: 0 auto;
  border: 0.0625rem solid #8c4a4a;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 2.5rem;
}
@media only screen and (max-width: 767px) {
  .product-structure-layers {
    transform: scale(0.7);
    transform-origin: left top;
    width: 28rem;
    height: auto;
    min-height: 9.6875rem;
    padding: 1.25rem 0.8125rem;
  }
}
.product-structure-left {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.product-structure-source,
.product-structure-dyeing,
.product-structure-base {
  font-family: "Pretendard", sans-serif;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  color: #fff;
  background: #5f5f5f;
  padding: 0.6875rem 0.625rem;
  border-radius: 0.25rem;
  z-index: 3;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .product-structure-source,
  .product-structure-dyeing,
  .product-structure-base {
    width: 5.25rem;
    font-size: 0.6875rem;
    padding: 0.375rem 0.5rem;
  }
}
.product-structure-main {
  width: 17.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
@media only screen and (max-width: 767px) {
  .product-structure-main {
    width: 100%;
    max-width: 12.5rem;
    left: 6.9375rem;
  }
}
.product-structure-layer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-structure-layer span {
  font-family: "Pretendard", sans-serif;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  z-index: 2;
  position: relative;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .product-structure-layer span {
    font-size: 0.8125rem;
  }
}
.product-structure-layer-resin {
  background: #e17306;
  height: 2.5rem;
}
.product-structure-layer-resin span {
  color: #fff;
}
.product-structure-layer-pretreatment {
  background: #31251e;
  height: 1.875rem;
  border-top: 0.0625rem solid #000;
  margin-top: 0.125rem;
}
.product-structure-layer-pretreatment span {
  color: #fff;
}
.product-structure-layer-fabric {
  background: #fff;
  height: 3.75rem;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
  margin-top: 0.125rem;
}
.product-structure-layer-fabric span {
  color: #111;
}
.product-structure-fabric-pattern {
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 100%;
  height: 90%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 0.75rem,
    rgba(0, 0, 0, 0.08) 0.75rem,
    rgba(0, 0, 0, 0.08) 0.8125rem
  );
  z-index: 1;
}
.product-structure-arrow {
  width: 1.90625rem;
  height: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-structure-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .product-structure-arrow {
    left: 19.812rem;
  }
}
.product-structure-result {
  width: 6.0625rem;
  height: 6.125rem;
  background: #fff;
  border: 0.0625rem solid #8c4a4a;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .product-structure-result {
    right: 0.625rem;
    width: 5.125rem;
    height: 5.125rem;
  }
}
.product-structure-result-text {
  font-family: "Pretendard", sans-serif;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .product-structure-result-text {
    font-size: 0.875rem;
  }
}

.product-cross-section {
  background: #f8f8fa;
  border-radius: 1.25rem;
}
.product-cross-section-inner {
  padding-block: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .product-cross-section-inner {
    padding-block: 2rem;
  }
}
.product-cross-section .product-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media only screen and (max-width: 767px) {
  .product-cross-section .product-section-header {
    margin-bottom: 2rem;
  }
}
.product-cross-section .product-section-header .product-section-title {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.6;
  letter-spacing: -0.02rem;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-cross-section .product-section-header .product-section-title {
    font-size: 0.9375rem;
  }
}
.product-cross-section .product-section-header .product-section-subtitle {
  font-family: "Pretendard", sans-serif;
  font-size: 1.625rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-cross-section .product-section-header .product-section-subtitle {
    font-size: 1.375rem;
  }
}
.product-cross-section .product-section-header .product-section-note {
  font-family: "Pretendard", sans-serif;
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  color: #767676;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-cross-section .product-section-header .product-section-note {
    font-size: 0.8125rem;
  }
}
.product-cross-section-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cross-section-grid {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-cross-section-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.product-cross-section-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 0 0 auto;
  max-width: 15rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cross-section-item {
    flex: 1;
  }
}
@media only screen and (max-width: 767px) {
  .product-cross-section-item {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }
}
.product-cross-section-image {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cross-section-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media only screen and (max-width: 767px) {
  .product-cross-section-image {
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
    align-self: center;
  }
}
.product-cross-section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
}
.product-cross-section-note-box {
  position: absolute;
  top: 3.125rem;
  right: -3.75rem;
  transform: translate(-50%, -50%);
  background: rgba(199, 21, 21, 0.8);
  border-radius: 3.25rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
}
@media only screen and (max-width: 767px) {
  .product-cross-section-note-box {
    top: 2rem;
    right: -4.5rem;
    padding: 1rem;
    height: 4rem;
  }
}
.product-cross-section-note-box p {
  font-family: "Pretendard", sans-serif;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  color: #fff;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .product-cross-section-note-box p {
    font-size: 0.625rem;
  }
}
.product-cross-section-circle-indicator {
  position: absolute;
  top: 3.375rem;
  left: 3.0625rem;
  width: 8.125rem;
  height: 8.125rem;
  border: 0.125rem solid #961b1b;
  border-radius: 50%;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .product-cross-section-circle-indicator {
    width: 6.5rem;
    height: 6.5rem;
    top: 1.75rem;
    left: 1.75rem;
  }
}
.product-cross-section-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
@media only screen and (max-width: 767px) {
  .product-cross-section-info {
    align-items: center;
  }
}
.product-cross-section-info h4 {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
  background: #ededed;
  padding: 0.5rem 1.25rem;
  border-radius: 1.9375rem;
}
@media only screen and (max-width: 767px) {
  .product-cross-section-info h4 {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.9375rem;
  }
}
.product-cross-section-info ul {
  list-style: none;
  padding: 0.5rem 0.625rem;
  margin: 0;
}
.product-cross-section-info ul li {
  font-family: "Pretendard", sans-serif;
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  color: #505050;
  line-height: 1.5;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .product-cross-section-info ul li {
    font-size: 0.8125rem;
  }
}
.product-cross-section-info ul li:before {
  content: "・";
  margin-right: 0.25rem;
}

.product-certificates {
  padding: 8.75rem 0;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-certificates {
    padding: 6.25rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-certificates {
    padding: 3.75rem 0;
  }
}
.product-certificates-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .product-certificates-inner {
    gap: 2rem;
  }
}
.product-certificates-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  height: 4.625rem;
}
@media only screen and (max-width: 767px) {
  .product-certificates-header {
    height: auto;
  }
}
.product-certificates-label {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: #8c4a4a;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-certificates-label {
    font-size: 1rem;
  }
}
.product-certificates-title {
  font-family: "Pretendard", sans-serif;
  font-size: 1.625rem;
  font-weight: var(--fw-bold);
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .product-certificates-title {
    font-size: 1.375rem;
  }
}
.product-certificates-gallery {
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-certificates-gallery {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-certificates-gallery::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .product-certificates-gallery {
    flex-flow: row wrap;
    padding-right: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-certificates-gallery::-webkit-scrollbar {
    display: none;
  }
}

.product-certificate-item {
  flex-shrink: 0;
  height: 27.5rem;
  position: relative;
  margin-right: -12.5rem;
  transition: transform 0.3s ease;
}
.product-certificate-item:last-child {
  margin-right: 0;
}
.product-certificate-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 0;
}
.product-certificate-item-1 {
  width: 19.4375rem;
}
.product-certificate-item-2,
.product-certificate-item-3 {
  width: 20.625rem;
}
.product-certificate-item-2 img,
.product-certificate-item-3 img {
  background: rgba(0, 0, 0, 0.02);
}
.product-certificate-item-4,
.product-certificate-item-5,
.product-certificate-item-6 {
  width: 18.6875rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-certificate-item {
    height: 20rem;
    margin-right: -8rem;
  }
  .product-certificate-item-1 {
    width: 14rem;
  }
  .product-certificate-item-2,
  .product-certificate-item-3 {
    width: 15rem;
  }
  .product-certificate-item-4,
  .product-certificate-item-5,
  .product-certificate-item-6 {
    width: 13.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-certificate-item {
    width: 50% !important;
    height: auto;
    margin-right: 0;
  }
  .product-certificate-item-1 {
    width: 10.5rem;
  }
  .product-certificate-item-2,
  .product-certificate-item-3 {
    width: 11.5rem;
  }
  .product-certificate-item-4,
  .product-certificate-item-5,
  .product-certificate-item-6 {
    width: 10rem;
  }
}

.product-cta {
  position: relative;
  padding: 6.25rem 0;
  background: #000;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cta {
    padding: 4.375rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-cta {
    padding: 3.125rem 0;
  }
}
.product-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../../images/contact-bg.png) no-repeat top/cover;
  opacity: 0.2;
  z-index: 0;
}
.product-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 0 15rem;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cta-inner {
    padding: 0 5rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-cta-inner {
    padding: 0 1.25rem;
    gap: 1.5rem;
  }
}
.product-cta-title {
  font-family: "Pretendard", sans-serif;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cta-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-cta-title {
    font-size: 1.5rem;
  }
}
.product-cta-buttons {
  display: flex;
  gap: 2.5rem;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cta-buttons {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-cta-buttons {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.product-cta-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  padding: 2.5rem 3.75rem;
  border-radius: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-cta-button span {
  font-family: "Pretendard", sans-serif;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  white-space: nowrap;
}
.product-cta-button svg {
  flex-shrink: 0;
}
.product-cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .product-cta-button {
    padding: 2rem 3rem;
  }
  .product-cta-button span {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .product-cta-button {
    padding: 1.5rem 2rem;
  }
  .product-cta-button span {
    font-size: 0.9375rem;
  }
  .product-cta-button svg {
    width: 2rem;
    height: 2rem;
  }
}
