@charset "UTF-8";
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
/* カラー変数定義
-----------------------------------------------------------------*/
/* カラー変数定義
-----------------------------------------------------------------*/
.faqContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 40px;
}
@media print, screen and (max-width: 767px) {
  .faqContent {
    display: block;
    margin: 0 20px;
  }
}

.faqMainContent {
  width: 66.6666%;
  width: 66.6666666667%;
}
@media print, screen and (max-width: 767px) {
  .faqMainContent {
    width: auto;
  }
}

.faqSection {
  border-top: 1px solid #010101;
  padding: 80px 0 0;
  margin: 80px 0 0;
}
.faqSection:first-child {
  border-top: none;
  padding: 0;
  margin: 0;
}
@media print, screen and (max-width: 767px) {
  .faqSection {
    padding: 60px 0 0;
    margin: 60px 0 0;
  }
}

.faqSectionTitle {
  font-size: 24px;
}
@media print, screen and (max-width: 767px) {
  .faqSectionTitle {
    font-size: 18px;
  }
}

.faq_node {
  position: relative;
  padding: 0 0 0 40px;
  margin: 40px 0 0;
}
.faq_node::before {
  content: "Q:";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 20px;
  font-family: "neue-haas-grotesk-display", MyYuGothicM, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.faq_node dt {
  font-weight: normal;
  line-height: 2;
}
.faq_node dd {
  line-height: 2;
  margin: 20px 0 0;
}