/* 全体コンテンツエリア */
.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 2em 1em;
  font-family: "Helvetica Neue", "Hiragino Sans", "游ゴシック", sans-serif;
  line-height: 1.8;
  color: #222;
  font-size: 16.5px; /* ← 通常よりやや大きめ（標準16px + 0.5px） */
}

/* h1（ページタイトル） */
.content h1 {
  font-size: 26px;
  font-weight: bold;
  color: #222;
  margin: 1.2em 0 0.8em;
  line-height: 1.4;
}

/* セクション見出し */
section h2 {
  font-size: 22px;
  margin-bottom: 1em;
  font-weight: bold;
  color: #333;
}

/* 通常段落 */
section p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5em;
}

/* 箇条書き */
section ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

section ul li {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0.8em;
}

/* 文例ブロック */
.example-block {
  background-color: #f9f9f9;
  border-left: 4px solid #007acc;
  padding: 1em;
  margin-bottom: 1.5em;
  font-size: 15px;
  line-height: 1.8;
}

.example-block h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #222;
}

/* 商品一覧リンク */
.product-more-link {
  margin-top: 2em;
  font-size: 14px;
  text-align: right;
}

.product-more-link a {
  color: #007acc;
  text-decoration: underline;
}

/* CTAボタンエリア */
.cta-buttons {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.cta-button {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: #007acc;
  padding: 0.8em 1.6em;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #005fa3;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 22px;
  }

  section h2 {
    font-size: 18px;
  }

  section p,
  ul li,
  .example-block,
  .example-block h3,
  .cta-button,
  .product-more-link {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

.faq-section {
  margin-top: 3em;
  padding-top: 1em;
  border-top: 2px solid #ccc;
}

.faq-section h2 {
  font-size: 22px;
  margin-bottom: 1em;
  color: #333;
  font-weight: bold;
}

.faq-item {
  margin-bottom: 1em;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fafafa;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1em;
  font-size: 15px;
  font-weight: bold;
  background: #f1f1f1;
  border: none;
  cursor: pointer;
  outline: none;
}

.faq-question::after {
  content: "＋";
  float: right;
  font-size: 18px;
}

.faq-item.open .faq-question::after {
  content: "－";
}

.faq-answer {
  display: none;
  padding: 1em;
  font-size: 14px;
  color: #444;
  background: #fff;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/*# sourceMappingURL=business-condolence.css.map */
