/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr, input, button, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

a {
  color: #CCC;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
.grecaptcha-badge {
  z-index: 10;
}

.l-header {
  padding-top: 32px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .l-header {
    padding-top: 16px;
  }
}

.l-footer {
  background: linear-gradient(90deg, #00ACEB 0%, #3D5ACE 100%);
  padding: 80px 24px 49px;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 24px 24px 32px;
  }
}

.l-header_simple {
  height: 70px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .l-header_simple {
    height: 72px;
  }
}

.l-footer_simple {
  background-color: #222;
}

.header_logo {
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_logo .header_logo-img {
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .header_logo .header_logo-img {
    width: 134px;
  }
}
.header_logo .header_logo-img.header_logo-img--main {
  opacity: 1;
}
.header_logo .header_logo-img.header_logo-img--sub {
  position: absolute;
  opacity: 0;
}

.header_btn {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  border-radius: 100%;
  z-index: 200;
  position: relative;
}
@media (max-width: 768px) {
  .header_btn {
    display: flex;
  }
}
.header_btn .header_btn-icon {
  transition: all 0.3s;
}
.header_btn .header_btn-icon.header_btn-icon--menu {
  opacity: 1;
}
.header_btn .header_btn-icon.header_btn-icon--close {
  opacity: 0;
  position: absolute;
}

.header_menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #375FD0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_menu .header_menu-nav .header_menu-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.header_menu .header_menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header {
  padding: 0 18px 0 33px;
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-content {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
@media (max-width: 768px) {
  .header .header-content {
    display: none;
  }
}
.header .header-list {
  display: flex;
  -moz-column-gap: 27px;
       column-gap: 27px;
  padding: 15px 43px 18px 42px;
  background-color: #FFF;
  border-radius: 50px;
}
.header .header-cta {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.header.is-menu-open .header_logo .header_logo-img.header_logo-img--main {
  opacity: 0;
}
.header.is-menu-open .header_logo .header_logo-img.header_logo-img--sub {
  opacity: 1;
}
.header.is-menu-open .header_btn .header_btn-icon--menu {
  opacity: 0;
}
.header.is-menu-open .header_btn .header_btn-icon--close {
  opacity: 1;
}
.header.is-menu-open .header_menu {
  opacity: 1;
  pointer-events: auto;
}

.header-list_item {
  font-size: 13px;
  font-weight: 700;
  display: block;
  line-height: normal;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #4054CC, 0 0 0 #4054CC;
  transition: text-shadow 0.3s;
}
.header-list_item:hover {
  text-shadow: 0 0 0 #4054CC, 0 1.5em 0 #4054CC;
}

.header-cta_btn {
  color: #FFF;
  height: 52px;
  display: flex;
  align-items: center;
  background-color: #4054CC;
  border-radius: 84px;
  padding: 0 25px;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s;
}
.header-cta_btn.header-cta_btn--download {
  background: linear-gradient(90deg, #0CB6E7 0%, #2B70D6 100%);
}
.header-cta_btn.header-cta_btn--contact {
  background: linear-gradient(90deg, #2D6FD5 0%, #4769D0 100%);
}
.header-cta_btn:hover {
  transform: scale(1.04);
}
.header-cta_btn .header-cta_btn-text {
  text-align: center;
}

.header_menu-cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 17px;
       column-gap: 17px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 260px;
  height: 52px;
}
.header_menu-cta_btn.header_menu-cta_btn--download {
  background: linear-gradient(90deg, #26C9DE 0%, #099EE6 100%);
}
.header_menu-cta_btn.header_menu-cta_btn--contact {
  background: linear-gradient(90deg, #00AAEB 0%, #2877D8 100%);
}
.header_menu-cta_btn .header_menu-cta_btn-text {
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.header_menu_item {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.footer {
  max-width: 1280px;
  margin: auto;
}
.footer .footer-contact {
  display: flex;
  align-items: center;
  -moz-column-gap: 37px;
       column-gap: 37px;
  border-radius: 276px;
  background: rgba(255, 255, 255, 0.25);
  padding: 49px 129px 51px 170px;
}
@media (max-width: 768px) {
  .footer .footer-contact {
    padding: 24px;
    border-radius: 16px;
    flex-direction: column;
  }
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 62px;
}
@media (max-width: 768px) {
  .footer .footer-content {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .footer .footer-logo {
    width: 182px;
  }
}
.footer .footer-nav {
  margin-top: 29px;
  max-width: 505px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 768px) {
  .footer .footer-nav {
    margin-top: 24px;
    row-gap: 16px;
  }
}
.footer .footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 27px;
}
@media (max-width: 768px) {
  .footer .footer-list {
    gap: 8px 13px;
    justify-content: center;
  }
}
.footer .footer-copyright {
  margin-top: 29px;
  color: #A8C3EE;
  font-size: 12px;
  letter-spacing: 1.8px;
}
@media (max-width: 768px) {
  .footer .footer-copyright {
    margin-top: 32px;
  }
}

.footer-contact_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #F6FAFD;
}
@media (max-width: 768px) {
  .footer-contact_title {
    font-size: 20px;
  }
}

.footer-contact_description {
  color: #F6FAFD;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .footer-contact_description {
    font-size: 14px;
    margin-top: 16px;
  }
}

.footer-contact_cta {
  flex: 1;
}
@media (max-width: 768px) {
  .footer-contact_cta {
    width: 100%;
    margin-top: 19px;
  }
}
.footer-contact_cta .footer-contact_cta-microcopy {
  display: flex;
  justify-content: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
@media (max-width: 768px) {
  .footer-contact_cta .footer-contact_cta-microcopy svg {
    width: 10px;
  }
}
.footer-contact_cta .footer-contact_cta-btn {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin-top: 10px;
  width: 100%;
  height: 100px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(90deg, #37D0DA 0%, #089FE6 100%);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s;
}
.footer-contact_cta .footer-contact_cta-btn:hover {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .footer-contact_cta .footer-contact_cta-btn {
    font-size: 14px;
    height: 72px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    margin-top: 8px;
  }
}

.footer-contact_cta-microcopy_text {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 1px;
       column-gap: 1px;
  color: white;
  position: relative;
  bottom: 4px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer-contact_cta-microcopy_text {
    bottom: -2px;
  }
}
.footer-contact_cta-microcopy_text span {
  font-size: 29px;
  font-weight: 700;
  line-height: 0.81;
  position: relative;
  bottom: -1px;
}
@media (max-width: 768px) {
  .footer-contact_cta-microcopy_text span {
    font-size: 20px;
  }
}
.footer-contact_cta-microcopy_text span.rotate {
  font-size: 21px;
  font-weight: 700;
  line-height: 0.74;
  transform: rotate(12deg);
  margin-left: 2px;
}

.footer-list_item {
  color: #FFF;
  line-height: normal;
}
.footer-list_item:hover {
  text-decoration: underline;
}

.l-section_h2:not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .l-section_h2:not(:first-child) {
    margin-top: 40px;
  }
}

.l-slider {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .l-slider {
    flex-direction: column;
    gap: 32px;
  }
}

.section_h1 .section_h1-header {
  padding: 150px 20px 72px;
  background: linear-gradient(180deg, #CFE2F3 0%, #E4F4FF 100%);
}
@media (max-width: 768px) {
  .section_h1 .section_h1-header {
    padding: 72px 20px 24px;
  }
}
.section_h1 .section_h1-header h1 {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  color: #41466D;
  font-size: 42px;
  font-weight: 800;
  line-height: 57.352px;
}
@media (max-width: 768px) {
  .section_h1 .section_h1-header h1 {
    height: 68px;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 1.4;
  }
}
.section_h1 .section_h1-body {
  width: 100%;
  max-width: calc(1080px + 40px);
  margin: auto;
  padding: 80px 20px 120px;
}
@media (max-width: 768px) {
  .section_h1 .section_h1-body {
    padding: 32px 20px 40px;
  }
}

.section_h2 .section_h2-header h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #2B3E57;
}
@media (max-width: 768px) {
  .section_h2 .section_h2-header h2 {
    font-size: 22px;
    line-height: normal;
  }
}
.section_h2 .section_h2-body {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .section_h2 .section_h2-body {
    margin-top: 24px;
  }
}

.slider {
  width: 48.14%;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .slider {
    width: 100%;
  }
}
.slider .slider-body {
  background-color: #F4F4F4;
}
.slider .slider-body .slider-body-content {
  margin-top: 16px;
  padding: 0 24px 24px;
  display: block;
}
@media (max-width: 768px) {
  .slider .slider-body .slider-body-content {
    padding: 0 16px 24px;
  }
}
.slider .slider-body .slider-body-content:hover .slider-body-content_link {
  transform: scale(1.04);
}
.slider .slider-body .swiper {
  padding: 8px 8px 0;
}
.slider .slider-body .swiper .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}

.slider-body-content_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 768px) {
  .slider-body-content_header {
    row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.slider-body-content_header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2B3E57;
  min-height: 38px;
  display: flex;
  align-items: center;
  line-height: normal;
}

.slider-body-content_header_meta {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex-shrink: 0;
}

.slider-body-content_header_meta_text {
  color: #2B3E57;
  font-size: 12px;
  font-weight: 700;
}

.slider-body-content_description {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  color: #2B3E57;
  list-style: disc;
  padding-inline-start: 16px;
}
@media (max-width: 768px) {
  .slider-body-content_description {
    margin-top: 8px;
  }
}

.slider-body-content_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto auto;
  width: 100%;
  height: 50px;
  max-width: 300px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  padding: 0 8px 0 10px;
  transition: all 0.3s;
  border-radius: 84.375px;
  background: linear-gradient(90deg, #0CB6E7 0%, #2B70D6 100%);
  gap: 9px;
}

.swiper-thumbs .swiper-slide {
  cursor: pointer;
}
.swiper-thumbs .swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #0EB2E6;
  box-sizing: border-box;
  border-radius: 8px;
}

.slider-body .swiper .swiper-wrapper {
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 768px) {
  .slider-body .swiper .swiper-wrapper {
    -moz-column-gap: 4px;
         column-gap: 4px;
  }
}
.slider-body .swiper .swiper-slide {
  flex-shrink: initial;
  width: calc(25% - 8px);
}
.slider-body .swiper.swiper-initialized .swiper-wrapper {
  -moz-column-gap: 0;
       column-gap: 0;
}
.slider-body .swiper.swiper-initialized .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.swiper-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: overlayFadeOut 0.2s 2s forwards;
}
@media (max-width: 768px) {
  .swiper-overlay {
    display: flex;
  }
}
.swiper-overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #2B3E57;
  opacity: 0.5;
}
.swiper-overlay img {
  position: relative;
  animation: swipeAnimation 1s linear 2;
}

@keyframes swipeAnimation {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(30px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes overlayFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
