@charset "UTF-8";

/* ページ下リードコピー */

.pagecopy {
  color: #000;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-top: 60px;
}

/* タグエリア */

.tagArea {
  margin-top: 70px;
}

.tagAreatitle {
  color: #002556;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/* タグリスト */

.tagAreaList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 8px;
  margin-left: -5px;
}

.tagAreaListItem {
  margin: 7px 5px;
}

.tagAreaListItem.isCurrent a {
  background-color: #002556;
  color: #eaeaea;
}

.tagAreaListItem.all a{
  padding-left: 20px;
  padding-right: 20px;
}

.tagAreaListItem a {
  padding: 5px 10px 5px 10px;
  background-color: #eaeaea;
  border-radius: 10px;
  color: #000;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  display: block;
}

.tagAreaListItem a:before {
  content: "#";
  padding-right: 5px;
}

.tagAreaListItem.all a:before {
  display: none;
}

/* 20260311 よくある質問一覧ページの作成 */
.icatchWrap .thumb .scn-mv {
  background-image: url(https://toyohouse.com/wp-content/uploads/2026/03/20260302_img_blog_pc_01.jpg);
}

.scn-faq {
  width: 1200px;
  margin: 60px auto 0;
}

.scn-faq .faq_accordion {
  margin-bottom: 25px;
  background-color: #fff;
}

.scn-faq .faq_accordion summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 2em 2em 3em;
  font-weight: bold;
  cursor: pointer;
  font-size: 17px;
}

.scn-faq .faq_accordion summary::before {
  position: absolute;
  content: "Q.";
  top: 33px;
  left: 15px;
  color: #002556;
  font-size: 17px;
}

.scn-faq .faq_accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 12px;
  height: 12px;
  margin-left: 10px;
  border-bottom: 3px solid #002556;
  border-right: 3px solid #002556;
  content: '';
  transition: transform .3s;
}

.scn-faq .faq_accordion[open] summary::after {
  transform: rotate(225deg);
}

.scn-faq .faq_accordion p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 1em 3em;
  transition: transform .5s, opacity .5s;
  font-size: 17px;
}

.scn-faq .faq_accordion[open] p {
  transform: none;
  opacity: 1;
}

@media (max-width: 680px) {
  .scn-faq {
    width: calc((100% - 30px));
    margin: 60px 15px 0;
  }

  .pagecopy {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.733;
    margin-top: 0;
  }
} 