@charset "UTF-8";

@media screen and (max-width: 749px) {
  html {
    font-size: calc(100vw / 37.5); /* base width 375px */
  }
}

/*! ==================================================
 * fv
=================================================== */
.c-fv__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.84px;
  text-align: center;
  color: #003175;
}
.c-fv__title-keyword {
  padding-inline: 8px;
  background: #003175;
  color: #FFF;
}
.c-fv__title-keyword--both {
  margin-inline: 8px;
}
.c-fv__title-keyword--right {
  margin-right: 8px;
}
.c-fv__title-keyword--left {
  margin-left: 8px;
}
@media screen and (max-width: 749px) {
  .c-fv__title {
    font-size: 3.0rem;
    letter-spacing: 0.12rem;
  }
  .c-fv__title-keyword {
    padding-inline: 0.8rem;
  }
  .c-fv__title-keyword--both {
    margin-inline: 0.8rem;
  }
  .c-fv__title-keyword--right {
    margin-right: 0.8rem;
  }
  .c-fv__title-keyword--left {
    margin-left: 0.8rem;
  }
}

/*! ==================================================
 * nav
=================================================== */
.l-nav {
  padding: 80px 0;
}
.l-nav__inner {
  max-width: 1050px;
  margin-inline: auto;
}
.l-nav__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.l-nav__item {
  position: relative;
  display: flex;
  gap: 8px;
  padding: 16px 16px 48px;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.20);
}
.l-nav__image,
.l-nav__image img {
  width: 110px;
  flex-shrink: 0;
}
.l-nav__contents {
  width: 100%;
}
.l-nav__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.64px;
  color: #003175;
}
.l-nav__lead {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.56px;
}
.l-nav__more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: fit-content;
  padding-right: 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.64px;
  text-decoration: none;
  color: #3B7DD8;
}
.l-nav__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  background: url(/assets/img/common/icon/icon_nav_more.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: translate(0, -50%);
}
@media screen and (min-width: 750px) {
    .l-nav__more:hover{
        opacity: 0.7;
    }
}
@media screen and (max-width: 749px) {
  .l-nav {
    padding: 6.0rem 1.6rem;
  }
  .l-nav__inner {
    max-width: 100%;
  }
  .l-nav__items {
    display: block;
  }
  .l-nav__item {
    position: relative;
    gap: 0.8rem;
    margin-top: 2.4rem;
    padding: 1.6rem 1.6rem 4.8rem;
    border-radius: 0.4rem;
    box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.20);
  }
  .l-nav__item:first-child {
    margin-top: 0;
  }
  .l-nav__image,
  .l-nav__image img {
    width: 11.0rem;
    flex-shrink: 0;
  }
  .l-nav__contents {
    width: 100%;
  }
  .l-nav__title {
    font-size: 1.6rem;
    letter-spacing: 0.064rem;
  }
  .l-nav__lead {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    letter-spacing: 0.056rem;
  }
  .l-nav__more {
    position: absolute;
    bottom: 1.6rem;
    right: 1.6rem;
    width: fit-content;
    padding-right: 2.2rem;
    font-size: 1.6rem;
    letter-spacing: 0.064rem;
  }
  .l-nav__more::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}