﻿.colum-container {
  position: relative;
  margin-top: 20px; /* 上部に10pxの余白を追加 */
  align-items: center; /* 縦方向の位置を中央揃えにする */
}

.columtxt {
  position: relative;
  font-size: 20px !important; /* フォントサイズに応じて調整してください */
  font-weight: bold !important;　/* 太文字のスタイルを追加 */
}

.columtxt::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px; /* ラインの太さを指定（例: 1px = 0.75pt） */
  background-color: #d6001d; /* ラインの色 */
  position: absolute;
  bottom: -8px; /* ラインの位置を調整 */
  left: 0;
}

