.c-heading__h2 {
  font-family: "Yu Gothic", "游ゴシック体", "Segoe UI", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 3.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.c-heading__h2-sub {
  font-family: "Roboto", sans-serif;
  display: block;
  font-size: 0.34em;
  font-weight: 700;
  color: var(--main-blue);
  margin-top: 20px;
  letter-spacing: 0;
}

@media only screen and (max-width: 768px) {
  .c-heading__h2 {
    font-size: clamp(1.5rem, 6vw, 3rem);
  }

  .c-heading__h2-sub {
    margin-top: 0.8em;
  }
}

.c-heading__h3 {
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-bottom: 19px;
}

.c-heading__h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--main-blue);
}

@media only screen and (max-width: 768px) {
  .c-heading__h3 {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .c-heading__h3::after {
    bottom: -10px;
    height: 3px;
  }
}

.c-heading__h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-heading__h4::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 3.4px;
  background-color: var(--main-blue);
}

@media only screen and (max-width: 768px) {
  .c-heading__h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .c-heading__h4::before {
    width: 12px;
    height: 12px;
  }
}

.mv {
  aspect-ratio: 36 / 7;
  max-height: 280px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .mv {
    aspect-ratio: auto;
    height: 25vh;
  }
}

.mv .l-wrapper {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

.mv .bg {
  position: relative;
  background-image: url('../img/link/mv_bg.svg');
  background-repeat: no-repeat;
  background-size: min(18.75vw, 270px);
  background-position: left 2.5vw bottom 10px;
  max-width: 1240px;
  width: strech;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
  margin-inline: auto;
}

@media only screen and (max-width: 768px) {
  .mv .bg {
    padding: min(53.3vw, 40px);
    height: 100%;
  }
}


.mv .c-heading__h2 {
  padding-top: 4.69vw;
}

@media screen and (max-width: 767px) {
  .mv__nav-list {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media only screen and (max-width: 768px) {
  .breadcrumb {
    right: min(53.3vw, 40px);
  }
}

.breadcrumb__list {
  display: flex;
  align-items: center;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item+.breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 2px;
  margin: 0 10px;
  background-color: var(--main-blue);
}

.section-list .bg {
  padding: 100px 0;
}

@media only screen and (max-width: 768px) {
  .section-list .bg {
    padding: min(8vw, 60px) 0;
  }
}

.section-list .l-wrapper {
  max-width: 1080px;
  width: 100%;
  padding: 0 20px;
  margin-inline: auto;
}

@media only screen and (max-width: 768px) {
  .section-list .l-wrapper {
    padding: 0 min(5.33vw, 40px);
  }
}

.section-list__items-text {
  font-size: 1rem;
  line-height: 185%;
  padding-top: 2.5em;
}

@media only screen and (max-width: 768px) {
  .section-list__items-text {
    font-size: 0.9375rem;
    padding-top: 2em;
  }
}

.section-list__items-list {
  padding-top: 4em;
}

@media only screen and (max-width: 768px) {
  .section-list__items-list {
    padding-top: 2em;
  }
}

.section-list__items-list li+li {
  padding-top: 1.25em;
}

@media only screen and (max-width: 768px) {
  .section-list__items-list li+li {
    padding-top: 1em;
  }
}

.section-list__item-link {
  display: block;
  font-size: 1rem;
  border-bottom: 1px solid #ecedf2;
  position: relative;
  padding-left: 1em;
  padding-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  .section-list__item-link {
    font-size: 0.9375rem;
  }
}

.section-list__item-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 0.5rem);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--main-blue);
}

.section-list__item-link::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  background-image: url('../img/common/icon_link.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: -1px;
}

.section-list__inner {
  padding-top: 100px;
}

@media only screen and (max-width: 768px) {
  .section-list__inner {
    padding-top: min(10.67vw, 80px);
  }
}