@charset "UTF-8";
/* 202603追記 */
.mv__balloon {
  width: 100%;
  position: relative;
}
.mv__balloon-text {
  position: absolute;
  top: calc(6% + 20px);
  left: 30.5%;
  font-size: calc((100vw - 40px) * 0.02);
  color: #fff;
}
@media screen and (max-width: 480px) {
  .mv__balloon-text {
    width: 100%;
    top: calc(2% + 30px);
    left: 0;
    font-size: 4.4vw;
    line-height: 1.5;
  }
}

.purchase-list {
  margin-top: 60px;
}
.purchase-list .sec-ttl {
  margin-bottom: 1em !important;
}
.purchase-list .sec-ttl p.common_h2 {
  font-size: 32px !important;
}
@media screen and (max-width: 767px) {
  .purchase-list .sec-ttl p.common_h2 {
    font-size: 18px !important;
  }
}
.purchase-list__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .purchase-list__title {
    font-size: 2em;
    line-height: 1.5;
  }
}
.purchase-list__title:after {
  content: "";
  display: block;
  width: calc(100% + 0.6em);
  height: 6px;
  border-radius: 3px;
  background: #024199;
  position: absolute;
  bottom: -0.2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.purchase-list .purchase-list-box {
  margin-top: 20px !important;
}
.purchase-list .purchase-list-box-maker:first-child {
  margin-top: 0 !important;
}

.voice-list {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-bottom: 60px;
}
.voice-list__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice-list__title {
    font-size: 2em;
    line-height: 1.5;
  }
}
.voice-list__title:after {
  content: "";
  display: block;
  width: calc(100% + 0.6em);
  height: 6px;
  border-radius: 3px;
  background: #024199;
  position: absolute;
  bottom: -0.2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.voice-list__sub-title {
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  color: #024199;
}
.voice-list__text {
  text-align: center;
  margin-top: 1em;
}
.voice-list__items {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2.5em;
}
@media screen and (max-width: 980px) {
  .voice-list__items {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .voice-list__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.voice-list__item {
  margin: 0;
}
.voice-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1em 1em;
  border: 2px solid #024199;
  border-radius: 0;
  background: #fff;
  color: #024199;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.voice-list__link:visited {
  color: #024199;
}
.voice-list__link:hover, .voice-list__link:focus {
  background: #024199;
  color: #fff;
  -webkit-box-shadow: 0 10px 24px rgba(2, 65, 153, 0.16);
          box-shadow: 0 10px 24px rgba(2, 65, 153, 0.16);
}

/* 202603追記ここまで */