/* ↓↓↓ top_read ↓↓↓ */
.top_read {
  display: block;
  width: 100%;
}

.top_read .speech {
  width: 465px;
  height: 43px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: bold;
  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.1em;
  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 .text {
  margin-top: 36px;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.625;
  text-align: center;
  word-break: keep-all;
}

.top_read .notes {
  display: block;
  width: fit-content;
  margin: 17px auto 0;
  padding-left: 29px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}

@media (max-width: 767px) {
  .top_read .notes {
    line-height: 2;
    text-align: justify;
    word-break: break-all;
  }
}

.top_read .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) {
  .top_read .notes::before {
    top: 3px;
    translate: 0 0;
  }
}

/* ↑↑↑ top_read ↑↑↑ */

/* ↓↓↓ anchor-box ↓↓↓ */
.anchor-box {
  margin-top: 41px;
  padding: 72px 48px 0;
  background-color: #f4f6ff;
  border-radius: 24px;
  position: relative;
}

@media (max-width: 767px) {
  .anchor-box {
    margin-top: 32px;
    padding: 60px 24px 0;
  }
}

.anchor-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 120px;
  height: 39px;
  border-radius: 0 0 24px 24px;
  display: grid;
  place-content: center;
  background-color: #2b52e0;
}

@media (max-width: 767px) {
  .anchor-box::before {
    width: 112px;
    height: 36px;
  }
}

.anchor-box .ind {
  position: absolute;
  top: 12px;
  left: 50%;
  translate: -50% 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

@media (max-width: 767px) {
  .anchor-box .ind {
    top: 11px;
    font-size: 14px;
  }
}

.anchor-box button {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 68px;
  height: 24px;
  display: flex;
  align-items: center;
  border: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

@media (max-width: 767px) {
  .anchor-box button {
    top: 0;
    right: 0;
    width: 88px;
    height: 44px;
    padding: 0 10px;
  }
}

.anchor-box button .txt {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.anchor-box button .txt span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #ff5670;
  display: grid;
  place-content: center;
  transition: translate 300ms 0s ease;
}

.anchor-box button .txt .open {
  translate: 0 0;
}

.anchor-box.-open button .txt .open {
  translate: 0 100%;
}

.anchor-box button .txt .close {
  translate: 0 100%;
}

.anchor-box.-open button .txt .close {
  translate: 0 0;
}

.anchor-box button img {
  display: block;
  width: 24px;
  rotate: 180deg;
  transition: rotate 300ms 0s ease;
}

.anchor-box.-open button img {
  rotate: 360deg;
}

.anchor-list {
  /* display: none; */
  padding-bottom: 48px;
}

@media (max-width: 767px) {
  .anchor-list {
    padding-bottom: 40px;
  }
}

.anchor-list li {
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.anchor-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.anchor-list li:first-of-type {
  padding-top: 0;
}

.anchor-list li:last-of-type {
  padding-bottom: 0;
}

.anchor-list li:last-of-type::after {
  background: unset;
}

.anchor-list .head {
  display: block;
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.064em;
  line-height: 1;
  color: #000;
  text-decoration: none;
  transition: opacity 300ms 0s ease;

  @media (max-width: 768px) {
    line-height: 1.4;
  }
}

.anchor-list li .anker {
  display: block;
  width: fit-content;
  margin-top: 20px;
  margin-left: 16px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
  transition: opacity 300ms 0s ease;
}

@media (min-width: 768px) {

  .anchor-list li .anker:hover,
  .anchor-list a.head:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.anchor-list li .anker + .anker {
  margin-top: 16px;
}

/* ↑↑↑ anchor-box ↑↑↑ */

/* ↓↓↓ content-box ↓↓↓ */
.content-box {
  margin-top: 80px;
}

@media (max-width: 767px) {
  .content-box {
    margin-top: 40px;
  }
}

.content-box .ttl {
  margin-bottom: 40px;
  padding-left: 12px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #2b52e0;
  position: relative;
}

.content-box .ttl.line3 {
  line-height: 1.5;
}

@media (max-width: 767px) {
  .content-box .ttl {
    margin-bottom: 32px;
    font-size: 20px;
    word-break: keep-all;
  }

  .content-box .ttl.line2 {
    line-height: 1.5;
  }
}

.content-box .ttl::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 2px;
  height: 26px;
  background-color: #2b52e0;
}

.content-box .ttl.line3::before {
  top: -5px;
  height: 73px;
}

@media (max-width: 767px) {
  .content-box .ttl::before {
    height: 24px;
  }

  .content-box .ttl.spline2::before {
    top: -2px;
    height: 43px;
  }

  .content-box .ttl.line2::before {
    top: 5px;
    height: 50px;
  }

  .content-box .ttl.line3::before {
    top: 5px;
    height: 85px;
  }
}

.content-box .ttl-block .text {
  font-size: 16px;
  margin-bottom: 40px;
  text-align: justify;
  word-break: break-all;
}

@media (min-width: 767px) {
  .content-box .ttl-block .text {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.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: 100%;
}

@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 {
  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 .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;
}

@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 ↑↑↑ */

/* ↓↓↓ merit-img_block ↓↓↓ */
.merit-img {
  width: 100%;
}

/* ↑↑↑ merit-img_block ↑↑↑ */

/* ↓↓↓ step-block ↓↓↓ */
.step-block {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .step-block {
    margin-top: 24px;
  }
}

.step-block .speech {
  width: 465px;
  height: 43px;
  margin: 0 auto;
  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) {
  .step-block .speech {
    width: 297px;
  }
}

.step-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;
}

.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 .step-list_ttl {
  font-size: 20px;
  font-weight: 700;
  color: #2b52e0;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .step-block .step-list .step-list_ttl {
    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: 2;
  text-align: justify;
  word-break: break-all;
}

.step-block .step01-image01 {
  display: block;
  margin: 16px auto 32px;
  width: 482px;
  height: auto;
}

@media (max-width: 767px) {
  .step-block .step01-image01 {
    margin: 16px auto 24px;
    width: 100%;
    height: max-content;
  }
}

.step-block .step-list_subttl {
  margin: 32px auto 0;
  width: max-content;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #2b52e0;
}

@media (max-width: 767px) {
  .step-block .step-list_subttl {
    margin: 32px auto 0;
    font-size: 14px;
    font-weight: 700;
    color: #2b52e0;
    text-align: center;
  }
}

.step-block .step-list_subttl::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: -23px;
  width: 13px;
  height: 27px;
  background: url(../images/scout/line-deco-l.svg) no-repeat;
  background-size: 100%;
}

.step-block .step-list_subttl::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: -23px;
  width: 13px;
  height: 27px;
  background: url(../images/scout/line-deco-r.svg) no-repeat;
  background-size: 100%;
}

.step-block .app-block {
  margin-top: 16px;
  display: flex;
  column-gap: 12px;
}

@media (max-width: 767px) {
  .step-block .app-block {
    display: grid;
    row-gap: 16px;
    width: 100%;
  }
}

.step-block .app-block .content:nth-of-type(1) {
  width: 274px;
}

.step-block .app-block .content:nth-of-type(2) {
  width: 299px;
}

@media (max-width: 767px) {

  .step-block .app-block .content:nth-of-type(1),
  .step-block .app-block .content:nth-of-type(2) {
    width: 100%;
  }
}

.app-block .content .step01-app01 {
  display: block;
  width: 274px;
  height: 252px;
}

@media (max-width: 767px) {
  .app-block .content .step01-app01 {
    display: block;
    width: 100%;
    height: max-content;
  }

  .app-block .content .step01-app01 img {
    width: 100%;
    height: 100%;
  }
}

.app-block .content .app-text {
  margin-top: 25px;
  width: 274px;
  font-size: 14px;
  text-align: justify;
  word-break: break-all;
}

@media (max-width: 767px) {
  .app-block .content .app-text {
    margin-top: 16px;
    width: 100%;
    font-size: 14px;
  }
}

.app-block .content:nth-of-type(2) .app-text {
  margin: 25px 0 0 auto;
}

@media (max-width: 767px) {
  .app-block .content:nth-of-type(2) .app-text {
    margin: 16px 0 0 0;
  }
}

.app-block .content .step01-app02 {
  display: block;
  width: 299px;
  height: 252px;
}

@media (max-width: 767px) {
  .app-block .content .step01-app02 {
    display: block;
    width: 100%;
    height: max-content;
  }
}

.app-block .content .step01-app02 img {
  width: 100%;
  height: 100%;
}

.step-block .step02-image {
  display: block;
  margin-top: 16px;
  width: 100%;
  height: 191px;
}

@media (max-width: 767px) {
  .step-block .step02-image {
    display: block;
    margin-top: 16px;
    width: 100%;
    height: max-content;
  }
}

.step-block .pr-block {
  margin-top: 16px;
}

.pr-block .content .pr-ttl-wrap {
  display: flex;
  column-gap: 16px;
}

@media (max-width: 767px) {
  .pr-block .content .pr-ttl-wrap {
    display: grid;
    row-gap: 8px;
  }
}

.step-link-btn {
  width: 287px;
  height: 37px;
  padding-top: 3px;
  background-color: #FF5670;
  margin: 16px auto 0;
  border-radius: 30px;
  display: grid;
  place-content: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  position: relative;
  transition: opacity 300ms ease;

  @media (max-width: 768px) {
    width: 225px;
  }

  &:hover {
    color: #fff;
    text-decoration: none;
  }

  @media (min-width: 769px) {
    &:hover {
      opacity: 0.7;
    }
  }

  &::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 22px;
    translate: 0 -50%;
    width: 8px;
    height: 13px;
    background: url(../images/entry/step-link-btn-arrow.svg)no-repeat;
    background-size: contain;
  }
	
	&:visited{
  color: #fff;
	}
}

.pr-ttl-wrap .num {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 31px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background-color: #2b52e0;
  border-radius: 24px;
}

@media (max-width: 767px) {
  .pr-ttl-wrap .num {
    width: 43px;
    height: 25px;
    line-height: 1;
    background-color: #2b52e0;
    border-radius: 24px;
  }
}

.pr-ttl-wrap .pr-ttl {
  font-size: 16px;
  font-weight: 700;
}

.pr-block .content .pr-text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  word-break: break-all;
}

.pr-block .content + .content {
  margin-top: 24px;
}

.step-block .intro-ttl {
  margin-top: 28px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 767px) {
  .step-block .intro-ttl {
    margin-top: 28px;
    font-size: 14px;
    text-align: justify;
    word-break: break-all;
  }
}

.step-block .step-list .step01-image02 {
  margin-top: 16px;
  display: block;
  width: 100%;
  height: 229px;
}

@media (max-width: 767px) {
  .step-block .step-list .step01-image02 {
    margin-top: 16px;
    height: max-content;
  }
}

.step-block .step-list .step02-image02 {
  margin-top: 16px;
  display: block;
  width: 100%;
  height: 174px;
}

@media (max-width: 767px) {
  .step-block .step-list .step02-image02 {
    margin-top: 16px;
    height: max-content;
  }
}

.step-block .step-list .step01-image03 {
  margin: 16px auto 0;
  display: block;
  width: 482px;
  height: 378px;
}

@media (max-width: 767px) {
  .step-block .step-list .step01-image03 {
    width: 100%;
    height: max-content;
  }
}

.step-block .step-list .step02-image03 {
  margin: 16px auto 0;
  display: block;
  width: 482px;
  height: 378px;
}

@media (max-width: 767px) {
  .step-block .step-list .step02-image03 {
    width: 100%;
    height: max-content;
  }
}

/* ↑↑↑ step-block ↑↑↑ */

/* ↓↓↓ entry-wrap ↓↓↓ */
.entry-wrap {
  width: 100%;
  margin-top: 60px;
  padding: 50px 40px 40px;
  position: relative;
  border: 1px solid #2B52E0;
  border-radius: 16px;

  @media (max-width: 768px) {
    padding: 60px 24px 32px;
  }

  .text {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 2;
    text-align: justify;
    word-break: break-all;

    @media (max-width: 768px) {
      line-height: 1.8;
    }
  }

  .note {
    margin-top: 8px;
    font-size: 12px;
    display: block;
  }
}

.entry-wrap + .entry-wrap {
  margin-top: 60px;

  @media (max-width: 768px) {
    margin-top: 45px;
  }
}

.entry-wrap .speech {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 465px;
  height: 43px;
  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;

  @media (max-width: 768px) {
    width: 297px;
    min-height: 43px;
    height: auto;
    padding: 10px 0;
    text-align: center;
    line-height: 1.5;
  }

  &::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;
  }
}

/* ↑↑↑ entry-wrap ↑↑↑ */

/* ↓↓↓ difference ↓↓↓ */
.difference {
  width: 100%;
  margin-top: 32px;
  position: relative;

  @media (max-width: 768px) {
    margin-top: 86px;
  }

  .catch {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 124px;
    aspect-ratio: 1/1;
    padding-top: 15px;
    background-color: #2B52E0;
    border-radius: 100%;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    display: grid;
    place-content: center;

    @media (max-width: 768px) {
      top: 0;
      left: 50%;
      translate: -50% -50%;
    }

    &::before {
      content: '';
      position: absolute;
      top: 25px;
      left: 50%;
      translate: -50% 0;
      width: 24px;
      aspect-ratio: 24/11;
      background: url(../images/entry/difference-catch-icon.svg)no-repeat;
      background-size: contain;
    }
  }

  .text {
    width: 685px;
    margin-left: auto;
    padding: 46px 40px 28px 102px;
    background-color: #F4F6FF;
    border-radius: 16px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 2;
    text-align: justify;
    word-break: break-all;

    @media (max-width: 768px) {
      width: 100%;
      padding: 86px 24px 32px;
    }
  }
}

/* ↑↑↑ difference ↑↑↑ */



.banner-block {
  margin-top: -16px;
}

.link-banner {
  width: 360px;
  height: 139px;
  padding: 16px 60px 16px 16px;
  background-color: #f4f6ff;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  transition: opacity 300ms 0s ease;
  text-decoration: none;
}

@media (max-width: 767px) {
  .link-banner {
    width: 315px;
    height: auto;
    padding: 16px 16px 44px 16px;
    text-decoration: none;
  }

  .link-banner:link {
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .link-banner:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

.link-banner::after {
  content: '';
  position: absolute;
  bottom: 26px;
  right: 26px;
  width: 24px;
  height: 24px;
  background: url(../images/web_mendan/icon-accordion-arrow.svg) no-repeat;
  rotate: -90deg;
}

@media (max-width: 767px) {
  .link-banner::after {
    bottom: 10px;
    right: 10px;
  }
}

.link-banner .image {
  width: 100px;
  margin: 0;
}

.link-banner .wrap {
  flex: 1;
  margin-left: 10px;
}


.link-banner .wrap .banner-ttl {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.57;
  color: #006bcd;
  margin: 0;
}


.link-banner .wrap .text {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.58;
  color: #000;
  text-align: justify;
  word-break: break-all;
}

@media (max-width: 767px) {
  .link-banner .wrap .text {
    width: 100%;
    margin-top: 8px;
  }
}

/* ↑↑↑ banner-block ↑↑↑ */

/* ↓↓↓ 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 ↑↑↑ */

/* ↓↓↓ app-box ↓↓↓ */
.app-box {
  width: 100%;
  height: 433px;
  margin-top: 80px;
  background-color: #f1f1f1;
  position: relative;
}

@media (max-width: 767px) {
  .app-box {
    height: 470px;
    margin-top: 48px;
  }
}

.app-box .ttl {
  padding-top: 32px;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.33;
  text-align: center;
}

@media (max-width: 767px) {
  .app-box .ttl {
    font-size: 18px;
    line-height: 1.56;
  }
}

.app-box .image01 {
  display: block;
  width: 292px;
  margin: 30px auto 0;
}

@media (max-width: 767px) {
  .app-box .image01 {
    width: 265px;
    margin: 16px auto 0;
  }
}

.app-box .qr-block {
  position: absolute;
  top: 135px;
  width: 164px;
}

@media (max-width: 767px) {
  .app-box .qr-block {
    top: unset;
    bottom: 32px;
    width: 120px;
  }
}

.app-box .qr-block.android {
  left: 40px;
}

@media (max-width: 767px) {
  .app-box .qr-block.android {
    left: 50%;
    translate: calc(-100% - 5px);
  }
}

.app-box .qr-block.ios {
  right: 40px;
}

@media (max-width: 767px) {
  .app-box .qr-block.ios {
    right: 50%;
    translate: calc(100% + 5px);
  }
}

.app-box .qr-block .cap {
  display: block;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1;
}

@media (max-width: 767px) {
  .app-box .qr-block .cap {
    font-size: 18px;
  }
}

.app-box .qr-block .qr-code {
  width: 150px;
  margin: 15px auto 0;
}

@media (max-width: 767px) {
  .app-box .qr-block .qr-code {
    display: none;
  }
}

.app-box .qr-block .bnr {
  display: block;
  width: 100%;
  margin: 16px auto 0;
  transition: opacity 300ms 0s ease;
}

@media (min-width: 768px) {
  .app-box .qr-block .bnr:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .app-box .qr-block .bnr {
    width: 120px;
    height: 35px;
    margin: 8px auto 0;
  }

  .app-box .qr-block .bnr img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

/* ↑↑↑ app-box ↑↑↑ */

.top_read .notes {
  display: block;
  width: fit-content;
  margin: 17px auto 0;
  padding-left: 29px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}

@media (max-width: 767px) {
  .top_read .notes {
    line-height: 2;
    text-align: justify;
    word-break: break-all;
  }
}

.top_read .notes::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 21px;
  height: 21px;
  background: url(../images/entry/icon-notes.svg) no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .top_read .notes::before {
    top: 3px;
    translate: 0 0;
  }
}