/* h1, h2 スタイリング */
.content h1 {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 1em;
  line-height: 1.4;
}

.content h2 {
  font-size: 22px;
  font-weight: bold;
  border-left: 5px solid #999;
  padding-left: 12px;
  margin-top: 2em;
  margin-bottom: 1em;
  color: #333;
}

.content h3 {
  font-size: 18px;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: #444;
}

/* p 要素 */
.content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1em;
  color: #333;
}

/* ul, li */
.content ul {
  margin: 1em 0;
  padding-left: 1.5em;
}
.content li {
  font-size: 16px;
  margin-bottom: 0.5em;
  list-style: disc;
}

/* リンク装飾 */
.content a {
  color: #0055aa;
  text-decoration: underline;
}
.content a:hover {
  text-decoration: none;
}

/* スクロール対応のラッパー */
.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5em 0;
}

/* テーブル共通 */
.table-scroll-wrapper table {
  min-width: 600px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
  line-height: 1.6;
}

.table-scroll-wrapper th,
.table-scroll-wrapper td {
  border: 1px solid #ccc;
  padding: 0.8em;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  white-space: normal;
}

/* テーブルヘッダー背景 */
.table-scroll-wrapper thead th {
  background-color: #f3f3f3;
  font-weight: bold;
  color: #222;
}

/* テーブル個別装飾 */
.message-method-table th,
.message-method-table td {
  background-color: #fffefb;
}
.ng-words-table th,
.ng-words-table td {
  background-color: #fefefe;
}

/* レスポンシブ調整 */
@media screen and (max-width: 767px) {
  .content h1 {
    font-size: 22px;
  }

  .content h2 {
    font-size: 20px;
  }

  /* スクロールラッパーの margin を調整してコンパクトに */
  .table-scroll-wrapper {
    margin: 1em 0;
  }

  /* スクロール内テーブルの表示崩れ防止 */
  .table-scroll-wrapper table {
    min-width: 600px;
  }
}

/* FAQ全体 */
.faq-section {
  margin-top: 2em;
  padding: 1.5em;
  background-color: #f9f9f9;
  border-radius: 8px;
}

/* 見出し */
.faq-section h2 {
  font-size: 20px;
  margin-bottom: 1em;
  border-left: 5px solid #999;
  padding-left: 12px;
  color: #333;
}

/* 質問と回答リスト */
.faq-list dt {
  font-weight: bold;
  margin-top: 1.2em;
  margin-bottom: 0.3em;
  font-size: 16px;
  color: #222;
}

.faq-list dd {
  margin: 0 0 1em 0;
  padding-left: 1em;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .faq-section {
    padding: 1em;
  }
  .faq-section h2 {
    font-size: 18px;
  }
  .faq-list dt {
    font-size: 15px;
  }
  .faq-list dd {
    font-size: 14.5px;
  }
}

/*# sourceMappingURL=okuyami-message-guide.css.map */
