.service-detail {
    margin-bottom: 80px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #064e3b;
    padding-bottom: 10px;
}

.service-header .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #064e3b;
    font-family: 'Noto Sans JP', sans-serif;
}

.service-header h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
}

.service-body p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #444;
}

/* 📦 6つの要素を綺麗に3行2列にする外箱（親要素） */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 横に2列（等幅） */
  gap: 30px 25px;                       /* 縦に30px、横に25pxの隙間を空ける */
  margin-top: 30px;
  margin-bottom: 30px;
}

.process-section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
}

/* 丸数字 */
.process-num {
    background-color: #064e3b;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* アイコン画像サイズ */
.process-custom-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* ステップ名（太字） */
.process-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

/* 説明文 */
.process-card-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
    padding: 0 10px;
}
.process-card {
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 10px;
}