@charset "utf-8";
/* CSS Document */
@media screen and (min-width:768px), print {
  /*----------------------------------------------------------------------
PC Style
----------------------------------------------------------------------*/
  /********** メインビュー **********/
  .main_img {
    background: url("../images/faq/main_img.jpg") no-repeat center / cover;
  }
  /**********  メインエリア ***********/
  p.intro {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 100px;
  }
  /* よくある質問 */
  ul.accordion {
    margin-bottom: 180px;
  }
}
@media screen and (max-width:767px) {
  /*----------------------------------------------------------------------
SP Style
----------------------------------------------------------------------*/
  /********** メインビュー **********/
  .main_img {
    background: url("../images/faq/main_img.jpg") no-repeat center / cover;
    width: 100%;
    height: 150px;
    margin-top: 60px;
    position: relative;
  }
  .main_img .inner {
    width: 90%;
    height: 100%;
    position: relative;
  }
  /**********  メインエリア ***********/
  p.intro {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 35px;
  }
  /* よくある質問 */
  ul.accordion {
    margin-bottom: 60px;
  }
}