@charset "UTF-8";
@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bottomToTop {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes blur {
  from {
    filter: blur(1.5rem);
  }
  to {
    filter: blur(0);
  }
}
:root {
  --font-family-base: "Yu Gothic", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --color-default: #00053E;
  --color-link: #0056AB;
  --color-subtext: #666;
  --color-grayline: #e6eaeb;
  --color-theme: #000198;
  --color-bg: #CED7DE;
  --color-bg02: #EBF0F4;
  --linear: cubic-bezier(0.0, 0.0, 1.0, 1.0); /* linear */
  /* Sine（最も弱い） */
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715); /* easeInSine */
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1); /* easeOutSine */
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95); /* easeInOutSine */
  /* Quad（弱め。Sineより強く、Cubicより弱い） */
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53); /* easeInQuad */
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* easeOutQuad */
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955); /* easeInOutQuad */
  /* Cubic（Quadより強く、Quartより弱い） */
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19); /* easeInCubic */
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1); /* easeOutCubic */
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  /* Quart（Cubicより強く、Quintより弱い） */
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22); /* easeInQuart */
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  /* Quint（Quartより強く、Expoより弱い） */
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06); /* easeInQuint */
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
  /* Expo（最も強い） */
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035); /* easeInExpo */
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1); /* easeOutExpo */
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
  /* Circ（Expoのような強さを持つが、加速や減速の時間がよりゆるやか。） */
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335); /* easeInCirc */
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1); /* easeOutCirc */
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86); /* easeInOutCirc */
  /* Back（少し行き過ぎてから戻ってくるような動き） */
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045); /* easeInBack */
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* easeOutBack */
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55); /* easeInOutBack */
  --header-height: 14.8rem;
  --header-height-compact: 7.6rem;
  --content-width: 160rem;
  --content-gutter: 2.4rem;
  --content-gap: 2.4rem;
}
@media screen and (max-width: 1280px) {
  :root {
    --header-height: 5.6rem;
  }
}

/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*****************************************************
  Foundation
*****************************************************/
/* -----------------------------------------------
  Web Font
----------------------------------------------- */
@font-face {
  font-family: "Roboto";
  font-display: swap;
  font-style: bold;
  font-weight: 500;
  src: url("../assets/font/Roboto-Medium.woff2") format("woff2"), url("../assets/font/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-display: swap;
  font-style: bold;
  font-weight: 700;
  src: url("../assets/font/Roboto-Bold.woff2") format("woff2"), url("../assets/font/Roboto-Bold.ttf") format("truetype");
}
/* -----------------------------------------------
  Base
----------------------------------------------- */
html {
  font-size: 0.625em;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-compact);
  overscroll-behavior-y: none;
}
html:has(.-compact) {
  scroll-padding-top: var(--header-height-compact);
}
@media screen and (max-width: 1024px) {
  html:has(.-compact) {
    scroll-padding-top: var(--header-height);
  }
}

body {
  font: 500 1.6em/1.5 var(--font-family-base);
  color: var(--color-default);
  min-width: 100%;
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  word-wrap: break-word;
  word-break: break-word;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
* {
  box-sizing: border-box;
}

ul, ol, li, dd {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

em {
  font-style: normal;
}

p {
  margin: 0;
}

sub {
  bottom: -0.1em;
}

b, strong {
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

figure {
  margin: 0;
}

input, textarea, select, button {
  font: inherit;
}

input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type=search]:focus {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.3s linear;
}

select {
  white-space: nowrap;
}

a {
  text-decoration: none;
  color: var(--color-defalut);
  opacity: 1;
}

@media screen and (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 820px) {
  body {
    font-size: 1.6em;
  }
  a:hover {
    text-decoration: none;
  }
}
/*****************************************************
  Layout
*****************************************************/
/* =================================================
  Frame
================================================= */
[data-menu=overlay] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}
.-open [data-menu=overlay] {
  display: block;
}

.l-wrapper {
  padding: 0;
  overflow-x: hidden;
}
.-set + .l-wrapper {
  padding-top: var(--header-height);
}
@media screen and (max-width: 1280px) {
  .l-wrapper {
    padding-top: var(--header-height);
  }
}

.l-main {
  position: relative;
}

@keyframes loadingMask {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =================================================
  .l-section
================================================= */
.l-section {
  padding: 16rem var(--content-gutter);
  position: relative;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .l-section {
    padding: clamp(8rem, 10vw, 16rem) var(--content-gutter);
  }
}
@media screen and (max-width: 820px) {
  .l-section {
    padding: 8rem var(--content-gutter);
  }
}

/* =================================================
  .l-container
================================================= */
.l-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}

/* =================================================
  Header
================================================= */
.l-header {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--content-gutter);
  height: var(--header-height);
  padding: 0 6rem;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .l-header {
    --header-height: 5.8rem;
    padding-left: 1.6rem;
    position: fixed;
  }
}
.l-header.-set {
  transform: translateY(-100%);
  position: fixed;
}
@media screen and (max-width: 1280px) {
  .l-header.-set {
    transform: translateY(0);
  }
}
.l-header.-compact {
  --header-height: 7.6rem;
  padding: 0 4rem;
  position: fixed;
  transform: translateY(0);
  transition: transform 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .l-header.-compact {
    --header-height: 5.8rem;
    padding-left: 1.6rem;
  }
}
.l-header_inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header_logo {
  flex-shrink: 0;
}
.l-header_logo a {
  display: flex;
}
.l-header_logo img {
  width: 23rem;
}
@media screen and (max-width: 1280px) {
  .l-header_logo img {
    width: 18rem;
  }
}
.l-header_spMenu {
  display: none;
}
@media screen and (max-width: 1280px) {
  .l-header_spMenu {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    overflow: hidden;
  }
  .l-header_spMenu span {
    display: block;
    height: 0.3rem;
    width: 3rem;
    background: var(--color-default);
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
  }
  .l-header_spMenu span:nth-child(1) {
    top: -2rem;
  }
  .l-header_spMenu span:nth-child(2) {
    top: 0;
  }
  .l-header_spMenu span:nth-child(3) {
    top: 2rem;
  }
}
@media screen and (max-width: 1280px) and (hover: hover) {
  .l-header_spMenu:hover span:nth-child(1) {
    transform: translateX(-1.5rem);
  }
  .l-header_spMenu:hover span:nth-child(2) {
    transform: translateX(-1rem);
  }
}
.l-header_nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4.8rem;
}
@media screen and (max-width: 1280px) {
  .l-header_nav {
    display: none;
    position: absolute;
    left: 0;
    top: var(--header-height);
    background-color: var(--color-default);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 4rem;
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    overscroll-behavior-y: none;
  }
}
.l-header_nav_list {
  display: flex;
  align-items: center;
  gap: 4rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.8rem;
    width: 100%;
    gap: 0;
  }
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list_item {
    width: 100%;
    border-bottom: 1px solid #393E7A;
  }
}
.l-header_nav_list_item_link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list_item_link {
    color: #fff;
    padding: 2rem 5.9rem 2rem 2.4rem;
    width: 100%;
    gap: 0;
  }
}
.l-header_nav_list_item_link::after {
  content: "";
  display: block;
  -webkit-mask-image: url(../images/ico_arrow.svg);
          mask-image: url(../images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #A7A9B9;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list_item_link::after {
    background-color: #fff;
    position: absolute;
    right: 2.4rem;
  }
}
@media (hover: hover) {
  .l-header_nav_list_item_link:hover {
    text-decoration: underline;
  }
}
.l-header_nav_btn {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
  padding: 1rem 3rem;
  border-radius: 0.4rem;
  background: #76502D;
  border: solid 0.2rem #76502D;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  max-width: 22.6rem;
  transition: background 0.3s ease-out;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_btn {
    margin-left: 2.4rem;
    margin-top: 4rem;
  }
}
.l-header_nav_btn::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../images/ico_dl.svg);
          mask-image: url(../images/ico_dl.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 1.2rem;
  height: 1.6rem;
  background-color: #fff;
}
@media (hover: hover) {
  .l-header_nav_btn:hover {
    background: #fff;
    color: #76502D;
  }
  .l-header_nav_btn:hover::before {
    background-color: #76502D;
  }
}

.l-header_spMenu.-open span:nth-child(1) {
  animation: open-menu-bar01 0.75s forwards;
}

.l-header_spMenu.-open span:nth-child(2) {
  animation: open-menu-bar02 0.75s forwards;
}

.l-header_spMenu.-open span:nth-child(3) {
  animation: open-menu-bar03 0.75s forwards;
}

@keyframes open-menu-bar01 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0rem;
    transform: rotate(0);
  }
  100% {
    top: 0rem;
    transform: rotate(135deg);
  }
}
@keyframes open-menu-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes open-menu-bar03 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(-135deg);
  }
}
/* =================================================
  Footer
================================================= */
.l-footer {
  position: relative;
  background: #fff;
  padding: 4rem var(--content-gutter);
  text-align: center;
}
.l-footer_pagetop {
  z-index: 1;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 6rem;
  height: 6rem;
  display: none;
}
.l-footer_pagetop a {
  display: block;
}
.l-footer_pagetop a .pagetop_arrow {
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-footer_pagetop a:hover .pagetop_arrow {
    transform: translateY(-1rem);
  }
}
@media screen and (max-width: 820px) {
  .l-footer_pagetop {
    bottom: 4.8rem;
    width: 4rem;
    height: 4rem;
  }
}
.l-footer_copyright {
  text-align: center;
  color: #000;
  margin-top: 1.6rem;
}
.l-footer_copyright small {
  font-size: 1.2rem;
  font-weight: 500;
}

/*****************************************************
  Component
*****************************************************/
/* -----------------------------------------------
  .c-btn
----------------------------------------------- */
.c-btn {
  color: var(--color-default);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38.4rem;
  background: #fff;
  border: solid 0.2rem #EBEFF2;
  border-radius: 0.4rem;
  padding: 1.6rem 3.2rem;
  position: relative;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .c-btn {
    padding: 1.4rem 3.2rem;
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    background: var(--color-theme);
    color: #fff;
    border: solid 0.2rem var(--color-theme);
  }
}
.c-btn.-dl::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../images/ico_dl.svg);
          mask-image: url(../images/ico_dl.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 1.2rem;
  height: 1.6rem;
  background-color: var(--color-default);
  position: absolute;
  left: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .c-btn.-dl:hover::before {
    background-color: #fff;
  }
}
.c-btn.-more {
  font-size: 1.6rem;
  max-width: 16rem;
  padding: 0.8rem 1.6rem;
  line-height: 1.5;
}
.c-btn.-center {
  margin: 0 auto;
}
.c-btn.-disabled {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
  background: #888;
  border-color: #888;
}

/* -----------------------------------------------
  .c-title
----------------------------------------------- */
.c-titleLvTwo {
  font-size: 4.2rem;
  font-weight: bold;
  position: relative;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 6.4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #161A44;
  display: flex;
  align-items: center;
  gap: var(--content-gap);
}
@media screen and (max-width: 820px) {
  .c-titleLvTwo {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
.c-titleLvTwo .-sub {
  font-size: 1.8rem;
  font-weight: 500;
}
.c-titleLvTwo.-reverse {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.c-titleLvThree {
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 4rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvThree {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.c-titleLvThree:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-100%);
  width: 2rem;
  height: 0.6rem;
  border-radius: 0.6rem;
  background: linear-gradient(to right, #165cc5 0%, #09a72e 100%);
}

.c-titleLvFour {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 3rem;
  padding-left: 2.7rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvFour {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
  }
}
.c-titleLvFour:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-100%);
  border-radius: 0.6rem;
  width: 1.5rem;
  height: 0.4rem;
  background: #09a72e;
}

.c-titleLvFive {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  line-height: 1.3;
  color: #09a72e;
}

.c-grid {
  display: grid;
  gap: var(--content-gap);
}

.c-grid[data-grid-col^="1-"] {
  grid-template-columns: repeat(1, 1fr);
}

.c-grid[data-grid-col^="2-"] {
  grid-template-columns: repeat(2, 1fr);
}

.c-grid[data-grid-col^="3-"] {
  grid-template-columns: repeat(3, 1fr);
}

.c-grid[data-grid-col^="4-"] {
  grid-template-columns: repeat(4, 1fr);
}

.c-grid[data-grid-col^="5-"] {
  grid-template-columns: repeat(5, 1fr);
}

.c-grid[data-grid-rowgap^="0-"] {
  row-gap: 0px;
}

.c-grid[data-grid-colgap^="0-"] {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.c-grid[data-grid-rowgap^="5-"] {
  row-gap: 5px;
}

.c-grid[data-grid-colgap^="5-"] {
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.c-grid[data-grid-rowgap^="10-"] {
  row-gap: 10px;
}

.c-grid[data-grid-colgap^="10-"] {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.c-grid[data-grid-rowgap^="15-"] {
  row-gap: 15px;
}

.c-grid[data-grid-colgap^="15-"] {
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.c-grid[data-grid-rowgap^="20-"] {
  row-gap: 20px;
}

.c-grid[data-grid-colgap^="20-"] {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.c-grid[data-grid-rowgap^="25-"] {
  row-gap: 25px;
}

.c-grid[data-grid-colgap^="25-"] {
  -moz-column-gap: 25px;
       column-gap: 25px;
}

.c-grid[data-grid-rowgap^="30-"] {
  row-gap: 30px;
}

.c-grid[data-grid-colgap^="30-"] {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.c-grid[data-grid-rowgap^="35-"] {
  row-gap: 35px;
}

.c-grid[data-grid-colgap^="35-"] {
  -moz-column-gap: 35px;
       column-gap: 35px;
}

.c-grid[data-grid-rowgap^="40-"] {
  row-gap: 40px;
}

.c-grid[data-grid-colgap^="40-"] {
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.c-grid[data-grid-rowgap^="45-"] {
  row-gap: 45px;
}

.c-grid[data-grid-colgap^="45-"] {
  -moz-column-gap: 45px;
       column-gap: 45px;
}

.c-grid[data-grid-rowgap^="50-"] {
  row-gap: 50px;
}

.c-grid[data-grid-colgap^="50-"] {
  -moz-column-gap: 50px;
       column-gap: 50px;
}

@media screen and (max-width: 1024px) {
  .c-grid[data-grid-col*="-1-"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid[data-grid-col*="-2-"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid[data-grid-col*="-3-"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid[data-grid-col*="-4-"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid[data-grid-col*="-5-"] {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid[data-grid-rowgap*="-0-"] {
    row-gap: 0px;
  }
  .c-grid[data-grid-colgap*="-0-"] {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .c-grid[data-grid-rowgap*="-5-"] {
    row-gap: 5px;
  }
  .c-grid[data-grid-colgap*="-5-"] {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .c-grid[data-grid-rowgap*="-10-"] {
    row-gap: 10px;
  }
  .c-grid[data-grid-colgap*="-10-"] {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .c-grid[data-grid-rowgap*="-15-"] {
    row-gap: 15px;
  }
  .c-grid[data-grid-colgap*="-15-"] {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .c-grid[data-grid-rowgap*="-20-"] {
    row-gap: 20px;
  }
  .c-grid[data-grid-colgap*="-20-"] {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .c-grid[data-grid-rowgap*="-25-"] {
    row-gap: 25px;
  }
  .c-grid[data-grid-colgap*="-25-"] {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .c-grid[data-grid-rowgap*="-30-"] {
    row-gap: 30px;
  }
  .c-grid[data-grid-colgap*="-30-"] {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .c-grid[data-grid-rowgap*="-35-"] {
    row-gap: 35px;
  }
  .c-grid[data-grid-colgap*="-35-"] {
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .c-grid[data-grid-rowgap*="-40-"] {
    row-gap: 40px;
  }
  .c-grid[data-grid-colgap*="-40-"] {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .c-grid[data-grid-rowgap*="-45-"] {
    row-gap: 45px;
  }
  .c-grid[data-grid-colgap*="-45-"] {
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
  .c-grid[data-grid-rowgap*="-50-"] {
    row-gap: 50px;
  }
  .c-grid[data-grid-colgap*="-50-"] {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media screen and (max-width: 820px) {
  .c-grid[data-grid-col$="-1"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid[data-grid-col$="-2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid[data-grid-col$="-3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid[data-grid-col$="-4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid[data-grid-col$="-5"] {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid[data-grid-rowgap^="-0"] {
    row-gap: 0px;
  }
  .c-grid[data-grid-colgap^="-0"] {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .c-grid[data-grid-rowgap^="-5"] {
    row-gap: 5px;
  }
  .c-grid[data-grid-colgap^="-5"] {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .c-grid[data-grid-rowgap^="-10"] {
    row-gap: 10px;
  }
  .c-grid[data-grid-colgap^="-10"] {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .c-grid[data-grid-rowgap^="-15"] {
    row-gap: 15px;
  }
  .c-grid[data-grid-colgap^="-15"] {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .c-grid[data-grid-rowgap^="-20"] {
    row-gap: 20px;
  }
  .c-grid[data-grid-colgap^="-20"] {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .c-grid[data-grid-rowgap^="-25"] {
    row-gap: 25px;
  }
  .c-grid[data-grid-colgap^="-25"] {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .c-grid[data-grid-rowgap^="-30"] {
    row-gap: 30px;
  }
  .c-grid[data-grid-colgap^="-30"] {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .c-grid[data-grid-rowgap^="-35"] {
    row-gap: 35px;
  }
  .c-grid[data-grid-colgap^="-35"] {
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .c-grid[data-grid-rowgap^="-40"] {
    row-gap: 40px;
  }
  .c-grid[data-grid-colgap^="-40"] {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .c-grid[data-grid-rowgap^="-45"] {
    row-gap: 45px;
  }
  .c-grid[data-grid-colgap^="-45"] {
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
  .c-grid[data-grid-rowgap^="-50"] {
    row-gap: 50px;
  }
  .c-grid[data-grid-colgap^="-50"] {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
/* -----------------------------------------------
  .c-card
----------------------------------------------- */
.c-card {
  max-width: 54.4rem;
  background-color: #fff;
  border-radius: 6px;
  padding-bottom: 3rem;
}
@media screen and (max-width: 820px) {
  .c-card {
    width: 100%;
    max-width: 100%;
  }
}
.c-card_name {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  background-color: #DCEBEE;
  border-radius: 6px 6px 0 0;
  padding-block: 1.4rem;
}
.c-card_img {
  padding: 3rem;
  text-align: center;
}
.c-card_title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-block: 0;
  padding-inline: 3rem;
}
@media screen and (max-width: 820px) {
  .c-card_title {
    font-size: 2rem;
  }
}
.c-card_text {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.8;
  padding-inline: 3rem;
}
.c-card_btnWrap {
  margin-top: 30px;
  text-align: center;
  padding-inline: 3rem;
}
.c-card_btn {
  position: relative;
  width: 23.7rem;
  display: inline-block;
  padding: 0.5rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  color: #0056AB;
  border: 2px solid #0056AB;
  border-radius: 2.2rem;
  background: #fff;
}
.c-card_btn::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 1.8rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #0056AB;
}
@media (hover: hover) {
  .c-card_btn:hover {
    background: #0056AB;
    color: #fff;
  }
  .c-card_btn:hover::after {
    border-color: transparent transparent transparent #fff;
  }
}

/* -----------------------------------------------
  .c-lead
----------------------------------------------- */
.c-lead {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .c-lead {
    font-size: 2rem;
  }
}

/* -----------------------------------------------
  .c-text
----------------------------------------------- */
.c-text {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .c-text {
    font-size: 1.6rem;
  }
}
.c-text + .c-text {
  margin-top: 1.5em;
}

/* -----------------------------------------------
  .c-link
----------------------------------------------- */
.c-link {
  text-decoration: underline;
  color: var(--color-link);
}
.c-link:hover {
  text-decoration: none;
}

/* -----------------------------------------------
  .c-textList
----------------------------------------------- */
[class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]),
[class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-linkArrowList]:not([class*=_item]) {
  margin-top: 0.7rem;
  padding: 0 0 0.7rem;
}
[class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_item]) {
  margin-top: 0.7rem;
  padding: 0 0 0.7rem;
}

@media screen and (max-width: 820px) {
  [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]),
  [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-linkArrowList]:not([class*=_item]) {
    margin-top: 0.7rem;
  }
  [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) {
    padding-left: 0.9rem;
  }
}
.c-textList {
  margin-top: 0;
  margin-bottom: 0;
}
.c-textList_item {
  position: relative;
  padding-left: 2rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
.c-textList_item:before {
  position: absolute;
  content: "";
  display: block;
  top: 0.65em;
  left: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #008a20;
}
.-moss .c-textList_item:before {
  background: #09A72E;
}
.c-textList_item + .c-textList_item {
  margin-top: 0.7rem;
}
@media screen and (max-width: 820px) {
  .c-textList_item {
    padding-left: 1.6rem;
    font-size: 1.6rem;
  }
  .c-textList_item::before {
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
  }
}

/* -----------------------------------------------
  .c-numericList
----------------------------------------------- */
[class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]) [class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]),
[class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]) [class^=c-linkArrowList]:not([class*=_item]) {
  margin-top: 0.7rem;
  padding: 0 0 0.7rem;
}
[class^=c-numericList]:not([class*=_item]):not([class*=_title]):not([class*=_data]):not([class*=_number]) [class^=c-textList]:not([class*=_item]):not([class*=_title]):not([class*=_data]) {
  margin-top: 0.7rem;
  padding: 0 0 0.7rem;
}

.c-numericList {
  margin: 0;
  counter-reset: number 0;
}
.c-numericList_item {
  padding: 0 0 0 1.5em;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8;
}
.c-numericList_item:before {
  position: absolute;
  top: 0;
  left: 0.5rem;
  counter-increment: number 1;
  content: counter(number) ".";
}
.c-numericList_item + .c-numericList_item {
  margin-top: 0.7rem;
}
@media screen and (max-width: 820px) {
  .c-numericList_item {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
  .c-notice
----------------------------------------------- */
.c-notice_item {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.8;
}
.c-notice_item + .c-notice_item {
  margin-top: 1rem;
}
.c-notice_mark {
  position: absolute;
  left: 0;
}
.c-notice.-numeric > .c-notice_item {
  padding-left: 2em;
}
.c-notice.-w2em .c-notice_item {
  padding-left: 2em;
}
.c-notice.-w3em .c-notice_item {
  padding-left: 3em;
}
.c-notice.-w4em .c-notice_item {
  padding-left: 4em;
}
.c-notice.-w5em .c-notice_item {
  padding-left: 5em;
}
.c-notice.-w6em .c-notice_item {
  padding-left: 6em;
}
.c-notice.-w7em .c-notice_item {
  padding-left: 7em;
}
.c-notice.-w8em .c-notice_item {
  padding-left: 8em;
}
.c-notice.-w9em .c-notice_item {
  padding-left: 9em;
}
.c-notice.-w10em .c-notice_item {
  padding-left: 10em;
}
.c-notice.-w11em .c-notice_item {
  padding-left: 11em;
}
.c-notice.-w12em .c-notice_item {
  padding-left: 12em;
}
.c-notice.-w13em .c-notice_item {
  padding-left: 13em;
}
.c-notice.-w14em .c-notice_item {
  padding-left: 14em;
}
.c-notice.-w15em .c-notice_item {
  padding-left: 15em;
}
.c-notice.-w16em .c-notice_item {
  padding-left: 16em;
}
.c-notice.-w17em .c-notice_item {
  padding-left: 17em;
}
.c-notice.-w18em .c-notice_item {
  padding-left: 18em;
}
.c-notice.-w19em .c-notice_item {
  padding-left: 19em;
}
.c-notice.-w20em .c-notice_item {
  padding-left: 20em;
}

/* -----------------------------------------------
  .c-table
----------------------------------------------- */
.c-table {
  width: 100%;
}
.c-table th, .c-table td {
  font-size: 1.8rem;
  border: solid #002753 0.1rem;
  line-height: 1.5;
  padding: 1rem 2rem;
  text-align: left;
  vertical-align: top;
}
.c-table_title {
  color: #fff;
  font-weight: 600;
  background: #0e6eb3;
  width: 25.6rem;
}
.c-table_title.-center {
  text-align: center;
}
.c-table_title span {
  display: inline-block;
  font-size: 1.4rem;
}
.c-table_info {
  background: #fff;
}
.c-table_caption {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  margin: 2rem 0 1rem;
}
@media screen and (max-width: 820px) {
  .c-table {
    border-top: solid #002753 0.1rem;
  }
  .c-table th, .c-table td {
    font-size: 1.6rem;
    display: block;
    padding: 1rem 1.5rem;
    border-top: none;
  }
  .c-table_title {
    width: 100%;
  }
  .c-table_caption {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
  .c-imageUnit
----------------------------------------------- */
.c-imageUnit {
  overflow: hidden;
  zoom: 1;
}
.c-imageUnit_image {
  margin: 0;
  text-align: center;
}
.c-imageUnit_text {
  overflow: hidden;
}
.c-imageUnit.-parallel .c-imageUnit_image {
  margin-bottom: 2rem;
}
.c-imageUnit.-imageL .c-imageUnit_image {
  float: left;
  margin-right: 4rem;
}
.c-imageUnit.-imageR .c-imageUnit_image {
  float: right;
  margin-left: 4rem;
}
@media screen and (max-width: 820px) {
  .c-imageUnit[data-spgrid=false] .c-imageUnit_image {
    float: none;
    max-width: none;
    margin: 0 0 2.5rem !important;
  }
  .c-imageUnit[data-spgrid=false] .c-imageUnit_image img {
    width: auto;
  }
  .c-imageUnit[data-spgrid=false].-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .c-imageUnit[data-spgrid=false].-reverse .c-imageUnit_image {
    margin: 2.5rem 0 0 !important;
  }
}

/* -----------------------------------------------
  .c-figure
----------------------------------------------- */
.c-figure {
  text-align: center;
  margin: 0;
}
.c-figure_caption {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 1.2rem;
}
@media screen and (max-width: 820px) {
  .c-figure_caption {
    font-size: 1.3rem;
  }
  .c-figure img {
    max-width: 100%;
    width: auto;
  }
}

/* -----------------------------------------------
  .c-imageWithText
----------------------------------------------- */
.c-imageWithText {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3.2rem;
}
.c-imageWithText_img {
  text-align: center;
}
@media screen and (max-width: 820px) {
  .c-imageWithText {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* -----------------------------------------------
  .c-definition
----------------------------------------------- */
.c-definition {
  display: grid;
  grid-template-columns: auto 1fr;
  margin: 0;
  font-weight: bold;
}

/* -----------------------------------------------
  .c-linkArrow
----------------------------------------------- */
.c-linkArrow {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
.c-linkArrow a {
  color: var(--color-link);
}
.c-linkArrow a:hover {
  text-decoration: underline;
}
.c-linkArrow a::before {
  position: absolute;
  content: "";
  display: block;
  top: 0.6em;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent var(--color-link);
}
@media screen and (max-width: 820px) {
  .c-linkArrow {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
  .c-box
----------------------------------------------- */
.c-box {
  padding: 4rem;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  .c-box {
    padding: 2rem;
  }
}

/* -----------------------------------------------
  .c-anchor
----------------------------------------------- */
.c-anchorLink {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3.2rem;
}
.c-anchorLink_item {
  padding: 1.2rem 4.8rem 1.2rem 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-theme);
  display: flex;
  align-items: center;
  border: solid 0.2rem var(--color-theme);
  border-radius: 0.4rem;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  .c-anchorLink_item {
    min-height: 8rem;
  }
}
.c-anchorLink_item_icon {
  margin-right: 1.5rem;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .c-anchorLink_item_icon {
    width: 4rem;
    height: 4rem;
    -webkit-mask-size: 4rem;
            mask-size: 4rem;
  }
}
.c-anchorLink_item_icon.-type01 {
  -webkit-mask-image: url(../images/press/ico_01.svg);
          mask-image: url(../images/press/ico_01.svg);
  background: var(--color-theme);
}
.c-anchorLink_item_icon.-type02 {
  -webkit-mask-image: url(../images/press/ico_02.svg);
          mask-image: url(../images/press/ico_02.svg);
  background: var(--color-theme);
}
.c-anchorLink_item_icon.-type03 {
  -webkit-mask-image: url(../images/press/ico_03.svg);
          mask-image: url(../images/press/ico_03.svg);
  background: var(--color-theme);
}
.c-anchorLink_item::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--color-theme);
  clip-path: polygon(50% 62.5%, 0 0, 100% 0);
  display: block;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-3px);
}
@media (hover: hover) {
  .c-anchorLink_item:hover {
    background: var(--color-theme);
    color: #fff;
  }
  .c-anchorLink_item:hover::after {
    background-color: #fff;
  }
  .c-anchorLink_item:hover .c-anchorLink_item_icon {
    background: #fff;
  }
}

/* -----------------------------------------------
  .c-indentList
----------------------------------------------- */
.c-indentList {
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-indentList_item {
  text-indent: -1em;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .c-indentList_item {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
  .c-modal
----------------------------------------------- */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10010;
  width: 100%;
  height: 100dvh;
  display: none;
}
.c-modal[aria-hidden=false] .c-modal_overlay,
.c-modal[aria-hidden=false] .c-modal_content {
  animation: fadeIn 0.5s linear;
}
.c-modal[aria-hidden=true] .c-modal_overlay,
.c-modal[aria-hidden=true] .c-modal_content {
  animation: fadeOut 0.5s linear;
}
.c-modal.is-open {
  display: block;
}
.c-modal_overlay, .c-modal_content {
  will-change: transform;
}
.c-modal_overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.c-modal_content {
  width: 100%;
  max-width: 105.6rem;
  padding: 5rem 4rem;
  background: #fff;
  height: 80dvh;
  overflow: auto;
}
@media screen and (max-width: 820px) {
  .c-modal_content {
    padding: 3.2rem 2.4rem;
  }
}
.c-modal_header {
  margin-bottom: 2.4rem;
}
.c-modal_title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
.c-modal_close {
  background: var(--color-theme);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  position: absolute;
  right: 0;
  top: 0;
}

/*****************************************************
  top
*****************************************************/
/* -----------------------------------------------
  .mv
----------------------------------------------- */
.mv {
  display: flex;
}
@media screen and (max-width: 820px) {
  .mv {
    flex-direction: column;
  }
}
.mv_main {
  width: 59.1667%;
}
@media screen and (max-width: 820px) {
  .mv_main {
    width: 100%;
  }
}
.mv_sub {
  width: 40.8333%;
}
@media screen and (max-width: 820px) {
  .mv_sub {
    width: 100%;
  }
}
.mv_news {
  background: var(--color-theme);
  padding: 4rem var(--content-gutter);
}
.mv_news_contents {
  display: flex;
  gap: 0 7rem;
  align-items: flex-start;
}
@media screen and (max-width: 820px) {
  .mv_news_contents {
    flex-direction: column;
  }
}
.mv_news_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}
.mv_news_list_item {
  background: #fff;
  border-radius: 0.4rem;
}
.mv_news_list_item_link {
  display: flex;
  gap: 2.5rem;
  padding: 2.4rem 2rem;
  color: var(--color-default);
}
@media screen and (max-width: 820px) {
  .mv_news_list_item_link {
    flex-direction: column;
    gap: 1rem;
  }
}
.mv_news_list_item a:hover .mv_news_list_item_title {
  color: var(--color-link);
  text-decoration: underline;
}
.mv_news_list_item_date {
  font-size: 1.8rem;
  flex-shrink: 0;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .mv_news_list_item_date {
    font-size: 1.6rem;
  }
}
.mv_news_list_item_title {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .mv_news_list_item_title {
    font-size: 1.6rem;
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ballUp {
  0% {
    top: 35%;
    left: 35%;
  }
  100% {
    top: 15%;
    left: 15%;
  }
}
@keyframes ballDown {
  0% {
    transform: translate(-1000%, -1000%) rotateX(-50deg) rotateY(-40deg) rotateZ(-65deg) scale(1);
  }
  100% {
    transform: translate(-155%, -155%) rotateX(-50deg) rotateY(-40deg) rotateZ(-65deg) scale(1);
  }
}
@keyframes partsDelete {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bgnone {
  0% {
    background: transparent;
  }
  100% {
    background: transparent;
  }
}
@keyframes corePanel {
  0% {
    background: #C1C9D4;
  }
  100% {
    background: linear-gradient(135deg, #3641FE 0%, #1720BB 100%);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
}
@keyframes corePanelScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(15);
  }
}
@keyframes coreShadow {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.mainMV {
  position: relative;
  width: 100%;
  height: 50vw;
}

.cell {
  margin: auto;
  width: 100%;
  height: 50vw;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.5vw;
  transform: rotate(45deg) skew(-20deg, -20deg) scale(1) translateY(-25vw);
}
.cell_wrap {
  width: 100vw;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: #C1C9D4;
}
.-animate .cell_wrap {
  animation: partsDelete 1s ease-out 3.5s forwards;
}
.cell_items {
  aspect-ratio: 1/1;
  background-color: #febe3e;
  position: relative;
  box-shadow: 5px 5px 5px 2px rgb(174, 183, 195);
  transform: scale(0);
}
.cell_items.-core {
  background: #C1C9D4;
  box-shadow: none;
  z-index: 2;
  transform: scale(1);
}
.cell_items.-core::before {
  transform: scale(0);
}
.cell_items.-core::after {
  width: 3vw;
  height: 3vw;
  transform: translate(-1000%, -1000%) rotateX(-50deg) rotateY(-40deg) rotateZ(-65deg) scale(1);
}
.cell_items.-group1 {
  background-color: #fff;
}
.cell_items.-group2 {
  background-color: #fff;
}
.cell_items.-group3 {
  background-color: #fff;
}
.cell_items.-group4 {
  background-color: #fff;
}
.cell_items::before {
  content: "";
  display: block;
  position: absolute;
  top: 35%;
  left: 35%;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: none;
  box-shadow: 20px 20px 10px 0px rgba(0, 0, 0, 0.3);
}
.cell_items::after {
  content: "";
  display: block;
  position: absolute;
  top: 35%;
  left: 35%;
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background: linear-gradient(to bottom, #161A44 0%, #070A29 100%);
  transform: translate(-100%, -100%) rotateX(-50deg) rotateY(-40deg) rotateZ(-65deg);
}
.-animate .cell_items::after {
  transform: translate(0%, 0%) rotateX(-50deg) rotateY(-40deg) rotateZ(-65deg);
}
.-animate .cell {
  animation: partsDelete 1s ease-out 3.5s forwards;
}
.-animate .cell .-core {
  animation: corePanel 0.25s linear 0.9s forwards, corePanelScale 1s linear 2.5s forwards;
}
.-animate .cell .-core::before {
  animation: partsDelete 0.1s ease-out 2.4s forwards, coreShadow 1.25s linear 0s forwards;
}
.-animate .cell .-core::after {
  animation: ballDown 1.25s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s forwards, partsDelete 0.1s ease-out 2.4s forwards;
}
.-animate .cell .-group1 {
  animation: scaleUp 0.25s ease-out 1s forwards;
}
.-animate .cell .-group1::after {
  animation: ballUp 0.5s ease-out 1.2s forwards;
}
.-animate .cell .-group2 {
  animation: scaleUp 0.25s ease-out 1.2s forwards;
}
.-animate .cell .-group2::after {
  animation: ballUp 0.5s ease-out 1.4s forwards;
}
.-animate .cell .-group3 {
  animation: scaleUp 0.25s ease-out 1.4s forwards;
}
.-animate .cell .-group3::after {
  animation: ballUp 0.5s ease-out 1.6s forwards;
}
.-animate .cell .-group4 {
  animation: scaleUp 0.25s ease-out 1.6s forwards;
}
.-animate .cell .-group4::after {
  animation: ballUp 0.5s ease-out 1.8s forwards;
}

@keyframes logoFrame {
  0% {
    transform: translateY(180px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes illustPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes line01 {
  0% {
    width: 0;
  }
  100% {
    width: 188px;
  }
}
@keyframes line02 {
  0% {
    width: 0;
  }
  100% {
    width: 121px;
  }
}
@keyframes line03 {
  0% {
    width: 0;
  }
  100% {
    width: 32px;
  }
}
.main_mv {
  position: relative;
  width: 100%;
}
.main_mv svg {
  vertical-align: bottom;
}
.main_mv .logo_frame {
  transform: translateY(180px);
}
.main_mv .mile_line_01,
.main_mv .mile_line_02,
.main_mv .mile_line_03 {
  width: 0;
}
.main_mv .mile_point_01,
.main_mv .mile_point_02,
.main_mv .mile_point_03,
.main_mv .mile_point_04,
.main_mv .mile_point_05,
.main_mv .mile_point_06 {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transform: scale(0);
}
.main_mv .logo_title {
  opacity: 0;
}
.main_mv .logo_subtitle {
  opacity: 0;
}
.main_mv .logo_subtitle_en {
  opacity: 0;
}
.main_mv .logo_text_01 {
  opacity: 0;
}
.main_mv .logo_text_02 {
  opacity: 0;
}
.main_mv .logo_text_03 {
  opacity: 0;
}
.main_mv .illust {
  transform: scale(0);
  transform-origin: 50% 50%;
  transform-box: fill-box;
}
.main_mv .-animate .logo_frame {
  animation: logoFrame 1s ease-out 2.4s forwards;
}
.main_mv .-animate .logo_text_01 {
  animation: fadeIn 0.5s ease-out 0.5s forwards;
}
.main_mv .-animate .mile_line_01 {
  animation: line01 0.5s ease-out 1s forwards;
}
.main_mv .-animate .mile_line_02 {
  animation: line02 0.5s ease-out 1.6s forwards;
}
.main_mv .-animate .mile_line_03 {
  animation: line03 0.5s ease-out 2.3s forwards;
}
.main_mv .-animate .mile_point_01 {
  animation: scaleUp 0.2s ease-out 0.7s forwards;
}
.main_mv .-animate .mile_point_02 {
  animation: scaleUp 0.2s ease-out 0.8s forwards;
}
.main_mv .-animate .mile_point_03 {
  animation: scaleUp 0.2s ease-out 1.4s forwards;
}
.main_mv .-animate .mile_point_04 {
  animation: scaleUp 0.2s ease-out 1.5s forwards;
}
.main_mv .-animate .mile_point_05 {
  animation: scaleUp 0.2s ease-out 2.1s forwards;
}
.main_mv .-animate .mile_point_06 {
  animation: scaleUp 0.2s ease-out 2.2s forwards;
}
.main_mv .-animate .logo_title {
  animation: fadeIn 1s ease-out 3s forwards;
}
.main_mv .-animate .logo_subtitle {
  animation: fadeIn 1s ease-out 3.7s forwards;
}
.main_mv .-animate .logo_subtitle_en {
  animation: fadeIn 1s ease-out 4.9s forwards;
}
.main_mv .-animate .logo_text_02 {
  animation: fadeIn 1s ease-out 4.2s forwards;
}
.main_mv .-animate .logo_text_03 {
  animation: fadeIn 1.2s ease-out 4.7s forwards;
}
.main_mv .-animate .illust_08 {
  animation: illustPop 0.8s ease-out 5s forwards;
}
.main_mv .-animate .illust_09 {
  animation: illustPop 0.8s ease-out 5.1s forwards;
}
.main_mv .-animate .illust_13 {
  animation: illustPop 0.8s ease-out 5.2s forwards;
}
.main_mv .-animate .illust_12 {
  animation: illustPop 0.8s ease-out 5.3s forwards;
}
.main_mv .-animate .illust_05 {
  animation: illustPop 0.8s ease-out 5.4s forwards;
}
.main_mv .-animate .illust_06 {
  animation: illustPop 0.8s ease-out 5.5s forwards;
}
.main_mv .-animate .illust_02 {
  animation: illustPop 0.8s ease-out 5.6s forwards;
}
.main_mv .-animate .illust_01 {
  animation: illustPop 0.8s ease-out 5.7s forwards;
}
.main_mv .-animate .illust_03 {
  animation: illustPop 0.8s ease-out 5.8s forwards;
}
.main_mv .-animate .illust_04 {
  animation: illustPop 0.8s ease-out 5.9s forwards;
}
.main_mv .-animate .illust_15 {
  animation: illustPop 0.8s ease-out 6s forwards;
}
.main_mv .-animate .illust_11 {
  animation: illustPop 0.8s ease-out 6.1s forwards;
}
.main_mv .-animate .illust_10 {
  animation: illustPop 0.8s ease-out 6.2s forwards;
}
.main_mv .-animate .illust_07 {
  animation: illustPop 0.8s ease-out 6.3s forwards;
}
.main_mv .-animate .illust_14 {
  animation: illustPop 0.8s ease-out 6.4s forwards;
}

.mv_bg {
  width: 100%;
  height: calc(100vh - 11rem);
  background: url(../images/bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  overflow: hidden;
}
.mv_bg_imgbox {
  width: 56.5625%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1%;
  mix-blend-mode: luminosity;
  filter: brightness(0.74);
}
.mv_bg_imgbox_item {
  background-image: url(../images/dummy.jpg);
  background-position: 0 0;
  background-repeat: repeat-y;
  background-size: 100%;
  height: 3000vh;
}
.mv_bg_imgbox_item.-animate {
  animation: mv_slide 4500s linear infinite;
}
.mv_bg_imgbox_item.-animate:nth-child(odd) {
  animation: mv_slide_re 3000s linear infinite;
}
.mv_bg_textbox {
  width: 43.4375%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.65625vw;
}

@keyframes mv_slide {
  0% {
    background-position: 0 200%;
  }
  100% {
    background-position: 0 -100%;
  }
}
@keyframes mv_slide_re {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0 200%;
  }
}
.mv_fade {
  width: 100%;
  height: 42vw;
  background: url(../images/bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  margin-bottom: 10rem;
}
.mv_fade_imgbox {
  width: 60%;
  height: 100%;
  position: relative;
  transform: translateY(5rem);
}
.mv_fade_imgbox_item {
  position: absolute;
  transition: 2s ease-in-out;
  mix-blend-mode: plus-lighter;
}
.mv_fade_imgbox_item.-hidden {
  opacity: 0;
}
.mv_fade_imgbox_item.-active {
  opacity: 1;
}
.mv_fade_textbox {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.65625vw;
}

.fixedBg {
  background-size: cover;
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.fixedBg video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.mv_movie {
  background: #fff;
  height: 51.8rem;
  display: flex;
  overflow: hidden;
  margin: 0 0 0vh;
  position: relative;
}
@media screen and (max-width: 820px) {
  .mv_movie {
    justify-content: center;
    margin: 0 0 0vh;
  }
}
@media screen and (max-width: 576px) {
  .mv_movie {
    height: 106.7vw;
  }
}
.mv_movie_imgbox {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1%;
  mix-blend-mode: luminosity;
  filter: brightness(0.74);
}
.mv_movie_imgbox_item {
  background-image: url(../images/dummy.jpg);
  background-position: 0 0;
  background-repeat: repeat-y;
  background-size: 100%;
  height: 3000vh;
}
.mv_movie_imgbox_item.-animate {
  animation: mv_slide 4500s linear infinite;
}
.mv_movie_imgbox_item.-animate:nth-child(odd) {
  animation: mv_slide_re 3000s linear infinite;
}
.mv_movie_textbox {
  padding: 7.1rem 7.65625vw 0;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .mv_movie_textbox {
    padding: 7.65625vw;
  }
}
.mv_movie_textbox svg {
  max-width: 100%;
}
.mv_movie_deco {
  text-align: center;
  font-family: Roboto;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 16px;
  /* 133.333% */
  letter-spacing: 2.4px;
  position: absolute;
  right: 8rem;
  bottom: 9rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 820px) {
  .mv_movie_deco {
    right: 1rem;
  }
}
.mv_movie_deco:before {
  content: "";
  display: block;
  height: 7rem;
  width: 0.1rem;
  background: var(--color-default);
  position: absolute;
  left: calc(50% - 1px);
  bottom: calc(100% + 20px);
  animation: lineScroll 2s ease-in-out infinite;
}
.mv_movie_deco::after {
  content: "";
  background: #fff;
  width: 50%;
  height: 14rem;
  display: block;
  position: absolute;
  left: 25%;
  bottom: 300%;
}

@keyframes lineScroll {
  0% {
    transform: translateY(-100%);
    height: 7rem;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    height: 0;
    opacity: 0;
  }
}
.sectionTitle {
  color: var(--color-default);
  font-feature-settings: "palt" on;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 6.2rem;
  font-size: clamp(3.6rem, 3.875vw, 6.2rem);
  font-weight: 400;
  margin: 0 0 1.6rem;
  position: relative;
}
.sectionTitle.-left {
  padding-left: clamp(2.4rem, 7.88vw, 13.6rem);
}
.sectionTitle.-right {
  padding-right: clamp(2.4rem, 7.88vw, 13.6rem);
}
.sectionTitle.-reverse {
  color: #fff;
}
.sectionTitle_deco {
  color: var(--color-default);
  font-family: Roboto;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 2.4px;
  position: absolute;
  left: 0;
  top: 0;
  writing-mode: vertical-rl;
  height: 400%;
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sectionTitle_deco {
    font-size: 1rem;
  }
}
.sectionTitle_deco.-reverse {
  color: #fff;
}
.sectionTitle_deco:before {
  content: "";
  display: block;
  height: 7rem;
  width: 0.1rem;
  background: var(--color-default);
}
@media screen and (max-width: 1280px) {
  .sectionTitle_deco:before {
    height: 4rem;
  }
}
.-reverse .sectionTitle_deco:before {
  background: #fff;
}
.sectionTitle_deco.-right {
  right: 0;
  left: auto;
}
.sectionTitle_text {
  position: relative;
  color: var(--color-default);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: clamp(3.2rem, 4.5vw, 7.2rem);
  font-size: clamp(1.6rem, 1.155vw, 1.8rem);
}
.sectionTitle_text.-left {
  padding-left: clamp(2.4rem, 7.88vw, 13.6rem);
}
.sectionTitle_text.-right {
  padding-right: clamp(2.4rem, 7.88vw, 13.6rem);
}
.sectionTitle_text.-reverse {
  color: #fff;
}
.sectionTitle_text.-large {
  font-size: clamp(1.6rem, 1.155vw, 2.2rem);
  line-height: 2.4;
}

.about {
  background: var(--color-default);
}
.about_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 3.2rem;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 820px) {
  .about_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
    gap: 0.2rem;
  }
}
.about_list_item {
  display: flex;
  justify-content: center;
}
.about_list_item_textbox {
  width: 34.311224%;
  padding: 2rem 2.4rem;
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/bg_about.png) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .about_list_item_textbox {
    width: 50%;
  }
}
@media screen and (max-width: 820px) {
  .about_list_item_textbox {
    width: 53.823%;
  }
}
@media screen and (max-width: 820px) {
  .about_list_item_textbox {
    font-size: 1.6rem;
  }
}
.about_list_item_imgbox {
  width: 65.688776%;
}
@media screen and (max-width: 1280px) {
  .about_list_item_imgbox {
    width: 50%;
  }
}
@media screen and (max-width: 820px) {
  .about_list_item_imgbox {
    width: 46.177%;
  }
}
.about_list02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 17.2rem));
  gap: 3.2rem;
  justify-content: center;
  margin: 7.2rem auto;
}
@media screen and (max-width: 576px) {
  .about_list02 {
    grid-template-columns: repeat(auto-fit, minmax(5rem, 15.2rem));
    gap: 1.6rem;
  }
}
.about_list02_item {
  text-align: center;
}
.about_list02_item_text {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.4;
}
.about_cv {
  display: grid;
  grid-template-columns: minmax(78rem, 50%);
  justify-content: center;
  gap: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .about_cv {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
    margin: 0 calc(var(--content-gutter) * -1);
  }
}
.about_cv_link {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: var(--color-bg02);
  padding: 4rem;
}
.about_cv_link .c-btn {
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .about_cv_link:hover .c-btn {
    background: var(--color-theme);
    color: #fff;
    border: solid 0.2rem var(--color-theme);
  }
  .about_cv_link:hover .c-btn.-dl::before {
    background: #fff;
  }
}
@media screen and (max-width: 820px) {
  .about_cv_link {
    padding: 3.2rem 2.4rem;
  }
}
.about_cv_link .c-btn {
  margin-top: auto;
}
.about_cv_contents {
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 576px) {
  .about_cv_contents {
    flex-direction: column;
  }
}
.about_cv_contents_imgbox {
  flex-shrink: 0;
  text-align: center;
}
.about_cv_contents_subtitle {
  border-radius: 2px;
  background: var(--color-default);
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.4rem 1.6rem;
  margin-bottom: 0.8rem;
  display: inline-flex;
}
.about_cv_contents_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 820px) {
  .about_cv_contents_title {
    font-size: 1.8rem;
  }
}
.about_cv_contents_text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .about_cv_contents_text {
    font-size: 1.4rem;
  }
}

.case_title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.case_title_text {
  font-size: 1.8rem;
  font-weight: 500;
}
.case_contents {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .case_contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .case_contents {
    grid-template-columns: repeat(1, 1fr);
  }
}
.case_contents_item {
  position: relative;
  padding-left: 4rem;
  border-left: 1px solid #EBF0F4;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 820px) {
  .case_contents_item {
    padding-left: 0;
    border-left: none;
    padding-bottom: 2.4rem;
    border-bottom: solid 1px var(--color-default);
  }
  .case_contents_item:last-child {
    padding-bottom: 0;
    border: none;
  }
}
.case_contents_item_img {
  margin-bottom: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .case_contents_item_img {
    margin-bottom: 1.6rem;
  }
}
.case_contents_item_tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.case_contents_item_tagList_item {
  padding: 0.3rem 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--color-default);
}
.case_contents_title {
  margin: 1.6rem 0 0.4rem;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .case_contents_title {
    font-size: 1.8rem;
  }
}
.case_contents_text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.case_contents_name {
  color: #595966;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .case_contents_name {
    margin-bottom: 2.4rem;
  }
}
.case_contents_btn {
  margin-top: auto;
}

.contentsBlock {
  padding: 16rem var(--content-gutter) 16rem 13.6rem;
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
}
@media screen and (max-width: 1640px) {
  .contentsBlock {
    margin-left: 2.4rem;
  }
}
@media screen and (max-width: 1280px) {
  .contentsBlock {
    padding: clamp(8rem, 10vw, 16rem) var(--content-gutter);
  }
}
@media screen and (max-width: 820px) {
  .contentsBlock {
    padding: 8rem var(--content-gutter);
  }
}
.contentsBlock::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #fff url(../images/bg.png) no-repeat center center;
  background-size: cover;
}
.contentsBlock.-white::before {
  background: #fff;
}
.contentsBlock.-left::before {
  left: auto;
  right: 0;
}

.solution {
  position: relative;
  display: flex;
  gap: 6.4rem;
}
.solution_wrap {
  margin: 22rem auto;
}
@media screen and (max-width: 1024px) {
  .solution_wrap {
    margin: clamp(8rem, 13.75vw, 22rem) auto;
  }
}
.solution_anchor {
  flex-shrink: 0;
  width: 28.2rem;
  height: 100%;
  padding: 2.4rem 2rem;
  border-radius: 0.8rem;
  border: 0.2rem solid #EBEFF2;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  transition: transform 0.3s 0.02s;
}
@media screen and (max-width: 820px) {
  .solution_anchor {
    display: none;
  }
}
.solution_anchor .indicator {
  background-color: var(--color-theme);
  width: 4rem;
  height: 3.9rem;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  transition: 0.3s ease-out 0.2s;
}
.solution_anchor_item_link {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #CED7DE;
}
.solution_anchor_item:nth-child(4) a {
  padding-bottom: 0;
  border: none;
}
.solution_anchor_item_num {
  display: flex;
  flex-shrink: 0;
  padding: 1rem 0.9rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 50%;
  color: #fff;
  font-family: Roboto;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  background: var(--color-default);
  width: 4rem;
  height: 3.9rem;
  white-space: nowrap;
}
.-active .solution_anchor_item_num {
  background: transparent;
  transition: 0s ease-out 0.2s;
}
.solution_anchor_item_text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  width: 100%;
}
@media (hover: hover) {
  .solution_anchor_item_text:hover {
    text-decoration: underline;
  }
}
.solution_anchor_item_text_sub {
  font-size: 1.7rem;
  font-weight: 500;
}
.solution_anchor_item:nth-child(1).-active ~ .indicator {
  top: 2.8rem;
}
.solution_anchor_item:nth-child(2).-active ~ .indicator {
  top: 13.4rem;
}
.solution_anchor_item:nth-child(3).-active ~ .indicator {
  top: 25.1rem;
}
.solution_anchor_item:nth-child(4).-active ~ .indicator {
  top: 35.8rem;
}
.solution_contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
.solution_contents_section_title {
  color: var(--color-default);
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #CED7DE;
  display: flex;
  gap: 1.6rem;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 820px) {
  .solution_contents_section_title {
    font-size: 2.2rem;
  }
}
.solution_contents_section_title_num {
  color: #FFF;
  font-family: Roboto;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 3rem;
  background: var(--color-default);
  line-height: 1;
  width: 3.9rem;
  height: 3.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .solution_contents_section_title_num {
    font-size: 1.6rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.solution_contents_section_subtitle {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .solution_contents_section_subtitle {
    font-size: 1.6rem;
  }
}
.solution_contents_section_title02 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  margin-top: 0;
}
@media screen and (max-width: 820px) {
  .solution_contents_section_title02 {
    font-size: 1.8rem;
  }
}
.solution_contents_section_text {
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}
.solution_contents_section_inner {
  border-left: 1px solid #CED7DE;
  background: #EBF0F4;
  display: flex;
  position: relative;
}
.solution_contents_section_inner + .solution_contents_section_inner {
  margin-top: 0.8rem;
}
.solution_contents_section_inner_textbox {
  flex: 1;
  padding: 2rem 3rem;
}
@media screen and (max-width: 820px) {
  .solution_contents_section_inner_textbox {
    padding: 1.6rem 2.4rem;
  }
}
.solution_contents_section_inner_textbox_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
}
@media screen and (max-width: 820px) {
  .solution_contents_section_inner_textbox_title {
    padding-right: 4rem;
    margin-bottom: 1.6rem;
  }
}
.solution_contents_section_inner_textbox_text {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 1024px) {
  .solution_contents_section_inner_imgbox {
    width: 5rem;
  }
}
@media screen and (max-width: 820px) {
  .solution_contents_section_inner_imgbox {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.support {
  background: var(--color-default) url(../images/bg_support.jpg) no-repeat center center;
  background-size: cover;
}
.support_lead {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem;
  margin: 7.2rem 0 4rem;
  padding-bottom: 6.4rem;
  border-bottom: 1px solid #393E7A;
}
@media screen and (max-width: 1024px) {
  .support_lead {
    grid-template-columns: repeat(1, 1fr);
  }
}
.support_lead_list {
  gap: 1.6rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 145px));
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .support_lead_list {
    justify-content: center;
  }
}
.support_lead_list_item {
  width: 14.8rem;
}
.support_lead_list_item_imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E1F5F;
  aspect-ratio: 1/1;
}
.support_lead_list_item_textbox {
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.8rem;
}
.support_title {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 820px) {
  .support_title {
    font-size: 2.2rem;
  }
}
.support_text {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  .support_text {
    font-size: 1.6rem;
  }
}
.support_contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
@media screen and (max-width: 820px) {
  .support_contents {
    grid-template-columns: repeat(1, 1fr);
  }
}
.support_contents_item {
  text-align: center;
}
.support_contents_item_text {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 1rem;
  line-height: 1.8;
  text-align: center;
}
.support_contents_item_keyword {
  font-weight: 700;
}
.support_conversion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 820px) {
  .support_conversion {
    grid-template-columns: repeat(1, 1fr);
  }
}
.support_conversion_item {
  padding: 7.2rem var(--content-gutter);
  background: var(--color-default) url(../images/bg_support_l.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .support_conversion_item {
    padding: 6.4rem var(--content-gutter);
  }
}
.support_conversion_item .support_text {
  text-align: left;
  max-width: 66rem;
  width: 100%;
  margin-bottom: 4rem;
}
.support_conversion_item.-type02 {
  background-image: url(../images/bg_support_r.jpg);
}
.support_conversion_item .c-btn {
  margin-top: auto;
}

.labo {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.2rem;
  align-items: center;
  padding: 4rem 1.6rem;
  margin-top: 7.2rem;
}
@media screen and (max-width: 820px) {
  .labo {
    grid-template-columns: 1fr;
  }
}
.labo_logo {
  text-align: center;
}
.labo_logo_img {
  width: 100%;
  max-width: 30rem;
}
.labo_text {
  font-size: 2rem;
  line-height: 1.8;
}
.labo_link {
  color: var(--color-theme);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
}
@media (hover: hover) {
  .labo_link:hover {
    text-decoration: none;
  }
}

.modal_title {
  font-size: 2.8rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-default);
  padding: 0 4rem 4rem;
  margin: 0 -4rem;
}
@media screen and (max-width: 820px) {
  .modal_title {
    font-size: 2.2rem;
    padding: 0 4.8rem 3.2rem 2.4rem;
    margin: 0 -2.4rem;
  }
}
.modal_contents {
  padding: 3.2rem 0 1.6rem;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 820px) {
  .modal_contents {
    flex-direction: column;
  }
}
.modal_contents + .modal_contents {
  border-top: 1px solid #EBF0F4;
}
.modal_contents_textbox_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .modal_contents_textbox_title {
    font-size: 1.8rem;
  }
}
.modal_contents_textbox_text {
  font-size: 1.8rem;
  line-height: 1.8;
}
.modal_contents_textbox_text + .modal_contents_textbox_text {
  margin-top: 1.6rem;
}
@media screen and (max-width: 820px) {
  .modal_contents_textbox_text {
    font-size: 1.6rem;
  }
}
.modal_contents_textbox_img {
  text-align: center;
  margin-top: 4rem;
}
.modal_contents_textbox_link {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-theme);
}
@media (hover: hover) {
  .modal_contents_textbox_link:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 820px) {
  .modal_contents_textbox_link {
    font-size: 1.6rem;
  }
}
.modal_contents_imgbox {
  text-align: center;
  flex-shrink: 0;
}
.modal_contents_imgbox.-col02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  flex-shrink: 1;
}
.modal_contents_imgbox_item_text {
  margin-top: 1rem;
  text-align: left;
  font-size: 1.2rem;
}

.popup02_imgbox {
  display: flex;
  margin-top: 1.6rem;
}
.mvTextParts {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transform: scale(0);
}

.mvTextParts_01 {
  animation: scaleUp 0.1s ease-out 1.1s forwards;
}

.mvTextParts_02 {
  animation: scaleUp 0.1s ease-out 1.2s forwards;
}

.mvTextParts_03 {
  animation: scaleUp 0.1s ease-out 1.3s forwards;
}

.mvTextParts_04 {
  animation: scaleUp 0.1s ease-out 1.4s forwards;
}

.mvTextParts_05 {
  animation: scaleUp 0.1s ease-out 1.5s forwards;
}

.mvTextParts_06 {
  animation: scaleUp 0.1s ease-out 1.6s forwards;
}

.mvTextParts_07 {
  animation: scaleUp 0.1s ease-out 1.7s forwards;
}

.mvTextParts_08 {
  animation: scaleUp 0.1s ease-out 2s forwards;
}

.mvTextParts_09 {
  animation: scaleUp 0.1s ease-out 2.1s forwards;
}

.mvTextParts_10 {
  animation: scaleUp 0.1s ease-out 2.2s forwards;
}

.mvTextParts_11 {
  animation: scaleUp 0.1s ease-out 2.3s forwards;
}

.mvTextParts_12 {
  animation: scaleUp 0.1s ease-out 2.4s forwards;
}

.mvTextParts_13 {
  animation: scaleUp 0.1s ease-out 2.5s forwards;
}

.mvTextParts_14 {
  animation: scaleUp 0.1s ease-out 2.6s forwards;
}

.mvTextParts_15 {
  animation: scaleUp 0.1s ease-out 2.7s forwards;
}

.mvTextParts_16 {
  animation: scaleUp 0.1s ease-out 2.8s forwards;
}

.mvTextParts_17 {
  animation: scaleUp 0.1s ease-out 2.9s forwards;
}

.jigyo {
  opacity: 0;
  animation: fadeIn 1s ease-out 3s forwards;
}

.designcenter {
  opacity: 0;
  animation: fadeIn 1s ease-out 3.5s forwards;
}

.bottomTextLine {
  transform-origin: 50% 50%;
  transform: scale(0, 1);
  animation: textLine 0.8s ease-out 4s forwards;
}

@keyframes textLine {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.maskText {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: clip-path 1s var(--easeOutQuart) 0.1s;
}
.maskText.-animate {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.maskText::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  transform: translateX(-151%) skewX(-45deg);
  transition: transform 2s var(--easeOutQuart);
}
.maskText.-animate::after {
  transform: translateX(151%) skewX(-45deg);
}

@keyframes mask-animation {
  0% {
    -webkit-mask-position: 130% 130%;
            mask-position: 130% 130%;
  }
  99% {
    -webkit-mask-position: 0% 0%;
            mask-position: 0% 0%;
    -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  }
  100% {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.maskEffect {
  -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 250% 250%;
          mask-size: 250% 250%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 130% 130%;
          mask-position: 130% 130%;
}
.maskEffect.-animate {
  animation: mask-animation 1s linear forwards;
}

.fadeContents {
  opacity: 0;
  transform: translate(-1rem, 1rem);
  transition: opacity 1s var(--easeOutQuart), transform 1s var(--easeOutQuart);
}
.fadeContents.-animate {
  opacity: 1;
  transform: translate(0, 0);
}

/*****************************************************
  CSS Animation
*****************************************************/
@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fadeOutTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-3rem);
  }
}
@keyframes leftToRight {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rightToLeft {
  from {
    opacity: 0;
    transform: translateX(3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bottomToTop {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blur {
  from {
    filter: blur(1.5rem);
  }
  to {
    filter: blur(0);
  }
}
@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes scrollTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*****************************************************
  Utility
*****************************************************/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-mtSmall {
  margin-top: 1.5rem !important;
}

.u-mtNormal {
  margin-top: 5rem !important;
}

.u-mtLarge {
  margin-top: 7rem !important;
}

.u-mbSmall {
  margin-bottom: 1.5rem !important;
}

.u-mbNormal {
  margin-bottom: 5rem !important;
}

.u-mbLarge {
  margin-bottom: 7rem !important;
}

@media screen and (max-width: 820px) {
  u-mtSmall {
    margin-top: 1.5rem !important;
  }
  .u-mtNormal {
    margin-top: 3rem !important;
  }
  .u-mtLarge {
    margin-top: 5rem !important;
  }
  .u-mbSmall {
    margin-bottom: 1.5rem !important;
  }
  .u-mbNormal {
    margin-bottom: 3rem !important;
  }
  .u-mbLarge {
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 820px) {
  .u-mt-sp0 {
    margin-top: 0px !important;
  }
  .u-mr-sp0 {
    margin-right: 0px !important;
  }
  .u-mb-sp0 {
    margin-bottom: 0px !important;
  }
  .u-ml-sp0 {
    margin-left: 0px !important;
  }
  .u-mt-sp5 {
    margin-top: 5px !important;
  }
  .u-mr-sp5 {
    margin-right: 5px !important;
  }
  .u-mb-sp5 {
    margin-bottom: 5px !important;
  }
  .u-ml-sp5 {
    margin-left: 5px !important;
  }
  .u-mt-sp10 {
    margin-top: 10px !important;
  }
  .u-mr-sp10 {
    margin-right: 10px !important;
  }
  .u-mb-sp10 {
    margin-bottom: 10px !important;
  }
  .u-ml-sp10 {
    margin-left: 10px !important;
  }
  .u-mt-sp15 {
    margin-top: 15px !important;
  }
  .u-mr-sp15 {
    margin-right: 15px !important;
  }
  .u-mb-sp15 {
    margin-bottom: 15px !important;
  }
  .u-ml-sp15 {
    margin-left: 15px !important;
  }
  .u-mt-sp20 {
    margin-top: 20px !important;
  }
  .u-mr-sp20 {
    margin-right: 20px !important;
  }
  .u-mb-sp20 {
    margin-bottom: 20px !important;
  }
  .u-ml-sp20 {
    margin-left: 20px !important;
  }
  .u-mt-sp25 {
    margin-top: 25px !important;
  }
  .u-mr-sp25 {
    margin-right: 25px !important;
  }
  .u-mb-sp25 {
    margin-bottom: 25px !important;
  }
  .u-ml-sp25 {
    margin-left: 25px !important;
  }
  .u-mt-sp30 {
    margin-top: 30px !important;
  }
  .u-mr-sp30 {
    margin-right: 30px !important;
  }
  .u-mb-sp30 {
    margin-bottom: 30px !important;
  }
  .u-ml-sp30 {
    margin-left: 30px !important;
  }
  .u-mt-sp35 {
    margin-top: 35px !important;
  }
  .u-mr-sp35 {
    margin-right: 35px !important;
  }
  .u-mb-sp35 {
    margin-bottom: 35px !important;
  }
  .u-ml-sp35 {
    margin-left: 35px !important;
  }
  .u-mt-sp40 {
    margin-top: 40px !important;
  }
  .u-mr-sp40 {
    margin-right: 40px !important;
  }
  .u-mb-sp40 {
    margin-bottom: 40px !important;
  }
  .u-ml-sp40 {
    margin-left: 40px !important;
  }
  .u-mt-sp45 {
    margin-top: 45px !important;
  }
  .u-mr-sp45 {
    margin-right: 45px !important;
  }
  .u-mb-sp45 {
    margin-bottom: 45px !important;
  }
  .u-ml-sp45 {
    margin-left: 45px !important;
  }
  .u-mt-sp50 {
    margin-top: 50px !important;
  }
  .u-mr-sp50 {
    margin-right: 50px !important;
  }
  .u-mb-sp50 {
    margin-bottom: 50px !important;
  }
  .u-ml-sp50 {
    margin-left: 50px !important;
  }
  .u-mt-sp55 {
    margin-top: 55px !important;
  }
  .u-mr-sp55 {
    margin-right: 55px !important;
  }
  .u-mb-sp55 {
    margin-bottom: 55px !important;
  }
  .u-ml-sp55 {
    margin-left: 55px !important;
  }
  .u-mt-sp60 {
    margin-top: 60px !important;
  }
  .u-mr-sp60 {
    margin-right: 60px !important;
  }
  .u-mb-sp60 {
    margin-bottom: 60px !important;
  }
  .u-ml-sp60 {
    margin-left: 60px !important;
  }
  .u-mt-sp65 {
    margin-top: 65px !important;
  }
  .u-mr-sp65 {
    margin-right: 65px !important;
  }
  .u-mb-sp65 {
    margin-bottom: 65px !important;
  }
  .u-ml-sp65 {
    margin-left: 65px !important;
  }
  .u-mt-sp70 {
    margin-top: 70px !important;
  }
  .u-mr-sp70 {
    margin-right: 70px !important;
  }
  .u-mb-sp70 {
    margin-bottom: 70px !important;
  }
  .u-ml-sp70 {
    margin-left: 70px !important;
  }
  .u-mt-sp75 {
    margin-top: 75px !important;
  }
  .u-mr-sp75 {
    margin-right: 75px !important;
  }
  .u-mb-sp75 {
    margin-bottom: 75px !important;
  }
  .u-ml-sp75 {
    margin-left: 75px !important;
  }
  .u-mt-sp80 {
    margin-top: 80px !important;
  }
  .u-mr-sp80 {
    margin-right: 80px !important;
  }
  .u-mb-sp80 {
    margin-bottom: 80px !important;
  }
  .u-ml-sp80 {
    margin-left: 80px !important;
  }
  .u-mt-sp85 {
    margin-top: 85px !important;
  }
  .u-mr-sp85 {
    margin-right: 85px !important;
  }
  .u-mb-sp85 {
    margin-bottom: 85px !important;
  }
  .u-ml-sp85 {
    margin-left: 85px !important;
  }
  .u-mt-sp90 {
    margin-top: 90px !important;
  }
  .u-mr-sp90 {
    margin-right: 90px !important;
  }
  .u-mb-sp90 {
    margin-bottom: 90px !important;
  }
  .u-ml-sp90 {
    margin-left: 90px !important;
  }
  .u-mt-sp95 {
    margin-top: 95px !important;
  }
  .u-mr-sp95 {
    margin-right: 95px !important;
  }
  .u-mb-sp95 {
    margin-bottom: 95px !important;
  }
  .u-ml-sp95 {
    margin-left: 95px !important;
  }
  .u-mt-sp100 {
    margin-top: 100px !important;
  }
  .u-mr-sp100 {
    margin-right: 100px !important;
  }
  .u-mb-sp100 {
    margin-bottom: 100px !important;
  }
  .u-ml-sp100 {
    margin-left: 100px !important;
  }
}
.u-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

@media screen and (max-width: 820px) {
  .u-pt-sp0 {
    padding-top: 0px !important;
  }
  .u-pr-sp0 {
    padding-right: 0px !important;
  }
  .u-pb-sp0 {
    padding-bottom: 0px !important;
  }
  .u-pl-sp0 {
    padding-left: 0px !important;
  }
  .u-pt-sp5 {
    padding-top: 5px !important;
  }
  .u-pr-sp5 {
    padding-right: 5px !important;
  }
  .u-pb-sp5 {
    padding-bottom: 5px !important;
  }
  .u-pl-sp5 {
    padding-left: 5px !important;
  }
  .u-pt-sp10 {
    padding-top: 10px !important;
  }
  .u-pr-sp10 {
    padding-right: 10px !important;
  }
  .u-pb-sp10 {
    padding-bottom: 10px !important;
  }
  .u-pl-sp10 {
    padding-left: 10px !important;
  }
  .u-pt-sp15 {
    padding-top: 15px !important;
  }
  .u-pr-sp15 {
    padding-right: 15px !important;
  }
  .u-pb-sp15 {
    padding-bottom: 15px !important;
  }
  .u-pl-sp15 {
    padding-left: 15px !important;
  }
  .u-pt-sp20 {
    padding-top: 20px !important;
  }
  .u-pr-sp20 {
    padding-right: 20px !important;
  }
  .u-pb-sp20 {
    padding-bottom: 20px !important;
  }
  .u-pl-sp20 {
    padding-left: 20px !important;
  }
  .u-pt-sp25 {
    padding-top: 25px !important;
  }
  .u-pr-sp25 {
    padding-right: 25px !important;
  }
  .u-pb-sp25 {
    padding-bottom: 25px !important;
  }
  .u-pl-sp25 {
    padding-left: 25px !important;
  }
  .u-pt-sp30 {
    padding-top: 30px !important;
  }
  .u-pr-sp30 {
    padding-right: 30px !important;
  }
  .u-pb-sp30 {
    padding-bottom: 30px !important;
  }
  .u-pl-sp30 {
    padding-left: 30px !important;
  }
  .u-pt-sp35 {
    padding-top: 35px !important;
  }
  .u-pr-sp35 {
    padding-right: 35px !important;
  }
  .u-pb-sp35 {
    padding-bottom: 35px !important;
  }
  .u-pl-sp35 {
    padding-left: 35px !important;
  }
  .u-pt-sp40 {
    padding-top: 40px !important;
  }
  .u-pr-sp40 {
    padding-right: 40px !important;
  }
  .u-pb-sp40 {
    padding-bottom: 40px !important;
  }
  .u-pl-sp40 {
    padding-left: 40px !important;
  }
  .u-pt-sp45 {
    padding-top: 45px !important;
  }
  .u-pr-sp45 {
    padding-right: 45px !important;
  }
  .u-pb-sp45 {
    padding-bottom: 45px !important;
  }
  .u-pl-sp45 {
    padding-left: 45px !important;
  }
  .u-pt-sp50 {
    padding-top: 50px !important;
  }
  .u-pr-sp50 {
    padding-right: 50px !important;
  }
  .u-pb-sp50 {
    padding-bottom: 50px !important;
  }
  .u-pl-sp50 {
    padding-left: 50px !important;
  }
  .u-pt-sp55 {
    padding-top: 55px !important;
  }
  .u-pr-sp55 {
    padding-right: 55px !important;
  }
  .u-pb-sp55 {
    padding-bottom: 55px !important;
  }
  .u-pl-sp55 {
    padding-left: 55px !important;
  }
  .u-pt-sp60 {
    padding-top: 60px !important;
  }
  .u-pr-sp60 {
    padding-right: 60px !important;
  }
  .u-pb-sp60 {
    padding-bottom: 60px !important;
  }
  .u-pl-sp60 {
    padding-left: 60px !important;
  }
  .u-pt-sp65 {
    padding-top: 65px !important;
  }
  .u-pr-sp65 {
    padding-right: 65px !important;
  }
  .u-pb-sp65 {
    padding-bottom: 65px !important;
  }
  .u-pl-sp65 {
    padding-left: 65px !important;
  }
  .u-pt-sp70 {
    padding-top: 70px !important;
  }
  .u-pr-sp70 {
    padding-right: 70px !important;
  }
  .u-pb-sp70 {
    padding-bottom: 70px !important;
  }
  .u-pl-sp70 {
    padding-left: 70px !important;
  }
  .u-pt-sp75 {
    padding-top: 75px !important;
  }
  .u-pr-sp75 {
    padding-right: 75px !important;
  }
  .u-pb-sp75 {
    padding-bottom: 75px !important;
  }
  .u-pl-sp75 {
    padding-left: 75px !important;
  }
  .u-pt-sp80 {
    padding-top: 80px !important;
  }
  .u-pr-sp80 {
    padding-right: 80px !important;
  }
  .u-pb-sp80 {
    padding-bottom: 80px !important;
  }
  .u-pl-sp80 {
    padding-left: 80px !important;
  }
  .u-pt-sp85 {
    padding-top: 85px !important;
  }
  .u-pr-sp85 {
    padding-right: 85px !important;
  }
  .u-pb-sp85 {
    padding-bottom: 85px !important;
  }
  .u-pl-sp85 {
    padding-left: 85px !important;
  }
  .u-pt-sp90 {
    padding-top: 90px !important;
  }
  .u-pr-sp90 {
    padding-right: 90px !important;
  }
  .u-pb-sp90 {
    padding-bottom: 90px !important;
  }
  .u-pl-sp90 {
    padding-left: 90px !important;
  }
  .u-pt-sp95 {
    padding-top: 95px !important;
  }
  .u-pr-sp95 {
    padding-right: 95px !important;
  }
  .u-pb-sp95 {
    padding-bottom: 95px !important;
  }
  .u-pl-sp95 {
    padding-left: 95px !important;
  }
  .u-pt-sp100 {
    padding-top: 100px !important;
  }
  .u-pr-sp100 {
    padding-right: 100px !important;
  }
  .u-pb-sp100 {
    padding-bottom: 100px !important;
  }
  .u-pl-sp100 {
    padding-left: 100px !important;
  }
  .u-pt-sp105 {
    padding-top: 105px !important;
  }
  .u-pr-sp105 {
    padding-right: 105px !important;
  }
  .u-pb-sp105 {
    padding-bottom: 105px !important;
  }
  .u-pl-sp105 {
    padding-left: 105px !important;
  }
  .u-pt-sp110 {
    padding-top: 110px !important;
  }
  .u-pr-sp110 {
    padding-right: 110px !important;
  }
  .u-pb-sp110 {
    padding-bottom: 110px !important;
  }
  .u-pl-sp110 {
    padding-left: 110px !important;
  }
  .u-pt-sp115 {
    padding-top: 115px !important;
  }
  .u-pr-sp115 {
    padding-right: 115px !important;
  }
  .u-pb-sp115 {
    padding-bottom: 115px !important;
  }
  .u-pl-sp115 {
    padding-left: 115px !important;
  }
  .u-pt-sp120 {
    padding-top: 120px !important;
  }
  .u-pr-sp120 {
    padding-right: 120px !important;
  }
  .u-pb-sp120 {
    padding-bottom: 120px !important;
  }
  .u-pl-sp120 {
    padding-left: 120px !important;
  }
  .u-pt-sp125 {
    padding-top: 125px !important;
  }
  .u-pr-sp125 {
    padding-right: 125px !important;
  }
  .u-pb-sp125 {
    padding-bottom: 125px !important;
  }
  .u-pl-sp125 {
    padding-left: 125px !important;
  }
  .u-pt-sp130 {
    padding-top: 130px !important;
  }
  .u-pr-sp130 {
    padding-right: 130px !important;
  }
  .u-pb-sp130 {
    padding-bottom: 130px !important;
  }
  .u-pl-sp130 {
    padding-left: 130px !important;
  }
  .u-pt-sp135 {
    padding-top: 135px !important;
  }
  .u-pr-sp135 {
    padding-right: 135px !important;
  }
  .u-pb-sp135 {
    padding-bottom: 135px !important;
  }
  .u-pl-sp135 {
    padding-left: 135px !important;
  }
  .u-pt-sp140 {
    padding-top: 140px !important;
  }
  .u-pr-sp140 {
    padding-right: 140px !important;
  }
  .u-pb-sp140 {
    padding-bottom: 140px !important;
  }
  .u-pl-sp140 {
    padding-left: 140px !important;
  }
  .u-pt-sp145 {
    padding-top: 145px !important;
  }
  .u-pr-sp145 {
    padding-right: 145px !important;
  }
  .u-pb-sp145 {
    padding-bottom: 145px !important;
  }
  .u-pl-sp145 {
    padding-left: 145px !important;
  }
  .u-pt-sp150 {
    padding-top: 150px !important;
  }
  .u-pr-sp150 {
    padding-right: 150px !important;
  }
  .u-pb-sp150 {
    padding-bottom: 150px !important;
  }
  .u-pl-sp150 {
    padding-left: 150px !important;
  }
  .u-pt-sp155 {
    padding-top: 155px !important;
  }
  .u-pr-sp155 {
    padding-right: 155px !important;
  }
  .u-pb-sp155 {
    padding-bottom: 155px !important;
  }
  .u-pl-sp155 {
    padding-left: 155px !important;
  }
  .u-pt-sp160 {
    padding-top: 160px !important;
  }
  .u-pr-sp160 {
    padding-right: 160px !important;
  }
  .u-pb-sp160 {
    padding-bottom: 160px !important;
  }
  .u-pl-sp160 {
    padding-left: 160px !important;
  }
  .u-pt-sp165 {
    padding-top: 165px !important;
  }
  .u-pr-sp165 {
    padding-right: 165px !important;
  }
  .u-pb-sp165 {
    padding-bottom: 165px !important;
  }
  .u-pl-sp165 {
    padding-left: 165px !important;
  }
  .u-pt-sp170 {
    padding-top: 170px !important;
  }
  .u-pr-sp170 {
    padding-right: 170px !important;
  }
  .u-pb-sp170 {
    padding-bottom: 170px !important;
  }
  .u-pl-sp170 {
    padding-left: 170px !important;
  }
  .u-pt-sp175 {
    padding-top: 175px !important;
  }
  .u-pr-sp175 {
    padding-right: 175px !important;
  }
  .u-pb-sp175 {
    padding-bottom: 175px !important;
  }
  .u-pl-sp175 {
    padding-left: 175px !important;
  }
  .u-pt-sp180 {
    padding-top: 180px !important;
  }
  .u-pr-sp180 {
    padding-right: 180px !important;
  }
  .u-pb-sp180 {
    padding-bottom: 180px !important;
  }
  .u-pl-sp180 {
    padding-left: 180px !important;
  }
  .u-pt-sp185 {
    padding-top: 185px !important;
  }
  .u-pr-sp185 {
    padding-right: 185px !important;
  }
  .u-pb-sp185 {
    padding-bottom: 185px !important;
  }
  .u-pl-sp185 {
    padding-left: 185px !important;
  }
  .u-pt-sp190 {
    padding-top: 190px !important;
  }
  .u-pr-sp190 {
    padding-right: 190px !important;
  }
  .u-pb-sp190 {
    padding-bottom: 190px !important;
  }
  .u-pl-sp190 {
    padding-left: 190px !important;
  }
  .u-pt-sp195 {
    padding-top: 195px !important;
  }
  .u-pr-sp195 {
    padding-right: 195px !important;
  }
  .u-pb-sp195 {
    padding-bottom: 195px !important;
  }
  .u-pl-sp195 {
    padding-left: 195px !important;
  }
  .u-pt-sp200 {
    padding-top: 200px !important;
  }
  .u-pr-sp200 {
    padding-right: 200px !important;
  }
  .u-pb-sp200 {
    padding-bottom: 200px !important;
  }
  .u-pl-sp200 {
    padding-left: 200px !important;
  }
  .u-pt-sp205 {
    padding-top: 205px !important;
  }
  .u-pr-sp205 {
    padding-right: 205px !important;
  }
  .u-pb-sp205 {
    padding-bottom: 205px !important;
  }
  .u-pl-sp205 {
    padding-left: 205px !important;
  }
  .u-pt-sp210 {
    padding-top: 210px !important;
  }
  .u-pr-sp210 {
    padding-right: 210px !important;
  }
  .u-pb-sp210 {
    padding-bottom: 210px !important;
  }
  .u-pl-sp210 {
    padding-left: 210px !important;
  }
  .u-pt-sp215 {
    padding-top: 215px !important;
  }
  .u-pr-sp215 {
    padding-right: 215px !important;
  }
  .u-pb-sp215 {
    padding-bottom: 215px !important;
  }
  .u-pl-sp215 {
    padding-left: 215px !important;
  }
  .u-pt-sp220 {
    padding-top: 220px !important;
  }
  .u-pr-sp220 {
    padding-right: 220px !important;
  }
  .u-pb-sp220 {
    padding-bottom: 220px !important;
  }
  .u-pl-sp220 {
    padding-left: 220px !important;
  }
  .u-pt-sp225 {
    padding-top: 225px !important;
  }
  .u-pr-sp225 {
    padding-right: 225px !important;
  }
  .u-pb-sp225 {
    padding-bottom: 225px !important;
  }
  .u-pl-sp225 {
    padding-left: 225px !important;
  }
  .u-pt-sp230 {
    padding-top: 230px !important;
  }
  .u-pr-sp230 {
    padding-right: 230px !important;
  }
  .u-pb-sp230 {
    padding-bottom: 230px !important;
  }
  .u-pl-sp230 {
    padding-left: 230px !important;
  }
  .u-pt-sp235 {
    padding-top: 235px !important;
  }
  .u-pr-sp235 {
    padding-right: 235px !important;
  }
  .u-pb-sp235 {
    padding-bottom: 235px !important;
  }
  .u-pl-sp235 {
    padding-left: 235px !important;
  }
  .u-pt-sp240 {
    padding-top: 240px !important;
  }
  .u-pr-sp240 {
    padding-right: 240px !important;
  }
  .u-pb-sp240 {
    padding-bottom: 240px !important;
  }
  .u-pl-sp240 {
    padding-left: 240px !important;
  }
  .u-pt-sp245 {
    padding-top: 245px !important;
  }
  .u-pr-sp245 {
    padding-right: 245px !important;
  }
  .u-pb-sp245 {
    padding-bottom: 245px !important;
  }
  .u-pl-sp245 {
    padding-left: 245px !important;
  }
  .u-pt-sp250 {
    padding-top: 250px !important;
  }
  .u-pr-sp250 {
    padding-right: 250px !important;
  }
  .u-pb-sp250 {
    padding-bottom: 250px !important;
  }
  .u-pl-sp250 {
    padding-left: 250px !important;
  }
}
.u-wAuto {
  width: auto !important;
}

.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

.u-w100 {
  width: 100% !important;
}

.u-w1em {
  width: 1em !important;
}

.u-w2em {
  width: 2em !important;
}

.u-w3em {
  width: 3em !important;
}

.u-w4em {
  width: 4em !important;
}

.u-w5em {
  width: 5em !important;
}

.u-w6em {
  width: 6em !important;
}

.u-w7em {
  width: 7em !important;
}

.u-w8em {
  width: 8em !important;
}

.u-w9em {
  width: 9em !important;
}

.u-w10em {
  width: 10em !important;
}

.u-w11em {
  width: 11em !important;
}

.u-w12em {
  width: 12em !important;
}

.u-w13em {
  width: 13em !important;
}

.u-w14em {
  width: 14em !important;
}

.u-w15em {
  width: 15em !important;
}

.u-w16em {
  width: 16em !important;
}

.u-w17em {
  width: 17em !important;
}

.u-w18em {
  width: 18em !important;
}

.u-w19em {
  width: 19em !important;
}

.u-w20em {
  width: 20em !important;
}

.u-w21em {
  width: 21em !important;
}

.u-w22em {
  width: 22em !important;
}

.u-w23em {
  width: 23em !important;
}

.u-w24em {
  width: 24em !important;
}

.u-w25em {
  width: 25em !important;
}

.u-w26em {
  width: 26em !important;
}

.u-w27em {
  width: 27em !important;
}

.u-w28em {
  width: 28em !important;
}

.u-w29em {
  width: 29em !important;
}

.u-w30em {
  width: 30em !important;
}

.u-w31em {
  width: 31em !important;
}

.u-w32em {
  width: 32em !important;
}

.u-w33em {
  width: 33em !important;
}

.u-w34em {
  width: 34em !important;
}

.u-w35em {
  width: 35em !important;
}

.u-w36em {
  width: 36em !important;
}

.u-w37em {
  width: 37em !important;
}

.u-w38em {
  width: 38em !important;
}

.u-w39em {
  width: 39em !important;
}

.u-w40em {
  width: 40em !important;
}

.u-w41em {
  width: 41em !important;
}

.u-w42em {
  width: 42em !important;
}

.u-w43em {
  width: 43em !important;
}

.u-w44em {
  width: 44em !important;
}

.u-w45em {
  width: 45em !important;
}

.u-w46em {
  width: 46em !important;
}

.u-w47em {
  width: 47em !important;
}

.u-w48em {
  width: 48em !important;
}

.u-w49em {
  width: 49em !important;
}

.u-w50em {
  width: 50em !important;
}

.u-fs11 {
  font-size: 1.1rem !important;
}

.u-fs12 {
  font-size: 1.2rem !important;
}

.u-fs13 {
  font-size: 1.3rem !important;
}

.u-fs14 {
  font-size: 1.4rem !important;
}

.u-fs15 {
  font-size: 1.5rem !important;
}

.u-fs16 {
  font-size: 1.6rem !important;
}

.u-fs17 {
  font-size: 1.7rem !important;
}

.u-fs18 {
  font-size: 1.8rem !important;
}

.u-fs19 {
  font-size: 1.9rem !important;
}

.u-fs20 {
  font-size: 2rem !important;
}

.u-fs21 {
  font-size: 2.1rem !important;
}

.u-fs22 {
  font-size: 2.2rem !important;
}

.u-fs23 {
  font-size: 2.3rem !important;
}

.u-fs24 {
  font-size: 2.4rem !important;
}

.u-fs25 {
  font-size: 2.5rem !important;
}

.u-fs26 {
  font-size: 2.6rem !important;
}

.u-fs27 {
  font-size: 2.7rem !important;
}

.u-fs28 {
  font-size: 2.8rem !important;
}

.u-fs29 {
  font-size: 2.9rem !important;
}

.u-fs30 {
  font-size: 3rem !important;
}

.u-fs31 {
  font-size: 3.1rem !important;
}

.u-fs32 {
  font-size: 3.2rem !important;
}

.u-fs33 {
  font-size: 3.3rem !important;
}

.u-fs34 {
  font-size: 3.4rem !important;
}

.u-fs35 {
  font-size: 3.5rem !important;
}

.u-fsXlarge {
  font-size: 2.4rem !important;
}

.u-fsLarge {
  font-size: 2rem !important;
}

.u-fsMedium {
  font-size: 1.8rem !important;
}

.u-fsSmall {
  font-size: 1.6rem !important;
}

.u-fsXsmall {
  font-size: 1.4rem !important;
}

@media screen and (max-width: 820px) {
  .u-fsXlarge {
    font-size: 2.2rem !important;
  }
  .u-fsLarge {
    font-size: 1.8rem !important;
  }
  .u-fsMedium {
    font-size: 1.6rem !important;
  }
  .u-fsSmall {
    font-size: 1.4rem !important;
  }
  .u-fsXsmall {
    font-size: 1.2rem !important;
  }
}
.u-textbold {
  font-weight: 700 !important;
}

.u-textmedium {
  font-weight: 500 !important;
}

.u-textnormal {
  font-weight: 400 !important;
}

.u-textthin {
  font-weight: 200 !important;
}

.u-indent {
  text-indent: 1em !important;
}

.u-clear {
  clear: both !important;
}

.u-ac {
  text-align: center !important;
}

.u-ar {
  text-align: right !important;
}

.u-al {
  text-align: left !important;
}

.u-vm {
  vertical-align: middle !important;
}

.u-vt {
  vertical-align: top !important;
}

.u-vb {
  vertical-align: bottom !important;
}

@media screen and (min-width: 1026px) {
  .u-ac-pc {
    text-align: center !important;
  }
  .u-ar-pc {
    text-align: right !important;
  }
  .u-al-pc {
    text-align: left !important;
  }
  .u-vm-pc {
    vertical-align: middle !important;
  }
  .u-vt-pc {
    vertical-align: top !important;
  }
  .u-vb-pc {
    vertical-align: bottom !important;
  }
}
@media screen and (max-width: 820px) {
  .u-ac-sp {
    text-align: center !important;
  }
  .u-ar-sp {
    text-align: right !important;
  }
  .u-al-sp {
    text-align: left !important;
  }
  .u-vm-sp {
    vertical-align: middle !important;
  }
  .u-vt-sp {
    vertical-align: top !important;
  }
  .u-vb-sp {
    vertical-align: bottom !important;
  }
}
.u-sp,
.u-tab {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .u-pc {
    display: none !important;
  }
  .u-tab {
    display: inherit !important;
  }
}
@media screen and (max-width: 820px) {
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: inherit !important;
  }
}
.u-inlineBlock {
  display: inline-block !important;
}

.u-emp {
  color: #e00000 !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  animation: fadeIn 2s ease 0s;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  margin: 0 auto;
}

.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;
  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;
}

/* Slider */
/* add */
.slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 0;
  line-height: 0;
}
.slick-dots li {
  margin: 0 0.5rem;
  font-size: 0;
  line-height: 0;
  padding: 0.4rem 0.5rem;
}
.slick-dots li button {
  font-size: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border: solid #aeaeae 1px;
  border-radius: 50%;
  margin: 0 0.5rem;
  margin: 0;
}
.slick-dots li.slick-active button {
  background: var(--color-link);
  border-color: var(--color-link);
}

.slickBtnArea {
  margin: 0 1rem;
}
.slickBtnArea .js-tglBtn {
  width: 1.2rem;
  height: 1.2rem;
  border: none;
  border-left: solid #aeaeae 4px;
  border-right: solid #aeaeae 4px;
  border-radius: 0;
  background: transparent;
}
.slickBtnArea .js-tglBtn.-stop {
  border-color: var(--color-link);
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 37%;
  bottom: 0;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 5.2rem;
  height: 5.2rem;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  outline: none;
}
@media screen and (max-width: 1280px) {
  .slick-prev,
  .slick-next {
    width: 4.4rem;
    height: 4.4rem;
  }
}
@media screen and (max-width: 820px) {
  .slick-prev,
  .slick-next {
    width: 5rem;
    height: 5rem;
  }
}
.slick-prev::before, .slick-prev::after,
.slick-next::before,
.slick-next::after {
  content: "";
  display: block;
  position: absolute;
}
.slick-prev::before,
.slick-next::before {
  width: 7px;
  height: 7px;
  border-top: solid #060606 2px;
  border-right: solid #060606 2px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .slick-prev::before,
  .slick-next::before {
    width: 5px;
    height: 5px;
  }
}
@media screen and (max-width: 820px) {
  .slick-prev::before,
  .slick-next::before {
    width: 7px;
    height: 7px;
    border-top: solid #060606 2px;
    border-right: solid #060606 2px;
  }
}
.slick-prev::after,
.slick-next::after {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  background: #fff;
  top: 1rem;
  left: 1rem;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0px 0px 15px -6px #888;
}
@media screen and (max-width: 820px) {
  .slick-prev::after,
  .slick-next::after {
    box-shadow: 0px 0px 10px -4px #000;
  }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 0.7;
}

.slick-prev {
  left: 1rem;
}
@media screen and (max-width: 1280px) {
  .slick-prev {
    left: -0.1rem;
  }
}
.slick-prev::before {
  transform: rotate(225deg);
  left: 2.3rem;
}
@media screen and (max-width: 1280px) {
  .slick-prev::before {
    left: 2rem;
  }
}
@media screen and (max-width: 820px) {
  .slick-prev::before {
    left: 2.2rem;
  }
}

.slick-next {
  right: 1rem;
}
@media screen and (max-width: 1280px) {
  .slick-next {
    right: -0.1rem;
  }
}
.slick-next::before {
  transform: rotate(45deg);
  right: 2.3rem;
}
@media screen and (max-width: 1280px) {
  .slick-next::before {
    right: 2rem;
  }
}
@media screen and (max-width: 820px) {
  .slick-next::before {
    right: 2.2rem;
  }
}

/* 個別に指定 */
.js-slide.p-mv_slide .slickBtnArea .js-tglBtn {
  border-left: solid #fff 3px;
  border-right: solid #fff 3px;
}
.js-slide.p-mv_slide .slickBtnArea .js-tglBtn.-stop {
  border-color: var(--color-link);
}
.js-slide.p-mv_slide .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1280px) and (hover: hover) {
  .js-slide.p-mv_slide .slick-dots {
    height: 4.5rem;
  }
}
@media screen and (max-width: 820px) {
  .js-slide.p-mv_slide .slick-dots {
    height: 5rem;
  }
}
.js-slide.p-mv_slide .slick-slide {
  font-size: 0;
}
.js-slide.p-mv_slide .slick-slide a {
  display: block;
}
.js-slide.p-mv_slide .slick-slide img {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .js-slide.p-mv_slide .slick-prev {
    left: -0.5rem;
  }
  .js-slide.p-mv_slide .slick-next {
    right: -0.5rem;
  }
}

.p-station_slide .slick-prev,
.p-station_slide .slick-next {
  width: 4rem;
  height: 4rem;
  background: #fff;
  box-shadow: 0px 0px 10px -4px #000;
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-prev,
  .p-station_slide .slick-next {
    box-shadow: 0px 0px 10px -4px #000;
    width: 3rem;
    height: 3rem;
  }
}
.p-station_slide .slick-prev::before,
.p-station_slide .slick-next::before {
  width: 8px;
  height: 8px;
  border-top: solid #060606 3px;
  border-right: solid #060606 3px;
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-prev::before,
  .p-station_slide .slick-next::before {
    width: 6px;
    height: 6px;
    border-top: solid #060606 2px;
    border-right: solid #060606 2px;
  }
}
.p-station_slide .slick-prev {
  left: 176rem;
}
.p-station_slide .slick-prev::before {
  left: 1.6rem;
}
@media screen and (max-width: 1180px) {
  .p-station_slide .slick-prev {
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-prev {
    top: 2rem;
    left: 2.5rem;
  }
  .p-station_slide .slick-prev::before {
    left: 1.2rem;
  }
}
.p-station_slide .slick-next {
  right: 59rem;
}
.p-station_slide .slick-next::before {
  right: 1.6rem;
}
@media screen and (max-width: 1180px) {
  .p-station_slide .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-next {
    top: 2rem;
    right: 2.5rem;
  }
  .p-station_slide .slick-next::before {
    right: 1.2rem;
  }
}
.p-station_slide .slick-dots {
  max-width: var(--content-width);
  margin: 5rem auto 0;
}
@media screen and (min-width: 1181px) {
  .p-station_slide .slick-dots {
    position: relative;
    left: 58.5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-station_slide .slick-dots {
    margin: 2.5rem auto 5rem;
  }
}

.p-pickup .slick-prev,
.p-pickup .slick-next {
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-prev,
  .p-pickup .slick-next {
    width: 5rem;
    height: 5rem;
  }
}
.p-pickup .slick-prev::before,
.p-pickup .slick-next::before {
  width: 8px;
  height: 8px;
  border-top: solid #060606 3px;
  border-right: solid #060606 3px;
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-prev::before,
  .p-pickup .slick-next::before {
    width: 6px;
    height: 6px;
    border-top: solid #060606 2px;
    border-right: solid #060606 2px;
  }
}
.p-pickup .slick-prev {
  top: 9rem;
  left: 34rem;
}
.p-pickup .slick-prev::before {
  left: 2.6rem;
}
@media screen and (max-width: 1180px) {
  .p-pickup .slick-prev {
    left: -1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-prev {
    top: 10rem;
    left: -1rem;
  }
  .p-pickup .slick-prev::before {
    left: 2.2rem;
  }
}
.p-pickup .slick-next {
  top: 9rem;
  right: 33rem;
}
.p-pickup .slick-next::before {
  right: 2.6rem;
}
@media screen and (max-width: 1180px) {
  .p-pickup .slick-next {
    right: -1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-pickup .slick-next {
    top: 10rem;
    right: -1rem;
  }
  .p-pickup .slick-next::before {
    right: 2.2rem;
  }
}
.p-pickup .slick-dots {
  max-width: var(--content-width);
  margin: 4rem auto 0;
}
@media screen and (min-width: 980px) {
  .p-pickup .slick-dots {
    display: none;
  }
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*****************************************************
  Print
*****************************************************/
@media print {
  html:not([class*=-mobile]) body {
    width: var(--content-width);
    zoom: 0.8;
  }
  body {
    -webkit-print-color-adjust: exact;
  }
  .l-wrapper {
    padding-top: 0;
  }
  .l-header {
    position: static;
  }
  .l-header.-compact {
    height: inherit;
  }
  .l-header.-compact .l-header_logo img {
    width: inherit;
  }
  .l-header.-compact .l-header_utility {
    display: flex;
  }
  .heroRecruit::before {
    position: absolute;
  }
}
