@charset "UTF-8";
.wht {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #000;
  margin: 0;
}
body img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}
body a {
  text-decoration: none;
}
body ul,
body li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body p {
  margin: 0;
  line-height: 160%;
}
@media (max-width: 750px) {
  body p {
    font-size: 3.2vw;
  }
}
body b {
  font-weight: 900;
}
body h1,
body h2 {
  margin: 0;
}
body h1 {
  font-size: 34px;
  letter-spacing: 1px;
}
@media (max-width: 750px) {
  body h1 {
    font-size: 5vw;
  }
}
body .cf:after {
  clear: both;
  overflow: hidden;
  content: "";
}
body .relative {
  position: relative;
}
body .absolute {
  position: absolute;
}
body .wrap {
  overflow: hidden;
}

.sectiontitle h1 {
  color: #000;
  text-align: center;
  border-bottom: solid 3px #a3222a;
  margin: 30px auto;
  padding-bottom: 10px;
  font-size: 2.4em;
}
@media (max-width: 750px) {
  .sectiontitle h1 {
    border-bottom: solid 1.5px #a3222a;
    margin: 15px auto;
    padding-bottom: 5px;
    font-size: 1.6em;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.none {
  display: none;
}

.faqpagewrap {
  margin: 200px 0 50px;
}
.faqpagewrap_inner {
  margin: 0 auto;
  max-width: 100%;
  width: 900px;
}
@media (max-width: 750px) {
  .faqpagewrap {
    margin: 70px 0 30px;
  }
  .faqpagewrap_inner {
    width: 90%;
  }
}

.menubtns {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 100%;
  width: 900px;
  padding: 30px 0;
}
@media (max-width: 750px) {
  .menubtns {
    display: flex;
    flex-wrap: wrap;
    width: 98%;
    padding: 15px 0;
  }
}

.menubtn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 1em;
  width: 160px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background-color: #a3222a;
  transition: 0.3s;
}
@media (max-width: 750px) {
  .menubtn a {
    padding: 0.7em 0.4em;
    width: 145px;
    color: #fff;
    font-size: 0.9em;
    font-weight: 700;
    background-color: #a3222a;
    transition: 0.3s;
    margin: 0.5em;
  }
}

.menubtn a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
@media (max-width: 750px) {
  .menubtn a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
}

.menubtn a:hover {
  text-decoration: none;
  background-color: #c26d72;
}

.faqall {
  margin: 0 auto;
  max-width: 100%;
  width: 900px;
  padding: 30px 0;
}
.faqall li:not(:last-child) {
  padding-bottom: 50px;
}
.faqall_tt {
  text-align: center;
  padding-bottom: 20px;
}
.faqall_tt h2 {
  color: #4d4d4d;
  font-size: 30px;
}
@media (max-width: 750px) {
  .faqall {
    width: 95%;
    padding: 15px 0;
  }
  .faqall li:not(:last-child) {
    padding-bottom: 25px;
  }
  .faqall_tt {
    padding-bottom: 10px;
  }
  .faqall_tt h2 {
    font-size: 1.5em;
  }
}

.FAQarea {
  margin: 0 auto;
  width: 900px;
  max-width: 100%;
}
.FAQarea .toggle {
  display: none;
}
.FAQarea .faq {
  position: relative;
  margin-bottom: 1.5rem;
}
.FAQarea .question,
.FAQarea .anser {
  transform: translateZ(0);
  transition: all 0.3s;
}
.FAQarea .question {
  background: #a3222a;
  padding: 0.7rem 0.3em;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.FAQarea .question .iconq {
  width: 5%;
}
.FAQarea .question .qtxt {
  font-size: 20px;
  font-weight: bold;
  width: 85%;
}
.FAQarea .question .arrow {
  width: 3%;
  transform: rotate(180deg);
}
.FAQarea .anser {
  max-height: 0;
  overflow: hidden;
}
.FAQarea .anser_inner {
  margin: 0;
  padding: 0.7rem 0.3em;
  line-height: 1.8;
  display: flex;
  justify-content: space-around;
}
.FAQarea .anser_inner .icona {
  width: 5%;
}
.FAQarea .anser_inner .atxt {
  font-size: 19px;
  width: 90%;
}
.FAQarea .toggle:checked + .question + .anser {
  max-height: 500px;
  transition: all 1.5s;
}
@media (max-width: 750px) {
  .FAQarea {
    width: 95%;
  }
  .FAQarea .faq {
    margin-bottom: 1rem;
  }
  .FAQarea .question {
    padding: 0.7rem 0.3em;
  }
  .FAQarea .question .iconq {
    width: 8%;
  }
  .FAQarea .question .qtxt {
    font-size: 1em;
    width: 85%;
  }
  .FAQarea .question .arrow {
    width: 4%;
  }
  .FAQarea .anser_inner {
    padding: 0.7rem 0.3em;
  }
  .FAQarea .anser_inner .icona {
    width: 8%;
  }
  .FAQarea .anser_inner .atxt {
    font-size: 1em;
    width: 90%;
  }
}

.toggle:checked + .question .arrow {
  transform: rotate(0deg);
  transition: all 0.5s;
}/*# sourceMappingURL=style.css.map */