/* default settings */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@500;600&display=swap");
/* =================================================================== */
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/*/
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme*/
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.*/
/* ==========================================================================
 * Base styles: opinionated defaults
 * ==========================================================================*/
html {
  color: #171717;
  line-height: 1.4;
  font-size: 16px;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 1.1111111111vw;
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Vendor-prefixed and regular ::selection selectors cannot be combined:
   * https://stackoverflow.com/a/16982510/7133471
   *
   * Customize the background color to match your design.*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
\::-moz-selection,
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
   * A better looking default horizontal rule*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  border: none;
}

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

/*
   * Remove default fieldset styles.*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
   * Allow only vertical resizing of textareas.*/
textarea {
  resize: vertical;
}

/* ==========================================================================
   * Author's custom styles
   * ==========================================================================*/
/* ==========================================================================
   * Helper classes
   * ==========================================================================*/
/*
   * Hide visually and from screen readers*/
.hidden,
[hidden] {
  display: none !important;
}

/*
   * Hide only visually, but have it available for screen readers:
   * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
   *
   * 1. For long content, line feeds are not interpreted as spaces and small width
   *    causes content to wrap 1 word per line:
   *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1*/
}
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
   * Extends the .sr-only class to allow the element
   * to be focusable when navigated to via the keyboard:
   * https://www.drupal.org/node/897638*/
/*
   * Hide visually and from screen readers, but maintain layout*/
.invisible {
  visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * For modern browsers
   * 1. The space content is one way to avoid an Opera bug when the
   *    `contenteditable` attribute is included anywhere else in the document.
   *    Otherwise it causes space to appear at the top and bottom of elements
   *    that receive the `clearfix` class.
   * 2. The use of `table` rather than `block` is only necessary if using
   *    `:before` to contain the top-margins of child elements.*/
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
   * EXAMPLE Media Queries for Responsive Design.
   * These examples override the primary ('mobile first') styles.
   * Modify as content requires.
   * ==========================================================================*/
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition*/
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices*/
}
/* ==========================================================================
   * Print styles.
   * Inlined to avoid the additional HTTP request:
   * https://www.phpied.com/delay-loading-your-print-css/
   * ==========================================================================*/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    text-decoration: underline;
  }
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol*/
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables*/
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.title__main {
  position: relative;
  padding-top: 1.25rem;
  display: inline-block;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
}
@media (max-width: 767px) {
  .title__main {
    font-size: 1rem;
  }
}
.title__main:before, .title__main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5625rem;
  height: 0.3125rem;
  background: #032A65;
}
.title__main:after {
  background: #0F5CB5;
  left: 1.875rem;
}
.title__main .txt-en {
  display: block;
  font-size: 2.375rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #0F5CB5;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.3125rem;
}
@media (max-width: 767px) {
  .title__main .txt-en {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.title__secondary {
  position: relative;
  display: block;
  text-align: left;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 900;
  color: #000;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .title__secondary {
    padding-bottom: 0.625rem;
  }
}
.title__secondary:before, .title__secondary:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}
.title__secondary:before {
  width: 100%;
  background: #D9D9D9;
}
.title__secondary:after {
  width: 5rem;
  background: #0F5CB5;
}
@media (max-width: 767px) {
  .title__secondary {
    font-size: 1rem;
  }
}
.title__secondary .txt-en {
  display: block;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0;
  color: #0F5CB5;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0.875rem;
}
@media (max-width: 767px) {
  .title__secondary .txt-en {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
  }
}

.title__sub {
  position: relative;
  display: block;
  text-align: left;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 900;
  color: #000;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .title__sub {
    padding-bottom: 0.625rem;
    font-size: 1.25rem;
  }
}
.title__sub:before, .title__sub:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}
.title__sub:before {
  width: 100%;
  background: #D9D9D9;
}
.title__sub:after {
  width: 5rem;
  background: #0F5CB5;
}
.title__sub .txt-blue {
  display: block;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0;
  color: #0F5CB5;
  font-weight: bold;
  margin-bottom: 0.875rem;
}
@media (max-width: 767px) {
  .title__sub .txt-blue {
    font-size: 0.875rem;
  }
}

.btn__main {
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.btn__main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 18.75rem;
  height: 4.75rem;
  padding-right: 0.75rem;
  background: #0F5CB5;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 767px) {
  .btn__main-content {
    width: 16.0625rem;
    height: 3.75rem;
    padding-right: 1rem;
  }
}
.btn__main-border {
  position: absolute;
  top: -0.3125rem;
  left: 0.3125rem;
  width: 100%;
  height: 100%;
  border: 1px solid #0F5CB5;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .btn__main:hover .btn__main-content {
    -webkit-transform: translate(0.3125rem, -0.3125rem);
            transform: translate(0.3125rem, -0.3125rem);
  }
}
.btn__main--arrow .btn__main-content:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 0.75rem;
  background: url("../../common/img/icon_arrow-left-white.svg") no-repeat center right;
  background-size: contain;
}
@media (max-width: 767px) {
  .btn__main--arrow .btn__main-content:after {
    right: 0.75rem;
  }
}
.btn__main--arrow-left .btn__main-content:after {
  right: auto;
  left: 1.375rem;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
@media (max-width: 767px) {
  .btn__main--arrow-left .btn__main-content:after {
    left: 0.75rem;
  }
}
.btn__main--white .btn__main-content {
  background: #FFF;
  color: #0F5CB5;
}
.btn__main--white .btn__main-content:after {
  background: url("../../common/img/icon_arrow-left-blue.svg") no-repeat center right;
  background-size: contain;
}
.btn__main--white .btn__main-border {
  border-color: #FFF;
}

.btn__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22.5rem;
  height: 4.75rem;
  border: 1px solid #0F5CB5;
  background: #FFF;
  color: #0F5CB5;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .btn__anchor {
    width: 21.5625rem;
    height: 3.75rem;
  }
}
.btn__anchor:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  width: 1rem;
  height: 0.75rem;
  background: url("../../common/img/icon_arrow-left-blue.svg") no-repeat center right;
  background-size: contain;
}
@media screen and (min-width: 1025px) {
  .btn__anchor:hover {
    opacity: 0.7;
  }
}

.header {
  background: #0F5CB5;
  color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #0F5CB5), color-stop(5.625rem, #0F5CB5), color-stop(5.625rem, #fff), color-stop(18.75rem, #fff), color-stop(18.75rem, #0F5CB5), to(#0F5CB5));
  background: linear-gradient(to right, #0F5CB5 0, #0F5CB5 5.625rem, #fff 5.625rem, #fff 18.75rem, #0F5CB5 18.75rem, #0F5CB5 100%);
}
@media (max-width: 767px) {
  .header {
    background: #FFF;
  }
}
.header:before, .header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.header:before {
  width: 5.65625rem;
  height: 5.65625rem;
  background: #032A65;
  z-index: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
@media (max-width: 767px) {
  .header:before {
    display: none;
  }
}
.header:after {
  width: calc(100% - 62.5rem);
  max-width: 31.25rem;
  height: 5.6625rem;
  background: #FFF;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, calc(100% - 5.625rem) 100%, 5.625rem 100%, 0 0);
          clip-path: polygon(100% 0, calc(100% - 5.625rem) 100%, 5.625rem 100%, 0 0);
}
@media (max-width: 767px) {
  .header:after {
    display: none;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5.625rem;
  padding-left: 6.25rem;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 0.9375rem;
    height: 5rem;
  }
}
.header__logo {
  width: 6.1875rem;
  height: 3.75rem;
}
@media (max-width: 767px) {
  .header__logo {
    width: 3.875rem;
    height: 2.375rem;
  }
}
.header__logo img {
  height: 3.75rem;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .header__logo img {
    height: 2.375rem;
  }
}
.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .header__main {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 19.25rem;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 9;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4.4375rem 0 1.875rem;
    background: #0F5CB5;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 767px) {
  .header__main:before {
    content: "";
    position: fixed;
    top: 0;
    left: 100%;
    right: 0;
    z-index: 1;
    pointer-events: none;
    height: 3.75rem;
    background: #0F5CB5;
    display: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 767px) {
  .header__main.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .header__main.is-active:before {
    left: 4.25rem;
  }
}
@media (min-width: 768px) {
  .header .hamburger-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .header .hamburger-menu {
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 10;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .header .hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    background: #032A65;
    border-radius: 1.25rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    right: 0.625rem;
  }
  .header .hamburger-menu span:nth-child(1) {
    width: 1.875rem;
    top: 0.875rem;
  }
  .header .hamburger-menu span:nth-child(2) {
    width: 1.4375rem;
    top: 1.4375rem;
  }
  .header .hamburger-menu span:nth-child(3) {
    width: 0.8125rem;
    top: 2rem;
  }
  .header .hamburger-menu.is-active span {
    background: #FFF;
  }
  .header .hamburger-menu.is-active span:nth-child(1) {
    top: 1.4375rem;
    width: 2.125rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header .hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .header .hamburger-menu.is-active span:nth-child(3) {
    top: 1.4375rem;
    width: 2.125rem;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.9375rem;
  list-style: none;
  margin: 0;
}
@media (max-width: 767px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    gap: 0;
    padding: 0 1.25rem 1.8125rem;
  }
}
.header__nav-item {
  position: relative;
  padding-bottom: 2.375rem;
}
@media (max-width: 767px) {
  .header__nav-item {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 2.1875rem;
  }
}
@media (max-width: 767px) {
  .header__nav-item:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .header__nav-item.-large-nav {
    padding-bottom: 1.625rem;
  }
}
.header__nav-item--has-sub {
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__nav-item--has-sub {
    margin-right: 1rem;
  }
}
.header__nav-item--has-sub:before {
  content: "";
  position: absolute;
  top: 0.6875rem;
  right: -0.9375rem;
  width: 0;
  height: 0;
  border-left: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.25rem solid #FFF;
}
@media (max-width: 767px) {
  .header__nav-item--has-sub:before {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__nav-item--has-sub .icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__nav-item--has-sub .icon {
    width: 1.125rem;
    height: 1.125rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -0.1875rem;
  }
}
.header__nav-item--has-sub .icon:before, .header__nav-item--has-sub .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1.125rem;
  height: 3px;
  border-radius: 0.625rem;
  background: url("../../common/img/icon_line.svg") no-repeat center;
  background-size: contain;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header__nav-item--has-sub .icon:before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 767px) {
  .header__nav-item--has-sub .header__nav-link:before {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__nav-item--has-sub .header__nav-link:after {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__nav-item--has-sub.is-open .header__submenu {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-item--has-sub.is-active .icon:before {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.header__nav-link {
  display: block;
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
}
@media (min-width: 768px) {
  .header__nav-link {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header__nav-link {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .header__nav-link:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__nav-link:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 0.75rem;
    height: 0.5625rem;
    background: url("../../common/img/icon_arrow-left-white.svg") no-repeat center right;
    background-size: contain;
  }
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #FFF;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .header__nav-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFF;
  padding: 0.5rem 0 0.4375rem;
  min-width: 15rem;
  -webkit-box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media (min-width: 768px) {
  .header__submenu {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 767px) {
  .header__submenu {
    position: static;
    margin-top: 1.125rem;
    padding: 1.1875rem 0.9375rem;
    margin-bottom: 0.1875rem;
  }
}
.header__submenu-item {
  padding: 0;
  list-style-type: none;
}
@media (max-width: 767px) {
  .header__submenu-item + .header__submenu-item {
    margin-top: 1rem;
  }
}
.header__submenu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1.25rem 0.5rem 2.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: #222;
  position: relative;
}
@media (max-width: 767px) {
  .header__submenu-item a {
    padding: 0;
  }
}
.header__submenu-item a::after {
  content: "";
  width: 0.6875rem;
  height: 0.4375rem;
  background: url("../../common/img/icon_arrow-left.svg") no-repeat center right;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .header__submenu-item a::after {
    right: -0.375rem;
  }
}
@media screen and (min-width: 1025px) {
  .header__submenu-item a:hover {
    color: #0F5CB5;
  }
  .header__submenu-item a:hover:after {
    background: url("../../common/img/icon_arrow-left-blue.svg") no-repeat center right;
    background-size: contain;
  }
}
@media (min-width: 768px) {
  .header__submenu-item--main a {
    padding: 0.75rem 1.25rem 0.6875rem;
    font-size: 0.9375rem;
  }
}
.header__submenu-item.is-active a {
  color: #0F5CB5;
}
.header__submenu-item.is-active a:after {
  background: url("../../common/img/icon_arrow-left-blue.svg") no-repeat center right;
  background-size: contain;
}
.header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.375rem;
  padding-bottom: 1.9375rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header__lang {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: 0;
    padding-bottom: 0;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.1875rem;
  }
}
.header__lang-current {
  width: 4.1875rem;
  height: 1.6875rem;
  font-size: 0.9375rem;
  line-height: 2;
  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;
  background-color: #fff;
  color: #000;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header__lang-current {
    display: none;
  }
}
.header__lang-current:before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 0.25rem;
  width: 100%;
  height: 100%;
  border: 1px solid #FFF;
  z-index: -1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header__lang-current .icon {
  width: 0;
  height: 0;
  border-left: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.25rem solid #000;
  margin-left: 0.25rem;
  position: absolute;
  top: 50%;
  right: 0.4375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .header__lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFF;
    list-style: none;
    padding: 0.3125rem 0;
    min-width: 4.5625rem;
    -webkit-box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 767px) {
  .header__lang-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0.75rem;
  }
}
.header__lang-item {
  list-style-type: none;
}
@media (max-width: 767px) {
  .header__lang-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}
@media (max-width: 767px) {
  .header__lang-item:after {
    content: "";
    position: absolute;
    top: 0.1875rem;
    right: -0.375rem;
    width: 1px;
    height: 0.875rem;
    background: #FFF;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
.header__lang-item a {
  display: block;
  padding: 0.375rem 0.625rem 0.4375rem;
  font-size: 0.9375rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .header__lang-item a {
    color: #FFF;
    font-size: 0.875rem;
    padding: 0;
    font-weight: 400;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .header__lang-item a.is-active {
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .header__lang-item a:hover {
    color: #032A65;
  }
}
@media (max-width: 767px) {
  .header__lang-item:last-child:after {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__lang.is-open .header__lang-list {
    opacity: 1;
    visibility: visible;
  }
}
.header__contact {
  background-color: #2D8DFB;
  min-width: 13.9375rem;
  height: 5.625rem;
  margin-left: 2.25rem;
}
@media (max-width: 767px) {
  .header__contact {
    margin-left: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.header__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.8125rem;
  padding-left: 0.9375rem;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFF;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .header__contact-item:hover {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .header__contact-item {
    padding-left: 0.9375rem;
  }
}
.header__contact-item:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .header__contact-item--phone {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .header__contact-item--phone {
    padding-top: 0.1875rem;
  }
}
.header__contact-item--phone .header__contact-icon {
  margin-top: 0.1875rem;
}
@media (max-width: 767px) {
  .header__contact-item--phone .header__contact-icon {
    height: 1.25rem;
    margin-top: 0.25rem;
    margin-right: 0.5rem;
  }
}
.header__contact-item--phone .header__contact-txt {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .header__contact-item--phone .header__contact-txt {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .header__contact-item--email {
    padding-bottom: 0.4375rem;
  }
}
.header__contact-item--email .header__contact-txt {
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .header__contact-item--email .header__contact-txt {
    font-size: 1rem;
  }
}
.header__contact-icon {
  height: 0.875rem;
  min-width: 1.75rem;
}
@media (max-width: 767px) {
  .header__contact-icon {
    height: 0.875rem;
    min-width: 1.625rem;
    margin-right: 0.625rem;
  }
}
.header__contact-icon img {
  height: 100%;
  width: auto;
}
.header__contact-txt {
  color: #FFF;
  font-weight: bold;
  line-height: 1;
}

.navi__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.77);
  z-index: 8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .navi__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.footer {
  position: relative;
}
.footer:before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  background: #0F5CB5;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (max-width: 767px) {
  .footer:before {
    width: 6.875rem;
    height: 6.875rem;
  }
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.375rem;
  padding: 7.5rem 0;
}
@media (min-width: 768px) {
  .footer-contact {
    min-height: 23.9375rem;
  }
}
@media (max-width: 767px) {
  .footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.125rem;
    padding: 3.3125rem 0;
  }
}
.footer__btn {
  text-decoration: none;
  position: relative;
  z-index: 9;
  width: 36.5rem;
  height: 8.9375rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .footer__btn:hover {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .footer__btn {
    width: 21.3125rem;
    height: 4.25rem;
    margin-left: -0.1875rem;
  }
}
.footer__btn-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 36.5rem;
  height: 8.9375rem;
  border: 2px solid #0F5CB5;
  background: #FFF;
  padding-top: 1.5rem;
  line-height: 1.4;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .footer__btn-content {
    width: 21.3125rem;
    height: 4.25rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 0.4375rem;
    padding-left: 3.5625rem;
    border-width: 1px;
  }
}
.footer__btn-ttl {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
  color: #171717;
}
@media (max-width: 767px) {
  .footer__btn-ttl {
    font-size: 0.9375rem;
    line-height: 1.73;
  }
}
@media (min-width: 768px) {
  .footer__btn-ttl {
    height: 1.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .footer__btn-ttl {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}
.footer__btn-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #0F5CB5;
  position: relative;
}
@media (min-width: 768px) {
  .footer__btn-txt {
    height: 2.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .footer__btn-txt {
    font-size: 1.125rem;
    line-height: 1;
  }
}
.footer__btn-txt .icon {
  height: 1.875rem;
  position: absolute;
  top: 0.375rem;
  left: 0.625rem;
}
@media (max-width: 767px) {
  .footer__btn-txt .icon {
    height: 1.375rem;
    top: -0.6875rem;
    left: -3.0625rem;
    margin-right: 0;
  }
}
.footer__btn-txt .icon img {
  height: 100%;
  width: auto;
}
.footer__btn-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: #868686;
  padding-top: 0.125rem;
}
@media (min-width: 768px) {
  .footer__btn-note {
    height: 1.1875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .footer__btn-note {
    font-size: 0.625rem;
    padding-top: 0.25rem;
    padding-left: 0.1875rem;
  }
}
.footer__btn-border {
  position: absolute;
  top: -7px;
  left: 7px;
  width: 100%;
  height: 100%;
  border: 2px solid #0F5CB5;
  z-index: -1;
  background: #fff;
}
@media (max-width: 767px) {
  .footer__btn-border {
    top: -0.25rem;
    left: 0.25rem;
    border-width: 1px;
  }
}
@media (min-width: 768px) {
  .footer__btn.btn-tel {
    pointer-events: none;
  }
}
@media (min-width: 768px) {
  .footer__btn.btn-tel .footer__btn-txt {
    padding-left: 2.5rem;
  }
}
.footer__btn.btn-tel .footer__btn-txt .icon {
  height: 2.0625rem;
}
@media (min-width: 768px) {
  .footer__btn.btn-tel .footer__btn-txt .icon {
    left: 0;
  }
}
@media (max-width: 767px) {
  .footer__btn.btn-tel .footer__btn-txt .icon {
    height: 1.75rem;
    top: -0.3125rem;
    left: -2.8125rem;
    margin-top: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .footer__btn.btn-mail .footer__btn-content {
    padding-top: 1.75rem;
  }
}
@media (max-width: 767px) {
  .footer__btn.btn-mail .footer__btn-content {
    padding-top: 0.6875rem;
    padding-left: 3.75rem;
  }
}
.footer__btn.btn-mail .footer__btn-txt {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.1875rem;
}
@media (min-width: 768px) {
  .footer__btn.btn-mail .footer__btn-txt {
    padding-left: 4.375rem;
  }
}
@media (max-width: 767px) {
  .footer__btn.btn-mail .footer__btn-txt {
    text-decoration-thickness: 0.0625rem;
    text-underline-offset: 0.125rem;
    margin-top: 0.3125rem;
  }
}
.footer__nav {
  background: #000;
  padding-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .footer__nav {
    padding-bottom: 0.875rem;
  }
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  padding: 3.4375rem 0 1rem;
}
@media (max-width: 767px) {
  .footer__nav-list {
    display: none;
  }
}
.footer__nav-item {
  list-style-type: none;
}
.footer__nav-item a {
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF;
  text-decoration: none;
  position: relative;
}
.footer__nav-item a:before {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .footer__nav-item a:hover:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.footer__nav address {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  font-style: normal;
}
@media (max-width: 767px) {
  .footer__nav address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 0.75rem;
    line-height: 1.6666666667;
    padding: 0.9375rem 3.75rem 0 0;
  }
}
.footer__nav .footer__powered {
  font-size: 0.75rem;
  margin-top: 0.625rem;
  color: #FFF;
}

.btn-pagetop {
  position: fixed;
  bottom: 5.3125rem;
  right: 1rem;
  z-index: 98;
  width: 5.25rem;
  height: 5.25rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn-pagetop {
    width: 2.8125rem;
    height: 2.8125rem;
    bottom: 0.5625rem;
    right: 0.875rem;
  }
}
.btn-pagetop::before, .btn-pagetop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.375rem solid rgba(134, 134, 134, 0.3);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
          transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  pointer-events: none;
  -webkit-filter: blur(6px);
          filter: blur(6px);
}
@media screen and (min-width: 1025px) {
  .btn-pagetop:hover::before {
    -webkit-animation: pulseBorder 0.8s ease-out forwards;
            animation: pulseBorder 0.8s ease-out forwards;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .btn-pagetop:hover::after {
    -webkit-animation: pulseBorder 1.6s ease-out forwards;
            animation: pulseBorder 1.6s ease-out forwards;
  }
}
.btn-pagetop.is-active {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes pulseBorder {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(2.25);
            transform: translate(-50%, -50%) rotate(45deg) scale(2.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulseBorder {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(2.25);
            transform: translate(-50%, -50%) rotate(45deg) scale(2.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

.main {
  padding-top: 5.625rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main {
    padding-top: 5rem;
  }
}

.inner {
  max-width: 77.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.page-detail .main {
  position: relative;
}
@media (min-width: 768px) {
  .page-detail .main {
    padding-top: 13.4375rem;
  }
}
@media (max-width: 767px) {
  .page-detail .main {
    padding-top: 7.8125rem;
    min-height: calc(100vh - 4.25rem);
  }
}
.page-detail .main:before {
  content: "";
  position: absolute;
  top: 6.375rem;
  left: -5.625rem;
  width: 5.65625rem;
  height: 5.65625rem;
  background: #032A65;
  -webkit-transform: rotate(45deg) scale(3);
          transform: rotate(45deg) scale(3);
}
@media (max-width: 767px) {
  .page-detail .main:before {
    display: none;
  }
}
.page-detail .main:after {
  content: "";
  position: absolute;
  width: 288.125rem;
  height: 170.6875rem;
  background: #E5F0FB;
  top: -17.1875rem;
  left: calc(50% - 210rem);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 79.375rem 100%);
          clip-path: polygon(100% 0, 0% 100%, 79.375rem 100%);
}
@media (max-width: 767px) {
  .page-detail .main:after {
    width: 53.75rem;
    height: 31.875rem;
    top: 7.1875rem;
    left: auto;
    right: 0;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 15rem 100%);
            clip-path: polygon(100% 0, 0% 100%, 15rem 100%);
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination__item a {
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.2s;
  transition: background-image 0.2s;
}
.pagination__item--prev, .pagination__item--next {
  margin-inline: 0.25rem;
}
.pagination__item--number {
  margin-inline: 0.25rem;
}
.pagination__item--number a {
  background-color: #F2F2F2;
  color: #171717;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 1025px) {
  .pagination__item--number a:hover {
    background-color: #0F5CB5;
    color: #fff;
  }
}
.pagination__item--number.is-active a {
  background-color: #0F5CB5;
  color: #fff;
}
.pagination__item--prev a, .pagination__item--next a {
  background-image: url("../../common/img/icon_next-black.svg");
}
.pagination__item--double-prev a, .pagination__item--double-next a {
  background-image: url("../../common/img/icon_dnext-black.svg");
}
.pagination__item--next a, .pagination__item--double-next a {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media (min-width: 1025px) {
  .pagination__item:not(.is-disable).pagination__item--prev a:hover, .pagination__item:not(.is-disable).pagination__item--next a:hover {
    background-image: url("../../common/img/icon_next-blue.svg");
  }
  .pagination__item:not(.is-disable).pagination__item--double-prev a:hover, .pagination__item:not(.is-disable).pagination__item--double-next a:hover {
    background-image: url("../../common/img/icon_dnext-blue.svg");
  }
}
.pagination__item.is-disable a {
  pointer-events: none;
  opacity: 1;
}
.pagination__item.is-disable.pagination__item--prev a, .pagination__item.is-disable.pagination__item--next a {
  background-image: url("../../common/img/icon_next.svg");
}
.pagination__item.is-disable.pagination__item--double-prev a, .pagination__item.is-disable.pagination__item--double-next a {
  background-image: url("../../common/img/icon_dnext.svg");
}

.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
  will-change: transform;
}
.js-fadeIn.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes heroKVImage {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes heroKVImage {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes revealClip {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes revealClip {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.form-block {
  max-width: 50rem;
  width: 100%;
  margin: 3.75rem auto 0;
  font-size: 1rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .form-block {
    margin: 1.875rem auto 0;
    max-width: 100%;
  }
}
.form-block__box {
  background: #fff;
  padding: 4rem 4.5rem;
  -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .form-block__box {
    padding: 1.875rem 0.9375rem;
  }
}
.form-block__heading {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: bold;
  color: #0F5CB5;
  text-align: center;
  margin-bottom: 0.125rem;
}
@media (max-width: 767px) {
  .form-block__heading {
    font-size: 1.5rem;
  }
}
.form-block__txt {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  border-bottom: 1px solid #F4F4F4;
  padding-bottom: 2.125rem;
  margin-bottom: 0.8125rem;
}
@media (max-width: 767px) {
  .form-block__txt {
    font-size: 1rem;
  }
}
.form-block__note {
  font-size: 0.75rem;
  color: #FF3B30;
  margin-bottom: 2.375rem;
}
.form-block__field {
  margin-bottom: 2.25rem;
  position: relative;
}
.form-block__field--small {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form-block__field--check {
  margin-top: 0.625rem;
}
.form-block__label {
  display: block;
  margin-bottom: 0.75rem;
}
.form-block__input, .form-block__file {
  width: 100%;
  border: 1px solid #C8DDF7;
  background: #F4F8FD;
  border-radius: 0.3125rem;
  padding: 0.8125rem;
  height: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .form-block__input, .form-block__file {
    font-size: 0.875rem;
  }
}
.form-block__input[readonly], .form-block__field.is-disable .form-block__input {
  background: #EEEEEE;
  cursor: default;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-block__required {
  color: red;
  font-size: 0.75rem;
  position: relative;
  top: -0.1875rem;
}
.form-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125rem;
}
@media (max-width: 767px) {
  .form-block__row {
    gap: 1.25rem;
    display: block;
  }
}
.form-block__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.form-block__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid #C8DDF7;
  background: #F4F8FD;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
}
.form-block__checkbox input[type=checkbox]:checked {
  background: #005eb8;
  border-color: #005eb8;
}
.form-block__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.0625rem;
  left: 0.4375rem;
  width: 0.3125rem;
  height: 0.6875rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form-block__checkbox-text {
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .form-block__checkbox-text {
    font-size: 0.875rem;
  }
}
.form-block__checkbox-text a {
  color: #0F5CB5;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-block__checkbox-text a:hover {
    text-decoration: none;
  }
}
.form-block__btn-wrap {
  text-align: center;
  margin-top: 1.875rem;
}
.form-block__btn-wrap .btn__main {
  border: none;
  outline: none;
  background: transparent;
}
.form-block__btn-wrap .btn__main-lg .btn__main-content {
  width: 41rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .form-block__btn-wrap .btn__main-lg .btn__main-content {
    width: 19.6875rem;
  }
}
.form-block__btn-wrap .btn__main.is-disable {
  pointer-events: none;
  -webkit-filter: grayscale(100%) brightness(0.9);
          filter: grayscale(100%) brightness(0.9);
  opacity: 0.5;
}
.form-block__select-wrap {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.form-block__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.form-block__selected {
  border: 1px solid #C8DDF7;
  background: #F4F8FD;
  border-radius: 0.3125rem;
  padding: 0.8125rem;
  height: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .form-block__selected {
    font-size: 0.875rem;
  }
}
.form-block__selected.is-placeholder {
  color: #999;
}
.form-block__options {
  position: absolute;
  top: calc(100% + 0.3125rem);
  left: 0;
  right: 0;
  border: 1px solid #C8DDF7;
  background: #F4F8FD;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
}
@media (max-width: 767px) {
  .form-block__options {
    font-size: 0.875rem;
  }
}
.form-block__options li + li {
  border-top: 1px solid #eee;
}
.form-block__option {
  padding: 0.8125rem 1.25rem;
  list-style-type: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .form-block__option {
    padding: 0.9375rem 0.9375rem;
  }
}
.form-block__option:hover {
  background: #E5F0FB;
}
.form-block__select-wrap.open .form-block__options {
  display: block;
}
.form-block__file-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-block__file-label {
  display: inline-block;
  background: #005eb8;
  color: #fff;
  padding: 0.875rem 3.75rem 0.9375rem;
  border-radius: 0.3125rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media (max-width: 767px) {
  .form-block__file-label {
    padding: 0.75rem 1.875rem;
  }
}
.form-block__file-label:hover {
  opacity: 0.8;
}
.form-block__file {
  display: none;
}
.form-block__file-name {
  font-size: 0.8125rem;
}
.form-block__file-note {
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .form-block__file-note {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}
.form-block__required-text {
  font-size: 0.75rem;
  color: #f00;
  margin-bottom: 1.25rem;
}
.form-block__required-text span {
  color: #f00;
}
.form-block__textarea {
  width: 100%;
  padding: 0.8125rem;
  border: 1px solid #C8DDF7;
  background: #F4F8FD;
  border-radius: 0.3125rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .form-block__textarea {
    font-size: 0.875rem;
  }
}
.form-block label.error {
  color: #f00;
  font-size: 0.75rem;
  margin-top: 0.3125rem;
  position: absolute;
  left: 0;
  bottom: -1.125rem;
}
.form-block label.error#resume-error {
  position: static;
}
@media (max-width: 767px) {
  .form-block label.error {
    font-size: 0.6875rem;
  }
}
.form-block__input::-webkit-input-placeholder, .form-block__textarea::-webkit-input-placeholder {
  color: #999;
}
.form-block__input::-moz-placeholder, .form-block__textarea::-moz-placeholder {
  color: #999;
}
.form-block__input:-ms-input-placeholder, .form-block__textarea:-ms-input-placeholder {
  color: #999;
}
.form-block__input::-ms-input-placeholder, .form-block__textarea::-ms-input-placeholder {
  color: #999;
}
.form-block__input::placeholder, .form-block__textarea::placeholder {
  color: #999;
}

.scroll-table {
  position: relative;
}

@media (min-width: 768px) {
  .scroll-more {
    display: none;
  }
}
@media (max-width: 767px) {
  .scroll-more {
    min-width: 7.5rem;
    height: 7.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: rgba(51, 51, 51, 0.5);
    color: #FFF;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 0.625rem;
    padding: 0.625rem 0.625rem;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .scroll-more__img {
    max-width: 2rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .scroll-more__text {
    display: block;
    font-weight: 500;
    font-size: 0.6875rem;
    margin-top: 0.625rem;
  }
}

.page-thank-you .thank-you {
  padding-top: 5.625rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .page-thank-you .thank-you {
    min-height: 68vh;
  }
}
@media (max-width: 767px) {
  .page-thank-you .thank-you {
    padding-top: 2.5rem;
  }
}
.page-thank-you .thank-you__ttl {
  font-size: 1.875rem;
  line-height: 2;
  margin-bottom: 1rem;
  color: #0F5CB5;
}
@media (max-width: 767px) {
  .page-thank-you .thank-you__ttl {
    font-size: 1.5rem;
  }
}
.page-thank-you .thank-you__txt {
  font-size: 1.25rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .page-thank-you .thank-you__txt {
    font-size: 1.125rem;
  }
}
.page-thank-you .thank-you__btn {
  margin-top: 3.75rem;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
}
.loading__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.loading__spinner {
  border: 0.375rem solid #eee;
  border-top: 0.375rem solid #005eb8;
  border-radius: 50%;
  width: 3.75rem;
  height: 3.75rem;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@media (max-width: 767px) {
  .loading__spinner {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.3125rem solid #eee;
    border-top: 0.3125rem solid #005eb8;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.modal-confirm {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.8);
  z-index: 999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
}
.modal-confirm.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-confirm__inner {
  position: relative;
  width: 47.5rem;
  background: #fff;
  padding: 2.5rem 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .modal-confirm__inner {
    width: 21.875rem;
    padding: 2.5rem 1.25rem;
  }
}
.modal-confirm__heading {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 600;
  color: #0F5CB5;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .modal-confirm__heading {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.modal-confirm__list {
  overflow: auto;
  max-height: 12.5rem;
  padding-bottom: 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .modal-confirm__list {
    max-height: 18.125rem;
  }
}
.modal-confirm-lg .modal-confirm__list {
  max-height: 22.5rem;
}
@media (max-width: 767px) {
  .modal-confirm-lg .modal-confirm__list {
    max-height: 18.125rem;
  }
}
.modal-confirm__item {
  width: 38.75rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .modal-confirm__item {
    width: 100%;
  }
}
.modal-confirm__item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .modal-confirm__item dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.modal-confirm__item dl dt {
  width: 11.25rem;
  font-weight: 600;
  color: #0F5CB5;
}
@media (max-width: 767px) {
  .modal-confirm__item dl dt {
    width: 100%;
  }
}
.modal-confirm__item dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.25rem;
}
@media (max-width: 767px) {
  .modal-confirm__item dl dd {
    margin-left: 0;
  }
}
.modal-confirm__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.75rem;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .modal-confirm__btns {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
  }
}
.modal-confirm__btns .btn__main {
  border: none;
  background: transparent;
  outline: none;
}
@media (max-width: 767px) {
  .modal-confirm__btns .btn__main {
    margin: 0.625rem auto;
  }
}
.modal-confirm__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  color: #0F5CB5;
  border: none;
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .modal-confirm__close {
    width: 1.875rem;
    height: 1.875rem;
    top: 0.625rem;
    right: 0.625rem;
  }
}
.modal-confirm__close:before, .modal-confirm__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.75rem;
  height: 2px;
  background-color: #0F5CB5;
}
@media (max-width: 767px) {
  .modal-confirm__close:before, .modal-confirm__close:after {
    width: 1.875rem;
  }
}
.modal-confirm__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal-confirm__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: visible !important;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow, .button-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  width: 2.1875rem;
  height: 2.1875rem;
  background-image: url("../../common/img/icon_arrow-left-gray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slick-arrow:after, .button-arrow:after {
  content: "";
  background-image: url("../../common/img/icon_arrow-left-blue-lg.svg");
  display: none;
}
@media (max-width: 767px) {
  .slick-arrow, .button-arrow {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .slick-arrow:hover, .button-arrow:hover {
    background-image: url("../../common/img/icon_arrow-left-blue-lg.svg");
    background-size: contain;
  }
}

.slick-prev {
  left: calc(50% - 36.5rem);
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

.slick-next {
  right: calc(50% - 36.5rem);
}

.slick-list,
.slick-track {
  height: 100%;
}