@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;
  --color-gray: #E9E9E9;
  --color-lightGray: #F1F1F1;
  --color-lightBlue: #EAF1FA;
  --header-height: 11.6rem;
  --header-height-compact: 0;
  --header-width: 160rem;
  --content-width: 160rem;
  --content-width-wide: 176rem;
  --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);
  overscroll-behavior-y: none;
}

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 screen and (max-width: 1280px) {
  body {
    padding-top: var(--header-height);
  }
}

@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;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  color: var(--color-defalut);
  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) {
  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;
  background: none;
  border: none;
}

main p {
  text-align: left;
  margin-bottom: 0;
}

@-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-topicsPath
================================================= */
.l-topicsPath {
  padding: 0.8rem var(--content-gutter);
  border-bottom: 1px solid var(--color-gray);
  background: #fff;
}
.l-topicsPath_list {
  display: flex;
  gap: 0 0.8rem;
  font-size: 1.2rem;
  line-height: 1.5;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: var(--content-width);
  margin-inline: auto;
}
.l-topicsPath_list_item {
  color: var(--color-default);
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.l-topicsPath_list_item a {
  color: var(--color-theme);
}
@media (hover: hover) {
  .l-topicsPath_list_item a:hover {
    text-decoration: underline;
  }
}
.l-topicsPath_list_item + .l-topicsPath_list_item::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid var(--color-theme);
  border-right: 1px solid var(--color-theme);
}

/* =================================================
  .l-section
================================================= */
.l-section {
  background: #fff;
  padding: 8rem;
  position: relative;
  border-radius: 0.4rem;
}
@media screen and (max-width: 1760px) {
  .l-section {
    padding: clamp(var(--content-gutter), 4.4vw, 8rem);
  }
}
.l-section + .l-section {
  margin-top: 8rem;
}
@media screen and (max-width: 820px) {
  .l-section + .l-section {
    margin-top: 4rem;
  }
}

/* =================================================
  .l-container
================================================= */
.l-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}
.l-container.-wide {
  max-width: var(--content-width-wide);
}

*: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;
}
.l-wrapper + .l-footer {
  margin-top: 8rem;
}
@media screen and (max-width: 820px) {
  .l-wrapper + .l-footer {
    margin-top: 4rem;
  }
}
@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 {
  max-width: 38.8rem;
  color: var(--color-default);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: #fff;
  padding: 2.4rem 1.6rem;
  border: solid 2px var(--color-lightGray);
  border-radius: 0.4rem;
}
.c-btn.-reverse {
  background: var(--color-lightGray);
}
@media (hover: hover) {
  .c-btn:hover {
    border-radius: 0.4rem;
    background: #eaf1fa;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  }
}
.c-btn.-external::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(/assets/images/ico_external.svg) no-repeat center center/cover;
  flex-shrink: 0;
}
.c-btn.-pdf::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(/assets/images/ico_pdf.svg) no-repeat center center/cover;
  flex-shrink: 0;
}
.c-btn.-center {
  margin: 0 auto;
}

/* -----------------------------------------------
  .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: 400;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 820px) {
  .c-titleLvThree {
    font-size: 2.4rem;
  }
}

.c-titleLvFour {
  font-size: 2.8rem;
  font-weight: 500;
  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-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-col^="6-"] {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 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-col*="-6-"] {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 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.6rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .c-text {
    font-size: 1.4rem;
  }
}

/* -----------------------------------------------
  .c-subtext
----------------------------------------------- */
.c-subtext {
  color: var(--color-subtext);
}

/* -----------------------------------------------
  .c-link
----------------------------------------------- */
.c-link {
  text-decoration: underline;
  color: var(--color-link);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.c-link:hover {
  text-decoration: none;
}
.c-link.-external::after {
  content: "";
  background: url(/assets/images/ico_external.svg) no-repeat center center/cover;
  width: 1em;
  height: 1em;
  display: block;
  margin-right: 0.4rem;
}

/* -----------------------------------------------
  .c-textList
----------------------------------------------- */
.c-textList {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.c-textList.-inline {
  flex-direction: row;
  flex-wrap: wrap;
}
.c-textList_item {
  font-size: 1.8rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.c-textList_item:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--color-theme);
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .c-textList_item {
    font-size: 1.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.5;
}
.c-notice_item + .c-notice_item {
  margin-top: 0.4rem;
}
.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;
  gap: 1.6rem;
  margin: 2rem auto 5rem;
}
@media screen and (max-width: 576px) {
  .c-anchorLink {
    gap: 0.4rem;
  }
}
.c-anchorLink.-col02 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 820px) {
  .c-anchorLink.-col02 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-anchorLink.-col03 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1280px) {
  .c-anchorLink.-col03 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .c-anchorLink.-col03 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-anchorLink.-col04 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1280px) {
  .c-anchorLink.-col04 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .c-anchorLink.-col04 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-anchorLink_item {
  border-radius: 0.4rem;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.4rem 1.6rem;
  text-align: left;
}
.c-anchorLink_item_text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.8rem;
  line-height: 1.2;
  flex: 1;
}
.c-anchorLink_item_text .-en {
  color: var(--color-subtext);
  font-size: 1.2rem;
}
.c-anchorLink_item_icon {
  flex-shrink: 0;
}
@media (hover: hover) {
  .c-anchorLink_item:hover {
    border-radius: 0.4rem;
    background: #eaf1fa;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  }
  .c-anchorLink_item:hover .p-categoryNavi_item_text {
    color: var(--color-theme);
    text-decoration: underline;
  }
  .c-anchorLink_item:hover .p-categoryNavi_item_text .-en {
    color: var(--color-theme);
  }
}

/* -----------------------------------------------
  .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;
}
@media screen and (max-width: 820px) {
  .c-modal_close {
    width: 4.4rem;
    height: 4.4rem;
  }
}

.c-media {
  max-width: 106rem;
  margin: 4rem auto;
}
@media screen and (max-width: 820px) {
  .c-media {
    margin: 2.4rem 0;
  }
}
.c-media iframe, .c-media video {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 0.4rem;
}

.c-moreLink {
  display: flex;
  justify-content: flex-end;
  margin-top: 3.2rem;
}
.c-moreLink .p-icon_arrow_link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/*****************************************************
  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 center center;
  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-iceContainer {
  position: relative;
}

.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: #fff;
  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;
  padding: 0.4rem;
}
.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_detail {
  margin-top: 0.4rem;
  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 a.p-event_SlideList_link {
  transition: 0.3s ease-out;
  display: block;
  border-radius: 0.4rem;
  height: 100%;
}
@media (hover: hover) {
  .p-event_SlideList a.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 a.p-event_SlideList_link:hover .p-event_SlideList_item {
    background: #eaf1fa;
  }
  .p-event_SlideList a.p-event_SlideList_link:hover .p-event_SlideList_imgbox img {
    scale: 1.025;
  }
  .p-event_SlideList a.p-event_SlideList_link:hover .p-event_SlideList_textbox_datebox_week {
    background: var(--color-theme);
  }
  .p-event_SlideList a.p-event_SlideList_link:hover .p-event_SlideList_textbox_datebox_time {
    border-color: var(--color-theme);
  }
  .p-event_SlideList a.p-event_SlideList_link:hover .p-event_SlideList_textbox {
    color: var(--color-theme);
  }
  .p-event_SlideList a.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-news_container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-news_container {
    flex-direction: column;
  }
}
.p-news_nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
@media screen and (max-width: 820px) {
  .p-news_nav {
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
  }
}
.p-news_nav_wrap {
  flex-shrink: 0;
  position: sticky;
  top: var(--header-height);
  width: 24%;
  background: #fff;
  border-radius: 0.4rem;
  padding: 3.2rem 3.2rem 4rem;
}
@media screen and (max-width: 820px) {
  .p-news_nav_wrap {
    position: relative;
    top: 0;
    padding: 1.6rem;
    border-radius: 0;
    overflow-x: auto;
    width: calc(100% + 2 * var(--content-gutter));
    margin: 0 calc(-1 * var(--content-gutter));
  }
}
.p-news_nav_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  transition: 0s;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .p-news_nav_item {
    flex: 0 0 auto;
    font-size: 1.6rem;
  }
}
.p-news_nav_item::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: solid 1px var(--color-default);
  background: #fff;
  flex-shrink: 0;
}
.p-news_nav_item.-active {
  text-decoration: underline;
  color: var(--color-theme);
}
.p-news_nav_item.-active::before {
  background: var(--color-theme);
  border-color: var(--color-theme);
}
@media (hover: hover) {
  .p-news_nav_item:hover {
    text-decoration: underline;
    color: var(--color-theme);
  }
  .p-news_nav_item:hover::before {
    background: var(--color-theme);
    border-color: var(--color-theme);
  }
}
.p-news_contents {
  flex-grow: 1;
}

.p-newsList {
  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_item_categorybox {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
@media screen and (max-width: 820px) {
  .p-newsList_item_categorybox {
    flex-direction: column;
  }
}
.p-newsList_item_category {
  border: solid 1px #b0b0b0;
  border-radius: 0.4rem;
  color: var(--color-subtext);
  padding: 0.6rem 1rem;
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.p-newsList_more {
  margin: 4rem auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.p-morebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .p-morebox {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-morebox .p-contentTitle {
    margin-bottom: 0.8rem;
  }
}

.p-engineeringTop {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1480px) {
  .p-engineeringTop {
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 0;
  }
}
@media screen and (max-width: 820px) {
  .p-engineeringTop {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-engineeringTop_item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 0 4rem;
  border-right: solid 1px #e9e9e9;
  position: relative;
}
.p-engineeringTop_item:nth-child(1) {
  border-left: solid 1px #e9e9e9;
}
@media screen and (max-width: 1480px) {
  .p-engineeringTop_item:nth-child(odd) {
    border-left: solid 1px #e9e9e9;
  }
}
@media screen and (max-width: 820px) {
  .p-engineeringTop_item:nth-child(even) {
    border-left: solid 1px #e9e9e9;
  }
}
@media screen and (max-width: 576px) {
  .p-engineeringTop_item:nth-child(even), .p-engineeringTop_item:nth-child(odd) {
    border: none;
    padding: 0;
  }
}
.p-engineeringTop_item.-off::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
.p-engineeringTop_item_text {
  flex-grow: 1;
}
.p-engineeringTop_item .p-course_content_list {
  flex-basis: 14.8rem;
}
@media screen and (max-width: 820px) {
  .p-engineeringTop_item .p-course_content_list {
    flex-basis: auto;
  }
}
.p-engineeringTop_hr {
  position: relative;
  margin-block: 4rem;
  height: 0.1rem;
  width: 100%;
  background: #e9e9e9;
  border: none;
}
.p-engineeringTop_subbox {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8.1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.1rem;
  border-left: solid 1px #e9e9e9;
  border-right: solid 1px #e9e9e9;
}
@media screen and (max-width: 1480px) {
  .p-engineeringTop_subbox {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 0;
  }
}
@media screen and (max-width: 576px) {
  .p-engineeringTop_subbox {
    gap: 1.6rem 0;
    border: none;
  }
}
.p-engineeringTop_subbox_title {
  font-size: 2rem;
  padding: 2.4rem;
  background: #f2f4f9;
  margin-left: 4rem;
  text-align: center;
}
@media screen and (max-width: 1480px) {
  .p-engineeringTop_subbox_title {
    margin-right: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .p-engineeringTop_subbox_title {
    margin: 0;
  }
}
.p-engineeringTop_subbox_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8.1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.1rem;
  margin-right: 4rem;
}
@media screen and (max-width: 1480px) {
  .p-engineeringTop_subbox_item {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 820px) {
  .p-engineeringTop_subbox_item {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
  }
}
@media screen and (max-width: 576px) {
  .p-engineeringTop_subbox_item {
    margin: 0;
  }
}

.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_unit.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_more {
  max-width: 100rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-course_more {
    margin-left: auto;
  }
}
.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: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.p-course_content_list_link {
  border-radius: 0 0.4rem 0.4rem 0;
  border-left: 2px solid var(--color-theme);
  background: var(--color-lightGray);
  background-blend-mode: multiply;
  padding: 1.1rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  transition: 0.3s ease-out;
}
@media (hover: hover) {
  .p-course_content_list_link:hover {
    background: #fff;
    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.-universe::before {
    background-image: url(/assets/images/ico_unit_universe_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-system::before {
    background-image: url(/assets/images/ico_unit_system_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-energy::before {
    background-image: url(/assets/images/ico_unit_energy_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-ice::before {
    background-image: url(/assets/images/ico_unit_ice_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-infra::before {
    background-image: url(/assets/images/ico_unit_infra_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-management::before {
    background-image: url(/assets/images/ico_unit_management_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-material::before {
    background-image: url(/assets/images/ico_unit_material_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-data::before {
    background-image: url(/assets/images/ico_unit_data_on.svg);
  }
  .p-course_content_list_link:hover .p-course_content_list_link_iconbox.-chemistry::before {
    background-image: url(/assets/images/ico_unit_chemistry_on.svg);
  }
}
.p-course_content_list_link_iconbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.2;
}
.p-course_content_list_link_iconbox::before {
  content: "";
  width: 5rem;
  height: 5rem;
  display: block;
  background: transparent url(/assets/images/ico_unit_universe.svg) no-repeat left top;
  transition: 0.3s;
  flex-shrink: 0;
}
.p-course_content_list_link_iconbox.-universe::before {
  background-image: url(/assets/images/ico_unit_universe.svg);
}
.p-course_content_list_link_iconbox.-system::before {
  background-image: url(/assets/images/ico_unit_system.svg);
}
.p-course_content_list_link_iconbox.-energy::before {
  background-image: url(/assets/images/ico_unit_energy.svg);
}
.p-course_content_list_link_iconbox.-ice::before {
  background-image: url(/assets/images/ico_unit_ice.svg);
}
.p-course_content_list_link_iconbox.-infra::before {
  background-image: url(/assets/images/ico_unit_infra.svg);
}
.p-course_content_list_link_iconbox.-management::before {
  background-image: url(/assets/images/ico_unit_management.svg);
}
.p-course_content_list_link_iconbox.-material::before {
  background-image: url(/assets/images/ico_unit_material.svg);
}
.p-course_content_list_link_iconbox.-data::before {
  background-image: url(/assets/images/ico_unit_data.svg);
}
.p-course_content_list_link_iconbox.-chemistry::before {
  background-image: url(/assets/images/ico_unit_chemistry.svg);
}
.p-course_content_list_link_textbox {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.p-course_content_list_link_textbox .-sub {
  font-size: 1.2rem;
}
.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 {
  right: 0;
  top: -10.2rem;
}
@media screen and (max-width: 820px) {
  .p-course_ice01 {
    width: clamp(10rem, 30vw, 28rem);
    left: 65%;
    top: -10vw;
    right: auto;
  }
}
.p-course_ice02 {
  left: 0;
  bottom: -10.5rem;
}
@media screen and (max-width: 820px) {
  .p-course_ice02 {
    width: clamp(10.2rem, 30vw, 23rem);
    bottom: -20vw;
    right: 65%;
    left: auto;
  }
}

.p-regional {
  padding: 15rem 0 7rem;
  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);
}

.p-categoryHeader {
  padding: 0 0 0 var(--content-gutter);
  position: relative;
  background: #fff;
}
.p-categoryHeader_inner {
  max-width: var(--content-width);
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.p-categoryHeader_textbox {
  min-height: 32.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-categoryHeader_textbox {
    gap: 2.4rem;
    min-height: 1rem;
    padding: 4rem var(--content-gutter) 4rem 0;
  }
}
.p-categoryHeader_title {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .p-categoryHeader_title {
    font-size: 3.6rem;
  }
}
.p-categoryHeader_text {
  font-size: 2rem;
}
@media screen and (max-width: 820px) {
  .p-categoryHeader_text {
    font-size: 1.8rem;
  }
}
.p-categoryHeader_imgbox {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .p-categoryHeader_imgbox {
    position: relative;
  }
  .p-categoryHeader_imgbox img {
    width: 100%;
  }
}

.p-starTitle {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 5.2rem;
  padding-left: 2.6rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-starTitle {
    font-size: 2.8rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.4rem;
    gap: 0.4rem;
  }
}
.p-starTitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(/assets/images/ico_star.svg) no-repeat center center/contain;
}
@media screen and (max-width: 820px) {
  .p-starTitle::before {
    top: 1rem;
  }
}
.p-starTitle .-sub {
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--color-subtext);
}
@media screen and (max-width: 820px) {
  .p-starTitle .-sub {
    font-size: 1.6rem;
  }
}

.p-integratedengineering_policy {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-integratedengineering_policy {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-integratedengineering_policy_item {
  display: flex;
  gap: 2.4rem;
  padding: 0 2.4rem;
  border-left: solid 1px var(--color-gray);
}
@media screen and (max-width: 1480px) {
  .p-integratedengineering_policy_item {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .p-integratedengineering_policy_item {
    flex-direction: row;
    align-items: center;
    border-bottom: solid 1px var(--color-gray);
    border-left: none;
    padding: 1.6rem 0;
  }
}
@media screen and (max-width: 576px) {
  .p-integratedengineering_policy_item {
    flex-direction: column;
    align-items: center;
  }
}
.p-integratedengineering_policy_item_imgbox {
  max-width: 12.4rem;
  flex-shrink: 0;
}
.p-integratedengineering_research {
  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;
}
@media screen and (max-width: 1280px) {
  .p-integratedengineering_research {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .p-integratedengineering_research {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-integratedengineering_research_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
  padding: 2.4rem 1.6rem 1.6rem;
  border-radius: 0.4rem;
  background: var(--color-lightGray);
}
.p-integratedengineering_research_item_title {
  text-align: left;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 0.8rem 1.6rem;
  border-bottom: solid 1px var(--color-subtext);
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_research_item_title {
    font-size: 1.8rem;
  }
}
.p-integratedengineering_research_item_text {
  flex-grow: 1;
  font-size: 2.4rem;
  font-weight: 400;
  padding: 0 0.8rem;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_research_item_text {
    font-size: 2rem;
  }
}
.p-integratedengineering_research_item_imgbox {
  flex-shrink: 0;
}
.p-integratedengineering_research_item_icon {
  align-self: flex-end;
}

.p-integratedengineering_engineering {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-integratedengineering_engineering {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-integratedengineering_engineering_item {
  display: flex;
  flex-direction: column;
}
.p-integratedengineering_engineering_item_textbox {
  border: solid 1px var(--color-gray);
  border-top: none;
  border-radius: 0 0 0.4rem 0.4rem;
  padding: 3.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_engineering_item_textbox {
    padding: 1.6rem;
  }
}
.p-integratedengineering_engineering_item_lead {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_engineering_item_lead {
    font-size: 1.6rem;
  }
}
.p-integratedengineering_engineering_item_title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_engineering_item_title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 576px) {
  .p-integratedengineering_engineering_item_title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-integratedengineering_engineering_item_title .-sub {
  font-size: 1.4rem;
  font-weight: 400;
}
.p-integratedengineering_engineering_item_title::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 0.8rem;
  left: 0;
  background: var(--color-theme);
  border-radius: 50%;
}
.p-integratedengineering_engineering_item_text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.p-integratedengineering_engineering_item_unit {
  margin-top: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}
@media screen and (max-width: 1280px) {
  .p-integratedengineering_engineering_item_unit {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .p-integratedengineering_engineering_item_unit {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_engineering_item_unit {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-integratedengineering_modal {
  width: 100%;
  max-width: 96.8rem;
  padding: 7.2rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-integratedengineering_modal {
    padding: 7.2rem clamp(1.6rem, 6.5vw, 7.2rem);
  }
}
@media screen and (max-width: 576px) {
  .p-integratedengineering_modal {
    padding: 5.6rem 1.6rem;
  }
}
.p-integratedengineering_modal_contents {
  max-height: 80dvh;
  overflow: auto;
}
.p-integratedengineering_modal_block {
  max-width: 38.8rem;
  margin: 0 auto;
}
.p-integratedengineering_modal_gradeArea {
  overflow-x: auto;
}
.p-integratedengineering_modal_gradeArea img {
  width: 80rem;
  max-width: none;
}
.p-integratedengineering_modal_title {
  min-height: 6.6rem;
  margin: 2.4rem 0;
  font-size: 2.4rem;
}
.p-integratedengineering_modal_subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.p-integratedengineering_modal_text {
  font-size: 1.8rem;
  line-height: 2;
}
.p-integratedengineering_modal_balloon {
  position: relative;
  margin: 2.4rem 0;
  line-height: 1.8;
}
.p-integratedengineering_modal_balloon_contents {
  padding: 1.6rem;
  width: 100%;
  font-size: 1.6rem;
  background: #fff;
  border: solid 1px var(--color-default);
  border-radius: 0.4rem;
  position: relative;
  z-index: 1;
}
.p-integratedengineering_modal_balloon_contents::before {
  content: "";
  width: 1.7rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.p-integratedengineering_modal_balloon_tri {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 1.2rem;
  height: 1.2rem;
  border: solid 1px var(--color-default);
}

.p-integratedengineering_ice01 {
  top: -4rem;
  right: 20rem;
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_ice01 {
    right: 16rem;
    width: 8rem;
  }
}
@media screen and (max-width: 576px) {
  .p-integratedengineering_ice01 {
    right: 2rem;
  }
}

.p-integratedengineering_ice02 {
  top: -6rem;
  right: 2rem;
  width: 12.6rem;
}
@media screen and (max-width: 576px) {
  .p-integratedengineering_ice02 {
    display: none;
  }
}

.p-integratedengineering_ice03 {
  top: -6rem;
  right: 16rem;
  width: 15.6rem;
}
@media screen and (max-width: 1024px) {
  .p-integratedengineering_ice03 {
    right: 4rem;
  }
}
@media screen and (max-width: 820px) {
  .p-integratedengineering_ice03 {
    right: 2rem;
    width: 10rem;
  }
}

.p-pageHeader {
  padding: 5.6rem var(--content-gutter);
  background: #fff;
}
.p-pageHeader_inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  max-width: var(--content-width);
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .p-pageHeader_inner {
    gap: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-pageHeader_icon {
  width: 8rem;
}
@media screen and (max-width: 820px) {
  .p-pageHeader_icon {
    width: 5rem;
  }
}
.p-pageHeader_title {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .p-pageHeader_title {
    font-size: 3.6rem;
  }
}

.p-unit_about {
  margin: 4rem auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 107fr 53fr;
  grid-template-columns: 107fr 53fr;
  place-items: center;
  border-left: solid 1px var(--color-gray);
}
@media screen and (max-width: 1024px) {
  .p-unit_about {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    border-top: solid 1px var(--color-gray);
    border-left: none;
    margin: 1.6rem 0 2.4rem;
  }
}
.p-unit_about_text {
  padding: 0 8rem;
  line-height: 2;
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-unit_about_text {
    padding: 1.6rem 0 2.4rem;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_about_text {
    font-size: 1.8rem;
  }
}
.p-unit_about_imgbox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 2.4rem;
  border-left: solid 1px var(--color-gray);
  border-right: solid 1px var(--color-gray);
}
@media screen and (max-width: 1024px) {
  .p-unit_about_imgbox {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    border-top: solid 1px var(--color-gray);
    border-bottom: solid 1px var(--color-gray);
    border-left: none;
    border-right: none;
    padding: 2.4rem 0;
  }
}
.p-unit_about_imgbox img {
  max-width: 36rem;
}
@media screen and (max-width: 576px) {
  .p-unit_about_imgbox img {
    max-width: 100%;
  }
}
.p-unit_about_select {
  margin: 2.4rem 0 8.8rem;
}
@media screen and (max-width: 820px) {
  .p-unit_about_select {
    margin: 2.4rem 0;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_about_select .p-engineeringTop {
    padding-bottom: 2.4rem;
    border-bottom: solid 1px var(--color-gray);
    gap: 2.4rem;
  }
  .p-unit_about_select .p-engineeringTop_item {
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 820px) and (max-width: 576px) {
  .p-unit_about_select .p-engineeringTop_item {
    padding: 0;
  }
}
.p-unit_about_message {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  background: url(/assets/images/integratedengineering/datascience/bg_message.png) no-repeat center center/cover;
  min-height: 44rem;
  padding: 4rem 4rem 4rem 0;
}
@media screen and (max-width: 1600px) {
  .p-unit_about_message {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-unit_about_message {
    padding: 1.6rem;
    gap: 1.6rem;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_about_message {
    padding-top: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .p-unit_about_message {
    padding-top: 1.6rem;
  }
}
.p-unit_about_message.-datascience {
  background-image: url(/assets/images/integratedengineering/datascience/bg_message.png);
}
.p-unit_about_message.-computerscienceandastronomy {
  background-image: url(/assets/images/integratedengineering/computerscienceandastronomy/bg_message.png);
}
.p-unit_about_message.-mechanicalsystemsengineering {
  background-image: url(/assets/images/integratedengineering/mechanicalsystemsengineering/bg_message.png);
}
.p-unit_about_message.-energyengineering {
  background-image: url(/assets/images/integratedengineering/energyengineering/bg_message.png);
}
.p-unit_about_message.-disasterpreventionandinfrastructureengineering {
  background-image: url(/assets/images/integratedengineering/disasterpreventionandinfrastructureengineering/bg_message.png);
}
.p-unit_about_message.-cryosphericscienceandengineering {
  background-image: url(/assets/images/integratedengineering/cryosphericscienceandengineering/bg_message.png);
}
.p-unit_about_message.-materialsandsemiconductorengineering {
  background-image: url(/assets/images/integratedengineering/materialsandsemiconductorengineering/bg_message.png);
}
.p-unit_about_message.-biochemistryandfoodscience {
  background-image: url(/assets/images/integratedengineering/biochemistryandfoodscience/bg_message.png);
}
.p-unit_about_message.-managementengineering {
  background-image: url(/assets/images/integratedengineering/managementengineering/bg_message.png);
}
.p-unit_about_message_item {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .p-unit_about_message_item {
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .p-unit_about_message_item {
    flex-direction: column;
  }
}
.p-unit_about_message_photo {
  position: absolute;
  bottom: -4rem;
  left: 8.6rem;
  max-width: 29.1rem;
}
@media screen and (max-width: 1600px) {
  .p-unit_about_message_photo {
    position: relative;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_about_message_photo {
    max-width: 13.2rem;
  }
}
.p-unit_about_message_box {
  max-width: 38.8rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1600px) {
  .p-unit_about_message_box {
    position: relative;
    top: 0;
    transform: translateY(0%);
  }
}
.p-unit_about_message_box_title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  padding: 0.8rem 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .p-unit_about_message_box_title {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
}
.-datascience .p-unit_about_message_box_title {
  background: #e0f9fe;
}
@media screen and (max-width: 820px) {
  .-datascience .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-datascience .p-unit_about_message_box_title {
    background: #e0f9fe;
  }
}
.-computerscienceandastronomy .p-unit_about_message_box_title {
  background: #d7ecf5;
}
@media screen and (max-width: 820px) {
  .-computerscienceandastronomy .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-computerscienceandastronomy .p-unit_about_message_box_title {
    background: #d7ecf5;
  }
}
.-mechanicalsystemsengineering .p-unit_about_message_box_title {
  background: #fff7e1;
}
@media screen and (max-width: 820px) {
  .-mechanicalsystemsengineering .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-mechanicalsystemsengineering .p-unit_about_message_box_title {
    background: #fff7e1;
  }
}
.-energyengineering .p-unit_about_message_box_title {
  background: #ffefdd;
}
@media screen and (max-width: 820px) {
  .-energyengineering .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-energyengineering .p-unit_about_message_box_title {
    background: #ffefdd;
  }
}
.-disasterpreventionandinfrastructureengineering .p-unit_about_message_box_title {
  background: #d0f1e7;
}
@media screen and (max-width: 820px) {
  .-disasterpreventionandinfrastructureengineering .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-disasterpreventionandinfrastructureengineering .p-unit_about_message_box_title {
    background: #d0f1e7;
  }
}
.-cryosphericscienceandengineering .p-unit_about_message_box_title {
  background: #c6ece2;
}
@media screen and (max-width: 820px) {
  .-cryosphericscienceandengineering .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-cryosphericscienceandengineering .p-unit_about_message_box_title {
    background: #c6ece2;
  }
}
.-materialsandsemiconductorengineering .p-unit_about_message_box_title {
  background: #d6dff8;
}
@media screen and (max-width: 820px) {
  .-materialsandsemiconductorengineering .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-materialsandsemiconductorengineering .p-unit_about_message_box_title {
    background: #d6dff8;
  }
}
.-biochemistryandfoodscience .p-unit_about_message_box_title {
  background: #ffeafb;
}
@media screen and (max-width: 820px) {
  .-biochemistryandfoodscience .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-biochemistryandfoodscience .p-unit_about_message_box_title {
    background: #ffeafb;
  }
}
.-managementengineering .p-unit_about_message_box_title {
  background: #f9f5ec;
}
@media screen and (max-width: 820px) {
  .-managementengineering .p-unit_about_message_box_title {
    background: none;
  }
}
@media screen and (max-width: 576px) {
  .-managementengineering .p-unit_about_message_box_title {
    background: #f9f5ec;
  }
}
.p-unit_about_message_box_name {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 1.6rem;
  padding: 0.4rem 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color-default);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-unit_about_message_box_name {
    font-size: 1.8rem;
    margin-top: 0.4rem;
  }
}
.p-unit_about_message_box_text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 0.4rem 0.8rem;
  margin: 0.4rem 0;
}
.p-unit_about_message_textbox {
  background: #fff;
  border-radius: 0.4rem;
  padding: 4rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-unit_about_message_textbox {
    padding: 1.6rem;
  }
}
.p-unit_about_study {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}
@media screen and (max-width: 820px) {
  .p-unit_about_study {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
  }
}
.p-unit_about_study_item {
  padding-right: 4rem;
}
@media screen and (max-width: 820px) {
  .p-unit_about_study_item {
    padding-right: 1.6rem;
  }
}
.p-unit_about_study_item:last-of-type {
  padding-right: 0;
  padding-left: 4rem;
  border-left: solid 1px var(--color-gray);
}
@media screen and (max-width: 820px) {
  .p-unit_about_study_item:last-of-type {
    padding-left: 0;
    padding-top: 2.4rem;
    border-left: none;
    border-top: solid 1px var(--color-gray);
  }
}
.p-unit_about_study_item_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 41.2fr 4rem 30.75fr;
  grid-template-columns: 41.2fr 30.75fr;
  gap: 4rem;
}
@media screen and (max-width: 1280px) {
  .p-unit_about_study_item_block {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .p-unit_about_study_item_block {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .p-unit_about_study_item_block {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-unit_about_field {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: solid 1px var(--color-gray);
  display: flex;
}
@media screen and (max-width: 1280px) {
  .p-unit_about_field {
    flex-direction: column;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_about_field {
    margin-top: 2.4rem;
    padding-top: 2.4rem;
  }
}
.p-unit_about_field_title {
  width: 33.6rem;
  padding-right: 8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .p-unit_about_field_title {
    width: auto;
    padding-right: 0;
  }
}
.p-unit_about_field_block {
  display: flex;
  gap: 2.4rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-unit_about_field_block {
    flex-direction: column;
  }
}
.p-unit_about_field_block_item {
  width: 100%;
}
.p-unit_about_field_block_item:first-of-type {
  flex-shrink: 0;
  width: auto;
}
.p-unit_about_field_block_item_title {
  background: var(--color-lightGray);
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  margin-bottom: 2.4rem;
  border-radius: 0.4rem;
}
@media screen and (max-width: 820px) {
  .p-unit_about_field_block_item_title {
    font-size: 1.6rem;
  }
}
.p-unit_about_field_block_item_grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media screen and (max-width: 576px) {
  .p-unit_about_field_block_item_grid {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.p-unit_curriculum_contents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4.8rem;
  border-bottom: solid 1px var(--color-gray);
}
@media screen and (max-width: 1024px) {
  .p-unit_curriculum_contents {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
.p-unit_curriculum_contents_item {
  line-height: 2;
}
.p-unit_curriculum_pickup {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  border-right: solid 1px var(--color-gray);
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .p-unit_curriculum_pickup {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 2.4rem;
    border-right: none;
  }
}
.p-unit_curriculum_pickup_item {
  padding: 0 4rem;
  border-left: solid 1px var(--color-gray);
}
@media screen and (max-width: 1024px) {
  .p-unit_curriculum_pickup_item {
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_curriculum_pickup_item {
    padding: 2.4rem 0;
    border-left: none;
    border-bottom: solid 1px var(--color-gray);
  }
  .p-unit_curriculum_pickup_item:first-of-type {
    padding-top: 0;
  }
}
.p-unit_curriculum_pickup_item_imgbox {
  margin-bottom: 2.4rem;
}
.p-unit_curriculum_pickup_item_title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.p-unit_curriculum_pickup_item_text {
  line-height: 2;
}
.p-unit_curriculum_other {
  background: var(--color-lightGray);
  display: flex;
  align-items: center;
  padding: 3.2rem 4rem;
  gap: 4.8rem;
}
@media screen and (max-width: 1480px) {
  .p-unit_curriculum_other {
    flex-direction: column;
    gap: 2.4rem;
    align-items: flex-start;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_curriculum_other {
    padding: 2.4rem 1.6rem;
  }
}
.p-unit_curriculum_other_title {
  font-size: 2.4rem;
  font-weight: 500;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .p-unit_curriculum_other_title {
    font-size: 2rem;
  }
}
.p-unit_curriculum_other_contents {
  display: flex;
  gap: 4.8rem;
}
@media screen and (max-width: 1280px) {
  .p-unit_curriculum_other_contents {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.p-unit_curriculum_other_syllabus {
  padding-left: 4rem;
  flex-shrink: 0;
  width: 42.8rem;
  border-left: solid 1px var(--color-gray);
}
@media screen and (max-width: 1280px) {
  .p-unit_curriculum_other_syllabus {
    padding-left: 0;
    border-left: none;
    border-top: solid 1px var(--color-gray);
    padding-top: 2.4rem;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_curriculum_other_syllabus {
    width: 100%;
  }
}
.p-unit_curriculum_other_syllabus_title {
  margin-bottom: 1.6rem;
}
.p-unit_laboratory {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  border-right: solid 1px var(--color-gray);
}
@media screen and (max-width: 1280px) {
  .p-unit_laboratory {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .p-unit_laboratory {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    border-right: none;
  }
}
.p-unit_laboratory_item {
  padding: 0 4rem;
  border-left: solid 1px var(--color-gray);
}
@media screen and (max-width: 1280px) {
  .p-unit_laboratory_item:nth-child(1), .p-unit_laboratory_item:nth-child(2) {
    padding-bottom: 4rem;
  }
  .p-unit_laboratory_item:nth-child(n+3) {
    padding-top: 4rem;
    border-top: solid 1px var(--color-gray);
  }
}
@media screen and (max-width: 820px) {
  .p-unit_laboratory_item {
    padding: 0;
    border-left: none;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    border-top: solid 1px var(--color-gray);
  }
  .p-unit_laboratory_item:nth-child(1) {
    border-top: none;
    padding-top: 0;
    padding-bottom: 2.4rem;
  }
  .p-unit_laboratory_item:nth-child(2) {
    padding-bottom: 2.4rem;
  }
  .p-unit_laboratory_item:nth-child(n+3) {
    padding-top: 2.4rem;
    border-top: solid 1px var(--color-gray);
  }
  .p-unit_laboratory_item:last-child {
    padding-bottom: 0;
  }
}
.p-unit_laboratory_item_imgbox {
  text-align: center;
}
.p-unit_laboratory_item_imgbox img {
  border-radius: 0.4rem;
}
.p-unit_laboratory_item_title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1.6rem;
}
.p-unit_laboratory_item_text {
  margin-top: 1.6rem;
  line-height: 2;
}
.p-unit_laboratory_item_professor {
  margin-top: 1.6rem;
}
.p-unit_laboratory_item_professor_item {
  display: flex;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: var(--color-subtext);
}
.p-unit_laboratory_item_professor_title {
  font-weight: 500;
  flex-shrink: 0;
  color: var(--color-default);
}
.p-unit_footer {
  background: #fff;
  padding: 8rem var(--content-gutter);
  margin: 8rem calc(-1 * var(--content-gutter)) -8rem;
}
@media screen and (max-width: 820px) {
  .p-unit_footer {
    padding: 4rem var(--content-gutter);
    margin: 4rem calc(-1 * var(--content-gutter)) -4rem;
  }
}
.p-unit_footer_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.4rem 1fr 0.4rem 1fr 0.4rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
@media screen and (max-width: 1280px) {
  .p-unit_footer_list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .p-unit_footer_list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .p-unit_footer_list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-unit_ice01 {
  top: -4rem;
  right: 16.4rem;
}
@media screen and (max-width: 1280px) {
  .p-unit_ice01 {
    width: 16rem;
    right: 12.2rem;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_ice01 {
    width: 12rem;
    right: 8.2rem;
  }
}
@media screen and (max-width: 576px) {
  .p-unit_ice01 {
    width: 8rem;
    right: 2rem;
    top: -3rem;
  }
}
.p-unit_ice02 {
  top: 0rem;
  right: 80rem;
}
@media screen and (max-width: 1600px) {
  .p-unit_ice02 {
    right: 12.2rem;
  }
}
@media screen and (max-width: 820px) {
  .p-unit_ice02 {
    width: 12rem;
    right: 8.2rem;
  }
}
@media screen and (max-width: 576px) {
  .p-unit_ice02 {
    width: 10rem;
    right: 2rem;
    top: 2rem;
  }
}
.p-unit_ice03 {
  top: -6rem;
  right: 20rem;
}
@media screen and (max-width: 820px) {
  .p-unit_ice03 {
    top: -4rem;
    right: 8.2rem;
  }
}
@media screen and (max-width: 576px) {
  .p-unit_ice03 {
    width: 8rem;
    right: 1rem;
    top: -4rem;
  }
}

.p-access_route_title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 576px) {
  .p-access_route_title {
    font-size: 2rem;
  }
}
.p-access_route_map {
  margin: 2.4rem 0 4rem;
}
.p-access_route_map iframe {
  width: 100%;
}
.p-access_route_chart {
  display: flex;
  border: solid 1px var(--color-lightBlue);
  border-radius: 0 0.4rem 0.4rem 0;
}
@media screen and (max-width: 820px) {
  .p-access_route_chart {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .p-access_route_chart {
    border: none;
  }
}
.p-access_route_chart + .p-access_route_chart {
  margin-top: 2.4rem;
}
@media screen and (max-width: 820px) {
  .p-access_route_chart + .p-access_route_chart {
    margin-top: 1.6rem;
  }
}
.p-access_route_chart_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  background: var(--color-lightBlue);
  width: 24rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
.p-access_route_chart_title p {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-access_route_chart_title {
    font-size: 1.8rem;
    width: 18rem;
  }
}
@media screen and (max-width: 820px) {
  .p-access_route_chart_title {
    width: 100%;
    gap: 0;
    padding: 1.6rem;
  }
}
.p-access_route_chart_title .-sub {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .p-access_route_chart_title img {
    width: 3.1rem;
  }
}
.p-access_route_chart_block {
  padding: 2.4rem 4rem;
}
@media screen and (max-width: 820px) {
  .p-access_route_chart_block {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .p-access_route_chart_block {
    padding: 1.6rem 0;
  }
}
.p-access_route_chart_block_text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .p-access_route_chart_block_text {
    font-size: 1.8rem;
  }
}
.p-access_route_chart_block_img {
  margin: 1.6rem 0;
}
.p-access_campusmap {
  border: solid 1px var(--color-lightGray);
  text-align: center;
  margin: 4rem auto;
}
.p-access_campusmap_img {
  max-width: 100rem;
}
@media screen and (max-width: 1024px) {
  .p-access_campusmap_img {
    max-width: 100%;
  }
}
.p-access_guide {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 61.5fr 4rem 94.5fr;
  grid-template-columns: 61.5fr 94.5fr;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-access_guide {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 820px) {
  .p-access_guide {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-access_guide_textbox_text {
  margin-bottom: 4rem;
  line-height: 2;
}

/*****************************************************
  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-mt4 {
  margin-top: 4px !important;
}

.u-mr4 {
  margin-right: 4px !important;
}

.u-mb4 {
  margin-bottom: 4px !important;
}

.u-ml4 {
  margin-left: 4px !important;
}

.u-mt8 {
  margin-top: 8px !important;
}

.u-mr8 {
  margin-right: 8px !important;
}

.u-mb8 {
  margin-bottom: 8px !important;
}

.u-ml8 {
  margin-left: 8px !important;
}

.u-mt12 {
  margin-top: 12px !important;
}

.u-mr12 {
  margin-right: 12px !important;
}

.u-mb12 {
  margin-bottom: 12px !important;
}

.u-ml12 {
  margin-left: 12px !important;
}

.u-mt16 {
  margin-top: 16px !important;
}

.u-mr16 {
  margin-right: 16px !important;
}

.u-mb16 {
  margin-bottom: 16px !important;
}

.u-ml16 {
  margin-left: 16px !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-mt24 {
  margin-top: 24px !important;
}

.u-mr24 {
  margin-right: 24px !important;
}

.u-mb24 {
  margin-bottom: 24px !important;
}

.u-ml24 {
  margin-left: 24px !important;
}

.u-mt28 {
  margin-top: 28px !important;
}

.u-mr28 {
  margin-right: 28px !important;
}

.u-mb28 {
  margin-bottom: 28px !important;
}

.u-ml28 {
  margin-left: 28px !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mr32 {
  margin-right: 32px !important;
}

.u-mb32 {
  margin-bottom: 32px !important;
}

.u-ml32 {
  margin-left: 32px !important;
}

.u-mt36 {
  margin-top: 36px !important;
}

.u-mr36 {
  margin-right: 36px !important;
}

.u-mb36 {
  margin-bottom: 36px !important;
}

.u-ml36 {
  margin-left: 36px !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-mt44 {
  margin-top: 44px !important;
}

.u-mr44 {
  margin-right: 44px !important;
}

.u-mb44 {
  margin-bottom: 44px !important;
}

.u-ml44 {
  margin-left: 44px !important;
}

.u-mt48 {
  margin-top: 48px !important;
}

.u-mr48 {
  margin-right: 48px !important;
}

.u-mb48 {
  margin-bottom: 48px !important;
}

.u-ml48 {
  margin-left: 48px !important;
}

.u-mt52 {
  margin-top: 52px !important;
}

.u-mr52 {
  margin-right: 52px !important;
}

.u-mb52 {
  margin-bottom: 52px !important;
}

.u-ml52 {
  margin-left: 52px !important;
}

.u-mt56 {
  margin-top: 56px !important;
}

.u-mr56 {
  margin-right: 56px !important;
}

.u-mb56 {
  margin-bottom: 56px !important;
}

.u-ml56 {
  margin-left: 56px !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-mt64 {
  margin-top: 64px !important;
}

.u-mr64 {
  margin-right: 64px !important;
}

.u-mb64 {
  margin-bottom: 64px !important;
}

.u-ml64 {
  margin-left: 64px !important;
}

.u-mt68 {
  margin-top: 68px !important;
}

.u-mr68 {
  margin-right: 68px !important;
}

.u-mb68 {
  margin-bottom: 68px !important;
}

.u-ml68 {
  margin-left: 68px !important;
}

.u-mt72 {
  margin-top: 72px !important;
}

.u-mr72 {
  margin-right: 72px !important;
}

.u-mb72 {
  margin-bottom: 72px !important;
}

.u-ml72 {
  margin-left: 72px !important;
}

.u-mt76 {
  margin-top: 76px !important;
}

.u-mr76 {
  margin-right: 76px !important;
}

.u-mb76 {
  margin-bottom: 76px !important;
}

.u-ml76 {
  margin-left: 76px !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-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-sp4 {
    margin-top: 4px !important;
  }

  .u-mr-sp4 {
    margin-right: 4px !important;
  }

  .u-mb-sp4 {
    margin-bottom: 4px !important;
  }

  .u-ml-sp4 {
    margin-left: 4px !important;
  }

  .u-mt-sp8 {
    margin-top: 8px !important;
  }

  .u-mr-sp8 {
    margin-right: 8px !important;
  }

  .u-mb-sp8 {
    margin-bottom: 8px !important;
  }

  .u-ml-sp8 {
    margin-left: 8px !important;
  }

  .u-mt-sp12 {
    margin-top: 12px !important;
  }

  .u-mr-sp12 {
    margin-right: 12px !important;
  }

  .u-mb-sp12 {
    margin-bottom: 12px !important;
  }

  .u-ml-sp12 {
    margin-left: 12px !important;
  }

  .u-mt-sp16 {
    margin-top: 16px !important;
  }

  .u-mr-sp16 {
    margin-right: 16px !important;
  }

  .u-mb-sp16 {
    margin-bottom: 16px !important;
  }

  .u-ml-sp16 {
    margin-left: 16px !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-sp24 {
    margin-top: 24px !important;
  }

  .u-mr-sp24 {
    margin-right: 24px !important;
  }

  .u-mb-sp24 {
    margin-bottom: 24px !important;
  }

  .u-ml-sp24 {
    margin-left: 24px !important;
  }

  .u-mt-sp28 {
    margin-top: 28px !important;
  }

  .u-mr-sp28 {
    margin-right: 28px !important;
  }

  .u-mb-sp28 {
    margin-bottom: 28px !important;
  }

  .u-ml-sp28 {
    margin-left: 28px !important;
  }

  .u-mt-sp32 {
    margin-top: 32px !important;
  }

  .u-mr-sp32 {
    margin-right: 32px !important;
  }

  .u-mb-sp32 {
    margin-bottom: 32px !important;
  }

  .u-ml-sp32 {
    margin-left: 32px !important;
  }

  .u-mt-sp36 {
    margin-top: 36px !important;
  }

  .u-mr-sp36 {
    margin-right: 36px !important;
  }

  .u-mb-sp36 {
    margin-bottom: 36px !important;
  }

  .u-ml-sp36 {
    margin-left: 36px !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-sp44 {
    margin-top: 44px !important;
  }

  .u-mr-sp44 {
    margin-right: 44px !important;
  }

  .u-mb-sp44 {
    margin-bottom: 44px !important;
  }

  .u-ml-sp44 {
    margin-left: 44px !important;
  }

  .u-mt-sp48 {
    margin-top: 48px !important;
  }

  .u-mr-sp48 {
    margin-right: 48px !important;
  }

  .u-mb-sp48 {
    margin-bottom: 48px !important;
  }

  .u-ml-sp48 {
    margin-left: 48px !important;
  }

  .u-mt-sp52 {
    margin-top: 52px !important;
  }

  .u-mr-sp52 {
    margin-right: 52px !important;
  }

  .u-mb-sp52 {
    margin-bottom: 52px !important;
  }

  .u-ml-sp52 {
    margin-left: 52px !important;
  }

  .u-mt-sp56 {
    margin-top: 56px !important;
  }

  .u-mr-sp56 {
    margin-right: 56px !important;
  }

  .u-mb-sp56 {
    margin-bottom: 56px !important;
  }

  .u-ml-sp56 {
    margin-left: 56px !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-sp64 {
    margin-top: 64px !important;
  }

  .u-mr-sp64 {
    margin-right: 64px !important;
  }

  .u-mb-sp64 {
    margin-bottom: 64px !important;
  }

  .u-ml-sp64 {
    margin-left: 64px !important;
  }

  .u-mt-sp68 {
    margin-top: 68px !important;
  }

  .u-mr-sp68 {
    margin-right: 68px !important;
  }

  .u-mb-sp68 {
    margin-bottom: 68px !important;
  }

  .u-ml-sp68 {
    margin-left: 68px !important;
  }

  .u-mt-sp72 {
    margin-top: 72px !important;
  }

  .u-mr-sp72 {
    margin-right: 72px !important;
  }

  .u-mb-sp72 {
    margin-bottom: 72px !important;
  }

  .u-ml-sp72 {
    margin-left: 72px !important;
  }

  .u-mt-sp76 {
    margin-top: 76px !important;
  }

  .u-mr-sp76 {
    margin-right: 76px !important;
  }

  .u-mb-sp76 {
    margin-bottom: 76px !important;
  }

  .u-ml-sp76 {
    margin-left: 76px !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-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-pt4 {
  padding-top: 4px !important;
}

.u-pr4 {
  padding-right: 4px !important;
}

.u-pb4 {
  padding-bottom: 4px !important;
}

.u-pl4 {
  padding-left: 4px !important;
}

.u-pt8 {
  padding-top: 8px !important;
}

.u-pr8 {
  padding-right: 8px !important;
}

.u-pb8 {
  padding-bottom: 8px !important;
}

.u-pl8 {
  padding-left: 8px !important;
}

.u-pt12 {
  padding-top: 12px !important;
}

.u-pr12 {
  padding-right: 12px !important;
}

.u-pb12 {
  padding-bottom: 12px !important;
}

.u-pl12 {
  padding-left: 12px !important;
}

.u-pt16 {
  padding-top: 16px !important;
}

.u-pr16 {
  padding-right: 16px !important;
}

.u-pb16 {
  padding-bottom: 16px !important;
}

.u-pl16 {
  padding-left: 16px !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-pt24 {
  padding-top: 24px !important;
}

.u-pr24 {
  padding-right: 24px !important;
}

.u-pb24 {
  padding-bottom: 24px !important;
}

.u-pl24 {
  padding-left: 24px !important;
}

.u-pt28 {
  padding-top: 28px !important;
}

.u-pr28 {
  padding-right: 28px !important;
}

.u-pb28 {
  padding-bottom: 28px !important;
}

.u-pl28 {
  padding-left: 28px !important;
}

.u-pt32 {
  padding-top: 32px !important;
}

.u-pr32 {
  padding-right: 32px !important;
}

.u-pb32 {
  padding-bottom: 32px !important;
}

.u-pl32 {
  padding-left: 32px !important;
}

.u-pt36 {
  padding-top: 36px !important;
}

.u-pr36 {
  padding-right: 36px !important;
}

.u-pb36 {
  padding-bottom: 36px !important;
}

.u-pl36 {
  padding-left: 36px !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-pt44 {
  padding-top: 44px !important;
}

.u-pr44 {
  padding-right: 44px !important;
}

.u-pb44 {
  padding-bottom: 44px !important;
}

.u-pl44 {
  padding-left: 44px !important;
}

.u-pt48 {
  padding-top: 48px !important;
}

.u-pr48 {
  padding-right: 48px !important;
}

.u-pb48 {
  padding-bottom: 48px !important;
}

.u-pl48 {
  padding-left: 48px !important;
}

.u-pt52 {
  padding-top: 52px !important;
}

.u-pr52 {
  padding-right: 52px !important;
}

.u-pb52 {
  padding-bottom: 52px !important;
}

.u-pl52 {
  padding-left: 52px !important;
}

.u-pt56 {
  padding-top: 56px !important;
}

.u-pr56 {
  padding-right: 56px !important;
}

.u-pb56 {
  padding-bottom: 56px !important;
}

.u-pl56 {
  padding-left: 56px !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-pt64 {
  padding-top: 64px !important;
}

.u-pr64 {
  padding-right: 64px !important;
}

.u-pb64 {
  padding-bottom: 64px !important;
}

.u-pl64 {
  padding-left: 64px !important;
}

.u-pt68 {
  padding-top: 68px !important;
}

.u-pr68 {
  padding-right: 68px !important;
}

.u-pb68 {
  padding-bottom: 68px !important;
}

.u-pl68 {
  padding-left: 68px !important;
}

.u-pt72 {
  padding-top: 72px !important;
}

.u-pr72 {
  padding-right: 72px !important;
}

.u-pb72 {
  padding-bottom: 72px !important;
}

.u-pl72 {
  padding-left: 72px !important;
}

.u-pt76 {
  padding-top: 76px !important;
}

.u-pr76 {
  padding-right: 76px !important;
}

.u-pb76 {
  padding-bottom: 76px !important;
}

.u-pl76 {
  padding-left: 76px !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;
}

@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-sp4 {
    padding-top: 4px !important;
  }

  .u-pr-sp4 {
    padding-right: 4px !important;
  }

  .u-pb-sp4 {
    padding-bottom: 4px !important;
  }

  .u-pl-sp4 {
    padding-left: 4px !important;
  }

  .u-pt-sp8 {
    padding-top: 8px !important;
  }

  .u-pr-sp8 {
    padding-right: 8px !important;
  }

  .u-pb-sp8 {
    padding-bottom: 8px !important;
  }

  .u-pl-sp8 {
    padding-left: 8px !important;
  }

  .u-pt-sp12 {
    padding-top: 12px !important;
  }

  .u-pr-sp12 {
    padding-right: 12px !important;
  }

  .u-pb-sp12 {
    padding-bottom: 12px !important;
  }

  .u-pl-sp12 {
    padding-left: 12px !important;
  }

  .u-pt-sp16 {
    padding-top: 16px !important;
  }

  .u-pr-sp16 {
    padding-right: 16px !important;
  }

  .u-pb-sp16 {
    padding-bottom: 16px !important;
  }

  .u-pl-sp16 {
    padding-left: 16px !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-sp24 {
    padding-top: 24px !important;
  }

  .u-pr-sp24 {
    padding-right: 24px !important;
  }

  .u-pb-sp24 {
    padding-bottom: 24px !important;
  }

  .u-pl-sp24 {
    padding-left: 24px !important;
  }

  .u-pt-sp28 {
    padding-top: 28px !important;
  }

  .u-pr-sp28 {
    padding-right: 28px !important;
  }

  .u-pb-sp28 {
    padding-bottom: 28px !important;
  }

  .u-pl-sp28 {
    padding-left: 28px !important;
  }

  .u-pt-sp32 {
    padding-top: 32px !important;
  }

  .u-pr-sp32 {
    padding-right: 32px !important;
  }

  .u-pb-sp32 {
    padding-bottom: 32px !important;
  }

  .u-pl-sp32 {
    padding-left: 32px !important;
  }

  .u-pt-sp36 {
    padding-top: 36px !important;
  }

  .u-pr-sp36 {
    padding-right: 36px !important;
  }

  .u-pb-sp36 {
    padding-bottom: 36px !important;
  }

  .u-pl-sp36 {
    padding-left: 36px !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-sp44 {
    padding-top: 44px !important;
  }

  .u-pr-sp44 {
    padding-right: 44px !important;
  }

  .u-pb-sp44 {
    padding-bottom: 44px !important;
  }

  .u-pl-sp44 {
    padding-left: 44px !important;
  }

  .u-pt-sp48 {
    padding-top: 48px !important;
  }

  .u-pr-sp48 {
    padding-right: 48px !important;
  }

  .u-pb-sp48 {
    padding-bottom: 48px !important;
  }

  .u-pl-sp48 {
    padding-left: 48px !important;
  }

  .u-pt-sp52 {
    padding-top: 52px !important;
  }

  .u-pr-sp52 {
    padding-right: 52px !important;
  }

  .u-pb-sp52 {
    padding-bottom: 52px !important;
  }

  .u-pl-sp52 {
    padding-left: 52px !important;
  }

  .u-pt-sp56 {
    padding-top: 56px !important;
  }

  .u-pr-sp56 {
    padding-right: 56px !important;
  }

  .u-pb-sp56 {
    padding-bottom: 56px !important;
  }

  .u-pl-sp56 {
    padding-left: 56px !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-sp64 {
    padding-top: 64px !important;
  }

  .u-pr-sp64 {
    padding-right: 64px !important;
  }

  .u-pb-sp64 {
    padding-bottom: 64px !important;
  }

  .u-pl-sp64 {
    padding-left: 64px !important;
  }

  .u-pt-sp68 {
    padding-top: 68px !important;
  }

  .u-pr-sp68 {
    padding-right: 68px !important;
  }

  .u-pb-sp68 {
    padding-bottom: 68px !important;
  }

  .u-pl-sp68 {
    padding-left: 68px !important;
  }

  .u-pt-sp72 {
    padding-top: 72px !important;
  }

  .u-pr-sp72 {
    padding-right: 72px !important;
  }

  .u-pb-sp72 {
    padding-bottom: 72px !important;
  }

  .u-pl-sp72 {
    padding-left: 72px !important;
  }

  .u-pt-sp76 {
    padding-top: 76px !important;
  }

  .u-pr-sp76 {
    padding-right: 76px !important;
  }

  .u-pb-sp76 {
    padding-bottom: 76px !important;
  }

  .u-pl-sp76 {
    padding-left: 76px !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-sp84 {
    padding-top: 84px !important;
  }

  .u-pr-sp84 {
    padding-right: 84px !important;
  }

  .u-pb-sp84 {
    padding-bottom: 84px !important;
  }

  .u-pl-sp84 {
    padding-left: 84px !important;
  }

  .u-pt-sp88 {
    padding-top: 88px !important;
  }

  .u-pr-sp88 {
    padding-right: 88px !important;
  }

  .u-pb-sp88 {
    padding-bottom: 88px !important;
  }

  .u-pl-sp88 {
    padding-left: 88px !important;
  }

  .u-pt-sp92 {
    padding-top: 92px !important;
  }

  .u-pr-sp92 {
    padding-right: 92px !important;
  }

  .u-pb-sp92 {
    padding-bottom: 92px !important;
  }

  .u-pl-sp92 {
    padding-left: 92px !important;
  }

  .u-pt-sp96 {
    padding-top: 96px !important;
  }

  .u-pr-sp96 {
    padding-right: 96px !important;
  }

  .u-pb-sp96 {
    padding-bottom: 96px !important;
  }

  .u-pl-sp96 {
    padding-left: 96px !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-sp104 {
    padding-top: 104px !important;
  }

  .u-pr-sp104 {
    padding-right: 104px !important;
  }

  .u-pb-sp104 {
    padding-bottom: 104px !important;
  }

  .u-pl-sp104 {
    padding-left: 104px !important;
  }

  .u-pt-sp108 {
    padding-top: 108px !important;
  }

  .u-pr-sp108 {
    padding-right: 108px !important;
  }

  .u-pb-sp108 {
    padding-bottom: 108px !important;
  }

  .u-pl-sp108 {
    padding-left: 108px !important;
  }

  .u-pt-sp112 {
    padding-top: 112px !important;
  }

  .u-pr-sp112 {
    padding-right: 112px !important;
  }

  .u-pb-sp112 {
    padding-bottom: 112px !important;
  }

  .u-pl-sp112 {
    padding-left: 112px !important;
  }

  .u-pt-sp116 {
    padding-top: 116px !important;
  }

  .u-pr-sp116 {
    padding-right: 116px !important;
  }

  .u-pb-sp116 {
    padding-bottom: 116px !important;
  }

  .u-pl-sp116 {
    padding-left: 116px !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-sp124 {
    padding-top: 124px !important;
  }

  .u-pr-sp124 {
    padding-right: 124px !important;
  }

  .u-pb-sp124 {
    padding-bottom: 124px !important;
  }

  .u-pl-sp124 {
    padding-left: 124px !important;
  }

  .u-pt-sp128 {
    padding-top: 128px !important;
  }

  .u-pr-sp128 {
    padding-right: 128px !important;
  }

  .u-pb-sp128 {
    padding-bottom: 128px !important;
  }

  .u-pl-sp128 {
    padding-left: 128px !important;
  }

  .u-pt-sp132 {
    padding-top: 132px !important;
  }

  .u-pr-sp132 {
    padding-right: 132px !important;
  }

  .u-pb-sp132 {
    padding-bottom: 132px !important;
  }

  .u-pl-sp132 {
    padding-left: 132px !important;
  }

  .u-pt-sp136 {
    padding-top: 136px !important;
  }

  .u-pr-sp136 {
    padding-right: 136px !important;
  }

  .u-pb-sp136 {
    padding-bottom: 136px !important;
  }

  .u-pl-sp136 {
    padding-left: 136px !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-sp144 {
    padding-top: 144px !important;
  }

  .u-pr-sp144 {
    padding-right: 144px !important;
  }

  .u-pb-sp144 {
    padding-bottom: 144px !important;
  }

  .u-pl-sp144 {
    padding-left: 144px !important;
  }

  .u-pt-sp148 {
    padding-top: 148px !important;
  }

  .u-pr-sp148 {
    padding-right: 148px !important;
  }

  .u-pb-sp148 {
    padding-bottom: 148px !important;
  }

  .u-pl-sp148 {
    padding-left: 148px !important;
  }

  .u-pt-sp152 {
    padding-top: 152px !important;
  }

  .u-pr-sp152 {
    padding-right: 152px !important;
  }

  .u-pb-sp152 {
    padding-bottom: 152px !important;
  }

  .u-pl-sp152 {
    padding-left: 152px !important;
  }

  .u-pt-sp156 {
    padding-top: 156px !important;
  }

  .u-pr-sp156 {
    padding-right: 156px !important;
  }

  .u-pb-sp156 {
    padding-bottom: 156px !important;
  }

  .u-pl-sp156 {
    padding-left: 156px !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-sp164 {
    padding-top: 164px !important;
  }

  .u-pr-sp164 {
    padding-right: 164px !important;
  }

  .u-pb-sp164 {
    padding-bottom: 164px !important;
  }

  .u-pl-sp164 {
    padding-left: 164px !important;
  }

  .u-pt-sp168 {
    padding-top: 168px !important;
  }

  .u-pr-sp168 {
    padding-right: 168px !important;
  }

  .u-pb-sp168 {
    padding-bottom: 168px !important;
  }

  .u-pl-sp168 {
    padding-left: 168px !important;
  }

  .u-pt-sp172 {
    padding-top: 172px !important;
  }

  .u-pr-sp172 {
    padding-right: 172px !important;
  }

  .u-pb-sp172 {
    padding-bottom: 172px !important;
  }

  .u-pl-sp172 {
    padding-left: 172px !important;
  }

  .u-pt-sp176 {
    padding-top: 176px !important;
  }

  .u-pr-sp176 {
    padding-right: 176px !important;
  }

  .u-pb-sp176 {
    padding-bottom: 176px !important;
  }

  .u-pl-sp176 {
    padding-left: 176px !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-sp184 {
    padding-top: 184px !important;
  }

  .u-pr-sp184 {
    padding-right: 184px !important;
  }

  .u-pb-sp184 {
    padding-bottom: 184px !important;
  }

  .u-pl-sp184 {
    padding-left: 184px !important;
  }

  .u-pt-sp188 {
    padding-top: 188px !important;
  }

  .u-pr-sp188 {
    padding-right: 188px !important;
  }

  .u-pb-sp188 {
    padding-bottom: 188px !important;
  }

  .u-pl-sp188 {
    padding-left: 188px !important;
  }

  .u-pt-sp192 {
    padding-top: 192px !important;
  }

  .u-pr-sp192 {
    padding-right: 192px !important;
  }

  .u-pb-sp192 {
    padding-bottom: 192px !important;
  }

  .u-pl-sp192 {
    padding-left: 192px !important;
  }

  .u-pt-sp196 {
    padding-top: 196px !important;
  }

  .u-pr-sp196 {
    padding-right: 196px !important;
  }

  .u-pb-sp196 {
    padding-bottom: 196px !important;
  }

  .u-pl-sp196 {
    padding-left: 196px !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-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;
  }
}
