@charset "UTF-8";

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


html {
  user-select: none; /* CSS3 */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Safari、Chromeなど */
  font-size: 100%;}
ul li{
  text-decoration: none;
list-style: none;
/* display: block; */
}
li{
list-style: none;
}

a{
  /* display: block; */
  width: 100%;
  color: #333333;
  transition: .3s;
  text-decoration: none;
}

p{
  margin: 0;
}
a:hover{
  cursor: pointer;
  opacity: .7;
  transition: .3s; 
}

/*大きさは％やvwを使う*/
img {
  max-width: 100%;
vertical-align: bottom;}

body{
  -webkit-text-size-adjust: none;
  text-size-adjust: none;}
figure{margin: 0;}
*,*::before,*::after{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;}


body{
  -webkit-appearance: none;
}

body.noscroll{
  overflow: hidden;
}

a:hover{
  cursor: pointer;
  transition: .3s;
  opacity: 0.7;
}

/* =======================================
  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;
  /* 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 #39A79C;
  padding-bottom: 9px;
  width: 100%;
}

.faq__row--answer {
  padding-bottom: 20px;
  margin-bottom: 17px;
  /* border-bottom: 1px solid #ddd; */
}
.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;
  }
}