@charset "utf-8";

/* =========================================================
 #page_title
========================================================= */
#page_title:after {
  background-image: url(../img/faq/page_title.png);
}

/* =========================================================
 pain-point-nav
========================================================= */
.pain-point-nav {
  background-color: #e8f4ff;
  padding: 80px 0;
}

.pain-point-nav .wrap {
  width: 1200px;
  margin: 0 auto;
}

.pain-point-header {
  text-align: center;
  margin-bottom: 50px;
}

.pain-point-header h2 {
  font-size: 2.8rem;
  color: #00539c;
  font-weight: bold;
  margin-bottom: 16px;
}

.pain-point-header p {
  font-size: 1.6rem;
  color: #475569;
}

.pain-point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pain-point-card {
  background: #ffffff;
  border: 2px solid #bae6fd;
  border-radius: 12px;
  padding: 36px 30px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.pain-point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 83, 156, 0.12);
  border-color: #00539c;
}

.pain-point-card--orange {
  border-color: #fcd34d;
}

.pain-point-card--orange:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.15);
}

.pain-point-icon {
  font-size: 4.0rem;
  color: #00539c;
  margin-bottom: 16px;
  line-height: 1;
}

.pain-point-icon--orange {
  color: #ea580c;
}

.pain-point-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.5;
}

.pain-point-desc {
  font-size: 1.5rem;
  color: #64748b;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.8;
  text-align: left;
}

.pain-point-action {
  color: #00539c;
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pain-point-card--orange .pain-point-action {
  color: #ea580c;
}

/* =========================================================
 #faq-section
========================================================= */
#faq-section {
  padding: 80px 0 100px;
}

#faq-section .wrap {
  width: 1200px;
  margin: 0 auto;
}

/* ヘッダー */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 3.2rem;
  color: #00539c;
  font-weight: bold;
  margin-bottom: 16px;
}

.faq-header p {
  font-size: 1.6rem;
  color: #64748b;
}

/* FAQ リスト */
.faq-list {
  max-width: 960px;
  margin: 0 auto 60px auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #dde8f5;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 83, 156, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 83, 156, 0.08);
  border-color: #93c5fd;
}

/* Q */
.faq-q {
  background: #f0f7ff;
  padding: 24px 36px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #00539c;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dashed #c7ddf5;
  line-height: 1.7;
}

.faq-q::before {
  content: "Q.";
  color: #ea580c;
  font-size: 2.0rem;
  font-weight: bold;
  margin-right: 16px;
  line-height: 1.2;
  flex-shrink: 0;
  font-family: din-2014, sans-serif;
}

/* A */
.faq-a {
  padding: 28px 36px;
  display: flex;
  align-items: flex-start;
}

.faq-a::before {
  content: "A.";
  color: #00539c;
  font-size: 2.0rem;
  font-weight: bold;
  margin-right: 16px;
  line-height: 1.2;
  flex-shrink: 0;
  font-family: din-2014, sans-serif;
}

.faq-a-text {
  flex-grow: 1;
}

.faq-a-text p {
  font-size: 1.6rem;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 1em;
}

.faq-a-text p:last-child {
  margin-bottom: 0;
}

/* CTAボタン */
#faq-section .button a {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

/* =========================================================
 レスポンシブ
========================================================= */
@media screen and (max-width: 768px) {
  .pain-point-nav .wrap,
  #faq-section .wrap {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .pain-point-header h2 {
    font-size: 2.0rem;
  }

  .pain-point-grid {
    grid-template-columns: 1fr;
  }

  .pain-point-card {
    padding: 24px 20px;
  }

  .faq-q {
    padding: 20px 20px;
    font-size: 1.5rem;
  }

  .faq-a {
    padding: 20px 20px;
  }

  .faq-a-text p {
    font-size: 1.5rem;
  }

  #faq-section .button a {
    width: 100%;
  }
}
