@charset "UTF-8";
/* CSS Document */

/* ベースの設定 */

/* タイトル */
.faq-main-title {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

/* ナビゲーション */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
  justify-content: center;
}

.faq-nav li {
  flex: 1 1 calc(20% - 10px);
  min-width: 140px;
}

.faq-nav a {
  display: block;
  text-align: center;
  padding: 10px 5px;
  border: 1px solid #a48654;
  color: #a48654;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-nav a:hover {
  background-color: #a48654;
	color: #FFF;
}

/* セクションタイトル */
.faq-section {
  margin-bottom: 60px;
scroll-margin-top: 100px;
}

.faq-section-title {
  color: #b38b55;
  font-size: 18px;
  font-weight: normal;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

/* Q&Aアイテムのレイアウト */
.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-q, .faq-a {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

/* アイコン（QとA） */
.icon-q, .icon-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 15px;
  margin-top: 2px;
}

.icon-q {
  background-color: #999;
}

.icon-a {
  background-color: #b38b55;
}

/* テキスト部分 */
.faq-q p, .faq-a p {
    margin: 0;
    font-size: 14.5px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.faq-q p a, .faq-a p a {
  color: #b38b55;
}

.faq-q p {
  font-weight: bold;
}

.faq-a p {
  color: #555;
}

/* スマホ表示用調整 */
@media (max-width: 600px) {
  .faq-nav li {
    flex: 1 1 calc(50% - 10px);
  }
}

