.c-functionOverview {
  display: flex;
  flex-direction: column;
  gap: 128px;
  padding-block: 60px 120px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview {
    gap: 60px;
    padding-block: 40px 60px;
  }
}
.c-functionOverview__controls {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview__controls {
    gap: 24px;
  }
}
.c-functionOverview__body {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview__body {
    gap: 60px;
  }
}
.c-functionOverview__heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #004ba5;
}
.c-functionOverview__heading::after {
  display: block;
  content: "";
  width: 39px;
  height: 5px;
  background-color: #fe4b21;
}
.c-functionOverview__lead {
  font-size: 1.8rem;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview__lead {
    font-size: 1.6rem;
  }
}
.c-functionOverview-pageNavigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 48px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-pageNavigation {
    gap: 16px 32px;
  }
}
.c-functionOverview-pageNavigation__item {
  display: flex;
  align-items: center;
}
.c-functionOverview-pageNavigation__link {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: underline;
  -webkit-text-decoration-color: #ddd;
          text-decoration-color: #ddd;
  text-underline-offset: 3px;
  gap: 12px;
  transition: all 0.3s ease-in-out;
}
.c-functionOverview-pageNavigation__link::after {
  position: relative;
  top: -2px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #014ba5;
  border-right: 2px solid #014ba5;
  transform: rotate(135deg);
  transform-origin: center;
  flex-shrink: 0;
}
.c-functionOverview-pageNavigation__link:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-pageNavigation__link {
    font-size: 1.5rem;
  }
  .c-functionOverview-pageNavigation__link::after {
    width: 8px;
    height: 8px;
  }
}
.c-functionOverview-card-typeA {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 8px;
}
.c-functionOverview-card-typeA__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-functionOverview-card-typeA__label {
  position: absolute;
  z-index: 1;
  top: -18px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  border-radius: 100px;
  background-color: #fff;
  color: #fe4b21;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 800;
  line-height: 1.7;
  border: 1px solid #fe4b21;
  text-align: center;
}
.c-functionOverview-card-typeA__label.-filledColor {
  background-color: #fe4b21;
  color: #fff;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-card-typeA__label {
    top: -12px;
    font-size: 16px;
    line-height: 1.5;
    padding-inline: 12px;
  }
}
.c-functionOverview-card-typeA__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004ba5;
  color: #fff;
  border-radius: 4px;
  font-size: clamp(17px, 1.666666666666667vw, 20px);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 20px 40px 20px 20px;
  min-height: 76px;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-card-typeA__button {
    min-height: auto;
    font-size: 1.8rem;
  }
}
.c-functionOverview-card-typeA__button::after {
  position: absolute;
  display: block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  right: 24px;
  top: 50%;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: center;
}
.c-functionOverview-card-typeA__button:hover {
  background-color: #0a356a;
}
.c-functionOverview-card-typeA__button[target="_blank"]::after {
  position: absolute;
  display: block;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  content: "";
  background-image: url("/_assets/img/_common/icon_blank_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.666666666666667em;
  height: 0.666666666666667em;
  border-top: none;
  border-right: none;
}
.c-functionOverview-card-typeB {
  display: flex;
  border-bottom: 1px solid #014ba5;
}
.c-functionOverview-card-typeB__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 960px) {
  .c-functionOverview-card-typeB__heading {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-card-typeB__heading {
    gap: 8px;
  }
}
.c-functionOverview-card-typeB__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-card-typeB__link {
    padding-bottom: 16px;
  }
}
.c-functionOverview-card-typeB__link[target="_blank"] .c-functionOverview-card-typeB__linkLabel::after {
  content: "";
  background-image: url("/_assets/img/_common/icon_blank_navy.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.666666666666667em;
  height: 0.666666666666667em;
  border-top: none;
  border-right: none;
  transform: none;
}
.c-functionOverview-card-typeB__linkLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-card-typeB__linkLabel {
    font-size: 1.8rem;
  }
}
.c-functionOverview-card-typeB__linkLabel::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #014ba5;
  border-right: 2px solid #014ba5;
  transform: rotate(45deg);
  transform-origin: center;
  flex-shrink: 0;
}
.c-functionOverview-card-typeB:hover .c-functionOverview-card-typeB__linkLabel {
  color: #004ba5;
}
.c-functionOverview-card-typeB__label {
  font-size: 1.6rem;
  line-height: 1.7;
  background-color: #fff;
  border: 1px solid #fe4b21;
  color: #fe4b21;
  padding-inline: 20px;
  border-radius: 100px;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-card-typeB__label {
    padding-inline: 16px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-functionOverview-card-typeB__label.-filledColor {
  background-color: #fe4b21;
  color: #fff;
}
.c-functionOverview-tieupList {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #f5f8ff;
  padding-block: 120px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-tieupList {
    padding-block: 60px;
  }
}
.c-functionOverview-tieupList__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-tieupList__content {
    gap: 32px;
  }
}
.c-functionOverview-tieupList__heading {
  display: inline-block;
  line-height: 1.5;
  font-size: 4rem;
  font-weight: 700;
  padding-left: 45px;
  position: relative;
}
.c-functionOverview-tieupList__heading::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fe4b21;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-tieupList__heading {
    font-size: 2.4rem;
    padding-left: 24px;
  }
  .c-functionOverview-tieupList__heading::before {
    width: 12px;
    height: 12px;
  }
}
.c-functionOverview-tieupList__listArea {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-tieupList__listArea {
    gap: 28px;
  }
}
.c-functionOverview-tieupList__text {
  font-size: 1.8rem;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-tieupList__text {
    font-size: 1.6rem;
  }
}
.c-functionOverview-tieupList__subSection {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-functionOverview-tieupList__label {
  font-size: 1.8rem;
  color: #004ba5;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-tieupList__label {
    font-size: 1.6rem;
  }
}
.c-functionOverview-tieupList__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.c-functionOverview-tieupList__link {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: underline;
  -webkit-text-decoration-color: #c7c7c7;
          text-decoration-color: #c7c7c7;
  text-underline-offset: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease-in-out;
}
.c-functionOverview-tieupList__link::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #014ba5;
  border-right: 2px solid #014ba5;
  transform: rotate(45deg);
  transform-origin: center;
  flex-shrink: 0;
}
.c-functionOverview-tieupList__link:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 660px) {
  .c-functionOverview-tieupList__link {
    font-size: 1.5rem;
    gap: 4px;
  }
  .c-functionOverview-tieupList__link::after {
    width: 8px;
    height: 8px;
  }
}

/*# sourceMappingURL=maps/functionOverview.css.map */
