@charset "utf-8";
/* CSS Document */



/* ===== FAQ===== */

/* FAQバナー */
.faq-banner img {

  width: 100%;
  margin-bottom:40px;

  display: block;
}



/* FAQ目次 */

.faq-index {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  margin-bottom: 40px;
}

.faq-nav {

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 14px 12px;

  border-radius: 12px;

  background:  #00a0e9 !important;

  color: #fff !important;

  text-decoration: none;

  font-weight: 700;

  transition: 0.2s ease;
}

.faq-nav:hover {
  background: #33b8f0 !important;
  color: #fff !important;
}


@media (max-width: 768px) {

  .faq-index {

    grid-template-columns: repeat(2, 1fr);

  }

}

/* ===== 目次スクロールの仕方 ===== */
.faq-section {
  scroll-margin-top: 120px;
  margin-top: 60px;
}

html {
  scroll-behavior: smooth;
}

/* ===== FAQタイトル ===== */

.faq-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
　　
	
  margin-top: 20px;  
  margin-bottom: 20px;
  text-align: left;
}

/* ===== FAQ全体 ===== */
.faq-area {
  max-width: 1280px;
  margin: 0 auto;
}

/* FAQカード */

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;

  margin-bottom: 16px;

  overflow: hidden;

  background: #fff;

  transition: 0.2s;
}

/* 開いた時 */

.faq-item[open] {
  background: #f8fbff;
  border-color: #bfe3f7;
}

/* summary */

.faq-item summary {
  list-style: none;

  display: flex;
  align-items: center;

  gap: 16px;

  padding: 13px;

  cursor: pointer;

  position: relative;
}

/* 三角消す */

summary::-webkit-details-marker {
  display: none;
}

/* Q */

.faq-q {
  width: 35px;
  height: 35px;

  border-radius: 50%;

  background: #00a0e9 !important;
  color: #fff !important;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;

  flex-shrink: 0;
}



/* 質問 */

.faq-question {
  flex: 1;

  font-size: 16px;
  font-weight: bold;

  color: #333;
}

/* ＋ */

.faq-icon {
  color: #00a0e9 !important;

  font-size: 28px;
  font-weight: bold;

  line-height: 1;
}

/* 開いた時 */

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* 回答 */

.faq-answer {
  padding: 0 20px 24px 76px;

  line-height: 1.8;

  color: #555;

  font-size: 15px;
}

/* 詳細サイト誘導 */
.faq-guide {
  margin-top: 20px;
  text-align: right;
}

.faq-guide-link {
  color: #3f3f3f !important;
  text-decoration: none;
  font-weight: 700;
}

.faq-guide-link:hover {
  text-decoration: underline;
  color: #0088c7  !important;
}




/* ===== 問い合わせフォーム ===== */

.faq-contact {
  margin-top: 60px;
  padding: 30px;

  text-align: center;
  border-radius: 12px;
}

.contact-btn {
  display: inline-block;

  margin-top: 15px;
  padding: 12px 24px;

  background: #00a0e9 !important;
  color: #fff !important;

  text-decoration: none;
  border-radius: 999px;

  font-weight: bold;
}

.contact-btn:hover {
  background: #66c0e2 !important;
  color: #fff !important;
}

/* ===== リンク ===== */
.link {

  color: #0088c7 !important;
  text-decoration: none;
  font-weight: 700;
}

.link:hover {
  text-decoration: underline;
  color: #0088c7  !important;
}

/* ===== スマホ ===== */

@media (max-width: 768px) {
  .guide-wrap2 {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .guide-wrap2 .card {
    padding: 12px;
  }

  .step {
    font-size: 11px;
  }

  .title {
    font-size: 14px;
  }

  .icon {
    font-size: 26px;
  }

  .guide-wrap2 {
    gap: 12px;
  }
}


