.proc__title{font-size: clamp(22px, 2.4vw, 28px); text-align:center; margin: 12px 0 24px;}

/* ===== カード ===== */
.proc-card{
  background: var(--c-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 40px 64px 62px;
  margin: 0 0 28px;
}
.proc-card__title{
  font-size: clamp(18px, 2vw, 20px);
  margin: 0 0 16px;
  text-align: center;
}

/* ===== 制作の流れ ===== */
.proc-flow {
  background: #f7f7f7;                /* カード背景（淡いグレー） */
  border-radius: 16px;
  padding: 40px 64px 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.proc-flow__title {
  font-size: 20PX;
  font-weight: 600;
  text-align: center;
  margin: 0 0 24px;
  color: #222;
}

/* タグボタン群 */
.proc-flow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

/* 改行用のダミー要素：行を強制的に折り返す */
.proc-flow__break{
  flex-basis: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.proc-tag {
  display: inline-block;
  background: #fff;
  border: 1.6px solid #ccc;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;      /* ← リンクの下線を消す */
  line-height: 1;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.proc-tag:hover {
  background: #fffdf0;
  border-color: #bbb;
  transform: translateY(-1px);
}
.proc-tag.is-accent {
  background: #f5f6c8;     /* 黄色系ハイライト */
  border-color: #e5e7aa;
}
.proc-tag-sec {
    margin-bottom: 30px;
}


/* フッター行（注釈＋リンク） */
.proc-flow__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.proc-flow__note {
  background: #fff9b4;
  color: #7a6b00;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  margin: 0;
}

.proc-flow__link {
  font-size: 14px;
  color: #3366ff;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
.proc-flow__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.6px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.proc-flow__link:hover::after {
  transform: scaleX(1);
}


/* ===== 工程の説明グリッド ===== */
.proc-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px 28px;
}
.proc-item__title{font-size: 16px; margin: 0 0 8px; font-weight: 700;}
.proc-item__text{font-size: 14px; line-height: 1.9; color: var(--c-muted); margin: 0;}

.sr-only{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ===== レスポンシブ微調整 ===== */
@media (max-width: 767px){
  .proc-flow {
    padding: 28px 20px 24px;
  }
  .proc-tag {
    font-size: 13px;
    padding: 7px 14px;
  }
  .proc-flow__note {
    font-size: 12px;
  }
  .proc{ padding: 32px 0 56px; }
  .proc-grid{ text-align: center; }
  .proc-card{ padding: 20px; }
  .proc-chips{ gap: 10px 12px; }
}
