@charset "UTF-8";
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* font-size */
/* ============================================ */
/* qa */
/* ============================================ */
.qa-list {
  margin-top: 48px;
  border-top: 1px solid #aaa;
}
@media all and (max-width: 896px) {
  .qa-list {
    margin-top: 32px;
  }
}
.qa-list__item {
  border-bottom: 1px solid #aaa;
}
.qa-acc.is-opened .qa-acc__mark::after {
  rotate: 0deg;
}
.qa-acc__trigger {
  cursor: pointer;
  width: 100%;
  display: flex;
  padding: 20px 0;
  position: relative;
}
@media all and (max-width: 896px) {
  .qa-acc__trigger {
    padding: 16px 0;
  }
}
.qa-acc__trigger:focus-visible {
  outline: 2px solid #000;
}
.qa-acc__trigger:focus:not(:focus-visible) {
  outline: none;
}
.qa-acc__q {
  width: 100%;
  max-width: 1200px;
  padding-right: calc(60px + 8cqw);
  display: flex;
  align-items: center;
  gap: 4cqw;
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .qa-acc__q {
    padding-right: calc(34px + 4cqw);
  }
}
.qa-acc__q__icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  background: #D63B50;
}
@media all and (max-width: 896px) {
  .qa-acc__q__icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
.qa-acc__q__txt {
  flex-grow: 1;
  font-size: clamp(1.125rem, 0.0197rem + 1.9737vw, 1.5rem);
}
@media all and (max-width: 896px) {
  .qa-acc__q__txt {
    font-size: clamp(0.9375rem, 0.7212rem + 0.7212vw, 1.125rem);
  }
}
.qa-acc__mark {
  display: block;
  width: 60px;
  height: 60px;
  background: #c6c7c7;
  position: absolute;
  top: 50%;
  right: 4cqw;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .qa-acc__mark {
    width: 34px;
    height: 34px;
    right: 0;
  }
}
.qa-acc__mark::before, .qa-acc__mark::after {
  content: "";
  display: block;
  width: 34px;
  height: 5px;
  background: #231815;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: rotate 0.3s ease-out;
}
@media all and (max-width: 896px) {
  .qa-acc__mark::before, .qa-acc__mark::after {
    width: 20px;
    height: 3px;
  }
}
.qa-acc__mark::after {
  rotate: -90deg;
}
.qa-acc__contents {
  overflow: hidden;
}
.qa-acc__contents[hidden] {
  display: block;
  visibility: hidden;
}
.qa-acc__contents:not[hidden] {
  visibility: visible;
}
.qa-acc__a {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 4cqw;
  /* __contentsにpaddingを付けると崩れるため */
  padding-right: calc(60px + 8cqw);
  padding-bottom: 20px;
}
@media all and (max-width: 896px) {
  .qa-acc__a {
    padding-right: calc(34px + 4cqw);
    padding-bottom: 16px;
  }
}
.qa-acc__a__icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  background: #0068b6;
}
@media all and (max-width: 896px) {
  .qa-acc__a__icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
.qa-acc__a__block {
  flex-grow: 1;
}
.qa-acc__a__txt {
  font-size: clamp(1.125rem, 0.0197rem + 1.9737vw, 1.5rem);
  line-height: 1.75;
}
@media all and (max-width: 896px) {
  .qa-acc__a__txt {
    font-size: clamp(0.9375rem, 0.7212rem + 0.7212vw, 1.125rem);
  }
}
.qa-acc__a__txt a {
  color: #0068b6;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.qa-acc__a__txt + .qa-acc__a__txt {
  margin-top: 12px;
}
@media all and (max-width: 896px) {
  .qa-acc__a__txt + .qa-acc__a__txt {
    margin-top: 8px;
  }
}