@charset "UTF-8";
/* column-detail (記事詳細ページ) -------------------------------*/
.column.article {
  max-width: 1400px;
  padding: 0 50px;
}

.column-article {
  margin-top: 110px;
}

.column-article__body {
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 60px;
  text-align: justify;
}

.column-article__body p {
  margin: 15px 0;
}

.column-article__title {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
}

.column-article__sub-title {
  font-size: 12px;
  text-align: left;
  margin-top: 17px;
  margin-bottom: 70px;
  line-height: 2;
  font-weight: 600;
}

.column.article .column-detail__info-wrapper {
  font-size: 18px;
  margin-bottom: 55px;
  font-style: italic;
}

.column-article__image {
  text-align: center;
}

.latest-issue__title {
  font-size: 21px;
  font-style: italic;
  text-align: center;
  margin-bottom: 60px;
}

.column-back {
  text-align: center;
}

.column-back__link {
  display: inline-block;
}

.column-back__link-label {
  font-size: 16px;
  margin-bottom: 20px;
}

/* 記事詳細ページ（column.article） - モバイルファースト */
.column.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px; /* スマホサイズでも左右20px */
}

/* デスクトップで余白を広げたい場合は必要に応じて上書き */
@media (min-width: 641px) {
  .column.article {
    padding: 0 50px; /* 例：デスクトップは左右50px */
  }
}
/* Back to Index ボタンスタイル -------------------------------*/
.column-back__link-label {
  display: inline-block;
  background-color: #414042;
  color: #fff;
  padding: 10px 50px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.column-back__link-label:hover {
  background-color: #333;
}

.column-back {
  text-align: center;
  margin-top: 50px;
}

.column-article__image {
  text-align: center;
  /* 画像がはみ出ないように */
  overflow: hidden;
  border-radius: 8px;
  margin: 30px 0;
}

.column-article__image img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ────────────────
   Product Card（微調整版）
───────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  margin: 30px 0 45px 0;
  background: #fff;
}

.product-card__link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.product-card__image {
  width: 50%;
  overflow: hidden;
}

.product-card__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-card__content {
  padding: 0.8em 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 280px;
}

.column-article__body .product-card__title {
  font-size: 14px; /* 小さめに */
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.4em;
  color: #333;
}

.product-card__price {
  font-size: 14px; /* 少し抑えめ */
  color: #414042;
  margin-top: 0.6em;
}

/* 横並びはそのまま */
@media (min-width: 640px) {
  .product-card {
    flex-direction: row;
    max-height: 150px;
  }
  .product-card__image {
    width: 15%;
  }
  .product-card__content {
    width: 85%;
  }
}
/* 価格の後に「（税込）」を自動で追加 */
.product-card__price::after {
  content: "（税込）";
  font-size: 14px; /* price と揃えるか、微調整 */
  font-weight: normal;
  margin-left: 0.2em;
  color: #414042;
}

body {
  font-size: 100%;
}

.column-article__title_t {
  margin-top: 70px;
} 
.title-box {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 20px 0;
  text-align: center;
  margin: 30px 0;
}

.title-box h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
}

.column-article__body h3 {
  font-size: 16px;
  line-height: 1.7;
  margin: 25px 0;
  font-weight: 600;
}/*# sourceMappingURL=column.css.map */