@charset "UTF-8";
/* ==========================================================================
   コラム 見出しレベル繰り上げ対応（2026-08 追加）

     記事タイトル      : h2 → h1
     目次・本文の見出し : h3 → h2

   ★ 既存の「.cmnTitle h3」「.ocsIndex h3」は削除しない
   ========================================================================== */
/* --------------------------------------------------------------------------
   記事タイトル（h2 → h1）
   -------------------------------------------------------------------------- */
.column-title {
  font-size: 20px;
  letter-spacing: 1px;
  padding: 12px 0;
  font-weight: normal;
  text-align: center;
  margin: 20px 0 0 0;
  width: 100%;
  display: flex;
  align-items: center;
}
.column-title::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-primary);
  display: block;
  margin-right: 0.4em; /* base.css の h2:before と同じ。文字との間隔 */
}
.column-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-primary);
  display: block;
  margin-left: 0.4em; /* base.css の h2:after と同じ */
}

/* --------------------------------------------------------------------------
   目次・本文の見出し（h3 → h2）― 共通の打ち消し
   -------------------------------------------------------------------------- */
.cmnTitle h2,
.ocsIndex h2 {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  letter-spacing: normal;
  text-align: inherit;
}
.cmnTitle h2::before, .cmnTitle h2::after,
.ocsIndex h2::before,
.ocsIndex h2::after {
  content: none; /* 左右の横線を出さない */
}

/* --------------------------------------------------------------------------
   本文の見出し ― 従来の .cmnTitle h3 と同じ装飾
   -------------------------------------------------------------------------- */
.cmnTitle h2 {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   目次の見出し ― 従来の .ocsIndex h3 と同じ装飾
   -------------------------------------------------------------------------- */
.ocsIndex h2 {
  font-size: 24px;
}

/* --------------------------------------------------------------------------
   本文の太字
   -------------------------------------------------------------------------- */
.ocsBox .bold {
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   画像を実寸で表示する（移設した17記事のみ）

   -------------------------------------------------------------------------- */
.imgNatural .ocsBox img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   小さく表示したい画像

   yk-column.css の「.ocsBox img { width:100% }」が効いているため、
   HTMLの width属性では小さくならない。クラスで上書きする。

   使い方: <img class="w200" src="..." alt="">
   -------------------------------------------------------------------------- */
.ocsBox img.w200 {
  width: 200px;
  height: auto; /* 縦横比を保つ。正方形でない画像でも歪まない */
  margin: 0;
}

/* --------------------------------------------------------------------------
   画像の横並び
   -------------------------------------------------------------------------- */
.ocsBox .imgRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  margin-left: 0;
  margin-right: 0;
}
.ocsBox .imgRow img {
  width: 200px;
  max-width: calc(50% - 6px);
  height: auto;
  margin-bottom: 0; /* .ocsBox img の margin-bottom を打ち消す */
}/*# sourceMappingURL=makeshop-column-add.css.map */