.media-content {
  display: flex;
  align-items: center;
  column-gap: 64px;
  padding: 0 64px;
}

@media screen and (max-width: 768px) {
  .media-content {
    flex-direction: column;
    gap: 32px 0;
    padding-inline: 0;
  }
}

.media-content:not(:first-child) {
  padding-top: 40px;
}

.media-content:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .media-content.media-content--wide-pt {
    align-items: flex-start;
    padding-top: 72px;
  }
}

.media-content--pb {
  padding-bottom: 40px;
}

@media screen and (min-width: 769px) {
  .media-content--reverse {
    flex-direction: row-reverse;
  }
}

.media-content__body {
  flex: 1;
}

.media-content__sub-img {
  width: fit-content;
  margin: 32px auto 0;
}

@media screen and (max-width: 768px) {
  .media-content__sub-img {
    width: 89%;
    margin-top: 20px;
  }
}

.media-content__ttl {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .media-content__ttl {
    font-size: 18px;
  }
}

.media-content__body * {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .media-content__img {
    width: 54%;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .media-content__img--wide {
    width: 81%;
  }
}

.list--disc {
  padding-left: 1em;
}

.list--disc li {
  list-style: disc;
}

.list--disc li + li {
  margin-top: 5px;
}

.list--notes:not(:first-child) {
  margin-top: 24px;
}

.list--notes li {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .list--notes li {
    font-size: 10px;
  }
}

.list--notes li::before {
  content: "※";
}

.list--notes li * {
  text-indent: 0;
}

.bg-color-box {
  padding: 32px;
  background: #F1F1F2;
}

.bg-color-box__ttl {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .bg-color-box__ttl {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) {
  .bg-color-box .list--notes{
    margin-top: 32px;
    text-align: center;
  }
}

.link-button {
  display: flex;
  align-items: center;
  column-gap: 8px;
  width: fit-content;
  margin: auto;
  padding: 16px 24px;
  background: #0242C0;
  border: 1px solid #0242C0;
  border-radius: 100vh;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

@media (hover: hover) {
  .link-button {
    transition: .3s;
  }

  .link-button:hover {
    background: #fff;
    color: #0242C0;
  }

  .link-button:hover span {
    color: inherit !important;
  }
}

@media screen and (max-width: 768px) {
  .link-button {
    font-size: 12px;
  }
}

.link-button::after {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

@media screen and (min-width: 769px) {
  .text-pc-center {
    text-align: center;
  }
}
