@charset "UTF-8";
/* 共通 */
.cmn_container {
  max-width: 1375px;
  width: calc(100% - 32px);
  margin-inline: auto;
}
@media screen and (min-width: 768px), print {
  .cmn_container {
    width: calc(100% - 80px);
  }
}
.cmn_section {
  padding-block: 46px 50px;
}
.cmn_section_bg {
  background-color: #EBF0F6;
}
.cmn_section_md {
  margin-top: 40px;
}
@media screen and (min-width: 768px), print {
  .cmn_section {
    padding-block: 80px;
  }
  .cmn_section_md {
    margin-top: 50px;
  }
}
.cmn_h2 {
  font-size: 22px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cmn_h2::before {
  content: "";
  width: 76px;
  height: 1px;
  background: #0099FF;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (min-width: 768px), print {
  .cmn_h2 {
    margin-bottom: 52px;
    padding-bottom: 33px;
    font-size: 36px;
  }
}
.cmn_h3 {
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 18px;
}
.cmn_h3::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0099FF;
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
}
@media screen and (min-width: 768px), print {
  .cmn_h3 {
    font-size: 28px;
    padding-left: 22px;
  }
}
.cmn_lead {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 768px), print {
  .cmn_lead {
    font-size: 28px;
  }
}
.cmn_text {
  font-size: 14px;
  line-height: 1.75;
  word-break: break-word;
}
@media screen and (min-width: 768px), print {
  .cmn_text {
    font-size: 16px;
  }
}

main {
  padding-bottom: 0;
}

/* inview */
.js_inview {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
}

.js_inview-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .js_inview {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .js_inview-show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.mv_main {
  border-radius: 10px;
  background: -webkit-linear-gradient(320deg, rgb(3, 51, 122) 0%, rgb(1, 70, 173) 25%, rgb(111, 191, 245) 100%);
  background: linear-gradient(130deg, rgb(3, 51, 122) 0%, rgb(1, 70, 173) 25%, rgb(111, 191, 245) 100%);
  padding: 32px 20px;
  color: #fff;
  text-align: center;
  margin: 8px 7px;
}
.mv_main_title {
  margin-bottom: 25px;
  font-size: 26px;
}
.mv_main_title_sub {
  font-size: 20px;
  display: block;
  padding-left: 34px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.mv_main_title_sub::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/icon_mv.svg) no-repeat center/contain;
  position: absolute;
  top: -2px;
  left: 0;
}
.mv_main_title_main {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
  border-bottom: 3px solid #fff;
}
.mv_main_text {
  font-size: 14px;
  margin-bottom: 0;
}
.mv_images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 120%;
  margin-left: -10%;
}
.mv_images_item {
  aspect-ratio: 351/198;
  position: relative;
}
.mv_images_item::before, .mv_images_item::after {
  content: "";
  inset: 0;
  background: #A2D5F6;
  display: block;
  position: absolute;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: opacity 1.5s linear;
  transition: opacity 1.5s linear;
}
.mv_images_item::before {
  background: #C3DFF2;
}
.mv_images_item.is-blue-1::before {
  opacity: 1;
}
.mv_images_item.is-blue-2::after {
  opacity: 1;
}
.mv_images img {
  border-radius: 10px;
  aspect-ratio: 351/198;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .mv {
    height: 405px;
  }
  .mv_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 11px;
    height: 100%;
  }
  .mv_main {
    padding-left: max((100vw - 1375px) / 2, 40px);
    text-align: left;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
    min-width: 700px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0 10px 10px 0;
  }
  .mv_main_title {
    margin-bottom: 38px;
    text-align: left;
    font-size: 48px;
  }
  .mv_main_title_main {
    margin-inline: 0 auto;
    border-width: 6px;
    padding-bottom: 8px;
  }
  .mv_main_title_sub {
    font-size: 35px;
    padding-left: 59px;
    margin-inline: 0 auto;
  }
  .mv_main_title_sub::before {
    width: 47px;
    height: 47px;
  }
  .mv_main_text {
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.7;
  }
  .mv_images {
    max-width: 1075px;
    margin-left: 0;
    margin-right: -52px;
  }
}

.anchor {
  max-width: 1170px;
  margin-inline: auto;
  margin-top: 30px;
  width: calc(100% - 32px);
  background: #EBF0F6;
  border-radius: 28px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.08) 0 0 10px;
          box-shadow: rgba(51, 51, 51, 0.08) 0 0 10px;
  padding: 6px 5px;
}
.anchor_item + .anchor_item {
  margin-top: 6px;
}
.anchor_item a {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 29px;
  padding: 6px 50px 6px 22px;
  position: relative;
  font-weight: 700;
  min-height: 48px;
}
.anchor_item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-color: #FFFFFF;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 16px;
  border-radius: 50%;
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin-block: auto;
}
@media screen and (min-width: 768px), print {
  .anchor {
    margin-top: 37px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    border-radius: 35px;
    padding: 6px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .anchor_item + .anchor_item {
    margin-top: 0;
  }
  .anchor_item a {
    letter-spacing: 0.09em;
    padding: 6px 61px 6px 30px;
    min-height: 56px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .anchor_item a::after {
    width: 44px;
    height: 44px;
    background-size: 14px 17px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .anchor_item a:hover {
    background: #fff;
    color: #0099FF;
  }
  .anchor_item a:hover::after {
    background-color: #EBF0F6;
  }
}

.about_col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.about_col .cmn_lead {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px), print {
  .about_col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 75px;
  }
  .about_col .cmn_lead {
    margin-bottom: 40px;
  }
  .about_col_main {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about_col_image {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
  }
}

.history_image {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 12px;
}
.history_slider {
  padding-inline: 60px;
  position: relative;
  min-height: 170px;
}
.history_slider::before {
  content: "";
  display: block;
  width: calc(100% - 30px);
  background: #fff;
  border-radius: 90px;
  height: 140px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
}
.history_slider::after {
  content: "";
  display: block;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: min(1140px, 100% - 110px);
  height: 2px;
  background: -webkit-linear-gradient(320deg, rgb(0, 153, 255) 0%, rgb(1, 70, 173) 100%);
  background: linear-gradient(130deg, rgb(0, 153, 255) 0%, rgb(1, 70, 173) 100%);
}
.history_slider .swiper-wrapper {
  margin-inline: auto;
  position: relative;
}
.history_slider .swiper-slide {
  padding-top: 10px;
  opacity: 0;
  pointer-events: none;
}
.history_slider .swiper-slide.swiper-slide-visible {
  pointer-events: all;
  opacity: 1;
}
.history_slider_prev, .history_slider_next {
  background: #0099FF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 45px;
  left: -7px;
  display: grid;
  place-content: center;
  z-index: 1;
  cursor: pointer;
}
.history_slider_prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.history_slider_next {
  left: auto;
  right: -7px;
}
.history_slider_trigger {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.history_slider_trigger.is-active .history_slider_dot::before {
  width: 40px;
  height: 40px;
  background: #0146AD;
}
.history_slider_trigger.is-active .history_slider_dot::after {
  background: #fff;
}
.history_slider_trigger.is-active .history_slider_year {
  font-size: 20px;
  color: #0146AD;
}
.history_slider_contents {
  display: none;
  background: #F3F9FF;
  border-radius: 12px;
  border: 1px solid #0099FF;
  -webkit-box-shadow: rgba(51, 51, 51, 0.18) 0 4px 10px;
          box-shadow: rgba(51, 51, 51, 0.18) 0 4px 10px;
  margin-top: 35px;
  width: calc(100vw - 30px);
  padding: 20px 27px;
  position: relative;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.history_slider_contents .history_slider_text {
  margin: 0;
}
.is-active + .history_slider_contents {
  display: block;
}
@starting-style {
  .is-active + .history_slider_contents {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.history_slider_title {
  padding-left: 15px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
}
.history_slider_title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0099FF;
}
.history_slider_text {
  font-size: 16px;
  font-weight: 700;
}
.history_slider_year {
  font-size: 16px;
  font-weight: 700;
  color: #0099FF;
  text-align: center;
  margin-bottom: 18px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: ease-out 0.2s all;
  transition: ease-out 0.2s all;
}
.history_slider_dot {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
}
.history_slider_dot::before {
  content: "";
  display: block;
  border-radius: 50%;
  background: #fff;
  width: 30px;
  height: 30px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
          box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: ease-out 0.2s all;
  transition: ease-out 0.2s all;
  z-index: -1;
}
.history_slider_dot::after {
  content: "";
  display: block;
  border-radius: 50%;
  background: #0099FF;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .history_slider .swiper-slide.swiper-slide-visible:not(.swiper-slide-active):not(.swiper-slide-next) .history_slider_contents {
    margin-left: calc((-100% - 10px) * 2 - 60px);
  }
  .history_slider .swiper-slide.swiper-slide-active .history_slider_contents {
    margin-left: -60px;
  }
  .history_slider .swiper-slide.swiper-slide-next .history_slider_contents {
    margin-left: calc(-100% - 10px - 60px);
  }
}
@media screen and (min-width: 768px), print {
  .history_slider {
    padding-inline: 180px;
    height: 300px;
  }
  .history_slider .swiper-slide {
    padding-top: 20px;
  }
  .history_slider::after {
    content: "";
    display: block;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(1140px, 100% - 200px);
    height: 29px;
    background: url(../img/arrow_history.svg) no-repeat center/contain;
  }
  .history_slider::before {
    height: 177px;
    width: calc(100% - 86px);
  }
  .history_slider_contents {
    width: 365px;
    padding: 20px 27px;
    margin-top: 45px;
    margin-left: -60px;
    position: relative;
  }
  .history_slider_contents::before, .history_slider_contents::after {
    content: "";
    width: 18px;
    height: 15px;
    background: #0099FF;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: block;
    position: absolute;
    top: -15px;
    left: 125px;
  }
  .history_slider_contents::after {
    width: 16px;
    height: 13px;
    background: #F3F9FF;
    left: 126px;
    top: -13px;
  }
  .history_slider_trigger:hover .history_slider_dot::before {
    width: 60px;
    height: 60px;
    background: #EBF0F6;
  }
  .history_slider_trigger:hover .history_slider_year {
    font-size: 27px;
  }
  .history_slider_trigger.is-active .history_slider_dot::before {
    width: 60px;
    height: 60px;
    background: #0146AD;
  }
  .history_slider_trigger.is-active .history_slider_year {
    font-size: 27px;
  }
  .history_slider_year {
    font-size: 20px;
    margin-bottom: 28px;
  }
  .history_slider_prev, .history_slider_next {
    width: 70px;
    height: 70px;
    left: 0;
    top: 59px;
  }
  .history_slider_next {
    left: auto;
    right: 0;
  }
  .history_slider_dot {
    width: 24px;
    height: 24px;
  }
  .history_slider_dot::before {
    width: 40px;
    height: 40px;
  }
  .history_slider_title {
    font-weight: 700;
    font-size: 18px;
  }
  .history_slider_title::before {
    width: 7px;
    height: 7px;
  }
  .history_slider_text {
    font-size: 18px;
  }
  .history_image {
    padding: 20px 30px;
  }
}

.number_panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.number_panel_item {
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0 0 10px;
          box-shadow: rgba(0, 0, 0, 0.08) 0 0 10px;
  border-radius: 5px;
  padding: 6px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.number_panel_icon {
  background: #F3F9FF;
  border-radius: 2px;
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 13px;
  margin-bottom: 10px;
}
.number_panel_icon img {
  display: block;
  width: auto;
}
.number_panel_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.number_panel_number {
  margin-bottom: 12px;
}
.number_panel_number em {
  color: #0099FF;
  font-weight: 700;
  font-family: "Roboto";
  font-size: 38px;
  line-height: 1;
}
.number_panel_number span {
  font-size: 14px;
  font-weight: 700;
  margin-left: 3px;
}
.number_panel_note {
  margin-bottom: 0;
  font-size: 12px;
  color: #707070;
  margin-bottom: 4px;
  margin-top: auto;
}
.number_graph {
  text-align: center;
}
.number_graph img {
  max-width: 1152px;
}
.number_btnContainer {
  margin-top: 35px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px), print {
  .number_panel {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    grid-auto-rows: minmax(77px, auto) minmax(50px, auto) minmax(45px, auto);
  }
  .number_panel_item {
    padding: 12px;
    display: grid;
    gap: 0 8%;
    text-align: left;
    grid-template-columns: 42% 1fr;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
  .number_panel_icon {
    grid-column: 1;
    grid-row: 1/-1;
    height: 100%;
    margin-bottom: 0;
  }
  .number_panel_title {
    grid-column: 2;
    grid-row: 1;
    font-size: 22px;
    padding-top: 10px;
  }
  .number_panel_number {
    grid-column: 2;
    grid-row: 2;
  }
  .number_panel_number em {
    font-size: 64px;
  }
  .number_panel_number span {
    font-size: 20px;
  }
  .number_panel_note {
    grid-column: 2;
    grid-row: 3;
    font-size: 14px;
  }
  .number_graph {
    margin-top: 60px;
  }
  .number_btnContainer {
    margin-top: 65px;
    gap: 60px;
  }
}

.future_panel {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}
.future_panel_item {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0 0 10px;
          box-shadow: rgba(0, 0, 0, 0.08) 0 0 10px;
}
.future_panel_item .cmn_text {
  margin-bottom: 0;
}
.future_panel_title {
  color: #0099FF;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
@media screen and (min-width: 768px), print {
  .future_panel {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .future_panel_item {
    padding: 40px 30px 30px;
  }
  .future_panel_title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}