/* CSS Document */
.qa-headlink-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 30px;
  gap: 0 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

.qa-headlink-wrap .qa-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  border: 2px solid #009fe6;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  margin: 10px 0;
  letter-spacing: -0.035em;
}

.qa-headlink-wrap .qa-link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #009fe6;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -6px;
}

.qa-headlink-wrap .qa-link:hover {
  background: #009fe6;
  color: #fff;
}

.qa-headlink-wrap .qa-link:hover:after {
  border-color: transparent transparent transparent #fff;
}

@media only screen and (max-width: 979px) {
  .qa-headlink-wrap {
    position: relative;
    width: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 0 0;
  }
  .qa-headlink-wrap .qa-link {
    width: 100%;
    font-size: 1.6rem;
  }
  .qa-headlink-wrap .qa-link::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #009fe6;
    position: absolute;
    top: 50%;
    right: 0.7em;
    margin-top: -6px;
  }
}

@media only screen and (max-width: 480px) {
  .qa-headlink-wrap {
    position: relative;
    width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 0 0;
  }
  .qa-headlink-wrap .qa-link {
    width: 100%;
    padding: 15px 20px 15px 10px;
    font-size: 1.4rem;
  }
  .qa-headlink-wrap .qa-link::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #009fe6;
    position: absolute;
    top: 50%;
    right: 0.5em;
    margin-top: -6px;
  }
}

section.accordion {
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 20px;
}

.qa-toggle {
  display: none;
}

.qa-label {
  position: relative;
  padding: 1em 2em 1em 1em;
  display: block;
  color: #222;
  border-bottom: 1px dotted #009fe6;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.qa-label:hover {
  color: #009fe6;
}

.qa-label span::before {
  position: relative;
  content: url(../img/icon/qa_q.png);
  display: inline-block;
  vertical-align: middle;
  padding-right: 3px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  top: 0;
  left: 0;
}

.qa-label::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #009fe6;
  border-right: 2px solid #009fe6;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc( 50% - 3px);
  right: 20px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.qa-label,
.qa-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.qa-content {
  height: 0;
  padding: 0 20px;
  overflow: hidden;
}

.qa-toggle:checked + .qa-label + .qa-content {
  height: auto;
  padding: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.qa-toggle:checked + .qa-label::before {
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
}

@media screen and (max-width: 768px) {
  .qa-label {
    position: relative;
    padding: 1em 2em 1em 1.5em;
    display: block;
    text-align: left;
  }
  .qa-label span::before {
    position: absolute;
    content: url(../img/icon/qa_q.png);
    display: inline-block;
    vertical-align: middle;
    padding-right: 3px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    top: 0;
    left: -20px;
  }
}

.qa-detail dl {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.qa-detail dl:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.qa-detail dt, .qa-detail dd {
  font-size: 1.75rem;
}

.qa-detail dt {
  width: 4.5em;
  font-weight: bold;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.qa-detail dl:nth-child(2n) dt {
  color: #3891b9;
  text-align: right;
}

.qa-detail dd.comment1 {
  position: relative;
  background-color: #f0f0f0;
  width: calc(100% - 4.5em);
  max-width: 560px;
  text-align: justify;
  padding: 1em;
  border-radius: 7px;
  border-bottom-left-radius: 3px;
  z-index: 1;
}

.qa-detail dd.comment1::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid #f0f0f0;
  border-left: 0;
  bottom: 3px;
  left: -8px;
  margin-top: -6px;
  z-index: 2;
}

.qa-detail dd.comment2 {
  position: relative;
  background-color: #3891b9;
  width: calc(100% - 4.5em);
  max-width: 560px;
  text-align: justify;
  padding: 1em;
  border-radius: 7px;
  border-bottom-right-radius: 3px;
  z-index: 1;
  color: #fff;
}

.qa-detail dd.comment2::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #3891b9;
  border-right: 0;
  bottom: 3px;
  right: -8px;
  margin-top: -6px;
  z-index: 2;
}

.qa-guide {
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: justify;
  padding: 20px;
  margin: 20px auto 30px;
  border: 3px solid #009fe6;
  border-radius: 10px;
  font-size: 1.75rem;
}

.qa-guide::before {
  position: absolute;
  content: url(../img/icon/qa_a.png);
  display: inline-block;
  vertical-align: middle;
  padding-right: 3px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  top: -25px;
  left: -25px;
}

.qa-spacer {
  height: 60px;
}

.ch-qanavi {
  width: 100%;
  padding: 60px 0 10px;
}

.ch-qanavi h2 {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: #333;
  font-size: 3rem;
  font-family: 'Noto Sans JP', sans-serif;
}

.ch-qanavi h2 span {
  color: #a8cfe7;
  font-size: 1.8rem;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .ch-qanavi {
    display: block;
    padding: 60px 10px 10px 10px;
  }
  .ch-qanavi h2 {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

.qa-backtotop {
  display: block;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: right;
  font-weight: 600;
}

.qa-backtotop a {
  color: #009fe6;
  text-decoration: none;
}

.qa-backtotop a:hover {
  color: #3891b9;
  text-decoration: underline;
}
/*# sourceMappingURL=qa.css.map */