/* === 各特徴ポイント === */
.jp-feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto;
  gap: 30px;
  flex-wrap: wrap;
}

.jp-feature-text {
  flex: 1 1 50%;
  font-size: 1rem;
  color: #444;
}

.jp-feature-text h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}

.jp-feature-image {
  flex: 1 1 40%;
}

.jp-feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


/* === ボタンスタイル === */
.btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-detail {
  display: inline-block;
  background-color: #0ABAB5;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-detail:hover {
  background-color: #20B2AA;
}

/* === レスポンシブ対応 === */
@media screen and (max-width: 768px) {
  .jp-feature-section {
    flex-direction: column;
    text-align: center;
  }

  .jp-feature-image, .jp-feature-text {
    flex: 1 1 100%;
  }

  .method-item, .flow-item {
    padding: 10px;
  }

  .jp-reason-title.section-title,
  .processing-methods .section-title,
  .delivery-flow .section-title {
    font-size: 1.5rem;
  }
}


/* === レスポンシブ対応（共通） === */
@media screen and (max-width: 1024px) {
  .delivery-flow .flow-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .processing-methods .container,
  .delivery-flow .container {
    flex-direction: column;
    gap: 20px;
  }

  .processing-methods .method-item,
  .delivery-flow .flow-item {
    flex: 1 1 100%;
  }
}

