@charset "utf-8";
/* CSS Document */
.show_pc {
  display: block;
}
.show_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  /* 768px 以下の画面サイズに適用されるスタイル */
  .show_pc {
    display: none;
  }
  .show_sp {
    display: block;
  }
  #contents h1 {
    line-height: 2.7rem;
  }
  #contents section {
    margin-bottom: 30px;
    font-size: 1.6rem;
    line-height: 2.7rem;
  }
  .faq dl {
    padding: 10px!important;
  }
  .faq dl dd a {
    text-decoration: underline;
  }
  #contents .dot_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  #contents .dot_mark {
    line-height: 2.7rem !important;
  }
  #contents .dot_text {
    line-height: 2.7rem !important;
  }
  #contents table {
    width: 100%;
  }
  #contents td {
    width: 100%;
    line-height: 2.7rem!important;
  }
}
