@charset "UTF-8";
/* ----------------------------------------------------------------------
よくある質問
---------------------------------------------------------------------- */
.faq-wrap {
	width:90%;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-desc {
  line-height: 1.9;
  text-align: center;
}

.faq-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5rem;
  margin-top: 3rem;
}

.faq-nav-btn {
  width: 28rem;
  height: 7rem;
  border: solid 1px #063681;
  background: #063681;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-section {
  margin-bottom: 2.5rem;
  margin-top: 12rem;
}

.faq-section#section01 {
  margin-top: 0;
}

.faq-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.faq-item {
  border: 1px solid #cccccc;
  border-radius: 16px;
  margin-bottom: 3rem;
  overflow: hidden;
  background: #fff;
}

.faq-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 5rem 2rem;
}

.faq-row.answer {
  border-top: none;
  position: relative;
  padding: 2rem 5rem 3rem;
}

.faq-row.answer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: #cccccc;
}

.faq-label {
  font-weight: 600;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0;
  line-height: 1;
}

.faq-label.q {
  background: #cccccc;
  font-weight: bold;
}

.faq-label.a {
  background: #e6ecf2;
  font-weight: bold;
}

.faq-text {
  line-height: 1.9;
  flex: 1;
}

.faq-text.q {
  font-weight: bold;
  padding-top: 0.4rem;
}

.faq-text.a {
  font-weight: bold;
  color: #063681;
  padding-top: 0.4rem;
}

.faq-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: -1.5rem;
}

.faq-more span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  display: block;
}

/* 画像付き回答レイアウト */
.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.faq-answer-text {
  flex: 1;
  line-height: 1.9;
  padding-top: 0.4rem;
}

.faq-answer-img {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.faq-answer-img img {
  width: 256px;
  border: 0.5px solid #d8dce8;
  display: block;
}

.faq-answer-img .img-caption {
  font-size: 12px;
  color: #000;
  text-align: left;
  align-self: flex-start;
}

/* タブレット */
@media (max-width: 1024px) {
	.faq-nav-btn {  width: unset;padding: 0 2rem;    height: 6rem;}
}
@media (max-width: 820px) {
	.faq-nav{gap:1.5rem;}
    .faq-nav-btn {	font-size: 1.4rem; padding: 0 1rem;}
}
/* スマートフォン */
@media (max-width: 520px) {
	 .faq-nav {    gap: 1rem;   }
	 .faq-nav-btn {width: calc((100% - 1rem) / 2);   font-size: 1.2rem;     padding: 0 1rem;   }
	.faq-desc{font-size: 1.4rem; text-align:left;}
	.faq-row,.faq-row.answer {padding:2rem;	}
	.faq-row.answer::before{left:2rem;right:2rem;}
	.faq-text{line-height:1.5}
	.faq-answer-text{line-height:1.5}

  /* 画像付き回答を縦並び（画像を改行して下に表示） */
  .faq-answer-inner {
    flex-direction: column;
    gap: 10px;
  }
}
@media (any-hover: hover) {
  .faq-nav-btn:hover {
    color: #063681;
    background-color: #FFF;
  }
}/*# sourceMappingURL=page-faq.css.map */