/* ============================
   導入フロー（2列＋番号バッジ）
============================ */

.flow-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 30px 0 50px;
}

@media screen and (max-width: 768px) {
  .flow-compact {
    grid-template-columns: 1fr;
  }
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}

.flow-icon {
  font-size: 34px;
  color: #1e90ff;
  min-width: 40px;
  text-align: center;
  margin-top: 4px;
}

.flow-body {
  flex: 1;
}

.flow-title {
  color: #005bbb;
  font-weight: 700;
  background: #e8f3ff;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.flow-step {
  display: inline-block;
  background: #1e90ff;
  color: #fff;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 0.9rem;
}

.flow-body .company-text {
  color: #333;
}

@media screen and (max-width: 768px) {
  .flow-item {
    flex-direction: row;
    padding: 18px;
  }

  .flow-icon {
    font-size: 28px;
  }
}

/* ============================
   アコーディオン
============================ */

.accordion {
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 10px 0;
  overflow: hidden;
}

.accordion-header {
  background: #e8f1ff;
  padding: 15px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #d8e8ff;
}

.accordion-icon {
  font-size: 22px;
  width: 26px;
  text-align: center;
  color: #1e90ff;
  font-weight: bold;
  transition: 0.2s ease;
}

.accordion-content {
  display: none;
  padding: 20px;
  background: #fff;
}

.accordion-content.open {
  display: block;
}

/* ============================
   製造工程（横並び＋STEP番号）
============================ */

.process-row {
  width: 100%;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #d0d8e8;
}

.process-step {
  font-weight: bold;
  color: #005bbb;
  min-width: 70px;
}

.process-icon i {
  font-size: 36px;
  width: 55px;
  height: 55px;
  background: #dce8ff;
  color: #2a5bd7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-title {
  min-width: 150px;
}

.process-title .flow-title {
  margin: 0;
  font-size: 1.2em;
  color: #005bbb;
}

.process-photo img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .process-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .process-photo img {
    width: 100%;
    height: auto;
  }
}

/* ============================
   導入後サポート（アフター＋保証）
============================ */

.after-support-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 40px 0 60px;
}

.after-card {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px 22px;
}

.after-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #005bbb;
  margin-bottom: 10px;
}

.after-title i {
  margin-right: 8px;
  color: #1e90ff;
}

@media screen and (max-width: 768px) {
  .after-support-wrapper {
    grid-template-columns: 1fr;
  }
}