@charset "UTF-8";
h1,
h2,
h3,
h4,
h5,
h6,
body,
ol,
ul,
li,
p {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

body:not(#home) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:not(#home) .container {
  flex: 1;
}
body:not(#home) footer {
  margin-top: auto;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

#home {
  background-color: #fa7e36;
}
#home p {
  color: #ffffff;
}
#home .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

header {
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 20px 0 15px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}

h1 {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 40px;
}

h2 {
  font-size: 1rem;
}

.page-content {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

p {
  font-size: 0.875rem;
  line-height: 1.8rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ol,
ul {
  padding-left: 1rem;
}

li {
  font-size: 0.875rem;
  line-height: 1.8rem;
}

#faq {
  /* ----------------------------------
     カテゴリ見出しのスタイル
  ---------------------------------- */
}
#faq .faq-category-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 40px 0 20px 0; /* 上下に余白を作ってメリハリをつける */
  padding-left: 12px;
  border-left: 4px solid #fdae27; /* 左側にオレンジの縦ライン */
  line-height: 1.4;
}
#faq {
  /* 最初のカテゴリ見出しだけ、上の余白を少し狭くしてバランスを取る */
}
#faq .faq-category-title:first-of-type {
  margin-top: 10px;
}
#faq {
  /* ----------------------------------
     アコーディオン（FAQ）のベーススタイル
  ---------------------------------- */
}
#faq .faq-item {
  border-bottom: 1px solid #e0e0e0;
}
#faq .faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}
#faq {
  /* 質問ボタン部分 */
}
#faq .faq-trigger {
  display: flex;
  align-items: flex-start; /* 上ツラを合わせる */
  width: 100%;
  padding: 22px 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
#faq {
  /* Qのテキストスタイル */
}
#faq .faq-txt-q {
  display: inline-block;
  flex-shrink: 0;
  width: 28px; /* 横幅を固定してテキストの開始位置を揃える */
  color: #fdae27; /* オレンジ字 */
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
}
#faq {
  /* 質問のテキスト */
}
#faq .faq-title {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.5; /* Qの高さと揃えるための調整 */
}
#faq {
  /* 開閉の矢印 */
}
#faq .faq-arrow {
  margin-left: 20px;
  margin-top: 6px; /* 矢印の上位置を文字に合わせる */
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
#faq .faq-trigger[aria-expanded=true] .faq-arrow {
  transform: rotate(-135deg);
}
#faq {
  /* ----------------------------------
     回答部分
  ---------------------------------- */
}
#faq .faq-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
#faq .faq-content-inner {
  display: flex;
  align-items: flex-start; /* 上ツラを合わせる */
  padding: 0 10px 22px 10px;
}
#faq {
  /* Aのテキストスタイル */
}
#faq .faq-txt-a {
  display: inline-block;
  flex-shrink: 0;
  width: 28px; /* Qの幅と合わせて縦のラインを揃える */
  color: #fdae27; /* オレンジ字 */
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 1px; /* 本文の1行目と上ツラを完全に合わせる微調整 */
}
#faq {
  /* 回答の文章（アイコンの下に回り込まない） */
}
#faq .faq-content-inner p {
  flex: 1;
  margin: 0;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */