@charset "UTF-8";

*{
  box-sizing: border-box;
  /* font-family: 'Noto Sans JP', sans-serif; */
}

.menu {
  width: 41px;
  position: fixed;
  top: 37.8%;
  right: 1.2%;
  text-align: center;
  color: #000;
  font-size: 15px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
}


/* =======================================
  FAQ
======================================= */
h2.faqtitle{
  font-size: 30px;
  color: #000000;
  text-align: center;
  margin-bottom: 57px;
  margin-top: 50px;
}
.faq {
  max-width: 900px;
  width: 92%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom:120px;
  /* css-wipeではスタイリングなし */
}

.faq > *:last-child {
  margin-bottom: 50px;
}

.faq__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: content-box;
  min-height: 45px;
  /* padding-left: 60px; */
}

.faq__row--question {
  margin-bottom: 9px;
  font-size: 1.125rem;
  /* font-weight: bold; */
}
.faq__row--questionlast{
  margin-bottom: 20px;
}
.faq__question-text {
  font-size: 18px;
  letter-spacing: 0.05em;
  /* padding-top: 12px; */
  /* color: #39A79C; */
  border-bottom: 1px solid #000;
  padding-bottom: 9px;
  width: 100%;
  font-weight:bold;
}

.faq__row--answer {
  padding-left:65px;
  padding-bottom: 20px;
  margin-bottom: 50px;
  /* border-bottom: 1px solid #ddd; */
}
.faq__row--answer::before {
  font-family: 'Oswald', sans-serif;
  content:'A.';
  font-size:700%;
  font-weight:bold;
  color:#eee;
  position:absolute;
  top:0;
  left:0;
  line-height:0.8;
}
.faq__answer-body {
  /* padding-top: 12px; */
}

.faq__answer-body > *:last-child {
  margin-bottom: 0;
}

.faq__answer-text {
  /* margin-bottom: 20px; */
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #000000;
}
.faq__answer-text a {
  display:inline-block;
  width:initial;
  color:#3D9268;
}
@media (max-width: 768px) {
  h2.faqtitle{
    font-size: 26px;
    font-weight: normal;
    margin-top: 55px;
    margin-bottom: 47px;
  }
  .faq__row--answer{
    margin-bottom: 14px;
  }
}