/* ===============================
   Q&Aページ
================================ */
.qa-side-main{
  margin-top:30%;
}
.qa-main p{
    font-weight: 700;
      color: #444444;
}

.qa-page,
.qa-page *{
    font-family:
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Yu Gothic UI",
    Meiryo,
    sans-serif !important;
}

.qa-side-main a{
  color: #fff;
}

.qa-page{
  background:#F5F2EA;
  padding:140px 20px 100px;
}

.support-layout{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:260px 1fr;
  gap:40px;
  align-items:flex-start;
}

/* sidebar */
.qa-side{
  position:sticky;
  top:90px;
}

.qa-side-main,
.qa-side-group{
  background:#fff;
  border-radius:20px;
  box-shadow:0 10px 28px rgba(70,50,20,.07);
  overflow:hidden;
  margin-bottom:18px;
}

.qa-side-main{
  padding:18px 20px;
  background:#01C8BD;
  color:#fff;
  font-weight:900;
}

.qa-side-group h3{
  margin:0;
  padding:16px 20px;
  background:#fffdf8;
  color:#242424;
  font-size:16px;
  font-weight:900;
  border-bottom:1px solid #eee;
}

.qa-side-group h3.active{
  color:#01C8BD;
}

.qa-side-group a{
  display:block;
  padding:13px 20px;
  color:#555;
  font-size:14px;
  font-weight:700;
  border-bottom:1px solid #eee;
  text-decoration:none;
}

.qa-side-group a:last-child{
  border-bottom:none;
}

.qa-side-group a:hover{
  color:#01C8BD;
}

/* main */
.qa-main{
  background:#fff;
  border-radius:36px;
  padding:60px;
  box-shadow:0 18px 45px rgba(96,70,32,.12);
}

.qa-label{
  display:inline-block;
  margin:0 0 12px;
  color:#01C8BD;
  font-size:14px;
  font-weight:900;
  letter-spacing:.1em;
}

.qa-main h1{
  margin:0 0 46px;
  font-size:40px;
  line-height:1.4;
  font-weight:900;
}

.qa-main h2{
  margin:50px 0 22px;
  padding-bottom:12px;
  color:#01C8BD;
  font-size:24px;
  font-weight:900;
  border-bottom:3px solid #01C8BD;
}

/* item */
.qa-item{
  background:#fffdf8;
  border:1px solid #e7ded2;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
}

.qa-question{
  list-style:none;
  cursor:pointer;
  display:grid;
  grid-template-columns:44px 1fr 28px;
  gap:14px;
  align-items:center;
  padding:20px 22px;
}

.qa-question::-webkit-details-marker{
  display:none;
}

.qa-question span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  background:#01C8BD;
  color:#fff;
  border-radius:50%;
  font-size:22px;
  font-weight:900;
}

.qa-question p{
  margin:0;
  font-size:17px;
  line-height:1.7;
  font-weight:900;
}

.qa-question b{
  color:#01C8BD;
  font-size:26px;
  font-weight:900;
  text-align:center;
}

.qa-item[open] .qa-question b{
  transform:rotate(45deg);
}

/* answer */
.qa-answer{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  padding:0 22px 24px;
}

.qa-answer > span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  background:#EE4848;
  color:#fff;
  border-radius:50%;
  font-size:22px;
  font-weight:900;
}

.qa-answer p{
  margin:0 0 12px;
  color:#555;
  font-size:15px;
  line-height:2;
  font-weight:700;
}

.qa-related{
  margin-top:14px!important;
  padding:12px 16px;
  background:#eefbf9;
  border-radius:12px;
}

.qa-related a{
  display:inline;
  color:#01C8BD;
  font-weight:900;
  text-decoration:underline;
}

/* images */
.qa-single-img,
.qa-img-box img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  background:#f7f4ec;
}

.qa-single-img{
  margin:18px 0 8px;
}

.qa-caption{
  font-size:13px!important;
  color:#777!important;
}

.qa-img-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin:20px 0;
}

.qa-img-row.large,
.qa-img-row.wide{
  grid-template-columns:repeat(2,1fr);
}

.qa-img-box{
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 8px 22px rgba(70,50,20,.06);
}

.qa-img-box p{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.7;
  text-align:center;
}

.qa-img-btn-row{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:20px;
  align-items:center;
  margin:20px 0;
}

.qa-btn{
  display:grid;
  place-items:center;
  min-height:54px;
  background:#01C8BD;
  color:#fff;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 5px 0 #00a79f;
}

/* responsive */
@media(max-width:1024px){
  .support-layout{
    grid-template-columns:1fr;
  }

  .qa-side{
    position:static;
  }

  .qa-main{
    padding:44px 30px;
  }
}

@media(max-width:640px){
  .qa-page{
    padding:80px 14px 70px;
  }

  .qa-main{
    padding:34px 20px;
    border-radius:26px;
  }

  .qa-main h1{
    font-size:30px;
  }

  .qa-main h2{
    font-size:21px;
  }

  .qa-question{
    grid-template-columns:38px 1fr 24px;
    padding:18px 16px;
  }

  .qa-question span,
  .qa-answer > span{
    width:38px;
    height:38px;
    font-size:19px;
  }

  .qa-question p{
    font-size:15px;
  }

  .qa-answer{
    grid-template-columns:38px 1fr;
    padding:0 16px 20px;
  }

  .qa-img-row,
  .qa-img-row.large,
  .qa-img-row.wide,
  .qa-img-btn-row{
    grid-template-columns:1fr;
  }
}
.qa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:54px;
  padding:14px 24px;
  background:#01C8BD;
  color:#fff;
  border:2px solid #01C8BD;
  border-radius:999px;
  font-size:15px;
  font-weight:900;
  line-height:1.4;
  text-align:center;
  text-decoration:none;
  box-shadow:0 5px 0 #00a79f;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  font-family:inherit;
  transition:.25s;
}

.qa-btn:hover{
  background:#fff;
  color:#01C8BD;
  transform:translateY(2px);
  box-shadow:0 3px 0 #00a79f;
}


.qa-btn:hover{
  background:#fff;
  color:#01C8BD;
  transform:translateY(2px);
  box-shadow:0 3px 0 #00a79f;
}
/* ==========================================
   設置説明画像だけ小さく表示
========================================== */

.qa-install-img{
  width:60%;
  max-width:420px;
  height:auto;
  display:block;
  margin:20px auto 10px;
  border-radius:16px;
}

@media (max-width:1024px){
  .qa-install-img{
    width:75%;
    max-width:380px;
  }
}

@media (max-width:640px){
  .qa-install-img{
    width:100%;
    max-width:280px;
  }
}