@charset "UTF-8";
:root {
  --color-theme: #4a42cc;
  --font-color-theme: #3e2214;
  --font-color-default: #3e2214;
  --font-color-default-soft: rgba(#221816, 0.8);
  --font-color-black: #292929;
  --font-color-violet: #4a42cc;
  --font-color-blue: #182249;
  --font-color-gray: #929292;
  --font-color-gray-soft: #e6e6e6;
  --font-color-gray-pastel: #f8f8f8;
  --font-color-red: #dc3545;
  --font-color-pink: #e77786;
  --font-color-yellow: #fed11b;
  --font-color-blue: #006ee0;
  --link-color-hover: #0a58ca;
  --link-color-hover-soft: rgba(10, 88, 202, .3);
  --bg-color-gray: #ebebeb;
  --bg-color-gray-soft: #f7f7f7;
  --bg-color-violet: #f5f5ff;
  --bg-color-blue: #f6f9ff;
  --bg-color-black: #222222;
  --border-color-gray-hard: #717376;
  --border-color-gray-soft: #ebebeb;
  --border-color-gray-pastel:#f7f7f7;
  --section-gap: 120px;
  --section-padding: 95px;
}

.product-header {
  text-align: center;
  margin-bottom: 100px;
}
.product-header img {
  max-width: 1059px;
  width: 100%;
  margin: 0 auto;
}

.product-subtitle h4 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  margin-top: 50px;
  margin-bottom: 100px;
}

.pd-header-image {
  text-align: center;
}
.pd-header-image img {
  max-width: 100%;
}

.product-type-section + .product-type-section {
  margin-top: 100px;
}

.product-item + .product-item {
  margin-top: 175px;
}
.product-item.reverse .item-image {
  order: 2;
}
.product-item.reverse .item-contents {
  order: 1;
}
.product-item .item-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: -50px;
  margin-left: -120px;
}
.product-item .item-wrap .item-image, .product-item .item-wrap .item-contents {
  padding-top: 50px;
  padding-left: 120px;
  flex: 0 0 50%;
}
.product-item .item-wrap .item-image img {
  max-width: 100%;
}
.product-item .item-wrap .item-contents .item-contents-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-item .item-wrap .item-contents .item-contents-inner div, .product-item .item-wrap .item-contents .item-contents-inner p {
  word-wrap: break-word; /* 긴 단어 강제 줄바꿈 */
  word-break: break-all; /* 모든 문자에서 줄바꿈 */
}
.product-item .item-wrap .item-contents .item-contents-inner div + div {
  margin-top: 1.5rem;
}
.product-item .item-wrap .item-contents .item-contents-inner h5, .product-item .item-wrap .item-contents .item-contents-inner strong {
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.product-item .item-wrap .item-contents .item-contents-inner h5 {
  font-size: 30px;
  font-family: simplehae;
}
.product-item .item-wrap .item-contents .item-contents-inner strong {
  font-size: 20px;
  font-weight: bold;
}
.product-item .item-wrap .item-contents .item-contents-inner .item-illust {
  margin-top: 5rem;
}
.product-item .item-wrap .item-contents .item-contents-inner .item-illust img {
  max-width: 100%;
}
.product-item .item-wrap .item-contents .item-contents-inner .strong, .product-item .item-wrap .item-contents .item-contents-inner .strong2 {
  position: relative;
  display: block;
  padding-left: 1em;
}
.product-item .item-wrap .item-contents .item-contents-inner .strong::before, .product-item .item-wrap .item-contents .item-contents-inner .strong2::before {
  position: absolute;
  top: 0;
  left: 0;
}
.product-item .item-wrap .item-contents .item-contents-inner .strong::before {
  content: "-";
}
.product-item .item-wrap .item-contents .item-contents-inner .strong2::before {
  content: "*";
}

@media all and (max-width: 1024px) {
  .product-header {
    margin-bottom: 50px;
  }
  .product-type-section + .product-type-section {
    margin-top: 50px;
  }
  .product-subtitle h4 {
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 25px;
  }
  .product-item .item-wrap {
    margin-top: -20px;
    margin-left: -20px;
  }
  .product-item .item-wrap .item-image, .product-item .item-wrap .item-contents {
    padding-top: 20px;
    padding-left: 20px;
  }
  .product-item .item-wrap .item-contents .item-contents-inner h5 {
    font-size: 25px;
  }
  .product-item .item-wrap .item-contents .item-contents-inner strong {
    font-size: 18px;
  }
  .product-item .item-wrap .item-contents .item-contents-inner .item-illust {
    margin-top: 2rem;
  }
  .product-item + .product-item {
    margin-top: 100px;
  }
}
@media all and (max-width: 800px) {
  .product-item {
    padding: 20px;
    padding-bottom: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.02);
  }
  .product-item + .product-item {
    margin-top: 20px;
  }
  .pd-header-image img {
    min-width: 100px;
    width: 30%;
    max-width: 100%;
  }
  .item-image img {
    border-radius: 5px;
    overflow: hidden;
  }
  .product-item .item-wrap .item-image, .product-item .item-wrap .item-contents {
    flex: 1 1 100%;
  }
  .product-item.reverse .item-image {
    order: 0;
  }
}
.sample .product-item {
  background: transparent;
  padding: 0;
}

.btn-product-link {
  display: inline-block;
  max-width: 280px;
  width: 100%;
  padding: 8px 15px;
  background-color: #7aa68d; /* 버튼 색상 */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.btn-product-link:hover {
  background-color: #5e8a6f;
}

@media all and (max-width: 800px) {
  .btn-product-link {
    max-width: none;
  }
}