.product-page {
  max-width: 1080px;
  margin: 0 auto;
}

.product-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background-color: #f5ede1;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.product-banner h1 {
  font-size: 2.4rem;
  font-weight: normal;
}
.product-banner p {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 769px) {
  .product-banner h1 {
    font-size: 4rem;
  }
  .product-banner p {
    margin-top: 15px;
    font-size: 1.8rem;
  }
}

.product-sub-nav {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  padding: 15px 0;
  font-size: 1.5rem;
}
.product-sub-nav a {
  position: relative;
  padding: 5px 0;
  color: #231815;
  text-decoration: none;
  transition: color 0.3s;
}
.product-sub-nav a:hover {
  color: #9e9278;
}
.product-sub-nav a.active::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: calc(100% + 6px);
  height: 1px;
  background-color: #231815;
}
@media (min-width: 769px) {
  .product-sub-nav {
    font-size: 1.8rem;
    padding: 20px 0;
  }
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding: 0 10px;
}
.product-tabs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 10px 0;
  border: 1px solid #9e9278;
  border-radius: 99em;
  font-size: 1.3rem;
  color: #9e9278;
  text-decoration: none;
  white-space: nowrap;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s;
}
.product-tabs a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.product-tabs a:hover, .product-tabs a.active {
  background-color: #9e9278;
  color: #fff;
}
@media (min-width: 769px) {
  .product-tabs {
    gap: 20px;
    margin-top: 40px;
  }
  .product-tabs a {
    width: 200px;
    padding: 14px 0;
    font-size: 1.6rem;
  }
  .product-tabs a::after {
    width: 8px;
    height: 8px;
    margin-top: 4px;
  }
}

.product-section {
  padding: 40px 15px 0;
}
@media (min-width: 769px) {
  .product-section {
    padding: 60px 20px 0;
  }
}

.section-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid #d5cfc3;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 500;
  color: #9e9278;
}
@media (min-width: 769px) {
  .section-number {
    width: 56px;
    height: 56px;
    font-size: 2.4rem;
  }
}

.section-title {
  margin-top: 15px;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
}
@media (min-width: 769px) {
  .section-title {
    margin-top: 20px;
    font-size: 3.2rem;
    padding-bottom: 25px;
  }
}

.section-catch {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #9e9278;
}
@media (min-width: 769px) {
  .section-catch {
    margin-top: 25px;
    font-size: 1.8rem;
  }
}

.section-desc {
  margin: 20px auto 0;
  max-width: 800px;
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: center;
}
@media (min-width: 769px) {
  .section-desc {
    margin-top: 25px;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
}

.product-card {
  background: #fff;
  border-top: solid 1px #9e9278;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.product-card .card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}
.product-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .card-image img {
  transform: scale(1.05);
}
.product-card .card-body {
  padding: 15px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .product-card .card-title {
    font-size: 1.8rem;
  }
}
.product-card .card-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  flex: 1;
}
@media (min-width: 769px) {
  .product-card .card-text {
    font-size: 1.4rem;
  }
}
.product-card .card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: 15px;
  background-color: #9e9278;
  color: #fff;
  border-radius: 99em;
  font-size: 1.3rem;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s;
}
.product-card .card-link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}
.product-card .card-link:hover {
  background-color: #7d7460;
}
@media (min-width: 769px) {
  .product-card .card-link {
    height: 46px;
    font-size: 1.4rem;
  }
}

.merit-section {
  margin-top: 50px;
  padding: 40px 15px;
  background-color: #fff;
  border: 1px solid #d5cfc3;
  border-radius: 12px;
}
@media (min-width: 769px) {
  .merit-section {
    margin-top: 70px;
    padding: 60px 40px;
  }
}
.merit-section .merit-title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 18px;
}
@media (min-width: 769px) {
  .merit-section .merit-title {
    font-size: 2.6rem;
    padding-bottom: 22px;
  }
}

.merit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .merit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    margin-top: 40px;
  }
}

.merit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .merit-card {
    padding: 25px 20px;
  }
}
.merit-card .merit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 1px solid #d5cfc3;
  padding: 20px;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .merit-card .merit-icon {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
    padding: 26px;
  }
}
.merit-card .merit-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.merit-card .merit-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .merit-card .merit-card-title {
    font-size: 1.7rem;
  }
}
.merit-card .merit-card-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
}
@media (min-width: 769px) {
  .merit-card .merit-card-text {
    font-size: 1.4rem;
  }
}

.detail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  max-width: 360px;
  height: 54px;
  border: 1px solid #9e9278;
  border-radius: 99em;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  background-color: #9e9278;
  transition: background-color 0.3s, border-color 0.3s;
}
.detail-button:hover {
  background-color: #7d7460;
  border-color: #7d7460;
}
.detail-button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .detail-button {
    max-width: 420px;
    height: 64px;
    font-size: 1.7rem;
    margin-top: 40px;
  }
}

.process-section {
  margin-top: 50px;
  padding: 40px 15px;
  background-color: #f5ede1;
  border-radius: 12px;
}
@media (min-width: 769px) {
  .process-section {
    margin-top: 60px;
    padding: 60px 40px;
  }
}
.process-section .process-title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 18px;
}
@media (min-width: 769px) {
  .process-section .process-title {
    font-size: 2.6rem;
    padding-bottom: 22px;
  }
}

.flow-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .flow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 10px 12px;
    align-items: stretch;
    margin-top: 40px;
  }
}

.flow-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .flow-row {
    display: contents;
  }
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 18px 10px 14px;
  flex: 1;
  min-width: 0;
  position: relative;
}
@media (max-width: 768px) {
  .flow-step {
    width: 100%;
    max-width: 280px;
    padding: 15px 10px 12px;
  }
}
.flow-step .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #9e9278;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.flow-step .step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .flow-step .step-title {
    font-size: 1.3rem;
  }
}
.flow-step .step-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #777;
}
@media (min-width: 769px) {
  .flow-step .step-desc {
    font-size: 1.2rem;
  }
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 4px;
}
.flow-arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #9e9278;
  border-bottom: 2px solid #9e9278;
}
.flow-arrow-right::after {
  transform: rotate(-45deg);
}
.flow-arrow-down {
  padding: 5px 0;
}
.flow-arrow-down::after {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .flow-arrow-right {
    display: none;
  }
  .flow-arrow-down-mobile {
    display: flex;
  }
}
@media (min-width: 769px) {
  .flow-arrow-down-mobile {
    display: none;
  }
}

.recommend-section {
  margin-top: 50px;
  padding: 40px 15px;
  background-color: #fff;
  border: 1px solid #d5cfc3;
  border-radius: 12px;
}
@media (min-width: 769px) {
  .recommend-section {
    margin-top: 60px;
    padding: 60px 40px;
  }
}
.recommend-section .recommend-title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 18px;
}
@media (min-width: 769px) {
  .recommend-section .recommend-title {
    font-size: 2.6rem;
    padding-bottom: 22px;
  }
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
}
.recommend-grid.single-col {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .recommend-grid.single-col {
    grid-template-columns: 1fr;
  }
}

.recommend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.recommend-card .recommend-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 1px solid #d5cfc3;
  padding: 20px;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .recommend-card .recommend-icon {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
    padding: 26px;
  }
}
.recommend-card .recommend-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.recommend-card .recommend-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .recommend-card .recommend-card-title {
    font-size: 1.7rem;
  }
}
.recommend-card .recommend-card-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
}
@media (min-width: 769px) {
  .recommend-card .recommend-card-text {
    font-size: 1.4rem;
  }
}

.examples-section {
  margin-top: 35px;
}
.examples-section .examples-label {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .examples-section .examples-label {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (min-width: 769px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.example-item {
  text-align: center;
}
.example-item .example-image {
  width: 100%;
  height: 200px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}
.example-item .example-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.example-item .example-name {
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 500;
}
@media (min-width: 769px) {
  .example-item .example-name {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}

.product-contact-section {
  margin-top: 60px;
  padding: 50px 20px;
  background-color: #9e9278;
  color: #fff;
  text-align: center;
  border-radius: 12px;
}
@media (min-width: 769px) {
  .product-contact-section {
    margin-top: 80px;
    padding: 70px 20px;
  }
}
.product-contact-section .contact-title {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 18px;
}
@media (min-width: 769px) {
  .product-contact-section .contact-title {
    font-size: 2.8rem;
    padding-bottom: 22px;
  }
}
.product-contact-section .contact-desc {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.9;
}
@media (min-width: 769px) {
  .product-contact-section .contact-desc {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}
.product-contact-section .contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .product-contact-section .contact-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 54px;
  border-radius: 99em;
  font-size: 1.5rem;
  text-decoration: none;
  position: relative;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media (min-width: 769px) {
  .contact-btn {
    width: 300px;
    height: 62px;
    font-size: 1.7rem;
  }
}
.contact-btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.contact-btn:hover {
  background-color: #fff;
  color: #9e9278;
}
.contact-btn-primary {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.contact-btn-primary:hover {
  background-color: #fff;
  color: #9e9278;
}
.contact-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.contact-btn-secondary:hover {
  background-color: #fff;
  color: #9e9278;
}/*# sourceMappingURL=product.css.map */