/* ===== Page Hero ===== */
.page-hero__overlay {
  background-image: url('http://built.sincor.jp/wp-content/uploads/2026/06/support_mv.png');
  /* ← ここに背景画像のURLを入れる */
}

/* ===== Support Section ===== */
.support {
  /* background: #dce8f5; */
  margin-top: 20px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.support::before {
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  top: 5%;
  right: 20px;
  background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%);
  border-bottom-right-radius: 300px;
}

.support__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 2px solid;
}

/* キャッチエリア */
.support__catch-wrap {
  padding: 70px 0 40px;
  position: relative;
}

.support__catch-inner {
  max-width: 1200px;
  margin: 0 auto 0px;
  padding: 0 40px;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 40px;
}

.support__catch-text {
  margin-top: 86px;
  /* flex: 1; */
}

.support__catch-line {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 2.2;
  margin: 0;
  border-bottom: 2px solid #1a4a8a;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.support__catch-line br {
  display: none;
}

@media screen and (max-width: 768px) {
  .support__catch-line {
    border: 0px transparent;
  }

  .support__catch-line span {
    border-bottom: 2px solid #1a4a8a;
  }

}

@media screen and (max-width: 500px) {
  .support__catch-line br {
    display: block;
  }

  .support__catch-line {
    color: var(--color-primary);
  }

  .support__catch-line span {
    font-size: 32px;
    line-height: 1.3em;
  }
}

.support__catch-accent {
  color: var(--color-accent)
}

.support__catch-map {
  width: 50%;
  min-width: 330px;
  margin-top: -10%;
  opacity: 0.85;
}

.support__catch-map svg {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .support__catch-text {
    margin-bottom: 30px;
    margin-top: 0;
  }
}

@media screen and (max-width: 500px) {


  .support__catch-text span {
    display: inline-block;
  }
}


.support__card {
  padding: 20px;
  padding-right: 0;
}

/* カードエリア */
.support__cards-wrap {
  padding: 0;
}

.support__cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* カード */
.support__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* カードヘッダー */
.support__card-header {
  align-items: center;
  display: flex;
  gap: 16px;
  padding: 20px 0 20px 28px;
  /* border-bottom: 1px solid #e8eef5; */
}

.support__card-icon {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%);
  border-radius: 10px;
}

.support__card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.support__card-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  flex: 1;
  padding-bottom: 20px;
}

.support__card-num {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: var(--color-primary);
  /* color: #888; */
  /* letter-spacing: 0.1em; */
  /* font-style: italic; */
  padding-right: 48px;
}

/* カードボディ：2カラム */
.support__card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  padding-right: 20px;
}

.support__item {
  padding: 24px 28px;
  /* border-right: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5; */
}

.support__item:nth-child(even) {
  border-right: none;
}

.support__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.support__item-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.support__item-title span {
  font-size: 14px;
  color: var(--color-primary);
}

.support__item-text {
  font-size: 0.82rem;
  color: var(--color-text);
  line-height: 1.9;
  margin: 0;
  padding-left: 17px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .support__catch-inner {
    flex-direction: column;
    gap: 0;
  }

  .support__catch-map {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    margin-top: -15%;
    min-width: 0;
  }

  .support__card-body {
    grid-template-columns: 1fr;
  }

  .support__item {
    border-right: none;
  }

  .support__item:nth-last-child(-n+2) {
    border-bottom: 1px solid #e8eef5;
  }

  .support__item:last-child {
    border-bottom: none;
  }

  .support__card {
    padding: 40px 10px;
  }

  .support__title-wrap,
  .support__card-header {
    flex-direction: column;
  }

  .support__card-num,
  .support__card-body,
  .support__card-header {
    padding: 0;
  }

  .support__title-wrap {
    border-bottom: 0;
  }

  .support__card-title {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
  }

  .support__card-num {
    padding-top: 10px;
    font-size: 16px;
  }

  .support__card-header {
    margin-bottom: 10px;
  }

  .support__item {
    padding: 14px 0;
  }

  .support__item-title {
    font-size: 20px;
  }

  .support__item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .support::before {
    height: 95%;
    border-bottom-right-radius: 150px;
  }

}

/* ===== FAQ Section ===== */
.faq {
  padding: 0 0 100px;
  background: #fff;
}

/* ヘッダーバー */
.faq__header {
  background: linear-gradient(to right, #1a4a8a, #3a80c8);
  margin-bottom: 40px;
}

.faq__header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.faq__title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.faq__title-ja {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.faq__title-en {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
}

.faq__header-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5aabf0;
  flex-shrink: 0;
}

/* FAQリスト */
.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* FAQアイテム */
.faq__item {}

/* 質問行 */
.faq__question {
  display: flex;
  align-items: center;
  gap: 0;
  background: #dce8f5;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.faq__num {
  background: #1a4a8a;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 16px 24px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.faq__question-text {
  font-size: 20px;
  font-weight: 700;
  color: #1a4a8a;
  margin: 0;
  padding: 16px 24px;
}

/* 回答 */
.faq__answer p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin: 0;
  padding-left: 4px;
}


/* レスポンシブ */
@media (max-width: 768px) {
  .faq {
    padding: 40px;
  }

  .faq__question {
    align-items: baseline;
    border-radius: 20px;
  }

  .faq__question-text {
    font-size: 19px;
    padding: 14px 16px;
    word-break: break-all;
  }

  .faq__num {
    font-size: 28px;
    padding: 14px 18px;
    border-radius: 20px 0;
  }

  .faq__inner {
    padding: 0;
  }

  .faq .section-header {
    margin: auto 0 40px;
  }
}