/* =========================================
   tool-layout.css
   ツール共通レイアウト（配置のみ）
========================================= */
/* ===== ツールタイトルをかっこよく ===== */
.tool-title{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 6px;
  color: #1e293b;
  position: relative;
}

/* 下のアクセントライン */
.tool-title::after{
  content: "";
  display: block;
  width: 700px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #45a7ff,
    #ff5c93
  );
}
.tool-sub{
  font-size: 15px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #64748b;
  margin: 6px 20px 18px 0;
  text-align: right;
}


