@charset "UTF-8";
.section-top {
  margin-bottom: 40px;
}
.section-top .top-image {
  width: 100%;
  height: 240px;
  background-image: url("../images/Q&A_heroimage.jpg");
  background-size: cover;
  margin-bottom: 30px;
}
.section-top .top-image .image-filter {
  width: 100%;
  height: 240px;
  background-color: rgba(0, 0, 0, 0.3);
}
.section-top .top-image .image-filter h1 {
  font-family: toppan-bunkyu-mincho-pr6n, "凸版文久見出し明朝 Std EB", "小塚明朝 Pro", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 3rem;
  color: #FFF;
  padding-top: 100px;
}
.section-top .notes {
  text-align: left;
  padding: 5px 10px;
  color: red;
  border: 2px solid red;
  margin: 0 10%;
}

.section-cancel {
  margin: 0 10% 40px;
  text-align: left;
}
.section-cancel h2 {
  font-family: toppan-bunkyu-mincho-pr6n, "凸版文久見出し明朝 Std EB", "小塚明朝 Pro", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 3rem;
  border-bottom: 2px solid #0066CC;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.section-cancel .discription {
  text-align: left;
  margin-bottom: 20px;
}
.section-cancel .cancel-list {
  border: 2px dotted #0066CC;
  list-style: none;
  margin-bottom: 20px;
}
.section-cancel .cancel-list li {
  background-color: #00B5D0;
  border-bottom: 1px solid #FFF;
  display: flex;
  justify-content: space-between;
}
.section-cancel .cancel-list li p {
  padding: 10px;
  color: #FFF;
}
.section-cancel .cancel-list li:last-child p {
  color: red;
}

.section-rule {
  margin-bottom: 40px;
  text-align: left;
}
.section-rule h2 {
  font-family: toppan-bunkyu-mincho-pr6n, "凸版文久見出し明朝 Std EB", "小塚明朝 Pro", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 3rem;
  border-bottom: 2px solid #0066CC;
  padding-bottom: 10px;
  margin: 0 10% 30px;
}
.section-rule img {
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
}
.section-rule p {
  margin: 0 10% 20px;
}
.section-rule .rule-ban {
  margin: 0 10% 30px;
}
.section-rule .rule-ban p {
  margin: 0 0 10px;
}
.section-rule .rule-ban h3 {
  color: red;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
.section-rule .rule-ban .ban-list {
  border: 2px solid red;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.section-rule .rule-ban .ban-list li {
  flex-basis: 50%;
}
.section-rule .rule-ban .ban-list li p {
  margin: 0;
  pading: 10px 10px;
}
.section-rule .rule-note {
  margin: 0 10% 40px;
}
.section-rule .rule-note h3 {
  color: #000;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
.section-rule .rule-note .note-list {
  border: 2px solid blue;
  list-style: none;
}
.section-rule .rule-note .note-list li p {
  margin: 0;
  padding: 15px 5px;
}

.section-faq {
  margin: 0 10% 25px;
}
.section-faq h2 {
  font-family: toppan-bunkyu-mincho-pr6n, "凸版文久見出し明朝 Std EB", "小塚明朝 Pro", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 3rem;
  border-bottom: 2px solid #0066CC;
  padding-bottom: 10px;
  margin: 0 10% 30px;
}
.section-faq .accordion-area {
  list-style: none;
  text-align: left;
}
.section-faq .accordion-area li {
  margin: 10px 0;
}
.section-faq .accordion-area .faq {
  border: 1px solid #00B5D0;
  background-color: #00B5D0;
}
.section-faq .accordion-area .faq .q_title {
  position: relative;
  cursor: pointer;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
  color: #FFF;
}
.section-faq .accordion-area .faq .q_title::before, .section-faq .accordion-area .faq .q_title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #FFF;
}
.section-faq .accordion-area .faq .q_title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.section-faq .accordion-area .faq .q_title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.section-faq .accordion-area .faq .q_title.close::before {
  transform: rotate(45deg);
}
.section-faq .accordion-area .faq .q_title.close::after {
  transform: rotate(-45deg);
}
.section-faq .accordion-area .faq .box {
  display: none;
  background-color: #f3f3f3;
  margin: 0 1px 1px 1px;
  padding: 3%;
}

.section-induce {
  margin: 0 10% 60px;
  text-align: left;
}
.section-induce strong {
  padding-bottom: 15px;
}
.section-induce a {
  text-decoration: none;
}

@media (min-width: 980px) {
  .section-top .top-image {
    height: 500px;
    margin-bottom: 40px;
  }
  .section-top .top-image .image-filter {
    height: 500px;
  }
  .section-top .top-image .image-filter h1 {
    font-size: 3.6rem;
    padding-top: 250px;
  }
  .section-top .notes {
    font-size: 1.8rem;
    max-width: 1000px;
    padding: 20px 15px;
    margin: 0 auto;
  }
  .section-cancel {
    max-width: 1000px;
    margin: 0 auto 60px;
  }
  .section-cancel h2 {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 30px;
  }
  .section-cancel .discription {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .section-cancel .discription p {
    padding-bottom: 15px;
  }
  .section-cancel .cancel-list {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .section-cancel .cancel-list li {
    justify-content: space-around;
  }
  .section-rule {
    max-width: 1000px;
    margin: 0 auto 50px;
  }
  .section-rule h2 {
    font-size: 3.6rem;
    text-align: center;
    margin: 0 0 40px;
  }
  .section-rule img {
    max-width: 100%;
    vertical-align: bottom;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 40px;
  }
  .section-rule p {
    font-size: 1.8rem;
    margin: 0 0 50px;
  }
  .section-rule .rule-ban {
    font-size: 1.8rem;
    margin: 0 0 40px;
  }
  .section-rule .rule-ban h3 {
    margin-bottom: 30px;
  }
  .section-rule .rule-ban p {
    margin-bottom: 20px;
  }
  .section-rule .rule-ban .ban-list {
    padding: 5px 25px;
  }
  .section-rule .rule-ban .ban-list li {
    flex-basis: 25%;
    padding: 10px 0 10px;
  }
  .section-rule .rule-note {
    font-size: 1.8rem;
    margin: 0;
  }
  .section-rule .rule-note h3 {
    margin-bottom: 30px;
  }
  .section-rule .rule-note .note-list li {
    padding: 7.5px 25px;
  }
  .section-rule .rule-note .note-list li p {
    padding: 0;
  }
  .section-rule .rule-note .note-list li:first-child {
    padding-top: 15px;
  }
  .section-rule .rule-note .note-list li:last-child {
    padding-bottom: 15px;
  }
  .section-faq {
    font-size: 1.8rem;
    max-width: 1000px;
    margin: 0 auto 50px;
  }
  .section-faq h2 {
    margin: 0 0 50px;
    font-size: 3.6rem;
  }
  .section-induce {
    max-width: 1000px;
    text-align: center;
    margin: 0 auto 120px;
  }
  .section-induce strong {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .section-induce .button {
    margin-top: 30px;
  }
}/*# sourceMappingURL=user_guide.css.map */