/* default settings */
/* reset browser (chrome, safari, firefox, ie, edge)
/* only for new website (remove if you are updating for other website)
@import "reset";
/* =================================================================== */
/*! 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 {
  background: #060F38;
  color: #111F31;
  line-height: 1.75;
  font-size: 16px;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
@media (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) and (max-width: 1360px) {
  html {
    font-size: 1.1764705882vw;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

p, h1, h2, h3, h4, h5, h6, ul, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}

/*
 * 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;
}

/*
 * 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;
  }
}
.text-underline {
  text-decoration: underline;
}
.text-line-through {
  text-decoration: line-through;
}
.text-no-underline {
  text-decoration: none;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-300 {
  font-weight: 300;
}
.text-400 {
  font-weight: 400;
}
.text-500 {
  font-weight: 500;
}
.text-600 {
  font-weight: 600;
}
.text-700 {
  font-weight: 700;
}

.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;
  }
}

.header {
  position: relative;
}
.header .nav-fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.75rem 2.5rem;
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  .header .nav-fixed {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    height: 3.1875rem;
    background: rgba(0, 0, 0, 0.8);
  }
}
.header .nav-fixed.fixed {
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .header .nav-fixed.fixed {
    background: rgba(0, 0, 0, 0.8);
  }
}
.header .nav-fixed .nav-logo {
  width: 6.4375rem;
  margin: auto 0;
}
@media (max-width: 767px) {
  .header .nav-fixed .nav-logo {
    position: absolute;
    z-index: 1;
    width: 5.5rem;
    margin: 0;
    top: 1rem;
    left: 0.9375rem;
  }
}
.header .nav-fixed .nav-logo img {
  vertical-align: top;
}
.header .nav-fixed .btn-link-sp {
  display: none;
}
@media (max-width: 767px) {
  .header .nav-fixed .btn-link-sp {
    display: block;
    margin: 0 0 0 0;
    position: relative;
    z-index: 2;
  }
}
.header .nav-fixed .btn-link-sp a {
  background: rgba(255, 255, 255, 0.2);
  border-left: 0.0625rem solid #fff;
  border-bottom: 0.0625rem solid #fff;
  color: #fff;
  width: 7.3125rem;
  height: 3.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
  box-sizing: border-box;
}
.header .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .header .nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 25, 21, 0.95);
    padding: 0 3.75rem;
    display: none;
  }
}
@media (max-width: 767px) {
  .header .nav-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .nav-menu .btn-cus {
  display: none;
}
@media (max-width: 767px) {
  .header .nav-menu .btn-cus {
    display: block;
  }
  .header .nav-menu .btn-cus a {
    height: 3.25rem;
    font-weight: 700;
  }
  .header .nav-menu .btn-cus a::before {
    -webkit-box-shadow: 0 0.1875rem 1.25rem 0 rgba(51, 51, 51, 0.24);
            box-shadow: 0 0.1875rem 1.25rem 0 rgba(51, 51, 51, 0.24);
  }
  .header .nav-menu .btn-cus a .arrow {
    right: 0.5rem;
  }
}
.header .nav-menu .btn-link {
  margin: 0 0 0 4rem;
}
@media (max-width: 767px) {
  .header .nav-menu .btn-link {
    margin: 1.5rem 0 0 0;
  }
}
.header .nav-menu .btn-link a {
  background: rgba(255, 255, 255, 0.16);
  border: 0.0625rem solid #fff;
  border-radius: 3rem;
  color: #fff;
  width: 13.375rem;
  height: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  line-height: 1.875rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .header .nav-menu .btn-link a {
    border-radius: 2rem;
    width: 15.9375rem;
    height: 3.25rem;
    font-size: 0.875rem;
    line-height: 1.875rem;
    letter-spacing: 0;
  }
}
@media (hover: hover) {
  .header .nav-menu .btn-link a:hover {
    background: #008DC1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 141, 193)), to(rgb(1, 101, 193)));
    background: linear-gradient(180deg, rgb(0, 141, 193) 0%, rgb(1, 101, 193) 100%);
  }
}
.header .nav-menu .btn-link a:disabled {
  cursor: default !important;
}
.header .nav-menu .btn-link a:not(:disabled) {
  cursor: pointer !important;
}
@media (max-width: 767px) {
  .header .nav-menu .btn-link a span {
    display: inline-block;
    margin-left: 0.1875rem;
  }
}
.header .nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  line-height: 1.875rem;
  letter-spacing: 0;
  font-weight: 500;
  margin: auto 0;
}
@media (max-width: 767px) {
  .header .nav-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.125rem;
    line-height: 1.875rem;
    letter-spacing: 0.04em;
    margin: 0 0 2.5rem 0;
    padding: 9.5625rem 0 2.375rem 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.5);
  }
}
@media (hover: hover) {
  .header .nav-menu ul li:hover {
    opacity: 0.5;
  }
}
.header .nav-menu ul li + li {
  margin: 0 0 0 4.0625rem;
}
@media (max-width: 767px) {
  .header .nav-menu ul li + li {
    margin: 2.3125rem 0 0 0;
  }
}
.header .nav-menu ul li:last-child {
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .header .nav-menu ul li:last-child {
    letter-spacing: 0.04em;
  }
}
@media (max-width: 767px) {
  .header .nav-menu ul a {
    padding-left: 1.5625rem;
    position: relative;
  }
  .header .nav-menu ul a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0.3125rem;
    height: 0.3125rem;
    background: #fff;
    border-radius: 100%;
    margin: auto 0;
  }
}
.header .scroll {
  position: absolute;
  right: 1.0625rem;
  bottom: 4.125rem;
  width: 1.125rem;
  z-index: 1;
  padding-top: 7.75rem;
}
@media (max-width: 767px) {
  .header .scroll {
    left: 0;
    right: auto;
    top: 10.1875rem;
    bottom: auto;
    width: 1.125rem;
  }
}
.header .scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0.0625rem;
  height: 7.5rem;
  background: #fff;
}
@media (max-width: 767px) {
  .header .scroll::before {
    left: 0.5rem;
    margin: 0;
  }
}
.header .scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0.3125rem;
  height: 0.3125rem;
  background: #fff;
  border-radius: 100%;
  -webkit-animation: scroll-circle-animation 3s cubic-bezier(0.075, 0.82, 0.165, 1) infinite;
          animation: scroll-circle-animation 3s cubic-bezier(0.075, 0.82, 0.165, 1) infinite;
}
@media (max-width: 767px) {
  .header .scroll::after {
    left: 0.34375rem;
    margin: 0;
  }
}
.header .btn-menu {
  display: none;
}
@media (max-width: 767px) {
  .header .btn-menu {
    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-flow: column;
            flex-flow: column;
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(255, 255, 255, 0.4);
    border-left: 0.0625rem solid #fff;
    border-bottom: 0.0625rem solid #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 2;
    gap: 0.25rem 0;
  }
}
@media (max-width: 767px) {
  .header .btn-menu span {
    display: block;
    width: 1.25rem;
    height: 0.125rem;
    background: #fff;
  }
}
@media (max-width: 767px) {
  .header .btn-menu.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(0.15625rem, 0.125rem);
            transform: rotate(45deg) translate(0.15625rem, 0.125rem);
  }
  .header .btn-menu.active span:nth-child(2) {
    -webkit-transform: rotate(-45deg) translate(0.15625rem, -0.09375rem);
            transform: rotate(-45deg) translate(0.15625rem, -0.09375rem);
  }
}

@-webkit-keyframes scroll-circle-animation {
  10% {
    opacity: 1;
    -webkit-transform: translateY(-0.1875rem);
            transform: translateY(-0.1875rem);
  }
  70% {
    -webkit-transform: translateY(7.25rem);
            transform: translateY(7.25rem);
  }
  71% {
    opacity: 1;
    -webkit-transform: translateY(7.25rem);
            transform: translateY(7.25rem);
  }
  90% {
    opacity: 0;
    -webkit-transform: translateY(7.25rem);
            transform: translateY(7.25rem);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-0.1875rem);
            transform: translateY(-0.1875rem);
  }
}

@keyframes scroll-circle-animation {
  10% {
    opacity: 1;
    -webkit-transform: translateY(-0.1875rem);
            transform: translateY(-0.1875rem);
  }
  70% {
    -webkit-transform: translateY(7.25rem);
            transform: translateY(7.25rem);
  }
  71% {
    opacity: 1;
    -webkit-transform: translateY(7.25rem);
            transform: translateY(7.25rem);
  }
  90% {
    opacity: 0;
    -webkit-transform: translateY(7.25rem);
            transform: translateY(7.25rem);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-0.1875rem);
            transform: translateY(-0.1875rem);
  }
}
.footer {
  background: rgba(244, 244, 244, 0.07);
  padding: 4.875rem 2.5rem 3.375rem 2.5rem;
  border-radius: 0.25rem;
  position: relative;
  margin: 0 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .footer {
    padding: 0.5rem 0 0.5rem 0;
    margin: 0;
  }
}
.footer .title-en {
  position: absolute;
  top: 5rem;
  left: calc(50% - 38.875rem);
  width: 1.9375rem;
}
@media (max-width: 767px) {
  .footer .title-en {
    position: relative;
    top: 0;
    left: 0;
    width: 8.25rem;
  }
}
.footer-ttl {
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-ttl {
    text-align: center;
    margin: 1.3125rem auto 0 auto;
  }
}
.footer-info {
  width: 43.875rem;
  padding-bottom: 5.25rem;
}
@media (max-width: 767px) {
  .footer-info {
    width: 100%;
    padding-bottom: 2.5rem;
  }
}
.footer-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.375rem;
}
@media (max-width: 767px) {
  .footer-info dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem 0 1.375rem 0;
  }
}
.footer-info dl dt {
  width: 16.75rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  padding-left: 2.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (max-width: 767px) {
  .footer-info dl dt {
    width: 100%;
    line-height: 1.5625rem;
    font-weight: 700;
    padding-left: 1.375rem;
    margin-bottom: 0.125rem;
  }
}
.footer-info dl dt::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  width: 0.25rem;
  height: 0.25rem;
  background: #fff;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .footer-info dl dt::before {
    top: 0.6875rem;
    left: 0.375rem;
  }
}
.footer-info dl dd {
  width: 27.125rem;
  letter-spacing: 0;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer-info dl dd {
    width: 100%;
    line-height: 1.5625rem;
    padding-left: 1.375rem;
    padding-right: 0.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.footer-info dl + dl {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  margin-top: 1.375rem;
  padding: 1.375rem 0 0 0;
}
@media (max-width: 767px) {
  .footer-info dl + dl {
    margin-top: 0;
    padding: 1.375rem 0 1.375rem 0;
  }
}
.footer .line {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .footer .line {
    margin: 0 0.9375rem;
  }
}
.footer-logo {
  margin: 4rem auto 0 auto;
  width: 9.1875rem;
}
@media (max-width: 767px) {
  .footer-logo {
    width: 6.4375rem;
    margin: 3.9375rem auto 1rem auto;
  }
}
.footer-copyright {
  position: absolute;
  right: 2.5rem;
  bottom: 0.375rem;
}
@media (max-width: 767px) {
  .footer-copyright {
    position: relative;
    right: 0;
    bottom: 0;
    text-align: right;
    padding: 0 0.9375rem;
  }
}
.footer-copyright-logo {
  width: 3.5rem;
  margin: 0 0 0.25rem auto;
}
@media (max-width: 767px) {
  .footer-copyright-logo {
    width: 3rem;
    margin: 0 0 0 auto;
  }
}
.footer-copyright address {
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  line-height: 1.75rem;
  letter-spacing: 0.02em;
  font-style: normal;
}

.btn-cus a {
  background: #008DC1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 141, 193)), color-stop(0%, rgb(0, 141, 193)), to(rgb(1, 101, 193)));
  background: linear-gradient(180deg, rgb(0, 141, 193) 0%, rgb(0, 141, 193) 0%, rgb(1, 101, 193) 100%);
  border: none;
  border-radius: 2.1875rem;
  color: #fff;
  width: 28.125rem;
  height: 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .btn-cus a {
    width: 100%;
    height: 2.875rem;
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}
.btn-cus a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 4.25rem;
  right: 4.25rem;
  bottom: 0;
  -webkit-box-shadow: 0 0.1875rem 1.25rem 0 rgb(141, 167, 204);
          box-shadow: 0 0.1875rem 1.25rem 0 rgb(141, 167, 204);
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-cus a::before {
    left: 2.3125rem;
    right: 2.3125rem;
  }
}
.btn-cus a:after {
  position: absolute;
  content: "";
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2.1875rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.btn-cus a .arrow {
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.75rem;
  border-radius: 2.5rem;
  margin: auto 0;
  display: block;
}
@media (max-width: 767px) {
  .btn-cus a .arrow {
    width: 2.25rem;
    height: 2.25rem;
    right: 0.375rem;
    border-radius: 2.1875rem;
  }
}
.btn-cus a .arrow::before {
  position: absolute;
  content: "";
  background: url("../../img/arrow.svg") no-repeat center top;
  background-size: 1.5rem;
  position: absolute;
  top: 0.5rem;
  left: 0;
  right: 0;
  border-radius: 2.5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
}
@media (max-width: 767px) {
  .btn-cus a .arrow::before {
    background: url("../../img/arrow.svg") no-repeat center top;
    background-size: 1.375rem;
    top: 0.4375rem;
    border-radius: 2.25rem;
    width: 1.375rem;
    height: 1.375rem;
  }
}
@media (hover: hover) {
  .btn-cus a:hover {
    background: #008DC1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 141, 193)), color-stop(0%, rgb(0, 141, 193)), color-stop(50%, rgb(1, 101, 193)), to(rgb(0, 78, 149)));
    background: linear-gradient(180deg, rgb(0, 141, 193) 0%, rgb(0, 141, 193) 0%, rgb(1, 101, 193) 50%, rgb(0, 78, 149) 100%);
  }
  .btn-cus a:hover:after {
    opacity: 1;
    border: 0.125rem solid #FFFFFF;
  }
  .btn-cus a:hover .arrow::before {
    animation-name: arrowBtn;
    -webkit-animation-name: arrowBtn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
@media (max-width: 767px) {
  .btn-cus a:hover {
    background: #008DC1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 141, 193)), color-stop(0%, rgb(0, 141, 193)), to(rgb(1, 101, 193)));
    background: linear-gradient(180deg, rgb(0, 141, 193) 0%, rgb(0, 141, 193) 0%, rgb(1, 101, 193) 100%);
  }
  .btn-cus a:hover:after {
    opacity: 0;
    border: 0.125rem solid transparent;
  }
  .btn-cus a:hover .arrow::before {
    animation-name: none;
    -webkit-animation-name: none;
    -webkit-animation-duration: 0;
    animation-duration: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.btn-cus a:disabled {
  cursor: default !important;
}
.btn-cus a:not(:disabled) {
  cursor: pointer !important;
}
@media (max-width: 767px) {
  .btn-cus.lines a {
    height: 4rem;
  }
}
@media (max-width: 767px) {
  .btn-cus.lines a .arrow {
    right: 0.875rem;
  }
}

@-webkit-keyframes arrowBtn {
  0% {
    top: 0.5rem;
    opacity: 1;
  }
  20% {
    top: 2.625rem;
    opacity: 0;
  }
  40% {
    top: -1.5rem;
    opacity: 0;
  }
  100% {
    top: 0.625rem;
    opacity: 1;
  }
}
@keyframes arrowBtn {
  0% {
    top: 0.5rem;
    opacity: 1;
  }
  20% {
    top: 2.625rem;
    opacity: 0;
  }
  40% {
    top: -1.5rem;
    opacity: 0;
  }
  100% {
    top: 0.625rem;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
    line-height: 1.75rem;
  }
}
body.fixed {
  overflow: hidden;
}

.inner {
  max-width: 62rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 20.3125rem;
  }
}

.txt-white {
  color: #fff;
}

.txt-blue {
  color: #0046A7;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 60px, 0);
            transform: translate3d(0, 60px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 60px, 0);
            transform: translate3d(0, 60px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fadeInUp {
  opacity: 0;
}

.fadeInUp[style*=visible] {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}