.content-box .merit-block {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .content-box .merit-block {
    flex-direction: column;
    column-gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 25px;
  }
}

.content-box .merit-block:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}

.content-box .merit-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../images/bookmarklist/border-beside.png) repeat-x;
}

.content-box .merit-block:last-of-type:after {
  display: none;
}

.merit-block .text-wrap {
  width: 400px;
}

@media (max-width: 767px) {
  .merit-block .text-wrap {
    width: 100%;
  }
}

.merit-block .text-wrap .sub-ttl {
  display: flex;
  column-gap: 8px;
}

.sub-ttl_img {
  width: 28px;
  height: 28px;
}

.merit-block .text-wrap .sub-ttl_text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
}

.merit-block .text-wrap .text {
  margin-top: 16px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .merit-block .text-wrap .text {
    width: 100%;
    font-size: 14px;
  }
}

.merit-block .merit-img {
  width: 318px;
  height: max-content;
}

@media (max-width: 767px) {
  .merit-block .merit-img {
    margin-top: 24px;
    width: 100%;
  }

  .merit-block .merit-img img {
    width: 100%;
  }
}

.merit-block .search-list {
  width: 287px;
}

@media (max-width: 767px) {
  .merit-block .search-list {
    margin: 24px auto 0;
  }
}

.search-list .search-btn {
  width: 100%;
  height: 37px;
  display: grid;
  place-content: center;
  background-color: #ff5670;
  border-radius: 21px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: opacity 300ms ease;
}

@media (min-width: 768px) {
  .search-list .search-btn:hover {
    opacity: 0.7;
  }
}

.search-list .search-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 22px;
  translate: 0 -50%;
  width: 8px;
  height: 13px;
  background: url(../images/bookmarklist/search-btn-arrow.svg) no-repeat;
  background-size: contain;
}

.search-btn + .search-btn {
  margin-top: 8px;
}

.content-box .notes {
  display: block;
  width: fit-content;
  padding-left: 29px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .content-box .notes {
    line-height: 2;
    text-align: justify;
    word-break: break-all;
  }
}

.content-box .notes .-bold {
  font-weight: 700;
}

.content-box .notes::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 21px;
  height: 21px;
  background: url(../images/web_mendan/icon-notes.svg) no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .content-box .notes::before {
    top: 3px;
    translate: 0 0;
  }
}

.content-box .attention {
  font-size: 12px;
}

.content-box .notes + .attention {
  margin-top: 16px;
}

/* ↑↑↑ content-box ↑↑↑ */

/* ↓↓↓ step-block ↓↓↓ */
.step-block {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .step-block {
    margin-top: 24px;
  }
}

.step-block .step-list {
  margin-top: 28px;
  padding: 32px 32px 32px 116px;
  background-color: #f4f6ff;
  border-radius: 24px;
  position: relative;
}

@media (max-width: 767px) {
  .step-block .step-list {
    margin-top: 20px;
    padding: 24px 24px 24px 66px;
  }
}

.step-block .step-list::before {
  content: '';
  position: absolute;
  top: 107px;
  left: 59px;
  width: 2px;
  height: calc(100% - 62px);
  background: url(../images/web_mendan/border-vertical.png) repeat-y;
  z-index: 1;
}

@media (max-width: 767px) {
  .step-block .step-list::before {
    top: 70px;
    left: 36px;
    height: calc(100% - 40px);
  }
}

.step-block .step-list:last-of-type:before {
  display: none;
}

.step-block .step-list + .step-list {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .step-block .step-list + .step-list {
    margin-top: 16px;
  }
}

.step-block .step-list .number {
  position: absolute;
  top: 32px;
  left: 24px;
  width: 68px;
}

@media (max-width: 767px) {
  .step-block .step-list .number {
    top: 24px;
    left: 16px;
    width: 40px;
  }
}

.step-block .step-list .time {
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background-color: #2b52e0;
  border-radius: 24px;
  width: max-content;
}

@media (max-width: 767px) {
  .step-block .step-list .time {
    padding: 2px 10px;
  }
}

.step-block .step-list .step-list_ttl {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #2b52e0;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .step-block .step-list .step-list_ttl {
    margin-top: 8px;
    font-size: 16px;
    text-align: justify;
    word-break: break-all;
  }
}

.step-block .step-list .text {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
  word-break: break-all;
}
/* ↑↑↑ step-block ↑↑↑ */

/* ↓↓↓ check-block ↓↓↓ */

.check-block .speech {
  width: 465px;
  height: 43px;
  margin: 40px auto 0;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  background-color: #2b52e0;
  border-radius: 35px;
  display: grid;
  place-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .check-block .speech {
    width: 297px;
    margin: 20px auto 0;
  }
}

.check-block .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 #2b52e0;
  border-bottom: 0;
}

.check-block .content {
  margin-top: 36px;
  display: flex;
  column-gap: 16px;
}

@media (max-width: 767px) {
  .check-block .content {
    margin-top: 20px;
    display: grid;
  }
}

.check-block .text-wrap {
  width: 400px;
}

@media (max-width: 767px) {
  .check-block .text-wrap {
    width: 100%;
  }
}

.check-block .text-wrap .sub-ttl {
  display: flex;
  column-gap: 8px;
}

.check-block .text-wrap .sub-ttl_img {
  width: 28px;
  height: 28px;
}

.check-block .text-wrap .sub-ttl_text {
  font-size: 14px;
  width: 356px;
  line-height: 2;
}

@media (max-width: 767px) {
  .check-block .text-wrap .sub-ttl_text {
    width: calc(100% - 36px);
  }
}

.sub-ttl + .sub-ttl {
  margin-top: 16px;
}

.check-block .image {
  width: 318px;
  height: max-content;
}

@media (max-width: 767px) {
  .check-block .image {
    margin-top: 24px;
    width: 100%;
  }

  .check-block .image img {
    width: 100%;
  }
}

/* ↑↑↑ check-block ↑↑↑ */

/* ↓↓↓ linkbtn-back ↓↓↓ */
.linkbtn-back {
  width: 450px;
  height: 67px;
  margin: 40px auto 0;
  display: grid;
  place-content: center;
  background-color: #ff5670;
  border-radius: 34px;
  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;
    font-size: 16px; 
    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 ↑↑↑ */
