@charset "utf-8";

/* ========================================
   FAQ
======================================== */

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


/* ========================================
   FAQ Section
======================================== */

.faq_section {
  margin-bottom: 50px;
}


/* ========================================
   FAQ Title
======================================== */

.faq_title {
  position: relative;
  max-width: 1160px;
  margin: 0 auto 0px;
  padding-left: 25px;
  color: #333333;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.guide_common_anchor .faq_title {
  position: relative;
  margin: 0 0 20px;
  padding-left: 25px;
  color: #666;
  font-size: 30px;
}


/* 左側の縦線 */
.faq_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #ccc;
}


/* ========================================
   FAQ Link List
======================================== */

.faq_link_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}


/* ========================================
   FAQ Link
======================================== */

.faq_link {
  display: flex;
  align-items: flex-start;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.faq_link:hover {
  text-decoration: underline;
}


/* ========================================
   Arrow
   CSS borderで下向き矢印を作成
======================================== */

.faq_link_icon {
  position: relative;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  margin-right: 10px;
}

.faq_link_icon::before,
.faq_link_icon::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 5px;
  height: 1px;
  background-color: #666;
}

.faq_link_icon::before {
  left: 0;
  transform: rotate(45deg);
}

.faq_link_icon::after {
  right: 0;
  transform: rotate(-45deg);
}

/* ========================================
   guide_page-inner
======================================== */
.guide_page-inner .faqBoxLast {
    margin-bottom: 30px;
}
#anchor1 .faqBox,#anchor2 .faqBox,#anchor3 .faqBox,#anchor4 .faqBox,#anchor5 .faqBox,#anchor6 .faqBox,#anchor7 .faqBox,#anchor8 .faqBox,#anchor9 .faqBox{
border: none;
}
/* ========================================
   SP
======================================== */

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

  .faq {
    width: auto;
    margin: 0;
    padding: 0 20px;
  }


  /* FAQ Section */

  .faq_section {
    margin-bottom: 30px;
  }


  /* FAQ Title */

  .faq_title {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 24px;
    line-height: 1.4;
  }

  .faq_title::before {
    width: 4px;
  }


  /* FAQ Link List */

  .faq_link_list {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }


  /* FAQ Link */

  .faq_link {
    font-size: 14px;
    line-height: 1.6;
  }


  /* Arrow */

  .faq_link_icon {
    flex-basis: 7px;
    width: 7px;
    height: 7px;
    margin-top: 6px;
    margin-right: 9px;
  }

  .faq_link_icon::before,
  .faq_link_icon::after {
    top: 3px;
    width: 5px;
  }

}