@charset "utf-8";

/* --- Base Layout --- */
.tokutei {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fcfcfc; /* 薄いグレー背景 */
}

/* --- Main Title --- */
.tokutei h2.main-ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #604123;
  color: #333;
}

/* --- Content Box --- */
.white-box {
  background: #fff;
  padding: 40px; /* 少し余白を多めに */
  border-radius: 8px;
  /* 必要であれば影を追加 */
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

/* --- Definition List Styling --- */
.tokutei-list {
  margin: 0;
  padding: 0;
}

.tokutei-list dt {
  font-weight: bold;
  color: #604123; /* 茶色文字 */
  font-size: 15px;
  margin-bottom: 8px;
  margin-top: 30px; /* 項目間の余白 */
   /* アクセントの左線（画像にはないですがあると見やすいです。不要なら削除してください） */
  line-height: 1.4;
}

/* 最初の項目の上余白を消す */
.tokutei-list dt:first-child {
  margin-top: 0;
}

.tokutei-list dd {
  margin-left: 0; /* デフォルトのインデントを削除 */
   /* アクセント線に合わせて少し下げる、または0でも可 */
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
  color: #333;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .white-box {
    padding: 20px;
  }
  
  .tokutei-list dt {
    font-size: 14px;
    margin-top: 25px;
  }
  
  .tokutei-list dd {
    font-size: 13px;
    padding-left: 0;
  }
}