/* ↓↓↓ Cancellation ↓↓↓ */
/* ↑↑↑ Cancellation ↑↑↑ */

/* ↓↓↓ top_read ↓↓↓ */
.top_read {
  display: block;
  width: 100%;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .top_read {
    margin-bottom: 40px;
  }
}

.top_read .speech {
  width: 465px;
  height: 43px;
  margin: 0 auto;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
  background-color: #f4f6ff;
  border-radius: 35px;
  display: grid;
  place-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .top_read .speech {
    width: 297px;
    height: 65px;
    line-height: 1.47;
    border-radius: 40px;
    text-align: center;
  }
}

.top_read .speech::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 12px solid #f4f6ff;
  border-bottom: 0;
}

.top_read .ttl {
  width: fit-content;
  margin: 25px auto 0;
  padding: 0 25px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  color: #2b52e0;
  display: block;
  position: relative;
}

@media (max-width: 767px) {
  .top_read .ttl {
    font-size: 20px;
  }
}

.top_read .ttl::before {
  content: '';
  position: absolute;
  top: 43%;
  left: 0;
  width: 10px;
  height: 2px;
  background-color: #2b52e0;
}

.top_read .ttl::after {
  content: '';
  position: absolute;
  top: 43%;
  right: 0;
  width: 10px;
  height: 2px;
  background-color: #2b52e0;
}

/* ↑↑↑ top_read ↑↑↑ */

/* ↓↓↓ accordion-box ↓↓↓ */
.accordion-box {
  display: block;
  width: 100%;
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .accordion-box {
    margin-bottom: 40px;
  }
}

.accordion-box .ttl {
  padding-left: 12px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  color: #2b52e0;
  display: block;
  position: relative;
}

@media (max-width: 767px) {
  .accordion-box .ttl {
    font-size: 20px;
  }
}

.accordion-box .ttl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 2px;
  height: 24px;
  background-color: #2b52e0;
}

.accordion-list {
  margin-top: 24px;
  width: 100%;
}

@media (max-width: 767px) {
  .accordion-list {
    margin-top: 16px;
  }
}

.accordion-item {
  margin-bottom: 8px;
  width: 100%;
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-item .question {
  padding: 13px 56px 10px 43px;
  width: 100%;
  border: 1px solid #2b52e0;
  position: relative;
  cursor: pointer;
}

.accordion-item .question::before {
  content: 'Q';
  display: grid;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 8px;
  width: 27px;
  height: 27px;
  font-size: 18px;
  font-weight: 700;
  color: #2b52e0;
}

.accordion-item .question:after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  background: url(../images/faq/icon-accordion-arrow.svg) no-repeat;
  transition: rotate 200ms ease;
}

.accordion-item.-active .question:after {
  rotate: 180deg;
}

.accordion-item .question .text {
  font-size: 16px;
  letter-spacing: 0.09em;
  text-align: justify;
  word-break: break-all;
}

@media (max-width: 767px) {
  .accordion-item .question .text {
    font-size: 14px;
  }
}

.accordion-item .answer {
  padding: 13px 16px 10px 43px;
  width: 100%;
  background-color: #f4f6ff;
  position: relative;
  cursor: pointer;
  display: none;
}

.accordion-item .answer::after {
  content: 'A';
  display: grid;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 8px;
  width: 27px;
  height: 27px;
  font-size: 18px;
  font-weight: 700;
  color: #2b52e0;
}

.accordion-item .answer .text {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: justify;
  word-break: break-all;
}

.accordion-item .answer .text + .text {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .accordion-item .answer .text {
    font-size: 14px;
  }
}

.accordion-item .answer .text .-bold {
  font-weight: 700;
}

.accordion-item .answer .text-link {
  color: #000;
  text-decoration: 1px underline #000;
  transition: opacity 300ms ease;
}

@media (min-width: 768px) {
  .accordion-item .answer .text-link:hover {
    opacity: 0.6;
  }
}

/* ↑↑↑ accordion-box ↑↑↑ */

/* ↓↓↓ linkbtn-back ↓↓↓ */
.linkbtn-back {
  width: 450px;
  height: 67px;
  margin: 40px auto 0;
  display: grid;
  place-content: center;
  background-color: #ff5670;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  position: relative;
  transition: opacity 300ms 0s ease;
}

@media (min-width: 768px) {
  .linkbtn-back:hover {
    opacity: 0.7;
    color: #fff;
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .linkbtn-back {
    width: 297px;
    height: 75px;
    margin: 16px auto 0;
    text-decoration: none;
    color: #fff;
    text-align: center;
    line-height: 1.39;
  }
}

.linkbtn-back:visited,
.linkbtn-back:link {
  color: #fff;
  text-decoration: none;
}

.linkbtn-back::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  translate: 0 -50%;
  width: 11px;
  height: 19px;
  background: url(../images/top/common-icon-link-arrow.svg) no-repeat;
  background-size: contain;
  rotate: 180deg;
}

/* ↑↑↑ linkbtn-back ↑↑↑ */