@charset "UTF-8";
@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes bottomToTop {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes bottomToTop {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0px);
  }
}
@-webkit-keyframes blur {
  from {
    filter: blur(1.5rem);
  }
  to {
    filter: blur(0);
  }
}
@keyframes blur {
  from {
    filter: blur(1.5rem);
  }
  to {
    filter: blur(0);
  }
}
:root {
  --font-family-base:"Noto Sans JP", "Yu Gothic", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --color-default: #282828;
  --color-subtext: #555;
  --color-theme: #0050AA ;
  --color-link: #0056AB;
  --color-slide: #44A7E1;
  --header-height: 11.6rem;
  --header-height-compact: 0;
  --header-width: 120rem;
  --content-width: 160rem;
  --content-gutter: 2.4rem;
  --content-gap: 2.4rem;
  --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 */
}
@media screen and (max-width: 1280px) {
  :root {
    --header-height: 5.6rem;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --content-gutter: 1.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
----------------------------------------------- */
/* -----------------------------------------------
  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: 400 1.6em/1.7 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;
      -ms-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;
}

a:hover {
  color: var(--color-theme);
}

@media screen and (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 820px) {
  body {
    font-size: 1.4rem;
  }

  a:hover {
    text-decoration: none;
  }
}
/*****************************************************
  Layout
*****************************************************/
/* =================================================
  Frame
================================================= */
body.-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

body.-megaActive {
  overflow: hidden;
}

[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.7);
}
.-open [data-menu=overlay] {
  display: block;
}

[data-menu=overlayMega] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}
[data-menu=overlayMega].-open {
  display: block;
}

.l-wrapper {
  padding: 0 var(--content-gutter);
  overflow-x: clip;
}
@media screen and (max-width: 1280px) {
  .l-wrapper {
    padding: 0 var(--content-gutter);
  }
}

.l-main {
  position: relative;
  background: none;
}

@-webkit-keyframes loadingMask {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loadingMask {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =================================================
  .l-section
================================================= */
/* =================================================
  .l-container
================================================= */
.l-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}

*:focus-visible {
  outline: 2px solid var(--color-theme);
  outline-offset: 0;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* =================================================
  Header
================================================= */
.l-header {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--content-gutter);
  height: var(--header-height);
  padding: 0 var(--content-gutter);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .l-header {
    --header-height: 5.6rem;
    padding-left: 1.6rem;
    position: fixed;
  }
}
.l-header_inner {
  width: 100%;
  max-width: var(--header-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.4rem 0 1.6rem;
}
@media screen and (max-width: 1280px) {
  .l-header_inner {
    padding-block: 0.6rem;
  }
}
.l-header_logo {
  flex-shrink: 0;
}
.l-header_logo a {
  display: flex;
}
.l-header_logo img {
  width: 32rem;
}
@media screen and (max-width: 1280px) {
  .l-header_logo img {
    width: 15rem;
  }
}
.l-header_spMenu {
  display: none;
}
@media screen and (max-width: 1280px) {
  .l-header_spMenu {
    display: block;
    width: 5.6rem;
    height: 5.6rem;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    background-color: var(--color-theme);
  }
  .l-header_spMenu span {
    display: block;
    height: 0.3rem;
    width: 3rem;
    background: #fff;
    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;
  }
}
.l-header_subnav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-header_subnav {
    flex-direction: column;
    background: #fff;
  }
}
.l-header_subnav_list {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 1280px) {
  .l-header_subnav_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
  }
}
.l-header_subnav_list_item {
  font-size: 1.2rem;
}
@media screen and (max-width: 1280px) {
  .l-header_subnav_list_item a {
    color: var(--color-default);
    display: flex;
    padding: 1.6rem;
    padding-right: 1.5rem;
    border-left: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    height: 100%;
  }
}
.l-header_search {
  margin-left: 2.4rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-header_search {
    margin-left: 0;
    padding: 2.4rem 1.6rem;
  }
}
.l-header_search_btn {
  background: var(--color-theme) url(../images/ico_search.svg) no-repeat center center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-header_search_btn {
    display: none;
  }
}
@media (hover: hover) {
  .l-header_search_btn:hover {
    background-image: url(/assets/images/ico_search_re.svg);
  }
}
.l-header_search_form {
  display: none;
  padding: 1.6rem;
  border-radius: 0.2rem;
  background: var(--color-theme);
  position: absolute;
  right: 0;
  top: 3.4rem;
}
@media screen and (max-width: 1280px) {
  .l-header_search_form {
    display: revert;
    position: relative;
    top: 0;
    background: none;
    padding: 0;
  }
}
.l-header_search_input {
  color: #5A5A5A;
  border-radius: 3rem !important;
  border: 2px solid #B9D2F1;
  background: #EAF1FA;
  width: 32.1rem;
  padding: 0.8rem;
  padding-right: 3.6rem;
}
.l-header_search_submit {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  background: url(/assets/images/ico_search_t.svg) no-repeat 50% 50%;
  outline: none;
  text-indent: -999rem;
  border: none;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .l-header_search_submit {
    top: 0.8rem;
    right: 1rem;
  }
}
.l-header_nav {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.4rem;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 1280px) {
  .l-header_nav {
    display: none;
    position: absolute;
    left: 0;
    top: var(--header-height);
    background-color: var(--color-theme);
    color: #fff;
    flex-direction: column;
    align-items: flex-start;
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    overscroll-behavior-y: none;
  }
}
.l-header_nav_list {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.6rem;
    width: 100%;
    gap: 0;
    padding: 0 1.6rem 1.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list_item {
    width: 100%;
  }
}
.l-header_nav_list_item_btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding: 0.4rem 0.8rem;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list_item_btn {
    color: #fff;
    width: 100%;
    padding-block: 1.6rem;
    justify-content: space-between;
    border-bottom: 1px solid #2569B6;
    border-radius: 0;
  }
  .l-header_nav_list_item_btn:focus-visible {
    outline: solid 2px #fff;
  }
}
@media (hover: hover) {
  .l-header_nav_list_item_btn:hover {
    background: #EAF1FA;
    border-radius: 0.4rem;
  }
}
@media screen and (hover: hover) and (max-width: 1280px) {
  .l-header_nav_list_item_btn:hover {
    border-color: #fff;
    background-color: var(--color-theme);
    text-decoration: none;
    border-radius: 0;
  }
}
.l-header_nav_list_item_btn::after {
  content: "";
  display: block;
  background: url(/assets/images/ico_tri.svg) no-repeat 50% 50%;
  width: 1.3rem;
  height: 0.85rem;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list_item_btn::after {
    background-image: url(/assets/images/ico_tri_re.svg);
    transform: rotate(90deg);
    height: 1.3rem;
    width: 0.85rem;
  }
}
.l-header_nav_list_item_btn.-active::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 1280px) {
  .l-header_nav_list_item_btn.-active::after {
    transform: rotate(270deg);
  }
}
.l-header_nav_inner {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  border-top: 1px solid var(--color-theme);
  background: var(--color-theme);
  overflow: auto;
  max-height: calc(95vh - var(--header-height));
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner {
    position: relative;
    top: 0;
    overflow: visible;
    max-height: initial;
  }
}
.l-header_nav_inner_title {
  background: #fff;
  padding: 2.4rem var(--content-gutter);
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_title {
    display: none;
  }
}
.l-header_nav_inner_title_inner {
  max-width: var(--header-width);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header_nav_inner_title_inner_close {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.l-header_nav_inner_title_inner_close img {
  transition: 0.3s;
}
@media (hover: hover) {
  .l-header_nav_inner_title_inner_close:hover img {
    scale: 1.3;
  }
}
.l-header_nav_inner_content {
  max-width: var(--header-width);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    max-width: initial;
  }
}
.l-header_nav_inner_content.-col03 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_content.-col03 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-header_nav_inner_list {
  border-left: 1px solid #2569B6;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list {
    border: none;
    background: #EAF1FA;
    padding: 0 1.6rem 1.6rem;
    border-radius: 0.4rem;
  }
  .l-header_nav_inner_list.-first {
    border-radius: 0.4rem 0.4rem 0 0;
    padding-bottom: 0;
  }
  .l-header_nav_inner_list.-last {
    border-radius: 0 0 0.4rem 0.4rem;
  }
}
.l-header_nav_inner_list_item_link {
  display: flex;
  align-items: center;
  padding: 1.6rem;
  border-right: 1px solid #2569B6;
  border-bottom: 1px solid #2569B6;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link {
    border: none;
    color: var(--color-default);
    border-bottom: 1px solid #C2DCFE;
    background: url(/assets/images/ico_mega_re.svg) no-repeat right center;
    transition: border 0.3s, background 0.3s;
    padding: 1.6rem 3.2rem 1.6rem 0;
  }
}
.l-header_nav_inner_list_item_link:focus-visible {
  outline: solid 2px #fff;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link:focus-visible {
    outline: solid 2px var(--color-theme);
  }
}
.l-header_nav_inner_list_item_link::before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link::before {
    display: none;
  }
}
@media (hover: hover) {
  .l-header_nav_inner_list_item_link:hover {
    color: #fff;
    background: #003878;
    text-decoration: none;
  }
}
@media screen and (hover: hover) and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link:hover {
    background: #EAF1FA url(/assets/images/ico_mega.svg) no-repeat right center;
    color: var(--color-theme);
    border-color: var(--color-theme);
  }
}
@media (hover: hover) {
  .l-header_nav_inner_list_item_link:hover::before {
    opacity: 1;
  }
}
.l-header_nav_inner_list_item_link.-btn {
  padding-right: 3.6rem;
  position: relative;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link.-btn {
    border: none;
    color: var(--color-default);
    border-bottom: 1px solid #C2DCFE;
    background-image: none;
  }
}
@media screen and (max-width: 1280px) and (hover: hover) {
  .l-header_nav_inner_list_item_link.-btn:hover {
    border-color: var(--color-theme);
    color: var(--color-theme);
  }
}
.l-header_nav_inner_list_item_link.-btn::after {
  content: "";
  width: 1rem;
  height: 1.4rem;
  -webkit-mask-image: url(/assets/images/ico_tri_re.svg);
          mask-image: url(/assets/images/ico_tri_re.svg);
  background: #fff;
  position: absolute;
  right: 1.6rem;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link.-btn::after {
    transform: rotate(90deg);
    right: 0.75rem;
  }
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link.-btn.-open::after {
    transform: rotate(270deg);
  }
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_link.-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.6rem;
    left: calc(100% - 2.4rem);
    background: var(--color-theme);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.2rem;
    opacity: 1;
  }
}
.l-header_nav_inner_list_item_child {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background: #003878;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_child {
    gap: 0;
    padding: 0;
    position: relative;
    left: 0;
    width: 100%;
    background: #fff;
  }
}
.l-header_nav_inner_list_item_child_item_link {
  display: flex;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_child_item_link {
    color: var(--color-default);
    border-bottom: 1px solid #C2DCFE;
    padding: 1.6rem;
    padding-right: 4.6rem;
    background: url(/assets/images/ico_mega_re.svg) no-repeat right 1.6rem center;
    transition: border 0.3s, background 0.3s;
  }
}
.l-header_nav_inner_list_item_child_item_link:focus-visible {
  outline: solid 2px #fff;
}
@media screen and (max-width: 1280px) {
  .l-header_nav_inner_list_item_child_item_link:focus-visible {
    outline: solid 2px var(--color-theme);
  }
}
@media (hover: hover) {
  .l-header_nav_inner_list_item_child_item_link:hover {
    color: #fff;
    text-decoration: underline;
  }
}
@media screen and (hover: hover) and (max-width: 1280px) {
  .l-header_nav_inner_list_item_child_item_link:hover {
    color: var(--color-theme);
    text-decoration: none;
    border-color: var(--color-theme);
    background-image: url(/assets/images/ico_mega.svg);
  }
}

.js-megamenuTarget {
  display: none;
}
.js-megamenuChildTarget {
  display: none;
}

.js-searchForm {
  display: none;
}
@media screen and (max-width: 1280px) {
  .js-searchForm {
    display: block !important;
  }
}

.l-header_spMenu.-open span:nth-child(1) {
  -webkit-animation: open-menu-bar01 0.75s forwards;
          animation: open-menu-bar01 0.75s forwards;
}

.l-header_spMenu.-open span:nth-child(2) {
  -webkit-animation: open-menu-bar02 0.75s forwards;
          animation: open-menu-bar02 0.75s forwards;
}

.l-header_spMenu.-open span:nth-child(3) {
  -webkit-animation: open-menu-bar03 0.75s forwards;
          animation: open-menu-bar03 0.75s forwards;
}

@-webkit-keyframes open-menu-bar01 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0rem;
    transform: rotate(0);
  }
  100% {
    top: 0rem;
    transform: rotate(135deg);
  }
}

@keyframes open-menu-bar01 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0rem;
    transform: rotate(0);
  }
  100% {
    top: 0rem;
    transform: rotate(135deg);
  }
}
@-webkit-keyframes open-menu-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes open-menu-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes open-menu-bar03 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(-135deg);
  }
}
@keyframes open-menu-bar03 {
  0% {
    transform: rotate(0);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(-135deg);
  }
}
/* =================================================
  Footer
================================================= */
footer a img {
  transition: 0.3s;
}
@media (hover: hover) {
  footer a img:hover {
    opacity: 0.7;
  }
}

.l-footer {
  padding-top: 6rem;
  background: var(--color-theme);
  overflow: revert;
}
@media screen and (max-width: 820px) {
  .l-footer {
    padding-top: 5rem;
  }
}
.l-footer_inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 0 var(--content-gutter);
}
.l-footer_logo {
  background: #004088;
}
.l-footer_sns {
  display: flex;
  gap: 2rem 4.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .l-footer_sns {
    gap: 2rem 3.2rem;
  }
}
@media (hover: hover) {
  .l-footer_sns_link:hover {
    opacity: 0.7;
  }
}
.l-footer_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.4rem 0;
  margin: 3.2rem 0 2.4rem;
}
.l-footer_nav_item {
  color: #fff;
  font-size: 1.4rem;
  border-left: 1px solid #2569B6;
  padding: 0 2.4rem;
}
@media screen and (max-width: 1024px) {
  .l-footer_nav_item {
    padding: 0 2rem;
  }
}
@media (hover: hover) {
  .l-footer_nav_item:hover {
    color: #fff;
    text-decoration: underline;
  }
}
.l-footer_nav_item:first-child {
  border: none;
}
.l-footer_logoBlock {
  padding: 4rem 0;
}
.l-footer_logoBlock_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 576px) {
  .l-footer_logoBlock_item {
    flex-direction: column;
  }
}
.l-footer_logoBlock_item_link {
  display: flex;
  flex-direction: column;
  color: #B2C5DB;
  font-size: 1.2rem;
  gap: 0.8rem;
}
@media screen and (max-width: 576px) {
  .l-footer_logoBlock_item_link img {
    width: 22rem;
  }
}
.l-footer_logoBlock_item_link.-kit {
  padding-left: 3.2rem;
  border-left: 1px solid #81B7F3;
}
@media screen and (max-width: 576px) {
  .l-footer_logoBlock_item_link.-kit {
    padding: 1.6rem 0 0 0;
    border-left: none;
    border-top: 1px solid #81B7F3;
  }
}
.l-footer_logoBlock_item_link.-kit img {
  width: 22rem;
}
@media (hover: hover) {
  .l-footer_logoBlock_item_link:hover {
    color: #fff;
  }
}
.l-footer_pagetop {
  position: absolute;
  right: 2rem;
  top: -2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  text-align: center;
  display: block;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .l-footer_pagetop {
    right: 1.6rem;
    top: -1.6rem;
  }
}
.l-footer_pagetop.-fixed {
  position: fixed;
  top: auto;
  bottom: 2rem;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  .l-footer_pagetop.-fixed {
    bottom: 1.6rem;
  }
}
.l-footer_pagetop.-hide {
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.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);
  }
}
.l-footer_copyright {
  display: block;
  padding: 0.8rem 0;
  border-top: 1px solid var(--color-theme);
  color: #FFF;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}

/*****************************************************
  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(/assets/images/ico_dl.svg);
          mask-image: url(/assets/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: -ms-grid;
  display: grid;
  gap: var(--content-gap);
}

.c-grid[data-grid-col^="1-"] {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}

.c-grid[data-grid-col^="2-"] {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.c-grid[data-grid-col^="3-"] {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.c-grid[data-grid-col^="4-"] {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.c-grid[data-grid-col^="5-"] {
  -ms-grid-columns: (1fr)[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-"] {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .c-grid[data-grid-col*="-2-"] {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .c-grid[data-grid-col*="-3-"] {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .c-grid[data-grid-col*="-4-"] {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }

  .c-grid[data-grid-col*="-5-"] {
    -ms-grid-columns: (1fr)[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"] {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .c-grid[data-grid-col$="-2"] {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .c-grid[data-grid-col$="-3"] {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .c-grid[data-grid-col$="-4"] {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }

  .c-grid[data-grid-col$="-5"] {
    -ms-grid-columns: (1fr)[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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3.2rem;
}
.c-imageWithText_img {
  text-align: center;
}
@media screen and (max-width: 820px) {
  .c-imageWithText {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

/* -----------------------------------------------
  .c-definition
----------------------------------------------- */
.c-definition {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr 3.2rem 1fr;
  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(/assets/images/press/ico_01.svg);
          mask-image: url(/assets/images/press/ico_01.svg);
  background: var(--color-theme);
}
.c-anchorLink_item_icon.-type02 {
  -webkit-mask-image: url(/assets/images/press/ico_02.svg);
          mask-image: url(/assets/images/press/ico_02.svg);
  background: var(--color-theme);
}
.c-anchorLink_item_icon.-type03 {
  -webkit-mask-image: url(/assets/images/press/ico_03.svg);
          mask-image: url(/assets/images/press/ico_03.svg);
  background: var(--color-theme);
}
.c-anchorLink_item::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--color-theme);
  -webkit-clip-path: polygon(50% 62.5%, 0 0, 100% 0);
          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 {
  -webkit-animation: fadeIn 0.5s linear;
          animation: fadeIn 0.5s linear;
}
.c-modal[aria-hidden=true] .c-modal_overlay,
.c-modal[aria-hidden=true] .c-modal_content {
  -webkit-animation: fadeOut 0.5s linear;
          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);
  padding: var(--content-gutter);
}
.c-modal_content {
  width: 100%;
  max-width: 100rem;
  padding: 4rem;
  border-radius: 0.4rem;
  background: #F1F1F1;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  max-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;
}

/*****************************************************
  overwrite
*****************************************************/
.l-main {
  line-height: 1.5;
}
.l-main p {
  margin-bottom: 0;
}

/*****************************************************
  splide
*****************************************************/
.splide {
  position: relative;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrows {
  display: flex;
  gap: 0.8rem;
}

.splide__arrow {
  align-items: center;
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  width: 4rem;
  height: 4rem;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .splide__arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid var(--color-slide);
  outline-offset: 3px;
}

.splide__arrow--prev {
  transform: rotate(180deg);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid var(--color-slide);
  outline-offset: 3px;
}

.splide__pagination {
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  width: calc(100% - 20rem);
}
.splide__pagination li {
  flex: 1;
  display: flex;
  align-items: center;
}

.splide__pagination__page {
  background: #B0B0B0;
  border: 0;
  width: 100%;
  height: 0.1rem;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
}

.splide__pagination__page.is-active {
  background: var(--color-theme);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid var(--color-slide);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--color-slide);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid var(--color-slide);
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid var(--color-slide);
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid var(--color-slide);
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid var(--color-slide);
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: var(--color-slide);
  }
}
.splide__toggle {
  cursor: pointer;
  border: solid 1px var(--color-theme);
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: var(--color-theme);
  line-height: 1.2;
  width: 12rem;
}
@media (hover: hover) {
  .splide__toggle:hover {
    background: var(--color-theme);
    color: #fff;
  }
  .splide__toggle:hover .pause_icon_outer {
    fill: #fff;
  }
  .splide__toggle:hover .pause_icon_inner {
    fill: var(--color-theme);
  }
  .splide__toggle:hover .play_icon {
    fill: #fff;
  }
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--color-slide);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--color-slide);
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/* -----------------------------------------------
  .fixedBg
----------------------------------------------- */
.p-fixedBg {
  background: url(/assets/images/bg_fixed.png) repeat-y 50% 50%;
  background-size: cover;
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .p-fixedBg {
    background-image: url(/assets/images/bg_fixed_tab.png);
  }
}
@media screen and (max-width: 820px) {
  .p-fixedBg {
    background-image: url(/assets/images/bg_fixed_sp.png);
  }
}

/* -----------------------------------------------
  .icon_arrow
----------------------------------------------- */
.p-icon_arrow_link .p-icon_arrow {
  transition: 0.3s;
  fill: transparent;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .p-icon_arrow_link .p-icon_arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media (hover: hover) {
  .p-icon_arrow_link:hover .p-icon_arrow {
    transition: 0.3s;
    fill: var(--color-theme);
  }
  .p-icon_arrow_link:hover .p-icon_arrow.-type02 {
    fill: #fff;
  }
  .p-icon_arrow_link:hover .p-icon_arrow_body {
    stroke: #fff;
  }
  .p-icon_arrow_link:hover .p-icon_arrow_body.-type02 {
    stroke: var(--color-theme);
  }
}

/* -----------------------------------------------
  .mv
----------------------------------------------- */
.p-mv {
  margin-top: 4rem;
}
.p-mv_inner {
  border-radius: 0.4rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  max-width: 160rem;
  margin-inline: auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .p-mv_inner {
    flex-direction: column-reverse;
  }
}
.p-mv_textbox {
  width: 43.75%;
  padding: 4rem clamp(var(--content-gutter), 5vw, 8rem);
  display: flex;
  gap: 3.2rem;
  flex-direction: column;
  justify-content: flex-end;
  line-height: 2.3;
}
@media screen and (max-width: 1024px) {
  .p-mv_textbox {
    width: 100%;
    padding: 0 var(--content-gutter);
    margin: auto;
  }
}
.p-mv_nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-mv_nav {
    order: -1;
  }
}
.p-mv_contBtn {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.p-mv_slide {
  max-width: 94rem;
  margin-inline: auto;
  width: 56.25%;
  padding: 4rem;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .p-mv_slide {
    width: 100%;
    padding: 4rem var(--content-gutter);
  }
}
@media screen and (max-width: 820px) {
  .p-mv_slide {
    max-width: 100%;
    width: 100%;
  }
  .p-mv_slide img {
    width: 100%;
  }
}
.p-mv_slide_panel {
  position: relative;
}
.p-mv_slide_panel::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
.p-mv_slide_panel.is-active::after {
  transform: translateX(-100%);
  transition: transform 0.4s ease 0.4s;
}
.p-mv_slide_panel_img_caption {
  margin-top: 1.6rem;
  font-weight: 700;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.p-mv_slide_panel_img_caption::after {
  content: "";
  width: 1rem;
  height: 1.3rem;
  background: var(--color-theme);
  -webkit-mask-image: url(/assets/images/ico_arrow.svg);
          mask-image: url(/assets/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.p-mv_slide_panel.is-active .p-mv_slide_panel_img_caption {
  -webkit-animation: bottomToTop 0.6s ease-out 0.8s forwards;
          animation: bottomToTop 0.6s ease-out 0.8s forwards;
}

.p-categoryNavi {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-block: 8rem;
}
@media screen and (max-width: 1280px) {
  .p-categoryNavi {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .p-categoryNavi {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
  }
}
.p-categoryNavi_item {
  border-radius: 0.4rem;
  background: #FFF;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.4rem 1.6rem;
  text-align: left;
}
.p-categoryNavi_item_text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.8rem;
  line-height: 1.2;
  flex: 1;
}
.p-categoryNavi_item_text .-en {
  color: var(--color-subtext);
  font-size: 1.2rem;
}
.p-categoryNavi_item_icon {
  flex-shrink: 0;
}
@media (hover: hover) {
  .p-categoryNavi_item:hover {
    border-radius: 0.4rem;
    background: #EAF1FA;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  }
  .p-categoryNavi_item:hover .p-categoryNavi_item_text {
    color: var(--color-theme);
    text-decoration: underline;
  }
  .p-categoryNavi_item:hover .p-categoryNavi_item_text .-en {
    color: var(--color-theme);
  }
}

.p-modal_title {
  font-size: 3.2rem;
  padding-bottom: 1.6rem;
  margin-bottom: 3.2rem;
  border-bottom: solid 1px var(--color-default);
}
.l-main .p-modal_title {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 820px) {
  .p-modal_title {
    font-size: 2.4rem;
  }
}
.p-modal_contents_title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .p-modal_contents_title {
    font-size: 1.6rem;
  }
}
.p-modal_contents_linkList {
  gap: 0.4rem;
}
.p-modal_contents_linkList_item {
  border-radius: 0.4rem;
  background: #FFF;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  transition: 0.3s ease-out;
}
@media (hover: hover) {
  .p-modal_contents_linkList_item:hover {
    border-radius: 0.4rem;
    background: #EAF1FA;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  }
  .p-modal_contents_linkList_item:hover .p-categoryNavi_item_text {
    color: var(--color-theme);
    text-decoration: underline;
  }
  .p-modal_contents_linkList_item:hover .p-categoryNavi_item_text .-en {
    color: var(--color-theme);
  }
}

.p-contentTitle {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-contentTitle {
    font-size: 3.2rem;
  }
}
.p-contentTitle_sub {
  margin-top: -1.6rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  line-height: 1.4;
}
.l-main .p-contentTitle_sub {
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .p-contentTitle_sub {
    font-size: 1.8rem;
  }
}

.p-pickup {
  position: relative;
  padding: 15rem 0;
  margin: 15rem 0;
}
@media screen and (max-width: 820px) {
  .p-pickup {
    padding: 8rem 0;
    margin: 8rem 0;
  }
}
.p-pickup::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  left: calc(-100% + clamp(1.2rem, 4vw, 8rem));
  top: 0;
  width: calc(200% - 0rem);
  height: 100%;
}
@media screen and (max-width: 1800px) {
  .p-pickup::before {
    left: calc(-100% + 4rem);
  }
}
@media screen and (max-width: 1724px) {
  .p-pickup::before {
    left: calc(-100% + 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .p-pickup::before {
    left: calc(-100% + 2.4rem);
  }
}
.p-pickup::after {
  content: "";
  display: block;
  background: url(/assets/images/bg_pickup.svg) no-repeat left top;
  position: absolute;
  left: -8rem;
  top: 7rem;
  width: 100%;
  height: 50%;
}
@media screen and (max-width: 1800px) {
  .p-pickup::after {
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-pickup::after {
    background-size: clamp(27rem, 68vw, 68rem);
    top: 4rem;
    left: calc(var(--content-gutter) * -1);
  }
}
.p-pickup_content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1.6rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-pickup_content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .p-pickup_content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-pickup_content_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 1280px) {
  .p-pickup_content_item:nth-child(3), .p-pickup_content_item:nth-child(4) {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 820px) {
  .p-pickup_content_item:nth-child(2) {
    margin-top: 1.6rem;
  }
}
.p-pickup_content_item_imgbox {
  overflow: hidden;
  border-radius: 0.4rem 0.4rem 0 0;
}
.p-pickup_content_item_imgbox img {
  border-radius: 0.4rem 0.4rem 0 0;
  transition: 0.3s ease-out;
}
.p-pickup_content_item_textbox {
  padding: 1.6rem 2.4rem 2.4rem;
  border-radius: 0rem 0rem 0.4rem 0.4rem;
  background: #F1F1F1;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
@media screen and (max-width: 820px) {
  .p-pickup_content_item_textbox {
    padding: 1.6rem 1.6rem 2.4rem;
  }
}
.p-pickup_content_item_textbox_title_warp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-pickup_content_item_textbox_title_main {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media screen and (max-width: 820px) {
  .p-pickup_content_item_textbox_title_main {
    font-size: 2rem;
  }
}
.p-pickup_content_item_textbox_title_sub {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .p-pickup_content_item_textbox_title_sub {
    font-size: 1.2rem;
  }
}
.p-pickup_content_item_textbox_text {
  color: var(--color-subtext);
}
@media (hover: hover) {
  .p-pickup_content_item:hover {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    border-radius: 0.4rem;
  }
  .p-pickup_content_item:hover .p-pickup_content_item_imgbox img {
    scale: 1.025;
  }
  .p-pickup_content_item:hover .p-pickup_content_item_textbox {
    background: #EAF1FA;
  }
  .p-pickup_content_item:hover .p-pickup_content_item_textbox_title {
    color: var(--color-theme);
    text-decoration: underline;
    text-decoration-thickness: 0.2rem;
    text-underline-offset: 0.2rem;
  }
}
.p-pickup_ice01 {
  right: 32rem;
  bottom: -10rem;
}
@media screen and (max-width: 820px) {
  .p-pickup_ice01 {
    width: clamp(3.5rem, 10vw, 10rem);
    right: 23rem;
    right: 50%;
  }
}
.p-pickup_ice02 {
  right: 8.4rem;
  bottom: -8rem;
}
@media screen and (max-width: 820px) {
  .p-pickup_ice02 {
    right: 2.4rem;
    bottom: -15rem;
    width: 12.6rem;
    width: clamp(12.6rem, 30vw, 22rem);
  }
}

.p-iceObject {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  transition: 1s;
}

.p-event {
  position: relative;
  padding: 15rem var(--content-gutter);
  margin: 15rem calc(var(--content-gutter) * -1) 0;
}
@media screen and (max-width: 820px) {
  .p-event {
    padding: 8rem var(--content-gutter);
    margin: 8rem calc(var(--content-gutter) * -1) 0;
  }
}
.p-event::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  left: -50%;
  top: 0;
  width: 200%;
  height: 100%;
}
.p-event::after {
  content: "";
  display: block;
  background: url(/assets/images/bg_event.svg) no-repeat left top;
  position: absolute;
  left: calc((8rem - var(--content-gutter)) * -1);
  top: 8rem;
  width: 100%;
  height: 50%;
}
@media screen and (max-width: 1800px) {
  .p-event::after {
    left: var(--content-gutter);
  }
}
@media screen and (max-width: 820px) {
  .p-event::after {
    background-size: clamp(27rem, 68vw, 68rem);
    top: 4rem;
    left: 0;
  }
}
.p-event_slideBlock {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-event_slideBlock {
    flex-direction: column;
  }
}
.p-event_slideNav {
  width: 26.4rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .p-event_slideNav {
    margin-bottom: 3.2rem;
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .p-event_slideNav {
    width: 100%;
  }
}
.p-event_slideNav_box {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-top: auto;
}
.p-event_slide {
  transform: translateX(12rem);
}
@media screen and (max-width: 1024px) {
  .p-event_slide {
    transform: translateX(0);
  }
}
.p-event_slide_track {
  padding: 0.8rem;
}
.p-event_SlideList {
  width: 150.6rem;
}
@media screen and (max-width: 576px) {
  .p-event_SlideList {
    width: 100%;
  }
}
.p-event_SlideList_item {
  background: #F1F1F1;
  border-radius: 0.4rem;
}
.p-event_SlideList_imgbox {
  overflow: hidden;
  border-radius: 0.4rem 0.4rem 0 0;
  background: linear-gradient(180deg, #D5E8F2 0%, #E4E4E4 100%);
  aspect-ratio: 481/271;
  display: flex;
}
.p-event_SlideList_imgbox img {
  max-height: 27.1rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 576px) {
  .p-event_SlideList_imgbox img {
    max-height: revert;
  }
}
.p-event_SlideList_textbox {
  padding: 2.4rem;
  border-radius: 0 0 0.4rem 0.4rem;
  display: flex;
  gap: 2.4rem;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 576px) {
  .p-event_SlideList_textbox {
    padding: 1.6rem 1.6rem 2.4rem;
    gap: 1.6rem;
  }
}
.p-event_SlideList_textbox_datebox {
  width: 8.7rem;
  padding: 0.2rem 0;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.p-event_SlideList_textbox_datebox_week {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 0.2rem;
  background: #282828;
  text-align: center;
  transition: 0.3s;
  margin-bottom: 0.6rem;
}
.p-event_SlideList_textbox_datebox_time {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.6rem 0;
  border-bottom: solid 1px var(--color-default);
}
.p-event_SlideList_textbox_datebox_period {
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.6rem 0 2rem;
  position: relative;
}
.p-event_SlideList_textbox_datebox_period::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  bottom: 0.4rem;
  transform: translateX(-50%);
  width: 0.8rem;
  height: 0.9rem;
  background: url(/assets/images/ico_arrow_mini.svg) no-repeat center bottom;
}
.p-event_SlideList_textbox_datebox_periodyear {
  font-size: 1.6rem;
}
.p-event_SlideList_textbox_datebox_day {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-event_SlideList_textbox_datebox_day {
    font-size: 2.8rem;
  }
}
.p-event_SlideList_textbox_datebox_year {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-event_SlideList_textbox_datebox_year {
    font-size: 1.4rem;
  }
}
.p-event_SlideList_textbox_text {
  font-size: 1.8rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 576px) {
  .p-event_SlideList_textbox_text {
    font-size: 1.4rem;
  }
}
.p-event_SlideList_textbox_category {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 576px) {
  .p-event_SlideList_textbox_category {
    margin-top: 1rem;
  }
}
.p-event_SlideList_textbox_category_item {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  background: #fff;
  border: solid 1px var(--color-default);
  border-radius: 0.2rem;
  padding: 0.2rem 0.8rem;
  text-align: center;
  color: var(--color-default);
}
@media screen and (max-width: 576px) {
  .p-event_SlideList_textbox_category_item {
    font-size: 1.2rem;
  }
}
.p-event_SlideList_link {
  transition: 0.3s ease-out;
  display: block;
  border-radius: 0.4rem;
  height: 100%;
}
@media (hover: hover) {
  .p-event_SlideList_link:hover {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    background: #EAF1FA;
  }
  .p-event_SlideList_link:hover .p-event_SlideList_item {
    background: #EAF1FA;
  }
  .p-event_SlideList_link:hover .p-event_SlideList_imgbox img {
    scale: 1.025;
  }
  .p-event_SlideList_link:hover .p-event_SlideList_textbox_datebox_week {
    background: var(--color-theme);
  }
  .p-event_SlideList_link:hover .p-event_SlideList_textbox_datebox_time {
    border-color: var(--color-theme);
  }
  .p-event_SlideList_link:hover .p-event_SlideList_textbox {
    color: var(--color-theme);
  }
  .p-event_SlideList_link:hover .p-event_SlideList_textbox_text {
    text-decoration: underline;
  }
}

.p-news {
  padding-block: 15rem;
}
@media screen and (max-width: 820px) {
  .p-news {
    padding-block: 8rem;
  }
}
.p-news::after {
  content: "";
  display: block;
  background: url(/assets/images/bg_news.svg) no-repeat left top;
  position: absolute;
  left: -8rem;
  top: 8rem;
  width: 100%;
  height: 50%;
}
@media screen and (max-width: 1800px) {
  .p-news::after {
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-news::after {
    background-size: clamp(17rem, 34vw, 68rem);
    top: 4rem;
    left: calc(var(--content-gutter) * -1);
  }
}

.p-newsList {
  max-width: 100rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-newsList_item:nth-child(n+5) {
    display: none;
  }
}
.p-newsList_item_link {
  background: #fff;
  display: flex;
  padding: 3.2rem;
  transition: 0.3s ease-out;
  border-radius: 0.4rem;
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
}
@media screen and (max-width: 820px) {
  .p-newsList_item_link {
    padding: 1.6rem;
  }
}
@media (hover: hover) {
  .p-newsList_item_link:hover {
    background: #EAF1FA;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    position: relative;
    z-index: 1;
  }
  .p-newsList_item_link:hover .p-newsList_item_title {
    text-decoration: underline;
  }
}
.p-newsList_item_datebox {
  flex-shrink: 0;
  padding-right: 2.4rem;
  border-right: 1px solid #E9E9E9;
}
.p-newsList_item_datebox_year {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 820px) {
  .p-newsList_item_datebox_year {
    font-size: 1.2rem;
  }
}
.p-newsList_item_datebox_date {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .p-newsList_item_datebox_date {
    font-size: 1.8rem;
  }
}
.p-newsList_item_textbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  padding-left: 0.8rem;
  width: 100%;
}
.p-newsList_item_titlebox {
  padding-right: 2.4rem;
}
.p-newsList_item_newIcon {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-theme);
  position: relative;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-style: normal;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 820px) {
  .p-newsList_item_newIcon {
    font-size: 1.2rem;
  }
}
.p-newsList_item_newIcon::before {
  content: "";
  display: flex;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-theme);
  border-radius: 50%;
}
.p-newsList_more {
  max-width: 100rem;
  margin: 4rem auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.p-course {
  position: relative;
  padding: 15rem 0;
}
@media screen and (max-width: 820px) {
  .p-course {
    padding: 8rem 0;
  }
}
.p-course::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  left: calc(-100% + clamp(1.2rem, 4vw, 8rem));
  top: 0;
  width: calc(200% - 0rem);
  height: 100%;
}
@media screen and (max-width: 1800px) {
  .p-course::before {
    left: calc(-100% + 4rem);
  }
}
@media screen and (max-width: 1724px) {
  .p-course::before {
    left: calc(-100% + 1.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .p-course::before {
    left: calc(-100% + 2.4rem);
  }
}
.p-course::after {
  content: "";
  display: block;
  background: url(/assets/images/bg_course.svg) no-repeat left top;
  position: absolute;
  left: -8rem;
  top: 8rem;
  width: 100%;
  height: 50%;
}
@media screen and (max-width: 1800px) {
  .p-course::after {
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-course::after {
    background-size: clamp(30rem, 68vw, 68rem);
    top: 4rem;
    left: calc(var(--content-gutter) * -1);
  }
}
.p-course_content {
  position: relative;
  z-index: 1;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
  border-radius: 0.4rem;
}
@media screen and (max-width: 820px) {
  .p-course_content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .p-course_content {
    margin-inline: calc(var(--content-gutter) * -1);
    border-radius: 0;
  }
}
.p-course_content_title {
  color: #FFF;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 2rem;
  border-bottom: solid 1px #fff;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1280px) {
  .p-course_content_title {
    font-size: 3rem;
  }
}
.p-course_content_title_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (hover: hover) {
  .p-course_content_title_link:hover {
    color: #fff;
    text-decoration-thickness: 0.2rem;
    text-underline-offset: 0.6rem;
  }
}
.p-course_content_text {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 4rem;
}
.l-main .p-course_content_text {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1280px) {
  .p-course_content_text {
    font-size: 1.8rem;
  }
}
.p-course_content_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
  margin-top: auto;
}
@media screen and (max-width: 1280px) {
  .p-course_content_list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-course_content_list_link {
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  transition: 0.3s ease-out;
}
.p-course_content_list_link:nth-of-type(odd):nth-last-of-type(1) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media screen and (max-width: 1280px) {
  .p-course_content_list_link:nth-of-type(odd):nth-last-of-type(1) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
@media (hover: hover) {
  .p-course_content_list_link:hover {
    background: #EAF1FA;
    color: var(--color-theme);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox::before {
    transition: 0.3s;
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon01::before {
    background-image: url(/assets/images/ico_course_01_re.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon02::before {
    background-image: url(/assets/images/ico_course_02_re.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon03::before {
    background-image: url(/assets/images/ico_course_03_re.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon04::before {
    background-image: url(/assets/images/ico_course_04_re.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon05::before {
    background-image: url(/assets/images/ico_course_05_re.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon06::before {
    background-image: url(/assets/images/ico_course_06_re.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon07::before {
    background-image: url(/assets/images/ico_course_07_re.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-icon08::before {
    background-image: url(/assets/images/ico_course_08_re.svg);
  }
}
.p-course_content_list_link_iconbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.p-course_content_list_link_iconbox::before {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  background: transparent url(../images/ico_course_01.svg) no-repeat left top;
  transition: 0.3s;
  flex-shrink: 0;
}
.p-course_content_list_link_iconbox.-icon02::before {
  background-image: url(/assets/images/ico_course_02.svg);
}
.p-course_content_list_link_iconbox.-icon03::before {
  background-image: url(/assets/images/ico_course_03.svg);
}
.p-course_content_list_link_iconbox.-icon04::before {
  background-image: url(/assets/images/ico_course_04.svg);
}
.p-course_content_list_link_iconbox.-icon05::before {
  background-image: url(/assets/images/ico_course_05.svg);
}
.p-course_content_list_link_iconbox.-icon06::before {
  background-image: url(/assets/images/ico_course_06.svg);
}
.p-course_content_list_link_iconbox.-icon07::before {
  background-image: url(/assets/images/ico_course_07.svg);
}
.p-course_content_list_link_iconbox.-icon08::before {
  background-image: url(/assets/images/ico_course_08.svg);
}
.p-course_content_inner {
  padding: clamp(2.4rem, 3.125vw, 5rem);
  display: flex;
  flex-direction: column;
  border-radius: 0.4rem;
}
@media screen and (max-width: 576px) {
  .p-course_content_inner {
    border-radius: 0;
  }
}
.p-course_content_inner.-environment {
  background: url(/assets/images/bg_environment.png) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .p-course_content_inner.-environment {
    background-image: url(/assets/images/bg_environment_sp.png);
  }
}
.p-course_content_inner.-design {
  background: url(/assets/images/bg_design.png) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .p-course_content_inner.-design {
    background-image: url(/assets/images/bg_design_sp.png);
  }
}
.p-course_ice01 {
  left: 43rem;
  top: 10.2rem;
}
@media screen and (max-width: 820px) {
  .p-course_ice01 {
    width: clamp(10rem, 30vw, 28rem);
    left: 65%;
    top: 6vw;
  }
}
@media screen and (max-width: 576px) {
  .p-course_ice01 {
    top: 9rem;
  }
}
.p-course_ice02 {
  right: -3rem;
  bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .p-course_ice02 {
    bottom: -2rem;
  }
}
@media screen and (max-width: 820px) {
  .p-course_ice02 {
    width: clamp(10.2rem, 30vw, 23rem);
    bottom: -20vw;
    right: 65%;
  }
}

.p-regional {
  padding-block: 15rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-regional {
    padding-block: 8rem;
  }
}
.p-regional::after {
  content: "";
  display: block;
  background: url(/assets/images/bg_regional.svg) no-repeat left top;
  position: absolute;
  left: -8rem;
  top: 8rem;
  width: 115%;
  height: 50%;
}
@media screen and (max-width: 1800px) {
  .p-regional::after {
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-regional::after {
    background-size: 150%;
    top: 4rem;
    left: calc(var(--content-gutter) * -1);
  }
}
.p-regional_content {
  border-radius: 0.4rem;
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-regional_content {
    margin-inline: auto;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .p-regional_content {
    border-radius: 0;
    margin-inline: calc(var(--content-gutter) * -1);
  }
}
.p-regional_content.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .p-regional_content.-reverse {
    flex-direction: column;
  }
}
.p-regional_content + .p-regional_content {
  margin-top: 8rem;
}
.p-regional_content_imgbox {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .p-regional_content_imgbox {
    width: 100%;
    text-align: center;
  }
}
.p-regional_content_logo {
  padding: 1.6rem 3.2rem;
  border-bottom: 1px solid #E9E9E9;
}
@media screen and (max-width: 820px) {
  .p-regional_content_logo {
    padding: 1.6rem;
  }
}
.p-regional_content_textbox {
  width: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .p-regional_content_textbox {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .p-regional_content_textbox {
    min-height: auto;
  }
}
.p-regional_content_textbox_inner {
  padding: 4rem;
  padding-bottom: 0;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 820px) {
  .p-regional_content_textbox_inner {
    padding: 1.6rem;
  }
}
.p-regional_content_textbox_img {
  margin-top: auto;
  padding: 1rem;
  padding-top: 0;
}
.p-regional_content_title {
  font-size: 3rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 820px) {
  .p-regional_content_title {
    font-size: 2rem;
  }
}
.p-regional_content_title_link {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.p-regional_content_titlebox {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.p-regional_content_titlebox_sub {
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .p-regional_content_titlebox_sub {
    font-size: 1.6rem;
  }
}
.p-regional_content_text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-subtext);
}
@media screen and (max-width: 820px) {
  .p-regional_content_text {
    font-size: 1.6rem;
  }
}
.p-regional_content_numList {
  counter-reset: number 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.p-regional_content_numList_item {
  color: var(--color-subtext);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .p-regional_content_numList_item {
    font-size: 1.6rem;
  }
}
.p-regional_content_numList_item::before {
  counter-increment: number 1;
  content: counter(number);
  color: #fff;
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--color-theme);
}
.p-regional_content_course {
  margin-top: 2.4rem;
}
.p-regional_content_course_title {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.p-regional_content_course_title::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color-default);
}
.p-regional_content_course_link {
  font-size: 1.8rem;
  color: #fff;
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 576px) {
  .p-regional_content_course_link {
    font-size: 1.6rem;
  }
}
.p-regional_content_course_link + .p-regional_content_course_link {
  margin-top: 0.2rem;
}
@media (hover: hover) {
  .p-regional_content_course_link:hover {
    background: #EAF1FA;
    color: var(--color-theme);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  }
}

.p-introLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2001;
  background: #fff;
  padding: var(--content-gutter);
  pointer-events: none;
  -webkit-animation: fadeOut 1s 1.6s ease-out forwards;
          animation: fadeOut 1s 1.6s ease-out forwards;
  -webkit-animation: fadeOut 1s 1.2s ease-out forwards;
          animation: fadeOut 1s 1.2s ease-out forwards;
}
.p-introLogo_img {
  -webkit-animation: fadeOut 0.3s 1s ease-out forwards;
          animation: fadeOut 0.3s 1s ease-out forwards;
  -webkit-animation: fadeOut 0.3s 0.8s ease-out forwards;
          animation: fadeOut 0.3s 0.8s ease-out forwards;
}

.p-introMovie {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  -webkit-animation: fadeOut 1s 4s ease-out forwards;
          animation: fadeOut 1s 4s ease-out forwards;
  -webkit-animation: fadeOut 1s 3s ease-out forwards;
          animation: fadeOut 1s 3s ease-out forwards;
  pointer-events: none;
}
.p-introMovie_video {
  background: rgba(67, 165, 255, 0.5);
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-introMovie_text {
  font-size: 4rem;
  color: var(--color-default);
  position: relative;
  z-index: 1;
  text-shadow: 2px 3px 3px rgba(255, 255, 255, 0.4);
  opacity: 0;
  -webkit-animation: fadeIn 1s 2s ease-out forwards;
          animation: fadeIn 1s 2s ease-out forwards;
  padding: var(--content-gutter);
}

/*****************************************************
  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;
  }
}
@-webkit-keyframes fadeOutTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-3rem);
  }
}
@keyframes fadeOutTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-3rem);
  }
}
@-webkit-keyframes leftToRight {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes leftToRight {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes rightToLeft {
  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);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blur {
  from {
    filter: blur(1.5rem);
  }
  to {
    filter: blur(0);
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@-webkit-keyframes scrollTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes scrollTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes floatV {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(0, 10px, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes floatV {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(0, 10px, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes floatH {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(15px, 0, 0);
  }
  50% {
    transform: translate3d(-15px, 0, 0);
  }
  75% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes floatH {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(15px, 0, 0);
  }
  50% {
    transform: translate3d(-15px, 0, 0);
  }
  75% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes roll {
  0% {
    transform: rotateZ(3deg) scale(1);
  }
  50% {
    transform: rotateZ(-3deg) scale(0.95);
  }
  100% {
    transform: rotateZ(3deg) scale(1);
  }
}
@keyframes roll {
  0% {
    transform: rotateZ(3deg) scale(1);
  }
  50% {
    transform: rotateZ(-3deg) scale(0.95);
  }
  100% {
    transform: rotateZ(3deg) scale(1);
  }
}
.fixed_ice {
  position: absolute;
  -webkit-animation: roll 3.5s ease-in-out infinite;
          animation: roll 3.5s ease-in-out infinite;
}
.fixed_ice_inner {
  aspect-ratio: 1/1;
  -webkit-animation: floatH 7s ease-in-out 4s infinite alternate;
          animation: floatH 7s ease-in-out 4s infinite alternate;
}
.fixed_ice_core {
  -webkit-animation: floatV 6s ease-in-out 4s infinite alternate;
          animation: floatV 6s ease-in-out 4s infinite alternate;
}
.fixed_ice.-ice01 {
  -webkit-animation: roll 3.5s ease-in-out infinite;
          animation: roll 3.5s ease-in-out infinite;
}
.-ice01 .fixed_ice_inner {
  -webkit-animation: floatH 17s ease-in-out 4s infinite alternate;
          animation: floatH 17s ease-in-out 4s infinite alternate;
}
.-ice01 .fixed_ice_core {
  -webkit-animation: floatV 6s ease-in-out 6s infinite alternate;
          animation: floatV 6s ease-in-out 6s infinite alternate;
}
.fixed_ice.-ice02 {
  -webkit-animation: roll 6.5s ease-in-out infinite;
          animation: roll 6.5s ease-in-out infinite;
}
.-ice02 .fixed_ice_inner {
  -webkit-animation: floatH 10s ease-in-out 8s infinite alternate;
          animation: floatH 10s ease-in-out 8s infinite alternate;
}
.-ice02 .fixed_ice_core {
  -webkit-animation: floatV 15s ease-in-out 10s infinite alternate;
          animation: floatV 15s ease-in-out 10s infinite alternate;
}
.fixed_ice.-ice03 {
  -webkit-animation: roll 8.5s ease-in-out infinite;
          animation: roll 8.5s ease-in-out infinite;
}
.-ice03 .fixed_ice_inner {
  -webkit-animation: floatH 13s ease-in-out 2s infinite alternate;
          animation: floatH 13s ease-in-out 2s infinite alternate;
}
.-ice03 .fixed_ice_core {
  -webkit-animation: floatV 9s ease-in-out 6s infinite alternate;
          animation: floatV 9s ease-in-out 6s infinite alternate;
}
.fixed_ice.-ice04 {
  -webkit-animation: roll 5.5s ease-in-out infinite;
          animation: roll 5.5s ease-in-out infinite;
}
.-ice04 .fixed_ice_inner {
  -webkit-animation: floatH 9s ease-in-out 4s infinite alternate;
          animation: floatH 9s ease-in-out 4s infinite alternate;
}
.-ice04 .fixed_ice_core {
  -webkit-animation: floatV 12s ease-in-out 6s infinite alternate;
          animation: floatV 12s ease-in-out 6s infinite alternate;
}

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

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