@charset "UTF-8";

/**********************************************/
/**********フローセクション********************/
/**********************************************/

/* フローステップ */
.flow_steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin-bottom: 60px;
  position: relative;
}

/* アイコンをつなぐ横ライン（アイコンの背後を通る） */
.flow_steps::before {
  content: "";
  position: absolute;
  top: 30px; /* 60px アイコンの中心 */
  left: 12.5%;  /* 第1カラム中心 */
  right: 12.5%; /* 第4カラム中心 */
  height: 1px;
  background-color: var(--Yellow);
  opacity: 0.6;
  z-index: 0;
}

.flow_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.flow_icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--White);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.flow_icon img {
  width: 60px;
  height: 60px;
}

.flow_num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--Yellow);
}

.flow_step_title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--Green-d);
  margin-bottom: 12px;
}

.flow_step_desc {
  font-size: 0.875rem;
  color: var(--Black-l);
}


/**********************************************/
/**********案内カード**************************/
/**********************************************/

.info_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info_card {
  padding: 28px 24px;
  background-color: var(--Beige);
}

.info_card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--Green-d);
  margin-bottom: 12px;
}

.info_card p {
  font-size: 0.875rem;
  color: var(--Black-l);
  margin-bottom: 0.8em;
}

.info_card p:last-child {
  margin-bottom: 0;
}




/**********************************************/
/**********よくある質問セクション*************/
/**********************************************/

.guide_faq {
  background:
    repeating-linear-gradient(45deg, rgba(198, 167, 94, 0.04) 0px, rgba(198, 167, 94, 0.04) 1px, transparent 1px, transparent 14px),
    linear-gradient(to right, var(--Green-d), var(--Green-l));
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq_item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0 20px;
}

/* summary のデフォルトマーカーを非表示 */
.faq_question {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  color: var(--White);
}

.faq_question::-webkit-details-marker {
  display: none;
}

.faq_q {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--Yellow);
  flex-shrink: 0;
}

.faq_text {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* +/− トグルアイコン */
.faq_question::after {
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  color: var(--White);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Yellow);
}

details[open] > .faq_question::after {
  content: "−";
}

.faq_answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 20px 20px;
}

.faq_answer::before {
  content: "A";
  color: var(--Yellow);
  font-weight: 600;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  line-height: 1.85;
}

.faq_answer p {
  color: var(--White);
}


/**********************************************/
/**********レスポンシブ************************/
/**********************************************/

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

  .flow_steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .flow_steps::before {
    display: none;
  }

  .flow_step {
    padding: 0;
  }

  .info_cards {
    grid-template-columns: 1fr;
  }

}
