@charset "UTF-8";
/* CSS Document */

/* ========================================
   FAQ
======================================== */
.faq2607 {
  width: 90%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 100;
  color: #000;
	margin: 50px auto;
}
.faq2607 *,
.faq2607 *::before,
.faq2607 *::after {
  box-sizing: border-box;
}
.faq2607__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
/* ========================================
   タブ
======================================== */
.faq2607__tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
	column-gap: 15px;
	row-gap: 15px;
}
.faq2607__tab {
  position: relative;
  width: 100%;
  min-height: 60px;
  padding: 15px 10px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 1.5;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
/* ========================================
   選択中タブ
======================================== */
.faq2607__tab.is-active {
  background: #9edb51;
  color: #fff;
  border: none;
  z-index: 2;
}
/* 選択中タブの三角形 */
.faq2607__tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #9edb51;
}
/* ========================================
   タイトル
======================================== */
.faq2607__title {
  width: 100%;
  padding: 20px 10px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 100;
  line-height: 1.5;
  text-align: center;
	margin: 30px 0;
}
/* ========================================
   質問エリア
======================================== */
.faq2607__questions {
  width: 100%;
}
/* ========================================
   カテゴリー
======================================== */
.faq2607__group {
  display: none;
  width: 100%;
}
.faq2607__group.is-active {
  display: block;
}
/* ========================================
   質問
======================================== */
.faq2607__question {
  display: flex;
  align-items: center;
  width: 100%;
  /** Qの文字サイズを基準にした余白*/
  padding: 2em 1em;
  margin: 0 0 10px;
  background: #f2f2f5;
  color: #000;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 100;
  transition: opacity 0.2s ease;
}
.faq2607__question:hover {
  opacity: 0.7;
}
/* ========================================
   Q.
======================================== */
.faq2607__q {
  flex: 0 0 auto;
  margin-right: 0.5em;
  font-size: 28px;
  font-weight: 100;
  line-height: 1;
}
/* ========================================
   質問テキスト
======================================== */
.faq2607__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 100;
}
.faq2607__group h3 {
	font-size: 1.3em;
	margin: 15px 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 100;
}
/* ========================================
   SP
======================================== */
@media screen and (max-width: 750px) {
  .faq2607__tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq2607__tab {
    min-height: 55px;
    padding: 12px 8px;
    font-size: 14px;
  }
  .faq2607__tab.is-active::after {
    bottom: -9px;
    border-left-width: 9px;
    border-right-width: 9px;
    border-top-width: 9px;
  }
  .faq2607__title {
    padding: 16px 10px;
    font-size: 20px;
  }
  .faq2607__question {
    padding: 1em 0.5em;
  }
  .faq2607__q {
    font-size: 25px;
  }
  .faq2607__text {
    font-size: 15px;
    line-height: 1.7;
  }
}