/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 12 2026 | 11:17:27 */
/* --- 全体設計（左寄せ・背景白） --- */
.bd-template {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  color: #333;
  line-height: 2.0;
  background-color: #ffffff;
  text-align: left; /* 全体左寄せ */
}

.bd-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 赤系英語タイトル --- */
.bd-label-eng {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b22222; /* 赤系アクセント */
  margin-bottom: 15px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

/* --- 見出し --- */
.bd-title-main {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
}

.bd-title-sub {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

/* --- セクション区切り --- */
.bd-section-text {
  padding: 80px 0;
  border-bottom: 1px solid #eee; /* 白背景の境界線 */
}

.bd-section-text:last-child {
  border-bottom: none;
}

/* --- 本文とリスト --- */
.bd-lead-text, .bd-body-text {
  font-size: 16px;
  color: #444;
}

.bd-sub-caption {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
}

.bd-custom-list {
  padding-left: 0;
  margin-bottom: 30px;
  list-style: none;
}

.bd-custom-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 8px;
  text-align: justify; /* 文末を揃えて読みやすく */
}

.bd-custom-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #b22222; /* リストの点も赤系 */
}

/* --- 会社概要スタイルのテーブル --- */
.bd-info-table {
  margin-top: 40px;
  border-top: 1px solid #333;
}

.bd-info-table dl {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
  margin: 0;
}

.bd-info-table dt {
  width: 250px;
  font-weight: bold;
  padding-right: 20px;
  flex-shrink: 0;
}

.bd-info-table dd {
  margin: 0;
  flex-grow: 1;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .bd-title-main { font-size: 28px; }
  .bd-title-sub { font-size: 20px; }
  .bd-info-table dl { flex-direction: column; }
  .bd-info-table dt { width: 100%; margin-bottom: 10px; }
}