@charset "UTF-8";
/* ========================================================================== */
/* Normalize */
/* ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/* normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/* -------------------------------------------------------------------------- */
body {
  margin: 0;
}

/* normalize: html5 display definitions */
/* -------------------------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/* normalize: links */
/* -------------------------------------------------------------------------- */
a {
  background-color: transparent;
}

a:hover {
  outline: 0;
}

/* normalize: text-level semantics */
/* -------------------------------------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* normalize: embedded content */
/* -------------------------------------------------------------------------- */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* normalize: grouping content */
/* -------------------------------------------------------------------------- */
figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* normalize: forms */
/* -------------------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* normalize: tables */
/* -------------------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ========================================================================== */
/* initialize */
/* ========================================================================== */
/* initialize: base */
/* -------------------------------------------------------------------------- */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  position: relative;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 400;
  font-size: 1rem;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #231815;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body {
    font-size: 0.875rem;
  }
}
@media print {
  body {
    padding-top: 0;
    -webkit-print-color-adjust: exact;
  }
  body .site-header {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    width: 100% !important;
  }
  body .is-scroll .site-header {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    width: 100% !important;
  }
}

/* initialize: divider */
/* -------------------------------------------------------------------------- */
hr {
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #e8e9ea;
}

/* initialize: link */
/* -------------------------------------------------------------------------- */
a {
  font-weight: 400;
  color: #231815;
  text-underline-offset: 0.8ex;
  -webkit-transition-property: background, opacity, color;
  transition-property: background, opacity, color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
a[href^="tel:"], a[href^="mailto:"] {
  font-weight: inherit;
  text-decoration: none;
}
a.link-noline {
  text-decoration: none;
}

.isnt-touch a:hover {
  color: #005dab;
  text-decoration: none;
}
.isnt-touch a[href^="tel:"] {
  pointer-events: none;
}

/* initialize: list */
/* -------------------------------------------------------------------------- */
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl {
  margin-top: 0;
}
dl dt {
  font-weight: 700;
}
dl dd {
  margin-left: 0;
}

/* initialize: media */
/* -------------------------------------------------------------------------- */
figure {
  margin: 0;
}
figure figcaption {
  margin-top: 1em;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* initialize: spacing */
/* -------------------------------------------------------------------------- */
button,
dd,
dt,
li {
  margin-bottom: 0.5em;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1em;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 1.5em;
}

/* initialize: table */
/* -------------------------------------------------------------------------- */
table th,
table td {
  text-align: left;
  vertical-align: top;
}
table th > *:first-child,
table td > *:first-child {
  margin-top: 0;
}
table th > *:last-child,
table td > *:last-child {
  margin-bottom: 0;
}
table th {
  font-weight: 400;
}

/* initialize: typography */
/* -------------------------------------------------------------------------- */
b,
strong {
  font-weight: 700;
}

em {
  font-style: normal;
  font-weight: 400;
  color: #008798;
}

small {
  display: inline-block;
}

address {
  font-style: normal;
  text-decoration: none;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1em;
  margin-top: 0;
}

h1 {
  font-size: 2.5em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.625rem, 0.562rem + 2.22vw, 2.5rem);
  line-height: 1.2;
}

h3,
.h3 {
  font-size: clamp(1.625rem, 1.169rem + 0.95vw, 2rem);
  line-height: 1.3;
}

h4,
.h4 {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  line-height: 1.4;
}

h5,
.h5 {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  line-height: 1.5;
}

h6,
.h6 {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  line-height: 1.6;
}

/* ==========================================================================  */
/* Animation */
/* ========================================================================== */
/* ========================================================================== */
/* Animation Common */
.basic-animation--1.iv-item {
  -webkit-transform: translate(-6vw, -3vw) scale(1.25) skew(-30deg);
  transform: translate(-6vw, -3vw) scale(1.25) skew(-30deg);
  clip-path: polygon(0 0, 0 0, 0 0);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.basic-animation--1.iv-item.is-inview {
  -webkit-transform: translate(0, 0) scale(1) skew(0);
  transform: translate(0, 0) scale(1) skew(0);
  clip-path: polygon(0 0, 200% 0, 0 200%);
}

.basic-animation--2.iv-item {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.basic-animation--2.iv-item.is-inview {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.basic-animation--2 + .basic-animation--2.iv-item.is-inview {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}

.bg-gd--animation.iv-item {
  -webkit-transform: translate(2vw, 3vw);
  transform: translate(2vw, 3vw);
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.bg-gd--animation.iv-item.is-inview {
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  clip-path: polygon(0 0, 200% 0, 0 200%);
}

.curtain--animation.iv-item {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  clip-path: inset(0 100% 0 0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.curtain--animation.iv-item.is-inview {
  clip-path: inset(0 0 0 0);
  -webkit-animation: markerBg 1s 1s both;
          animation: markerBg 1s 1s both;
}

.curtain--animation--gd.iv-item {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  clip-path: inset(0 100% 0 0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.curtain--animation--gd.iv-item.is-inview {
  clip-path: inset(0 -100% -200% -100%);
  -webkit-animation: markerBg 1s 1s both;
          animation: markerBg 1s 1s both;
}

.fadein_type-blur {
  -webkit-filter: blur(4px);
          filter: blur(4px);
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
}
.fadein_type-blur.iv-item {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.fadein_type-blur img {
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.fadein_type-blur.is-inview {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
  overflow: hidden;
}
.fadein_type-blur.is-inview img {
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fadein_bottom {
  opacity: 0;
  -webkit-transform: translate(0, 2.5em);
          transform: translate(0, 2.5em);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein_bottom.iv-item.is-inview {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein_basic {
  -webkit-filter: blur(4px);
          filter: blur(4px);
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  overflow: hidden;
}
.fadein_basic.iv-item {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.fadein_basic img {
  -webkit-transition: 2s;
  transition: 2s;
}
.fadein_basic.is-inview {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
  overflow: hidden;
}
.fadein_basic.is-inview img {
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.border-animation--01 {
  overflow: hidden;
}
.border-animation--01.iv-item::before {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  clip-path: inset(0 100% 0 0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.border-animation--01.iv-item.is-inview::before {
  clip-path: inset(0 0 0 0);
  -webkit-animation: markerBg 1s 1s both;
          animation: markerBg 1s 1s both;
}

:root {
  --animation-delay: 0.1;
}

.js-textAnime-01,
.js-textAnime-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.js-textAnime-01 > span,
.js-textAnime-02 > span {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(1em);
          transform: translateY(1em);
}
.js-textAnime-01.is-inview > span,
.js-textAnime-02.is-inview > span {
  -webkit-animation: fadeInUp 0.2s ease forwards;
          animation: fadeInUp 0.2s ease forwards;
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes markerBg {
  clip-path: inset(0 0 0 0);
}
@keyframes markerBg {
  clip-path: inset(0 0 0 0);
}
@-webkit-keyframes markerHide {
  -webkit-transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  clip-path: inset(0 100% 0 0);
}
@keyframes markerHide {
  -webkit-transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  clip-path: inset(0 100% 0 0);
}
.js-textEffect span {
  opacity: 0;
}

.is-textEffect {
  -webkit-animation: fadeInOutThenStay 0.1s ease forwards;
  -webkit-animation-animation: fadeInOutThenStay 0.1s ease forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-iteration-count-animation-iteration-count: 1;
}

@-webkit-keyframes fadeInOutThenStay {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInOutThenStay {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.circle__animation--type_a {
  display: block;
  stroke-width: 30;
  stroke-miterlimit: 10;
  stroke-dashoffset: 125.69;
  stroke-dasharray: 125.69;
  stroke: #e5eff6;
}
.circle__animation--type_a--flip {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.circle__animation--type_a.iv-item.is-inview {
  -webkit-animation: circle__half--type_a_s_do 500ms linear 1 normal forwards;
          animation: circle__half--type_a_s_do 500ms linear 1 normal forwards;
}

@-webkit-keyframes circle__half--type_a_s_do {
  0% {
    stroke-dashoffset: 125.69;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes circle__half--type_a_s_do {
  0% {
    stroke-dashoffset: 125.69;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.deco {
  display: block;
  fill: none;
  z-index: -1;
}
.deco--sec {
  stroke: #005dab;
}
.deco--ter {
  stroke: #008798;
}
.deco--orange {
  stroke: #d85910;
}
.deco--qui {
  stroke: #e5eff6;
}
.deco--sen {
  stroke: #e5f3f4;
}

.deco-area__wrapper {
  position: absolute;
  width: min(30vw, 480px);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .deco-area__wrapper {
    width: 240px;
  }
}
.deco-area__wrapper {
  aspect-ratio: 1;
  z-index: -2;
}
.deco-area__wrapper.h-semi {
  aspect-ratio: 2/1;
}
.deco-area__wrapper--right {
  inset: 0 0 auto auto;
  z-index: 0;
}
.deco-area__wrapper--left {
  inset: 0 auto auto 0;
}
.deco-area__content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.deco-area__content .deco {
  position: absolute;
  width: 100%;
  z-index: 0;
}
.deco-area__content .r-top {
  inset: 0 0 auto auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.deco-area__content .l-bottom {
  inset: auto auto 0 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  z-index: 1;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.deco-area__content .r-bottom {
  inset: auto auto 0 0;
}

.deco-area__wrapper--left .deco-area__content .l-top {
  inset: 0 0 auto auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.deco-area__wrapper--left .deco-area__content .l-bottom {
  inset: auto auto 0 0;
  z-index: 1;
}
.deco-area__wrapper--left .deco-area__content .r-bottom {
  inset: auto auto 0 72.75%;
  z-index: -1;
}

.deco-area__wrapper--right .deco-area__content .l-bottom {
  inset: auto auto 0 -72.75%;
}
.deco-area__wrapper--right .deco-area__content .l-top {
  inset: 0 72.75% auto auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.bg-animation__circle--large {
  -webkit-animation: bg-animation__circle--large_s_do 4000ms linear infinite normal forwards;
          animation: bg-animation__circle--large_s_do 4000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__circle--large_s_do {
  0% {
    stroke-dashoffset: 1507.96;
  }
  16.666667% {
    stroke-dashoffset: 1507.96;
  }
  33.333333% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1507.96;
  }
}

@keyframes bg-animation__circle--large_s_do {
  0% {
    stroke-dashoffset: 1507.96;
  }
  16.666667% {
    stroke-dashoffset: 1507.96;
  }
  33.333333% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1507.96;
  }
}
.bg-animation__circle--small {
  -webkit-animation: bg-animation__circle--small_s_do 4000ms linear infinite normal forwards;
          animation: bg-animation__circle--small_s_do 4000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__circle--small_s_do {
  0% {
    stroke-dashoffset: 1005.31;
  }
  16.666667% {
    stroke-dashoffset: 1005.31;
  }
  33.333333% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1005.31;
  }
}

@keyframes bg-animation__circle--small_s_do {
  0% {
    stroke-dashoffset: 1005.31;
  }
  16.666667% {
    stroke-dashoffset: 1005.31;
  }
  33.333333% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1005.31;
  }
}
.bg-animation__semicircle__vertical--bottom {
  -webkit-animation: bg-animation__semicircle__vertical--bottom_s_do 6500ms linear infinite normal forwards;
          animation: bg-animation__semicircle__vertical--bottom_s_do 6500ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__semicircle__vertical--bottom_s_do {
  0% {
    stroke-dashoffset: 1322.03;
  }
  46.153846% {
    stroke-dashoffset: 1322.03;
  }
  61.538462% {
    stroke-dashoffset: 0;
  }
  92.307692% {
    stroke-dashoffset: 1322.03;
  }
  100% {
    stroke-dashoffset: 1322.03;
  }
}

@keyframes bg-animation__semicircle__vertical--bottom_s_do {
  0% {
    stroke-dashoffset: 1322.03;
  }
  46.153846% {
    stroke-dashoffset: 1322.03;
  }
  61.538462% {
    stroke-dashoffset: 0;
  }
  92.307692% {
    stroke-dashoffset: 1322.03;
  }
  100% {
    stroke-dashoffset: 1322.03;
  }
}
.bg-animation__semicircle__vertical--top {
  -webkit-animation: bg-animation__semicircle__vertical--top_s_do 6500ms linear infinite normal forwards;
          animation: bg-animation__semicircle__vertical--top_s_do 6500ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__semicircle__vertical--top_s_do {
  0% {
    stroke-dashoffset: 1322.03;
  }
  46.153846% {
    stroke-dashoffset: 1322.03;
  }
  61.538462% {
    stroke-dashoffset: 0;
  }
  92.307692% {
    stroke-dashoffset: 1322.03;
  }
  100% {
    stroke-dashoffset: 1322.03;
  }
}

@keyframes bg-animation__semicircle__vertical--top_s_do {
  0% {
    stroke-dashoffset: 1322.03;
  }
  46.153846% {
    stroke-dashoffset: 1322.03;
  }
  61.538462% {
    stroke-dashoffset: 0;
  }
  92.307692% {
    stroke-dashoffset: 1322.03;
  }
  100% {
    stroke-dashoffset: 1322.03;
  }
}
.bg-animation__semicircle--horizontal--top {
  -webkit-animation: bg-animation__semicircle--horizontal--top_s_do 5300ms linear infinite normal forwards;
          animation: bg-animation__semicircle--horizontal--top_s_do 5300ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__semicircle--horizontal--top_s_do {
  0% {
    stroke-dashoffset: 502.73;
  }
  56.603774% {
    stroke-dashoffset: 502.73;
  }
  66.037736% {
    stroke-dashoffset: 0;
  }
  75.471698% {
    stroke-dashoffset: 502.73;
  }
  100% {
    stroke-dashoffset: 502.73;
  }
}

@keyframes bg-animation__semicircle--horizontal--top_s_do {
  0% {
    stroke-dashoffset: 502.73;
  }
  56.603774% {
    stroke-dashoffset: 502.73;
  }
  66.037736% {
    stroke-dashoffset: 0;
  }
  75.471698% {
    stroke-dashoffset: 502.73;
  }
  100% {
    stroke-dashoffset: 502.73;
  }
}
.bg-animation__semicircle--horizontal--middle {
  -webkit-animation: bg-animation__semicircle--horizontal--middle_s_do 5300ms linear infinite normal forwards;
          animation: bg-animation__semicircle--horizontal--middle_s_do 5300ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__semicircle--horizontal--middle_s_do {
  0% {
    stroke-dashoffset: 452.46;
  }
  47.169811% {
    stroke-dashoffset: 452.46;
  }
  56.603774% {
    stroke-dashoffset: 0;
  }
  75.471698% {
    stroke-dashoffset: 452.46;
  }
  100% {
    stroke-dashoffset: 452.46;
  }
}

@keyframes bg-animation__semicircle--horizontal--middle_s_do {
  0% {
    stroke-dashoffset: 452.46;
  }
  47.169811% {
    stroke-dashoffset: 452.46;
  }
  56.603774% {
    stroke-dashoffset: 0;
  }
  75.471698% {
    stroke-dashoffset: 452.46;
  }
  100% {
    stroke-dashoffset: 452.46;
  }
}
.bg-animation__semicircle--horizontal--bottom {
  -webkit-animation: bg-animation__semicircle--horizontal--bottom_s_do 5300ms linear infinite normal forwards;
          animation: bg-animation__semicircle--horizontal--bottom_s_do 5300ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__semicircle--horizontal--bottom_s_do {
  0% {
    stroke-dashoffset: 402.18;
  }
  37.735849% {
    stroke-dashoffset: 402.18;
  }
  47.169811% {
    stroke-dashoffset: 0;
  }
  75.471698% {
    stroke-dashoffset: 402.18;
  }
  100% {
    stroke-dashoffset: 402.18;
  }
}

@keyframes bg-animation__semicircle--horizontal--bottom_s_do {
  0% {
    stroke-dashoffset: 402.18;
  }
  37.735849% {
    stroke-dashoffset: 402.18;
  }
  47.169811% {
    stroke-dashoffset: 0;
  }
  75.471698% {
    stroke-dashoffset: 402.18;
  }
  100% {
    stroke-dashoffset: 402.18;
  }
}
.bg-animation__square--large {
  -webkit-animation: bg-animation__square--large_s_do 6000ms linear infinite normal forwards;
          animation: bg-animation__square--large_s_do 6000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__square--large_s_do {
  0% {
    stroke-dashoffset: 1280;
  }
  58.333333% {
    stroke-dashoffset: 1280;
  }
  75% {
    stroke-dashoffset: 0;
  }
  91.666667% {
    stroke-dashoffset: 1280;
  }
  100% {
    stroke-dashoffset: 1280;
  }
}

@keyframes bg-animation__square--large_s_do {
  0% {
    stroke-dashoffset: 1280;
  }
  58.333333% {
    stroke-dashoffset: 1280;
  }
  75% {
    stroke-dashoffset: 0;
  }
  91.666667% {
    stroke-dashoffset: 1280;
  }
  100% {
    stroke-dashoffset: 1280;
  }
}
.bg-animation__square--small {
  -webkit-animation: bg-animation__square--small_s_do 6000ms linear infinite normal forwards;
          animation: bg-animation__square--small_s_do 6000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__square--small_s_do {
  0% {
    stroke-dashoffset: 640;
  }
  50% {
    stroke-dashoffset: 640;
  }
  66.666667% {
    stroke-dashoffset: 0;
  }
  83.333333% {
    stroke-dashoffset: 640;
  }
  100% {
    stroke-dashoffset: 640;
  }
}

@keyframes bg-animation__square--small_s_do {
  0% {
    stroke-dashoffset: 640;
  }
  50% {
    stroke-dashoffset: 640;
  }
  66.666667% {
    stroke-dashoffset: 0;
  }
  83.333333% {
    stroke-dashoffset: 640;
  }
  100% {
    stroke-dashoffset: 640;
  }
}
.bg-animation__curve--bottom {
  -webkit-animation: bg-animation__curve--bottom_s_do 5000ms linear infinite normal forwards;
          animation: bg-animation__curve--bottom_s_do 5000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__curve--bottom_s_do {
  0% {
    stroke-dashoffset: 251.37;
  }
  70% {
    stroke-dashoffset: 251.37;
  }
  80% {
    stroke-dashoffset: 0;
  }
  90% {
    stroke-dashoffset: 251.37;
  }
  100% {
    stroke-dashoffset: 251.37;
  }
}

@keyframes bg-animation__curve--bottom_s_do {
  0% {
    stroke-dashoffset: 251.37;
  }
  70% {
    stroke-dashoffset: 251.37;
  }
  80% {
    stroke-dashoffset: 0;
  }
  90% {
    stroke-dashoffset: 251.37;
  }
  100% {
    stroke-dashoffset: 251.37;
  }
}
.bg-animation__curve--top {
  -webkit-animation: bg-animation__curve--top_s_do 5000ms linear infinite normal forwards;
          animation: bg-animation__curve--top_s_do 5000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__curve--top_s_do {
  0% {
    stroke-dashoffset: 251.37;
  }
  60% {
    stroke-dashoffset: 251.37;
  }
  70% {
    stroke-dashoffset: 0;
  }
  90% {
    stroke-dashoffset: 251.37;
  }
  100% {
    stroke-dashoffset: 251.37;
  }
}

@keyframes bg-animation__curve--top_s_do {
  0% {
    stroke-dashoffset: 251.37;
  }
  60% {
    stroke-dashoffset: 251.37;
  }
  70% {
    stroke-dashoffset: 0;
  }
  90% {
    stroke-dashoffset: 251.37;
  }
  100% {
    stroke-dashoffset: 251.37;
  }
}
.bg-animation__diagonal--left {
  -webkit-animation: bg-animation__diagonal--left_s_do 3000ms linear infinite normal forwards;
          animation: bg-animation__diagonal--left_s_do 3000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__diagonal--left_s_do {
  0% {
    stroke-dashoffset: 452.55;
  }
  33.333333% {
    stroke-dashoffset: 452.55;
  }
  66.666667% {
    stroke-dashoffset: 0;
  }
  83.333333% {
    stroke-dashoffset: 452.55;
  }
  100% {
    stroke-dashoffset: 452.55;
  }
}

@keyframes bg-animation__diagonal--left_s_do {
  0% {
    stroke-dashoffset: 452.55;
  }
  33.333333% {
    stroke-dashoffset: 452.55;
  }
  66.666667% {
    stroke-dashoffset: 0;
  }
  83.333333% {
    stroke-dashoffset: 452.55;
  }
  100% {
    stroke-dashoffset: 452.55;
  }
}
.bg-animation__diagonal--right {
  -webkit-animation: bg-animation__diagonal--right_s_do 3000ms linear infinite normal forwards;
          animation: bg-animation__diagonal--right_s_do 3000ms linear infinite normal forwards;
}

@-webkit-keyframes bg-animation__diagonal--right_s_do {
  0% {
    stroke-dashoffset: 452.55;
  }
  33.333333% {
    stroke-dashoffset: 0;
  }
  66.666667% {
    stroke-dashoffset: 452.55;
  }
  100% {
    stroke-dashoffset: 452.55;
  }
}

@keyframes bg-animation__diagonal--right_s_do {
  0% {
    stroke-dashoffset: 452.55;
  }
  33.333333% {
    stroke-dashoffset: 0;
  }
  66.666667% {
    stroke-dashoffset: 452.55;
  }
  100% {
    stroke-dashoffset: 452.55;
  }
}
/* ========================================================================== */
/* Layout */
/* ========================================================================== */
/* layout: padding */
/* -------------------------------------------------------------------------- */
.p-0 {
  padding: 0 !important;
}

.p-d5 {
  padding: 0.5em !important;
}

.p-1 {
  padding: 1em !important;
}

.p-1d5 {
  padding: 1.5em !important;
}

.p-2 {
  padding: 2em !important;
}

.p-2d5 {
  padding: 2.5em !important;
}

.p-3 {
  padding: 3em !important;
}

.p-3s5 {
  padding: 3.5em !important;
}

.p-4 {
  padding: 4em !important;
}

.p-4s5 {
  padding: 4.5em !important;
}

.p-5 {
  padding: 5em !important;
}

.p-6 {
  padding: 6em !important;
}

.p-7 {
  padding: 7em !important;
}

.p-8 {
  padding: 8em !important;
}

.p-9 {
  padding: 9em !important;
}

.p-10 {
  padding: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-p-0 {
    padding: 0 !important;
  }
  .sp-p-d5 {
    padding: 0.5em !important;
  }
  .sp-p-1 {
    padding: 1em !important;
  }
  .sp-p-1d5 {
    padding: 1.5em !important;
  }
  .sp-p-2 {
    padding: 2em !important;
  }
  .sp-p-2d5 {
    padding: 2.5em !important;
  }
  .sp-p-3 {
    padding: 3em !important;
  }
  .sp-p-3d5 {
    padding: 3.5em !important;
  }
  .sp-p-4 {
    padding: 4em !important;
  }
  .sp-p-4d5 {
    padding: 4.5em !important;
  }
  .sp-p-5 {
    padding: 5em !important;
  }
  .sp-p-6 {
    padding: 6em !important;
  }
  .sp-p-7 {
    padding: 7em !important;
  }
  .sp-p-8 {
    padding: 8em !important;
  }
  .sp-p-9 {
    padding: 9em !important;
  }
  .sp-p-10 {
    padding: 10em !important;
  }
}
/* layout: padding top */
/* -------------------------------------------------------------------------- */
.pt-0 {
  padding-top: 0 !important;
}

.pt-d5 {
  padding-top: 0.5em !important;
}

.pt-1 {
  padding-top: 1em !important;
}

.pt-1d5 {
  padding-top: 1.5em !important;
}

.pt-2 {
  padding-top: 2em !important;
}

.pt-2d5 {
  padding-top: 2.5em !important;
}

.pt-3 {
  padding-top: 3em !important;
}

.pt-3d5 {
  padding-top: 3.5em !important;
}

.pt-4 {
  padding-top: 4em !important;
}

.pt-4d5 {
  padding-top: 4.5em !important;
}

.pt-5 {
  padding-top: 5em !important;
}

.pt-6 {
  padding-top: 6em !important;
}

.pt-7 {
  padding-top: 7em !important;
}

.pt-8 {
  padding-top: 8em !important;
}

.pt-9 {
  padding-top: 9em !important;
}

.pt-10 {
  padding-top: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pt-0 {
    padding-top: 0 !important;
  }
  .sp-pt-d5 {
    padding-top: 0.5em !important;
  }
  .sp-pt-1 {
    padding-top: 1em !important;
  }
  .sp-pt-1d5 {
    padding-top: 1.5em !important;
  }
  .sp-pt-2 {
    padding-top: 2em !important;
  }
  .sp-pt-2d5 {
    padding-top: 2.5em !important;
  }
  .sp-pt-3 {
    padding-top: 3em !important;
  }
  .sp-pt-3d5 {
    padding-top: 3.5em !important;
  }
  .sp-pt-4 {
    padding-top: 4em !important;
  }
  .sp-pt-4d5 {
    padding-top: 4.5em !important;
  }
  .sp-pt-5 {
    padding-top: 5em !important;
  }
  .sp-pt-6 {
    padding-top: 6em !important;
  }
  .sp-pt-7 {
    padding-top: 7em !important;
  }
  .sp-pt-8 {
    padding-top: 8em !important;
  }
  .sp-pt-9 {
    padding-top: 9em !important;
  }
  .sp-pt-10 {
    padding-top: 10em !important;
  }
}
/* layout: padding right */
/* -------------------------------------------------------------------------- */
.pr-0 {
  padding-right: 0em !important;
}

.pr-d5 {
  padding-right: 0.5em !important;
}

.pr-1 {
  padding-right: 1em !important;
}

.pr-1d5 {
  padding-right: 1.5em !important;
}

.pr-2 {
  padding-right: 2em !important;
}

.pr-2d5 {
  padding-right: 2.5em !important;
}

.pr-3 {
  padding-right: 3em !important;
}

.pr-3d5 {
  padding-right: 3.5em !important;
}

.pr-4 {
  padding-right: 4em !important;
}

.pr-4d5 {
  padding-right: 4.5em !important;
}

.pr-5 {
  padding-right: 5em !important;
}

.pr-6 {
  padding-right: 6em !important;
}

.pr-7 {
  padding-right: 7em !important;
}

.pr-8 {
  padding-right: 8em !important;
}

.pr-9 {
  padding-right: 9em !important;
}

.pr-10 {
  padding-right: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pr-0 {
    padding-right: 0em !important;
  }
  .sp-pr-d5 {
    padding-right: 0.5em !important;
  }
  .sp-pr-1 {
    padding-right: 1em !important;
  }
  .sp-pr-1d5 {
    padding-right: 1.5em !important;
  }
  .sp-pr-2 {
    padding-right: 2em !important;
  }
  .sp-pr-2d5 {
    padding-right: 2.5em !important;
  }
  .sp-pr-3 {
    padding-right: 3em !important;
  }
  .sp-pr-3d5 {
    padding-right: 3.5em !important;
  }
  .sp-pr-4 {
    padding-right: 4em !important;
  }
  .sp-pr-4d5 {
    padding-right: 4.5em !important;
  }
  .sp-pr-5 {
    padding-right: 5em !important;
  }
  .sp-pr-6 {
    padding-right: 6em !important;
  }
  .sp-pr-7 {
    padding-right: 7em !important;
  }
  .sp-pr-8 {
    padding-right: 8em !important;
  }
  .sp-pr-9 {
    padding-right: 9em !important;
  }
  .sp-pr-10 {
    padding-right: 10em !important;
  }
}
/* layout: padding bottom */
/* -------------------------------------------------------------------------- */
.pb-0 {
  padding-bottom: 0em !important;
}

.pb-d5 {
  padding-bottom: 0.5em !important;
}

.pb-1 {
  padding-bottom: 1em !important;
}

.pb-1d5 {
  padding-bottom: 1.5em !important;
}

.pb-2 {
  padding-bottom: 2em !important;
}

.pb-2d5 {
  padding-bottom: 2.5em !important;
}

.pb-3 {
  padding-bottom: 3em !important;
}

.pb-3d5 {
  padding-bottom: 3.5em !important;
}

.pb-4 {
  padding-bottom: 4em !important;
}

.pb-4d5 {
  padding-bottom: 4.5em !important;
}

.pb-5 {
  padding-bottom: 5em !important;
}

.pb-6 {
  padding-bottom: 6em !important;
}

.pb-7 {
  padding-bottom: 7em !important;
}

.pb-8 {
  padding-bottom: 8em !important;
}

.pb-9 {
  padding-bottom: 9em !important;
}

.pb-10 {
  padding-bottom: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pb-0 {
    padding-bottom: 0em !important;
  }
  .sp-pb-d5 {
    padding-bottom: 0.5em !important;
  }
  .sp-pb-1 {
    padding-bottom: 1em !important;
  }
  .sp-pb-1d5 {
    padding-bottom: 1.5em !important;
  }
  .sp-pb-2 {
    padding-bottom: 2em !important;
  }
  .sp-pb-2d5 {
    padding-bottom: 2.5em !important;
  }
  .sp-pb-3 {
    padding-bottom: 3em !important;
  }
  .sp-pb-3d5 {
    padding-bottom: 3.5em !important;
  }
  .sp-pb-4 {
    padding-bottom: 4em !important;
  }
  .sp-pb-4d5 {
    padding-bottom: 4.5em !important;
  }
  .sp-pb-5 {
    padding-bottom: 5em !important;
  }
  .sp-pb-6 {
    padding-bottom: 6em !important;
  }
  .sp-pb-7 {
    padding-bottom: 7em !important;
  }
  .sp-pb-8 {
    padding-bottom: 8em !important;
  }
  .sp-pb-9 {
    padding-bottom: 9em !important;
  }
  .sp-pb-10 {
    padding-bottom: 10em !important;
  }
}
/* layout: padding left */
/* -------------------------------------------------------------------------- */
.pl-0 {
  padding-left: 0em !important;
}

.pl-d5 {
  padding-left: 0.5em !important;
}

.pl-1 {
  padding-left: 1em !important;
}

.pl-1d5 {
  padding-left: 1.5em !important;
}

.pl-2 {
  padding-left: 2em !important;
}

.pl-2d5 {
  padding-left: 2.5em !important;
}

.pl-3 {
  padding-left: 3em !important;
}

.pl-3d5 {
  padding-left: 3.5em !important;
}

.pl-4 {
  padding-left: 4em !important;
}

.pl-4d5 {
  padding-left: 4.5em !important;
}

.pl-5 {
  padding-left: 5em !important;
}

.pl-6 {
  padding-left: 6em !important;
}

.pl-7 {
  padding-left: 7em !important;
}

.pl-8 {
  padding-left: 8em !important;
}

.pl-9 {
  padding-left: 9em !important;
}

.pl-10 {
  padding-left: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-pl-0 {
    padding-left: 0em !important;
  }
  .sp-pl-d5 {
    padding-left: 0.5em !important;
  }
  .sp-pl-1 {
    padding-left: 1em !important;
  }
  .sp-pl-1d5 {
    padding-left: 1.5em !important;
  }
  .sp-pl-2 {
    padding-left: 2em !important;
  }
  .sp-pl-2d5 {
    padding-left: 2.5em !important;
  }
  .sp-pl-3 {
    padding-left: 3em !important;
  }
  .sp-pl-3d5 {
    padding-left: 3.5em !important;
  }
  .sp-pl-4 {
    padding-left: 4em !important;
  }
  .sp-pl-4d5 {
    padding-left: 4.5em !important;
  }
  .sp-pl-5 {
    padding-left: 5em !important;
  }
  .sp-pl-6 {
    padding-left: 6em !important;
  }
  .sp-pl-7 {
    padding-left: 7em !important;
  }
  .sp-pl-8 {
    padding-left: 8em !important;
  }
  .sp-pl-9 {
    padding-left: 9em !important;
  }
  .sp-pl-10 {
    padding-left: 10em !important;
  }
}
/* layout: margin auto */
/* -------------------------------------------------------------------------- */
.m-auto {
  margin: 0 auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-m-auto {
    margin: 0 auto !important;
  }
  .sp-mr-auto {
    margin-right: auto !important;
  }
  .sp-ml-auto {
    margin-left: auto !important;
  }
}
/* layout: margin top */
/* -------------------------------------------------------------------------- */
.mt-0 {
  margin-top: 0 !important;
}

.mt-d5 {
  margin-top: 0.5em !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mt-1d5 {
  margin-top: 1.5em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mt-2d5 {
  margin-top: 2.5em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mt-3d5 {
  margin-top: 3.5em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mt-4d5 {
  margin-top: 4.5em !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.mt-6 {
  margin-top: 6em !important;
}

.mt-7 {
  margin-top: 7em !important;
}

.mt-8 {
  margin-top: 8em !important;
}

.mt-9 {
  margin-top: 9em !important;
}

.mt-10 {
  margin-top: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-mt-0 {
    margin-top: 0 !important;
  }
  .sp-mt-d5 {
    margin-top: 0.5em !important;
  }
  .sp-mt-1 {
    margin-top: 1em !important;
  }
  .sp-mt-1d5 {
    margin-top: 1.5em !important;
  }
  .sp-mt-2 {
    margin-top: 2em !important;
  }
  .sp-mt-2d5 {
    margin-top: 2.5em !important;
  }
  .sp-mt-3 {
    margin-top: 3em !important;
  }
  .sp-mt-3d5 {
    margin-top: 3.5em !important;
  }
  .sp-mt-4 {
    margin-top: 4em !important;
  }
  .sp-mt-4d5 {
    margin-top: 4.5em !important;
  }
  .sp-mt-5 {
    margin-top: 5em !important;
  }
  .sp-mt-6 {
    margin-top: 6em !important;
  }
  .sp-mt-7 {
    margin-top: 7em !important;
  }
  .sp-mt-8 {
    margin-top: 8em !important;
  }
  .sp-mt-9 {
    margin-top: 9em !important;
  }
  .sp-mt-10 {
    margin-top: 10em !important;
  }
}
/* layout: margin right */
/* -------------------------------------------------------------------------- */
.mr-0 {
  margin-right: 0 !important;
}

.mr-d5 {
  margin-right: 0.5em !important;
}

.mr-1 {
  margin-right: 1em !important;
}

.mr-1d5 {
  margin-right: 1.5em !important;
}

.mr-2 {
  margin-right: 2em !important;
}

.mr-2d5 {
  margin-right: 2.5em !important;
}

.mr-3 {
  margin-right: 3em !important;
}

.mr-3d5 {
  margin-right: 3.5em !important;
}

.mr-4 {
  margin-right: 4em !important;
}

.mr-4d5 {
  margin-right: 4.5em !important;
}

.mr-5 {
  margin-right: 5em !important;
}

.mr-6 {
  margin-right: 6em !important;
}

.mr-7 {
  margin-right: 7em !important;
}

.mr-8 {
  margin-right: 8em !important;
}

.mr-9 {
  margin-right: 9em !important;
}

.mr-10 {
  margin-right: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-mr-0 {
    margin-right: 0 !important;
  }
  .sp-mr-d5 {
    margin-right: 0.5em !important;
  }
  .sp-mr-1 {
    margin-right: 1em !important;
  }
  .sp-mr-1d5 {
    margin-right: 1.5em !important;
  }
  .sp-mr-2 {
    margin-right: 2em !important;
  }
  .sp-mr-2d5 {
    margin-right: 2.5em !important;
  }
  .sp-mr-3 {
    margin-right: 3em !important;
  }
  .sp-mr-3d5 {
    margin-right: 3.5em !important;
  }
  .sp-mr-4 {
    margin-right: 4em !important;
  }
  .sp-mr-4d5 {
    margin-right: 4.5em !important;
  }
  .sp-mr-5 {
    margin-right: 5em !important;
  }
  .sp-mr-6 {
    margin-right: 6em !important;
  }
  .sp-mr-7 {
    margin-right: 7em !important;
  }
  .sp-mr-8 {
    margin-right: 8em !important;
  }
  .sp-mr-9 {
    margin-right: 9em !important;
  }
  .sp-mr-10 {
    margin-right: 10em !important;
  }
}
/* layout: margin bottom */
/* -------------------------------------------------------------------------- */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-d5 {
  margin-bottom: 0.5em !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mb-1d5 {
  margin-bottom: 1.5em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.mb-2d5 {
  margin-bottom: 2.5em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.mb-3d5 {
  margin-bottom: 3.5em !important;
}

.mb-4 {
  margin-bottom: 4em !important;
}

.mb-4d5 {
  margin-bottom: 4.5em !important;
}

.mb-5 {
  margin-bottom: 5em !important;
}

.mb-6 {
  margin-bottom: 6em !important;
}

.mb-7 {
  margin-bottom: 7em !important;
}

.mb-8 {
  margin-bottom: 8em !important;
}

.mb-9 {
  margin-bottom: 9em !important;
}

.mb-10 {
  margin-bottom: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .sp-mb-d5 {
    margin-bottom: 0.5em !important;
  }
  .sp-mb-1 {
    margin-bottom: 1em !important;
  }
  .sp-mb-1d5 {
    margin-bottom: 1.5em !important;
  }
  .sp-mb-2 {
    margin-bottom: 2em !important;
  }
  .sp-mb-2d5 {
    margin-bottom: 2.5em !important;
  }
  .sp-mb-3 {
    margin-bottom: 3em !important;
  }
  .sp-mb-3d5 {
    margin-bottom: 3.5em !important;
  }
  .sp-mb-4 {
    margin-bottom: 4em !important;
  }
  .sp-mb-4d5 {
    margin-bottom: 4.5em !important;
  }
  .sp-mb-5 {
    margin-bottom: 5em !important;
  }
  .sp-mb-6 {
    margin-bottom: 6em !important;
  }
  .sp-mb-7 {
    margin-bottom: 7em !important;
  }
  .sp-mb-8 {
    margin-bottom: 8em !important;
  }
  .sp-mb-9 {
    margin-bottom: 9em !important;
  }
  .sp-mb-10 {
    margin-bottom: 10em !important;
  }
}
/* layout: margin left */
/* -------------------------------------------------------------------------- */
.ml-0 {
  margin-left: 0 !important;
}

.ml-d5 {
  margin-left: 0.5em !important;
}

.ml-1 {
  margin-left: 1em !important;
}

.ml-1d5 {
  margin-left: 1.5em !important;
}

.ml-2 {
  margin-left: 2em !important;
}

.ml-2d5 {
  margin-left: 2.5em !important;
}

.ml-3 {
  margin-left: 3em !important;
}

.ml-3d5 {
  margin-left: 3.5em !important;
}

.ml-4 {
  margin-left: 4em !important;
}

.ml-4d5 {
  margin-left: 4.5em !important;
}

.ml-5 {
  margin-left: 5em !important;
}

.ml-6 {
  margin-left: 6em !important;
}

.ml-7 {
  margin-left: 7em !important;
}

.ml-8 {
  margin-left: 8em !important;
}

.ml-9 {
  margin-left: 9em !important;
}

.ml-10 {
  margin-left: 10em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-ml-0 {
    margin-left: 0 !important;
  }
  .sp-ml-d5 {
    margin-left: 0.5em !important;
  }
  .sp-ml-1 {
    margin-left: 1em !important;
  }
  .sp-ml-1d5 {
    margin-left: 1.5em !important;
  }
  .sp-ml-2 {
    margin-left: 2em !important;
  }
  .sp-ml-2d5 {
    margin-left: 2.5em !important;
  }
  .sp-ml-3 {
    margin-left: 3em !important;
  }
  .sp-ml-3d5 {
    margin-left: 3.5em !important;
  }
  .sp-ml-4 {
    margin-left: 4em !important;
  }
  .sp-ml-4d5 {
    margin-left: 4.5em !important;
  }
  .sp-ml-5 {
    margin-left: 5em !important;
  }
  .sp-ml-6 {
    margin-left: 6em !important;
  }
  .sp-ml-7 {
    margin-left: 7em !important;
  }
  .sp-ml-8 {
    margin-left: 8em !important;
  }
  .sp-ml-9 {
    margin-left: 9em !important;
  }
  .sp-ml-10 {
    margin-left: 10em !important;
  }
}
/* layout: percentage width */
/* -------------------------------------------------------------------------- */
.w-100p {
  width: 100% !important;
}

.w-95p {
  width: 95% !important;
}

.w-90p {
  width: 90% !important;
}

.w-85p {
  width: 85% !important;
}

.w-80p {
  width: 80% !important;
}

.w-75p {
  width: 75% !important;
}

.w-70p {
  width: 70% !important;
}

.w-65p {
  width: 65% !important;
}

.w-60p {
  width: 60% !important;
}

.w-55p {
  width: 55% !important;
}

.w-50p {
  width: 50% !important;
}

.w-45p {
  width: 45% !important;
}

.w-40p {
  width: 40% !important;
}

.w-35p {
  width: 35% !important;
}

.w-30p {
  width: 30% !important;
}

.w-25p {
  width: 25% !important;
}

.w-20p {
  width: 20% !important;
}

.w-15p {
  width: 15% !important;
}

.w-10p {
  width: 10% !important;
}

.w-5p {
  width: 5% !important;
}

.w-auto {
  width: auto !important;
}

.w-small {
  width: 33.333% !important;
}

.w-middle {
  width: 66.666% !important;
}

.w-fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-w-100p {
    width: 100% !important;
  }
  .sp-w-95p {
    width: 95% !important;
  }
  .sp-w-90p {
    width: 90% !important;
  }
  .sp-w-85p {
    width: 85% !important;
  }
  .sp-w-80p {
    width: 80% !important;
  }
  .sp-w-75p {
    width: 75% !important;
  }
  .sp-w-70p {
    width: 70% !important;
  }
  .sp-w-65p {
    width: 65% !important;
  }
  .sp-w-60p {
    width: 60% !important;
  }
  .sp-w-55p {
    width: 55% !important;
  }
  .sp-w-50p {
    width: 50% !important;
  }
  .sp-w-45p {
    width: 45% !important;
  }
  .sp-w-40p {
    width: 40% !important;
  }
  .sp-w-35p {
    width: 35% !important;
  }
  .sp-w-30p {
    width: 30% !important;
  }
  .sp-w-25p {
    width: 25% !important;
  }
  .sp-w-20p {
    width: 20% !important;
  }
  .sp-w-15p {
    width: 15% !important;
  }
  .sp-w-10p {
    width: 10% !important;
  }
  .sp-w-5p {
    width: 5% !important;
  }
  .sp-w-auto {
    width: auto !important;
  }
  .sp-w-small {
    width: 33.333% !important;
  }
  .sp-w-middle {
    width: 66.666% !important;
  }
  .sp-w-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
/* layout: em width */
/* -------------------------------------------------------------------------- */
.w-d5e {
  width: 0.5em !important;
}

.w-1e {
  width: 1em !important;
}

.w-1d5e {
  width: 1.5em !important;
}

.w-2e {
  width: 2em !important;
}

.w-2d5e {
  width: 2.5em !important;
}

.w-3e {
  width: 3em !important;
}

.w-3d5e {
  width: 3.5em !important;
}

.w-4e {
  width: 4em !important;
}

.w-4d5e {
  width: 4.5em !important;
}

.w-5e {
  width: 5em !important;
}

.w-5d5e {
  width: 5.5em !important;
}

.w-6e {
  width: 6em !important;
}

.w-6d5e {
  width: 6.5em !important;
}

.w-7e {
  width: 7em !important;
}

.w-7d5e {
  width: 7.5em !important;
}

.w-8e {
  width: 8em !important;
}

.w-8d5e {
  width: 8.5em !important;
}

.w-9e {
  width: 9em !important;
}

.w-9d5e {
  width: 9.5em !important;
}

.w-10e {
  width: 10em !important;
}

.w-11e {
  width: 11em !important;
}

.w-12e {
  width: 12em !important;
}

.w-13e {
  width: 13em !important;
}

.w-14e {
  width: 14em !important;
}

.w-15e {
  width: 15em !important;
}

.w-16e {
  width: 16em !important;
}

.w-17e {
  width: 17em !important;
}

.w-18e {
  width: 18em !important;
}

.w-19e {
  width: 19em !important;
}

.w-20e {
  width: 20em !important;
}

.w-21e {
  width: 21em !important;
}

.w-22e {
  width: 22em !important;
}

.w-23e {
  width: 23em !important;
}

.w-24e {
  width: 24em !important;
}

.w-25e {
  width: 25em !important;
}

.w-26e {
  width: 26em !important;
}

.w-27e {
  width: 27em !important;
}

.w-28e {
  width: 28em !important;
}

.w-29e {
  width: 29em !important;
}

.w-30e {
  width: 30em !important;
}

.w-31e {
  width: 31em !important;
}

.w-32e {
  width: 32em !important;
}

.w-33e {
  width: 33em !important;
}

.w-34e {
  width: 34em !important;
}

.w-35e {
  width: 35em !important;
}

.w-36e {
  width: 36em !important;
}

.w-37e {
  width: 37em !important;
}

.w-38e {
  width: 38em !important;
}

.w-39e {
  width: 39em !important;
}

.w-40e {
  width: 40em !important;
}

.w-41e {
  width: 41em !important;
}

.w-42e {
  width: 42em !important;
}

.w-43e {
  width: 43em !important;
}

.w-44e {
  width: 44em !important;
}

.w-45e {
  width: 45em !important;
}

.w-46e {
  width: 46em !important;
}

.w-47e {
  width: 47em !important;
}

.w-48e {
  width: 48em !important;
}

.w-49e {
  width: 49em !important;
}

.w-50e {
  width: 50em !important;
}

.w-51e {
  width: 51em !important;
}

.w-52e {
  width: 52em !important;
}

.w-53e {
  width: 53em !important;
}

.w-54e {
  width: 54em !important;
}

.w-55e {
  width: 55em !important;
}

.w-56e {
  width: 56em !important;
}

.w-57e {
  width: 57em !important;
}

.w-58e {
  width: 58em !important;
}

.w-59e {
  width: 59em !important;
}

.w-60e {
  width: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-w-d5e {
    width: 0.5em !important;
  }
  .sp-w-1e {
    width: 1em !important;
  }
  .sp-w-1d5e {
    width: 1.5em !important;
  }
  .sp-w-2e {
    width: 2em !important;
  }
  .sp-w-2d5e {
    width: 2.5em !important;
  }
  .sp-w-3e {
    width: 3em !important;
  }
  .sp-w-3d5e {
    width: 3.5em !important;
  }
  .sp-w-4e {
    width: 4em !important;
  }
  .sp-w-4d5e {
    width: 4.5em !important;
  }
  .sp-w-5e {
    width: 5em !important;
  }
  .sp-w-5d5e {
    width: 5.5em !important;
  }
  .sp-w-6e {
    width: 6em !important;
  }
  .sp-w-6d5e {
    width: 6.5em !important;
  }
  .sp-w-7e {
    width: 7em !important;
  }
  .sp-w-7d5e {
    width: 7.5em !important;
  }
  .sp-w-8e {
    width: 8em !important;
  }
  .sp-w-8d5e {
    width: 8.5em !important;
  }
  .sp-w-9e {
    width: 9em !important;
  }
  .sp-w-9d5e {
    width: 9.5em !important;
  }
  .sp-w-10e {
    width: 10em !important;
  }
  .sp-w-11e {
    width: 11em !important;
  }
  .sp-w-12e {
    width: 12em !important;
  }
  .sp-w-13e {
    width: 13em !important;
  }
  .sp-w-14e {
    width: 14em !important;
  }
  .sp-w-15e {
    width: 15em !important;
  }
  .sp-w-16e {
    width: 16em !important;
  }
  .sp-w-17e {
    width: 17em !important;
  }
  .sp-w-18e {
    width: 18em !important;
  }
  .sp-w-19e {
    width: 19em !important;
  }
  .sp-w-20e {
    width: 20em !important;
  }
  .sp-w-21e {
    width: 21em !important;
  }
  .sp-w-22e {
    width: 22em !important;
  }
  .sp-w-23e {
    width: 23em !important;
  }
  .sp-w-24e {
    width: 24em !important;
  }
  .sp-w-25e {
    width: 25em !important;
  }
  .sp-w-26e {
    width: 26em !important;
  }
  .sp-w-27e {
    width: 27em !important;
  }
  .sp-w-28e {
    width: 28em !important;
  }
  .sp-w-29e {
    width: 29em !important;
  }
  .sp-w-30e {
    width: 30em !important;
  }
  .sp-w-31e {
    width: 31em !important;
  }
  .sp-w-32e {
    width: 32em !important;
  }
  .sp-w-33e {
    width: 33em !important;
  }
  .sp-w-34e {
    width: 34em !important;
  }
  .sp-w-35e {
    width: 35em !important;
  }
  .sp-w-36e {
    width: 36em !important;
  }
  .sp-w-37e {
    width: 37em !important;
  }
  .sp-w-38e {
    width: 38em !important;
  }
  .sp-w-39e {
    width: 39em !important;
  }
  .sp-w-40e {
    width: 40em !important;
  }
  .sp-w-41e {
    width: 41em !important;
  }
  .sp-w-42e {
    width: 42em !important;
  }
  .sp-w-43e {
    width: 43em !important;
  }
  .sp-w-44e {
    width: 44em !important;
  }
  .sp-w-45e {
    width: 45em !important;
  }
  .sp-w-46e {
    width: 46em !important;
  }
  .sp-w-47e {
    width: 47em !important;
  }
  .sp-w-48e {
    width: 48em !important;
  }
  .sp-w-49e {
    width: 49em !important;
  }
  .sp-w-50e {
    width: 50em !important;
  }
  .sp-w-51e {
    width: 51em !important;
  }
  .sp-w-52e {
    width: 52em !important;
  }
  .sp-w-53e {
    width: 53em !important;
  }
  .sp-w-54e {
    width: 54em !important;
  }
  .sp-w-55e {
    width: 55em !important;
  }
  .sp-w-56e {
    width: 56em !important;
  }
  .sp-w-57e {
    width: 57em !important;
  }
  .sp-w-58e {
    width: 58em !important;
  }
  .sp-w-59e {
    width: 59em !important;
  }
  .sp-w-60e {
    width: 59em !important;
  }
}
/* layout: em max-width */
/* -------------------------------------------------------------------------- */
.max-w-d5e {
  max-width: 0.5em !important;
}

.max-w-1e {
  max-width: 1em !important;
}

.max-w-1d5e {
  max-width: 1.5em !important;
}

.max-w-2e {
  max-width: 2em !important;
}

.max-w-2d5e {
  max-width: 2.5em !important;
}

.max-w-3e {
  max-width: 3em !important;
}

.max-w-3d5e {
  max-width: 3.5em !important;
}

.max-w-4e {
  max-width: 4em !important;
}

.max-w-4d5e {
  max-width: 4.5em !important;
}

.max-w-5e {
  max-width: 5em !important;
}

.max-w-5d5e {
  max-width: 5.5em !important;
}

.max-w-6e {
  max-width: 6em !important;
}

.max-w-6d5e {
  max-width: 6.5em !important;
}

.max-w-7e {
  max-width: 7em !important;
}

.max-w-7d5e {
  max-width: 7.5em !important;
}

.max-w-8e {
  max-width: 8em !important;
}

.max-w-8d5e {
  max-width: 8.5em !important;
}

.max-w-9e {
  max-width: 9em !important;
}

.max-w-9d5e {
  max-width: 9.5em !important;
}

.max-w-10e {
  max-width: 10em !important;
}

.max-w-11e {
  max-width: 11em !important;
}

.max-w-12e {
  max-width: 12em !important;
}

.max-w-13e {
  max-width: 13em !important;
}

.max-w-14e {
  max-width: 14em !important;
}

.max-w-15e {
  max-width: 15em !important;
}

.max-w-16e {
  max-width: 16em !important;
}

.max-w-17e {
  max-width: 17em !important;
}

.max-w-18e {
  max-width: 18em !important;
}

.max-w-19e {
  max-width: 19em !important;
}

.max-w-20e {
  max-width: 20em !important;
}

.max-w-21e {
  max-width: 21em !important;
}

.max-w-22e {
  max-width: 22em !important;
}

.max-w-23e {
  max-width: 23em !important;
}

.max-w-24e {
  max-width: 24em !important;
}

.max-w-25e {
  max-width: 25em !important;
}

.max-w-26e {
  max-width: 26em !important;
}

.max-w-27e {
  max-width: 27em !important;
}

.max-w-28e {
  max-width: 28em !important;
}

.max-w-29e {
  max-width: 29em !important;
}

.max-w-30e {
  max-width: 30em !important;
}

.max-w-31e {
  max-width: 31em !important;
}

.max-w-32e {
  max-width: 32em !important;
}

.max-w-33e {
  max-width: 33em !important;
}

.max-w-34e {
  max-width: 34em !important;
}

.max-w-35e {
  max-width: 35em !important;
}

.max-w-36e {
  max-width: 36em !important;
}

.max-w-37e {
  max-width: 37em !important;
}

.max-w-38e {
  max-width: 38em !important;
}

.max-w-39e {
  max-width: 39em !important;
}

.max-w-40e {
  max-width: 40em !important;
}

.max-w-41e {
  max-width: 41em !important;
}

.max-w-42e {
  max-width: 42em !important;
}

.max-w-43e {
  max-width: 43em !important;
}

.max-w-44e {
  max-width: 44em !important;
}

.max-w-45e {
  max-width: 45em !important;
}

.max-w-46e {
  max-width: 46em !important;
}

.max-w-47e {
  max-width: 47em !important;
}

.max-w-48e {
  max-width: 48em !important;
}

.max-w-49e {
  max-width: 49em !important;
}

.max-w-50e {
  max-width: 50em !important;
}

.max-w-51e {
  max-width: 51em !important;
}

.max-w-52e {
  max-width: 52em !important;
}

.max-w-53e {
  max-width: 53em !important;
}

.max-w-54e {
  max-width: 54em !important;
}

.max-w-55e {
  max-width: 55em !important;
}

.max-w-56e {
  max-width: 56em !important;
}

.max-w-57e {
  max-width: 57em !important;
}

.max-w-58e {
  max-width: 58em !important;
}

.max-w-59e {
  max-width: 59em !important;
}

.max-w-60e {
  max-width: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-max-w-inherit {
    max-width: inherit !important;
  }
  .sp-max-w-d5e {
    max-width: 0.5em !important;
  }
  .sp-max-w-1e {
    max-width: 1em !important;
  }
  .sp-max-w-1d5e {
    max-width: 1.5em !important;
  }
  .sp-max-w-2e {
    max-width: 2em !important;
  }
  .sp-max-w-2d5e {
    max-width: 2.5em !important;
  }
  .sp-max-w-3e {
    max-width: 3em !important;
  }
  .sp-max-w-3d5e {
    max-width: 3.5em !important;
  }
  .sp-max-w-4e {
    max-width: 4em !important;
  }
  .sp-max-w-4d5e {
    max-width: 4.5em !important;
  }
  .sp-max-w-5e {
    max-width: 5em !important;
  }
  .sp-max-w-5d5e {
    max-width: 5.5em !important;
  }
  .sp-max-w-6e {
    max-width: 6em !important;
  }
  .sp-max-w-6d5e {
    max-width: 6.5em !important;
  }
  .sp-max-w-7e {
    max-width: 7em !important;
  }
  .sp-max-w-7d5e {
    max-width: 7.5em !important;
  }
  .sp-max-w-8e {
    max-width: 8em !important;
  }
  .sp-max-w-8d5e {
    max-width: 8.5em !important;
  }
  .sp-max-w-9e {
    max-width: 9em !important;
  }
  .sp-max-w-9d5e {
    max-width: 9.5em !important;
  }
  .sp-max-w-10e {
    max-width: 10em !important;
  }
  .sp-max-w-11e {
    max-width: 11em !important;
  }
  .sp-max-w-12e {
    max-width: 12em !important;
  }
  .sp-max-w-13e {
    max-width: 13em !important;
  }
  .sp-max-w-14e {
    max-width: 14em !important;
  }
  .sp-max-w-15e {
    max-width: 15em !important;
  }
  .sp-max-w-16e {
    max-width: 16em !important;
  }
  .sp-max-w-17e {
    max-width: 17em !important;
  }
  .sp-max-w-18e {
    max-width: 18em !important;
  }
  .sp-max-w-19e {
    max-width: 19em !important;
  }
  .sp-max-w-20e {
    max-width: 20em !important;
  }
  .sp-max-w-21e {
    max-width: 21em !important;
  }
  .sp-max-w-22e {
    max-width: 22em !important;
  }
  .sp-max-w-23e {
    max-width: 23em !important;
  }
  .sp-max-w-24e {
    max-width: 24em !important;
  }
  .sp-max-w-25e {
    max-width: 25em !important;
  }
  .sp-max-w-26e {
    max-width: 26em !important;
  }
  .sp-max-w-27e {
    max-width: 27em !important;
  }
  .sp-max-w-28e {
    max-width: 28em !important;
  }
  .sp-max-w-29e {
    max-width: 29em !important;
  }
  .sp-max-w-30e {
    max-width: 30em !important;
  }
  .sp-max-w-31e {
    max-width: 31em !important;
  }
  .sp-max-w-32e {
    max-width: 32em !important;
  }
  .sp-max-w-33e {
    max-width: 33em !important;
  }
  .sp-max-w-34e {
    max-width: 34em !important;
  }
  .sp-max-w-35e {
    max-width: 35em !important;
  }
  .sp-max-w-36e {
    max-width: 36em !important;
  }
  .sp-max-w-37e {
    max-width: 37em !important;
  }
  .sp-max-w-38e {
    max-width: 38em !important;
  }
  .sp-max-w-39e {
    max-width: 39em !important;
  }
  .sp-max-w-40e {
    max-width: 40em !important;
  }
  .sp-max-w-41e {
    max-width: 41em !important;
  }
  .sp-max-w-42e {
    max-width: 42em !important;
  }
  .sp-max-w-43e {
    max-width: 43em !important;
  }
  .sp-max-w-44e {
    max-width: 44em !important;
  }
  .sp-max-w-45e {
    max-width: 45em !important;
  }
  .sp-max-w-46e {
    max-width: 46em !important;
  }
  .sp-max-w-47e {
    max-width: 47em !important;
  }
  .sp-max-w-48e {
    max-width: 48em !important;
  }
  .sp-max-w-49e {
    max-width: 49em !important;
  }
  .sp-max-w-50e {
    max-width: 50em !important;
  }
  .sp-max-w-51e {
    max-width: 51em !important;
  }
  .sp-max-w-52e {
    max-width: 52em !important;
  }
  .sp-max-w-53e {
    max-width: 53em !important;
  }
  .sp-max-w-54e {
    max-width: 54em !important;
  }
  .sp-max-w-55e {
    max-width: 55em !important;
  }
  .sp-max-w-56e {
    max-width: 56em !important;
  }
  .sp-max-w-57e {
    max-width: 57em !important;
  }
  .sp-max-w-58e {
    max-width: 58em !important;
  }
  .sp-max-w-59e {
    max-width: 59em !important;
  }
  .sp-max-w-60e {
    max-width: 59em !important;
  }
}
/* layout: em min-width */
/* -------------------------------------------------------------------------- */
.min-w-d5e {
  min-width: 0.5em !important;
}

.min-w-1e {
  min-width: 1em !important;
}

.min-w-1d5e {
  min-width: 1.5em !important;
}

.min-w-2e {
  min-width: 2em !important;
}

.min-w-2d5e {
  min-width: 2.5em !important;
}

.min-w-3e {
  min-width: 3em !important;
}

.min-w-3d5e {
  min-width: 3.5em !important;
}

.min-w-4e {
  min-width: 4em !important;
}

.min-w-4d5e {
  min-width: 4.5em !important;
}

.min-w-5e {
  min-width: 5em !important;
}

.min-w-5d5e {
  min-width: 5.5em !important;
}

.min-w-6e {
  min-width: 6em !important;
}

.min-w-6d5e {
  min-width: 6.5em !important;
}

.min-w-7e {
  min-width: 7em !important;
}

.min-w-7d5e {
  min-width: 7.5em !important;
}

.min-w-8e {
  min-width: 8em !important;
}

.min-w-8d5e {
  min-width: 8.5em !important;
}

.min-w-9e {
  min-width: 9em !important;
}

.min-w-9d5e {
  min-width: 9.5em !important;
}

.min-w-10e {
  min-width: 10em !important;
}

.min-w-11e {
  min-width: 11em !important;
}

.min-w-12e {
  min-width: 12em !important;
}

.min-w-13e {
  min-width: 13em !important;
}

.min-w-14e {
  min-width: 14em !important;
}

.min-w-15e {
  min-width: 15em !important;
}

.min-w-16e {
  min-width: 16em !important;
}

.min-w-17e {
  min-width: 17em !important;
}

.min-w-18e {
  min-width: 18em !important;
}

.min-w-19e {
  min-width: 19em !important;
}

.min-w-20e {
  min-width: 20em !important;
}

.min-w-21e {
  min-width: 21em !important;
}

.min-w-22e {
  min-width: 22em !important;
}

.min-w-23e {
  min-width: 23em !important;
}

.min-w-24e {
  min-width: 24em !important;
}

.min-w-25e {
  min-width: 25em !important;
}

.min-w-26e {
  min-width: 26em !important;
}

.min-w-27e {
  min-width: 27em !important;
}

.min-w-28e {
  min-width: 28em !important;
}

.min-w-29e {
  min-width: 29em !important;
}

.min-w-30e {
  min-width: 30em !important;
}

.min-w-31e {
  min-width: 31em !important;
}

.min-w-32e {
  min-width: 32em !important;
}

.min-w-33e {
  min-width: 33em !important;
}

.min-w-34e {
  min-width: 34em !important;
}

.min-w-35e {
  min-width: 35em !important;
}

.min-w-36e {
  min-width: 36em !important;
}

.min-w-37e {
  min-width: 37em !important;
}

.min-w-38e {
  min-width: 38em !important;
}

.min-w-39e {
  min-width: 39em !important;
}

.min-w-40e {
  min-width: 40em !important;
}

.min-w-41e {
  min-width: 41em !important;
}

.min-w-42e {
  min-width: 42em !important;
}

.min-w-43e {
  min-width: 43em !important;
}

.min-w-44e {
  min-width: 44em !important;
}

.min-w-45e {
  min-width: 45em !important;
}

.min-w-46e {
  min-width: 46em !important;
}

.min-w-47e {
  min-width: 47em !important;
}

.min-w-48e {
  min-width: 48em !important;
}

.min-w-49e {
  min-width: 49em !important;
}

.min-w-50e {
  min-width: 50em !important;
}

.min-w-51e {
  min-width: 51em !important;
}

.min-w-52e {
  min-width: 52em !important;
}

.min-w-53e {
  min-width: 53em !important;
}

.min-w-54e {
  min-width: 54em !important;
}

.min-w-55e {
  min-width: 55em !important;
}

.min-w-56e {
  min-width: 56em !important;
}

.min-w-57e {
  min-width: 57em !important;
}

.min-w-58e {
  min-width: 58em !important;
}

.min-w-59e {
  min-width: 59em !important;
}

.min-w-60e {
  min-width: 59em !important;
}

@media screen and (min-min-width: 768px) and (orientation: portrait) {
  .sp-min-w-inherit {
    max-width: inherit !important;
  }
  .sp-min-w-d5e {
    min-width: 0.5em !important;
  }
  .sp-min-w-1e {
    min-width: 1em !important;
  }
  .sp-min-w-1d5e {
    min-width: 1.5em !important;
  }
  .sp-min-w-2e {
    min-width: 2em !important;
  }
  .sp-min-w-2d5e {
    min-width: 2.5em !important;
  }
  .sp-min-w-3e {
    min-width: 3em !important;
  }
  .sp-min-w-3d5e {
    min-width: 3.5em !important;
  }
  .sp-min-w-4e {
    min-width: 4em !important;
  }
  .sp-min-w-4d5e {
    min-width: 4.5em !important;
  }
  .sp-min-w-5e {
    min-width: 5em !important;
  }
  .sp-min-w-5d5e {
    min-width: 5.5em !important;
  }
  .sp-min-w-6e {
    min-width: 6em !important;
  }
  .sp-min-w-6d5e {
    min-width: 6.5em !important;
  }
  .sp-min-w-7e {
    min-width: 7em !important;
  }
  .sp-min-w-7d5e {
    min-width: 7.5em !important;
  }
  .sp-min-w-8e {
    min-width: 8em !important;
  }
  .sp-min-w-8d5e {
    min-width: 8.5em !important;
  }
  .sp-min-w-9e {
    min-width: 9em !important;
  }
  .sp-min-w-9d5e {
    min-width: 9.5em !important;
  }
  .sp-min-w-10e {
    min-width: 10em !important;
  }
  .sp-min-w-11e {
    min-width: 11em !important;
  }
  .sp-min-w-12e {
    min-width: 12em !important;
  }
  .sp-min-w-13e {
    min-width: 13em !important;
  }
  .sp-min-w-14e {
    min-width: 14em !important;
  }
  .sp-min-w-15e {
    min-width: 15em !important;
  }
  .sp-min-w-16e {
    min-width: 16em !important;
  }
  .sp-min-w-17e {
    min-width: 17em !important;
  }
  .sp-min-w-18e {
    min-width: 18em !important;
  }
  .sp-min-w-19e {
    min-width: 19em !important;
  }
  .sp-min-w-20e {
    min-width: 20em !important;
  }
  .sp-min-w-21e {
    min-width: 21em !important;
  }
  .sp-min-w-22e {
    min-width: 22em !important;
  }
  .sp-min-w-23e {
    min-width: 23em !important;
  }
  .sp-min-w-24e {
    min-width: 24em !important;
  }
  .sp-min-w-25e {
    min-width: 25em !important;
  }
  .sp-min-w-26e {
    min-width: 26em !important;
  }
  .sp-min-w-27e {
    min-width: 27em !important;
  }
  .sp-min-w-28e {
    min-width: 28em !important;
  }
  .sp-min-w-29e {
    min-width: 29em !important;
  }
  .sp-min-w-30e {
    min-width: 30em !important;
  }
  .sp-min-w-31e {
    min-width: 31em !important;
  }
  .sp-min-w-32e {
    min-width: 32em !important;
  }
  .sp-min-w-33e {
    min-width: 33em !important;
  }
  .sp-min-w-34e {
    min-width: 34em !important;
  }
  .sp-min-w-35e {
    min-width: 35em !important;
  }
  .sp-min-w-36e {
    min-width: 36em !important;
  }
  .sp-min-w-37e {
    min-width: 37em !important;
  }
  .sp-min-w-38e {
    min-width: 38em !important;
  }
  .sp-min-w-39e {
    min-width: 39em !important;
  }
  .sp-min-w-40e {
    min-width: 40em !important;
  }
  .sp-min-w-41e {
    min-width: 41em !important;
  }
  .sp-min-w-42e {
    min-width: 42em !important;
  }
  .sp-min-w-43e {
    min-width: 43em !important;
  }
  .sp-min-w-44e {
    min-width: 44em !important;
  }
  .sp-min-w-45e {
    min-width: 45em !important;
  }
  .sp-min-w-46e {
    min-width: 46em !important;
  }
  .sp-min-w-47e {
    min-width: 47em !important;
  }
  .sp-min-w-48e {
    min-width: 48em !important;
  }
  .sp-min-w-49e {
    min-width: 49em !important;
  }
  .sp-min-w-50e {
    min-width: 50em !important;
  }
  .sp-min-w-51e {
    min-width: 51em !important;
  }
  .sp-min-w-52e {
    min-width: 52em !important;
  }
  .sp-min-w-53e {
    min-width: 53em !important;
  }
  .sp-min-w-54e {
    min-width: 54em !important;
  }
  .sp-min-w-55e {
    min-width: 55em !important;
  }
  .sp-min-w-56e {
    min-width: 56em !important;
  }
  .sp-min-w-57e {
    min-width: 57em !important;
  }
  .sp-min-w-58e {
    min-width: 58em !important;
  }
  .sp-min-w-59e {
    min-width: 59em !important;
  }
  .sp-min-w-60e {
    min-width: 59em !important;
  }
}
/* layout: percentage height */
/* -------------------------------------------------------------------------- */
.h-100p {
  height: 100% !important;
}

.h-90p {
  height: 90% !important;
}

.h-80p {
  height: 80% !important;
}

.h-70p {
  height: 70% !important;
}

.h-60p {
  height: 60% !important;
}

.h-50p {
  height: 50% !important;
}

.h-40p {
  height: 40% !important;
}

.h-30p {
  height: 30% !important;
}

.h-20p {
  height: 20% !important;
}

.h-10p {
  height: 10% !important;
}

.h-auto {
  height: auto !important;
}

.h-small {
  height: 33.333% !important;
}

.h-middle {
  height: 66.666% !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-h-100p {
    height: 100% !important;
  }
  .sp-h-90p {
    height: 90% !important;
  }
  .sp-h-80p {
    height: 80% !important;
  }
  .sp-h-70p {
    height: 70% !important;
  }
  .sp-h-60p {
    height: 60% !important;
  }
  .sp-h-50p {
    height: 50% !important;
  }
  .sp-h-40p {
    height: 40% !important;
  }
  .sp-h-30p {
    height: 30% !important;
  }
  .sp-h-20p {
    height: 20% !important;
  }
  .sp-h-10p {
    height: 10% !important;
  }
  .sp-h-auto {
    height: auto !important;
  }
  .sp-h-small {
    height: 33.333% !important;
  }
  .sp-h-middle {
    height: 66.666% !important;
  }
}
/* layout: em height */
/* -------------------------------------------------------------------------- */
.h-inherit {
  height: inherit !important;
}

.h-d5e {
  height: 0.5em !important;
}

.h-1e {
  height: 1em !important;
}

.h-1d5e {
  height: 1.5em !important;
}

.h-2e {
  height: 2em !important;
}

.h-2d5e {
  height: 2.5em !important;
}

.h-3e {
  height: 3em !important;
}

.h-3d5e {
  height: 3.5em !important;
}

.h-4e {
  height: 4em !important;
}

.h-4d5e {
  height: 4.5em !important;
}

.h-5e {
  height: 5em !important;
}

.h-5d5e {
  height: 5.5em !important;
}

.h-6e {
  height: 6em !important;
}

.h-6d5e {
  height: 6.5em !important;
}

.h-7e {
  height: 7em !important;
}

.h-7d5e {
  height: 7.5em !important;
}

.h-8e {
  height: 8em !important;
}

.h-8d5e {
  height: 8.5em !important;
}

.h-9e {
  height: 9em !important;
}

.h-9d5e {
  height: 9.5em !important;
}

.h-10e {
  height: 10em !important;
}

.h-11e {
  height: 11em !important;
}

.h-12e {
  height: 12em !important;
}

.h-13e {
  height: 13em !important;
}

.h-14e {
  height: 14em !important;
}

.h-15e {
  height: 15em !important;
}

.h-16e {
  height: 16em !important;
}

.h-17e {
  height: 17em !important;
}

.h-18e {
  height: 18em !important;
}

.h-19e {
  height: 19em !important;
}

.h-20e {
  height: 20em !important;
}

.h-21e {
  height: 21em !important;
}

.h-22e {
  height: 22em !important;
}

.h-23e {
  height: 23em !important;
}

.h-24e {
  height: 24em !important;
}

.h-25e {
  height: 25em !important;
}

.h-26e {
  height: 26em !important;
}

.h-27e {
  height: 27em !important;
}

.h-28e {
  height: 28em !important;
}

.h-29e {
  height: 29em !important;
}

.h-30e {
  height: 30em !important;
}

.h-31e {
  height: 31em !important;
}

.h-32e {
  height: 32em !important;
}

.h-33e {
  height: 33em !important;
}

.h-34e {
  height: 34em !important;
}

.h-35e {
  height: 35em !important;
}

.h-36e {
  height: 36em !important;
}

.h-37e {
  height: 37em !important;
}

.h-38e {
  height: 38em !important;
}

.h-39e {
  height: 39em !important;
}

.h-40e {
  height: 40em !important;
}

.h-41e {
  height: 41em !important;
}

.h-42e {
  height: 42em !important;
}

.h-43e {
  height: 43em !important;
}

.h-44e {
  height: 44em !important;
}

.h-45e {
  height: 45em !important;
}

.h-46e {
  height: 46em !important;
}

.h-47e {
  height: 47em !important;
}

.h-48e {
  height: 48em !important;
}

.h-49e {
  height: 49em !important;
}

.h-50e {
  height: 50em !important;
}

.h-51e {
  height: 51em !important;
}

.h-52e {
  height: 52em !important;
}

.h-53e {
  height: 53em !important;
}

.h-54e {
  height: 54em !important;
}

.h-55e {
  height: 55em !important;
}

.h-56e {
  height: 56em !important;
}

.h-57e {
  height: 57em !important;
}

.h-58e {
  height: 58em !important;
}

.h-59e {
  height: 59em !important;
}

.h-60e {
  height: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-h-inherit {
    height: inherit !important;
  }
  .sp-h-d5e {
    height: 0.5em !important;
  }
  .sp-h-1e {
    height: 1em !important;
  }
  .sp-h-1d5e {
    height: 1.5em !important;
  }
  .sp-h-2e {
    height: 2em !important;
  }
  .sp-h-2d5e {
    height: 2.5em !important;
  }
  .sp-h-3e {
    height: 3em !important;
  }
  .sp-h-3d5e {
    height: 3.5em !important;
  }
  .sp-h-4e {
    height: 4em !important;
  }
  .sp-h-4d5e {
    height: 4.5em !important;
  }
  .sp-h-5e {
    height: 5em !important;
  }
  .sp-h-5d5e {
    height: 5.5em !important;
  }
  .sp-h-6e {
    height: 6em !important;
  }
  .sp-h-6d5e {
    height: 6.5em !important;
  }
  .sp-h-7e {
    height: 7em !important;
  }
  .sp-h-7d5e {
    height: 7.5em !important;
  }
  .sp-h-8e {
    height: 8em !important;
  }
  .sp-h-8d5e {
    height: 8.5em !important;
  }
  .sp-h-9e {
    height: 9em !important;
  }
  .sp-h-9d5e {
    height: 9.5em !important;
  }
  .sp-h-10e {
    height: 10em !important;
  }
  .sp-h-11e {
    height: 11em !important;
  }
  .sp-h-12e {
    height: 12em !important;
  }
  .sp-h-13e {
    height: 13em !important;
  }
  .sp-h-14e {
    height: 14em !important;
  }
  .sp-h-15e {
    height: 15em !important;
  }
  .sp-h-16e {
    height: 16em !important;
  }
  .sp-h-17e {
    height: 17em !important;
  }
  .sp-h-18e {
    height: 18em !important;
  }
  .sp-h-19e {
    height: 19em !important;
  }
  .sp-h-20e {
    height: 20em !important;
  }
  .sp-h-21e {
    height: 21em !important;
  }
  .sp-h-22e {
    height: 22em !important;
  }
  .sp-h-23e {
    height: 23em !important;
  }
  .sp-h-24e {
    height: 24em !important;
  }
  .sp-h-25e {
    height: 25em !important;
  }
  .sp-h-26e {
    height: 26em !important;
  }
  .sp-h-27e {
    height: 27em !important;
  }
  .sp-h-28e {
    height: 28em !important;
  }
  .sp-h-29e {
    height: 29em !important;
  }
  .sp-h-30e {
    height: 30em !important;
  }
  .sp-h-31e {
    height: 31em !important;
  }
  .sp-h-32e {
    height: 32em !important;
  }
  .sp-h-33e {
    height: 33em !important;
  }
  .sp-h-34e {
    height: 34em !important;
  }
  .sp-h-35e {
    height: 35em !important;
  }
  .sp-h-36e {
    height: 36em !important;
  }
  .sp-h-37e {
    height: 37em !important;
  }
  .sp-h-38e {
    height: 38em !important;
  }
  .sp-h-39e {
    height: 39em !important;
  }
  .sp-h-40e {
    height: 40em !important;
  }
  .sp-h-41e {
    height: 41em !important;
  }
  .sp-h-42e {
    height: 42em !important;
  }
  .sp-h-43e {
    height: 43em !important;
  }
  .sp-h-44e {
    height: 44em !important;
  }
  .sp-h-45e {
    height: 45em !important;
  }
  .sp-h-46e {
    height: 46em !important;
  }
  .sp-h-47e {
    height: 47em !important;
  }
  .sp-h-48e {
    height: 48em !important;
  }
  .sp-h-49e {
    height: 49em !important;
  }
  .sp-h-50e {
    height: 50em !important;
  }
  .sp-h-51e {
    height: 51em !important;
  }
  .sp-h-52e {
    height: 52em !important;
  }
  .sp-h-53e {
    height: 53em !important;
  }
  .sp-h-54e {
    height: 54em !important;
  }
  .sp-h-55e {
    height: 55em !important;
  }
  .sp-h-56e {
    height: 56em !important;
  }
  .sp-h-57e {
    height: 57em !important;
  }
  .sp-h-58e {
    height: 58em !important;
  }
  .sp-h-59e {
    height: 59em !important;
  }
  .sp-h-60e {
    height: 59em !important;
  }
}
/* layout: em max-height */
/* -------------------------------------------------------------------------- */
.max-h-inherit {
  max-height: inherit !important;
}

.max-h-d5e {
  max-height: 0.5em !important;
}

.max-h-1e {
  max-height: 1em !important;
}

.max-h-1d5e {
  max-height: 1.5em !important;
}

.max-h-2e {
  max-height: 2em !important;
}

.max-h-2d5e {
  max-height: 2.5em !important;
}

.max-h-3e {
  max-height: 3em !important;
}

.max-h-3d5e {
  max-height: 3.5em !important;
}

.max-h-4e {
  max-height: 4em !important;
}

.max-h-4d5e {
  max-height: 4.5em !important;
}

.max-h-5e {
  max-height: 5em !important;
}

.max-h-5d5e {
  max-height: 5.5em !important;
}

.max-h-6e {
  max-height: 6em !important;
}

.max-h-6d5e {
  max-height: 6.5em !important;
}

.max-h-7e {
  max-height: 7em !important;
}

.max-h-7d5e {
  max-height: 7.5em !important;
}

.max-h-8e {
  max-height: 8em !important;
}

.max-h-8d5e {
  max-height: 8.5em !important;
}

.max-h-9e {
  max-height: 9em !important;
}

.max-h-9d5e {
  max-height: 9.5em !important;
}

.max-h-10e {
  max-height: 10em !important;
}

.max-h-11e {
  max-height: 11em !important;
}

.max-h-12e {
  max-height: 12em !important;
}

.max-h-13e {
  max-height: 13em !important;
}

.max-h-14e {
  max-height: 14em !important;
}

.max-h-15e {
  max-height: 15em !important;
}

.max-h-16e {
  max-height: 16em !important;
}

.max-h-17e {
  max-height: 17em !important;
}

.max-h-18e {
  max-height: 18em !important;
}

.max-h-19e {
  max-height: 19em !important;
}

.max-h-20e {
  max-height: 20em !important;
}

.max-h-21e {
  max-height: 21em !important;
}

.max-h-22e {
  max-height: 22em !important;
}

.max-h-23e {
  max-height: 23em !important;
}

.max-h-24e {
  max-height: 24em !important;
}

.max-h-25e {
  max-height: 25em !important;
}

.max-h-26e {
  max-height: 26em !important;
}

.max-h-27e {
  max-height: 27em !important;
}

.max-h-28e {
  max-height: 28em !important;
}

.max-h-29e {
  max-height: 29em !important;
}

.max-h-30e {
  max-height: 30em !important;
}

.max-h-31e {
  max-height: 31em !important;
}

.max-h-32e {
  max-height: 32em !important;
}

.max-h-33e {
  max-height: 33em !important;
}

.max-h-34e {
  max-height: 34em !important;
}

.max-h-35e {
  max-height: 35em !important;
}

.max-h-36e {
  max-height: 36em !important;
}

.max-h-37e {
  max-height: 37em !important;
}

.max-h-38e {
  max-height: 38em !important;
}

.max-h-39e {
  max-height: 39em !important;
}

.max-h-40e {
  max-height: 40em !important;
}

.max-h-41e {
  max-height: 41em !important;
}

.max-h-42e {
  max-height: 42em !important;
}

.max-h-43e {
  max-height: 43em !important;
}

.max-h-44e {
  max-height: 44em !important;
}

.max-h-45e {
  max-height: 45em !important;
}

.max-h-46e {
  max-height: 46em !important;
}

.max-h-47e {
  max-height: 47em !important;
}

.max-h-48e {
  max-height: 48em !important;
}

.max-h-49e {
  max-height: 49em !important;
}

.max-h-50e {
  max-height: 50em !important;
}

.max-h-51e {
  max-height: 51em !important;
}

.max-h-52e {
  max-height: 52em !important;
}

.max-h-53e {
  max-height: 53em !important;
}

.max-h-54e {
  max-height: 54em !important;
}

.max-h-55e {
  max-height: 55em !important;
}

.max-h-56e {
  max-height: 56em !important;
}

.max-h-57e {
  max-height: 57em !important;
}

.max-h-58e {
  max-height: 58em !important;
}

.max-h-59e {
  max-height: 59em !important;
}

.max-h-60e {
  max-height: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-max-h-inherit {
    max-height: inherit !important;
  }
  .sp-max-h-d5e {
    max-height: 0.5em !important;
  }
  .sp-max-h-1e {
    max-height: 1em !important;
  }
  .sp-max-h-1d5e {
    max-height: 1.5em !important;
  }
  .sp-max-h-2e {
    max-height: 2em !important;
  }
  .sp-max-h-2d5e {
    max-height: 2.5em !important;
  }
  .sp-max-h-3e {
    max-height: 3em !important;
  }
  .sp-max-h-3d5e {
    max-height: 3.5em !important;
  }
  .sp-max-h-4e {
    max-height: 4em !important;
  }
  .sp-max-h-4d5e {
    max-height: 4.5em !important;
  }
  .sp-max-h-5e {
    max-height: 5em !important;
  }
  .sp-max-h-5d5e {
    max-height: 5.5em !important;
  }
  .sp-max-h-6e {
    max-height: 6em !important;
  }
  .sp-max-h-6d5e {
    max-height: 6.5em !important;
  }
  .sp-max-h-7e {
    max-height: 7em !important;
  }
  .sp-max-h-7d5e {
    max-height: 7.5em !important;
  }
  .sp-max-h-8e {
    max-height: 8em !important;
  }
  .sp-max-h-8d5e {
    max-height: 8.5em !important;
  }
  .sp-max-h-9e {
    max-height: 9em !important;
  }
  .sp-max-h-9d5e {
    max-height: 9.5em !important;
  }
  .sp-max-h-10e {
    max-height: 10em !important;
  }
  .sp-max-h-11e {
    max-height: 11em !important;
  }
  .sp-max-h-12e {
    max-height: 12em !important;
  }
  .sp-max-h-13e {
    max-height: 13em !important;
  }
  .sp-max-h-14e {
    max-height: 14em !important;
  }
  .sp-max-h-15e {
    max-height: 15em !important;
  }
  .sp-max-h-16e {
    max-height: 16em !important;
  }
  .sp-max-h-17e {
    max-height: 17em !important;
  }
  .sp-max-h-18e {
    max-height: 18em !important;
  }
  .sp-max-h-19e {
    max-height: 19em !important;
  }
  .sp-max-h-20e {
    max-height: 20em !important;
  }
  .sp-max-h-21e {
    max-height: 21em !important;
  }
  .sp-max-h-22e {
    max-height: 22em !important;
  }
  .sp-max-h-23e {
    max-height: 23em !important;
  }
  .sp-max-h-24e {
    max-height: 24em !important;
  }
  .sp-max-h-25e {
    max-height: 25em !important;
  }
  .sp-max-h-26e {
    max-height: 26em !important;
  }
  .sp-max-h-27e {
    max-height: 27em !important;
  }
  .sp-max-h-28e {
    max-height: 28em !important;
  }
  .sp-max-h-29e {
    max-height: 29em !important;
  }
  .sp-max-h-30e {
    max-height: 30em !important;
  }
  .sp-max-h-31e {
    max-height: 31em !important;
  }
  .sp-max-h-32e {
    max-height: 32em !important;
  }
  .sp-max-h-33e {
    max-height: 33em !important;
  }
  .sp-max-h-34e {
    max-height: 34em !important;
  }
  .sp-max-h-35e {
    max-height: 35em !important;
  }
  .sp-max-h-36e {
    max-height: 36em !important;
  }
  .sp-max-h-37e {
    max-height: 37em !important;
  }
  .sp-max-h-38e {
    max-height: 38em !important;
  }
  .sp-max-h-39e {
    max-height: 39em !important;
  }
  .sp-max-h-40e {
    max-height: 40em !important;
  }
  .sp-max-h-41e {
    max-height: 41em !important;
  }
  .sp-max-h-42e {
    max-height: 42em !important;
  }
  .sp-max-h-43e {
    max-height: 43em !important;
  }
  .sp-max-h-44e {
    max-height: 44em !important;
  }
  .sp-max-h-45e {
    max-height: 45em !important;
  }
  .sp-max-h-46e {
    max-height: 46em !important;
  }
  .sp-max-h-47e {
    max-height: 47em !important;
  }
  .sp-max-h-48e {
    max-height: 48em !important;
  }
  .sp-max-h-49e {
    max-height: 49em !important;
  }
  .sp-max-h-50e {
    max-height: 50em !important;
  }
  .sp-max-h-51e {
    max-height: 51em !important;
  }
  .sp-max-h-52e {
    max-height: 52em !important;
  }
  .sp-max-h-53e {
    max-height: 53em !important;
  }
  .sp-max-h-54e {
    max-height: 54em !important;
  }
  .sp-max-h-55e {
    max-height: 55em !important;
  }
  .sp-max-h-56e {
    max-height: 56em !important;
  }
  .sp-max-h-57e {
    max-height: 57em !important;
  }
  .sp-max-h-58e {
    max-height: 58em !important;
  }
  .sp-max-h-59e {
    max-height: 59em !important;
  }
  .sp-max-h-60e {
    max-height: 59em !important;
  }
}
/* layout: em min-height */
/* -------------------------------------------------------------------------- */
.min-h-inherit {
  min-height: inherit !important;
}

.min-h-d5e {
  min-height: 0.5em !important;
}

.min-h-1e {
  min-height: 1em !important;
}

.min-h-1d5e {
  min-height: 1.5em !important;
}

.min-h-2e {
  min-height: 2em !important;
}

.min-h-2d5e {
  min-height: 2.5em !important;
}

.min-h-3e {
  min-height: 3em !important;
}

.min-h-3d5e {
  min-height: 3.5em !important;
}

.min-h-4e {
  min-height: 4em !important;
}

.min-h-4d5e {
  min-height: 4.5em !important;
}

.min-h-5e {
  min-height: 5em !important;
}

.min-h-5d5e {
  min-height: 5.5em !important;
}

.min-h-6e {
  min-height: 6em !important;
}

.min-h-6d5e {
  min-height: 6.5em !important;
}

.min-h-7e {
  min-height: 7em !important;
}

.min-h-7d5e {
  min-height: 7.5em !important;
}

.min-h-8e {
  min-height: 8em !important;
}

.min-h-8d5e {
  min-height: 8.5em !important;
}

.min-h-9e {
  min-height: 9em !important;
}

.min-h-9d5e {
  min-height: 9.5em !important;
}

.min-h-10e {
  min-height: 10em !important;
}

.min-h-11e {
  min-height: 11em !important;
}

.min-h-12e {
  min-height: 12em !important;
}

.min-h-13e {
  min-height: 13em !important;
}

.min-h-14e {
  min-height: 14em !important;
}

.min-h-15e {
  min-height: 15em !important;
}

.min-h-16e {
  min-height: 16em !important;
}

.min-h-17e {
  min-height: 17em !important;
}

.min-h-18e {
  min-height: 18em !important;
}

.min-h-19e {
  min-height: 19em !important;
}

.min-h-20e {
  min-height: 20em !important;
}

.min-h-21e {
  min-height: 21em !important;
}

.min-h-22e {
  min-height: 22em !important;
}

.min-h-23e {
  min-height: 23em !important;
}

.min-h-24e {
  min-height: 24em !important;
}

.min-h-25e {
  min-height: 25em !important;
}

.min-h-26e {
  min-height: 26em !important;
}

.min-h-27e {
  min-height: 27em !important;
}

.min-h-28e {
  min-height: 28em !important;
}

.min-h-29e {
  min-height: 29em !important;
}

.min-h-30e {
  min-height: 30em !important;
}

.min-h-31e {
  min-height: 31em !important;
}

.min-h-32e {
  min-height: 32em !important;
}

.min-h-33e {
  min-height: 33em !important;
}

.min-h-34e {
  min-height: 34em !important;
}

.min-h-35e {
  min-height: 35em !important;
}

.min-h-36e {
  min-height: 36em !important;
}

.min-h-37e {
  min-height: 37em !important;
}

.min-h-38e {
  min-height: 38em !important;
}

.min-h-39e {
  min-height: 39em !important;
}

.min-h-40e {
  min-height: 40em !important;
}

.min-h-41e {
  min-height: 41em !important;
}

.min-h-42e {
  min-height: 42em !important;
}

.min-h-43e {
  min-height: 43em !important;
}

.min-h-44e {
  min-height: 44em !important;
}

.min-h-45e {
  min-height: 45em !important;
}

.min-h-46e {
  min-height: 46em !important;
}

.min-h-47e {
  min-height: 47em !important;
}

.min-h-48e {
  min-height: 48em !important;
}

.min-h-49e {
  min-height: 49em !important;
}

.min-h-50e {
  min-height: 50em !important;
}

.min-h-51e {
  min-height: 51em !important;
}

.min-h-52e {
  min-height: 52em !important;
}

.min-h-53e {
  min-height: 53em !important;
}

.min-h-54e {
  min-height: 54em !important;
}

.min-h-55e {
  min-height: 55em !important;
}

.min-h-56e {
  min-height: 56em !important;
}

.min-h-57e {
  min-height: 57em !important;
}

.min-h-58e {
  min-height: 58em !important;
}

.min-h-59e {
  min-height: 59em !important;
}

.min-h-60e {
  min-height: 59em !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-min-h-inherit {
    min-height: inherit !important;
  }
  .sp-min-h-d5e {
    min-height: 0.5em !important;
  }
  .sp-min-h-1e {
    min-height: 1em !important;
  }
  .sp-min-h-1d5e {
    min-height: 1.5em !important;
  }
  .sp-min-h-2e {
    min-height: 2em !important;
  }
  .sp-min-h-2d5e {
    min-height: 2.5em !important;
  }
  .sp-min-h-3e {
    min-height: 3em !important;
  }
  .sp-min-h-3d5e {
    min-height: 3.5em !important;
  }
  .sp-min-h-4e {
    min-height: 4em !important;
  }
  .sp-min-h-4d5e {
    min-height: 4.5em !important;
  }
  .sp-min-h-5e {
    min-height: 5em !important;
  }
  .sp-min-h-5d5e {
    min-height: 5.5em !important;
  }
  .sp-min-h-6e {
    min-height: 6em !important;
  }
  .sp-min-h-6d5e {
    min-height: 6.5em !important;
  }
  .sp-min-h-7e {
    min-height: 7em !important;
  }
  .sp-min-h-7d5e {
    min-height: 7.5em !important;
  }
  .sp-min-h-8e {
    min-height: 8em !important;
  }
  .sp-min-h-8d5e {
    min-height: 8.5em !important;
  }
  .sp-min-h-9e {
    min-height: 9em !important;
  }
  .sp-min-h-9d5e {
    min-height: 9.5em !important;
  }
  .sp-min-h-10e {
    min-height: 10em !important;
  }
  .sp-min-h-11e {
    min-height: 11em !important;
  }
  .sp-min-h-12e {
    min-height: 12em !important;
  }
  .sp-min-h-13e {
    min-height: 13em !important;
  }
  .sp-min-h-14e {
    min-height: 14em !important;
  }
  .sp-min-h-15e {
    min-height: 15em !important;
  }
  .sp-min-h-16e {
    min-height: 16em !important;
  }
  .sp-min-h-17e {
    min-height: 17em !important;
  }
  .sp-min-h-18e {
    min-height: 18em !important;
  }
  .sp-min-h-19e {
    min-height: 19em !important;
  }
  .sp-min-h-20e {
    min-height: 20em !important;
  }
  .sp-min-h-21e {
    min-height: 21em !important;
  }
  .sp-min-h-22e {
    min-height: 22em !important;
  }
  .sp-min-h-23e {
    min-height: 23em !important;
  }
  .sp-min-h-24e {
    min-height: 24em !important;
  }
  .sp-min-h-25e {
    min-height: 25em !important;
  }
  .sp-min-h-26e {
    min-height: 26em !important;
  }
  .sp-min-h-27e {
    min-height: 27em !important;
  }
  .sp-min-h-28e {
    min-height: 28em !important;
  }
  .sp-min-h-29e {
    min-height: 29em !important;
  }
  .sp-min-h-30e {
    min-height: 30em !important;
  }
  .sp-min-h-31e {
    min-height: 31em !important;
  }
  .sp-min-h-32e {
    min-height: 32em !important;
  }
  .sp-min-h-33e {
    min-height: 33em !important;
  }
  .sp-min-h-34e {
    min-height: 34em !important;
  }
  .sp-min-h-35e {
    min-height: 35em !important;
  }
  .sp-min-h-36e {
    min-height: 36em !important;
  }
  .sp-min-h-37e {
    min-height: 37em !important;
  }
  .sp-min-h-38e {
    min-height: 38em !important;
  }
  .sp-min-h-39e {
    min-height: 39em !important;
  }
  .sp-min-h-40e {
    min-height: 40em !important;
  }
  .sp-min-h-41e {
    min-height: 41em !important;
  }
  .sp-min-h-42e {
    min-height: 42em !important;
  }
  .sp-min-h-43e {
    min-height: 43em !important;
  }
  .sp-min-h-44e {
    min-height: 44em !important;
  }
  .sp-min-h-45e {
    min-height: 45em !important;
  }
  .sp-min-h-46e {
    min-height: 46em !important;
  }
  .sp-min-h-47e {
    min-height: 47em !important;
  }
  .sp-min-h-48e {
    min-height: 48em !important;
  }
  .sp-min-h-49e {
    min-height: 49em !important;
  }
  .sp-min-h-50e {
    min-height: 50em !important;
  }
  .sp-min-h-51e {
    min-height: 51em !important;
  }
  .sp-min-h-52e {
    min-height: 52em !important;
  }
  .sp-min-h-53e {
    min-height: 53em !important;
  }
  .sp-min-h-54e {
    min-height: 54em !important;
  }
  .sp-min-h-55e {
    min-height: 55em !important;
  }
  .sp-min-h-56e {
    min-height: 56em !important;
  }
  .sp-min-h-57e {
    min-height: 57em !important;
  }
  .sp-min-h-58e {
    min-height: 58em !important;
  }
  .sp-min-h-59e {
    min-height: 59em !important;
  }
  .sp-min-h-60e {
    min-height: 59em !important;
  }
}
/* layout: float */
/* -------------------------------------------------------------------------- */
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-float-right {
    float: right;
  }
  .sp-float-left {
    float: left;
  }
  .sp-float-none {
    float: none;
  }
}
/* ========================================================================== */
/* Typography */
/* ========================================================================== */
/* typography: font-family */
/* -------------------------------------------------------------------------- */
.ff-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-en {
  font-family: "Albert Sans", sans-serif;
}

.ff-serif {
  font-family: "Shippori Mincho", serif;
}

/* typography: font-size */
/* -------------------------------------------------------------------------- */
.fz-minimum {
  font-size: 50%;
}

.fz-small {
  font-size: 75%;
}

.fz-nomal {
  font-size: 100%;
}

.fz-medium {
  font-size: 125%;
}

.fz-large {
  font-size: 150%;
}

.fz-huge {
  font-size: 200%;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-fz-minimum {
    font-size: 50%;
  }
  .sp-fz-small {
    font-size: 75%;
  }
  .sp-fz-nomal {
    font-size: 100%;
  }
  .sp-fz-medium {
    font-size: 125%;
  }
  .sp-fz-large {
    font-size: 150%;
  }
  .sp-fz-huge {
    font-size: 200%;
  }
}
.fz-10 {
  font-size: 0.625rem;
}

.fz-12 {
  font-size: 0.75rem;
}

.fz-14 {
  font-size: 0.875rem;
}

.fz-16 {
  font-size: 1rem;
}

.fz-18 {
  font-size: 1.125rem;
}

.fz-20 {
  font-size: 1.25rem;
}

.fz-22 {
  font-size: 1.375rem;
}

.fz-24 {
  font-size: 1.5rem;
}

.fz-28 {
  font-size: 1.75rem;
}

.fz-32 {
  font-size: 2rem;
}

.fz-36 {
  font-size: 2.25rem;
}

.fz-40 {
  font-size: 2.5rem;
}

.fz-44 {
  font-size: 2.75rem;
}

.fz-48 {
  font-size: 3rem;
}

.fz-42 {
  font-size: 3.25rem;
}

.fz-56 {
  font-size: 3.5rem;
}

.fz-60 {
  font-size: 3.75rem;
}

.fz-64 {
  font-size: 4rem;
}

.fz-80 {
  font-size: 5rem;
}

.fz-120 {
  font-size: 7.5rem;
}

.fz-144 {
  font-size: 9rem;
}

.fz-160 {
  font-size: 10rem;
}

.fz-200 {
  font-size: 12.5rem;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-fz-10 {
    font-size: 0.625rem;
  }
  .sp-fz-12 {
    font-size: 0.75rem;
  }
  .sp-fz-14 {
    font-size: 0.875rem;
  }
  .sp-fz-16 {
    font-size: 1rem;
  }
  .sp-fz-18 {
    font-size: 1.125rem;
  }
  .sp-fz-20 {
    font-size: 1.25rem;
  }
  .sp-fz-22 {
    font-size: 1.375rem;
  }
  .sp-fz-24 {
    font-size: 1.5rem;
  }
  .sp-fz-28 {
    font-size: 1.75rem;
  }
  .sp-fz-32 {
    font-size: 2rem;
  }
  .sp-fz-36 {
    font-size: 2.25rem;
  }
  .sp-fz-40 {
    font-size: 2.5rem;
  }
  .sp-fz-44 {
    font-size: 2.75rem;
  }
  .sp-fz-48 {
    font-size: 3rem;
  }
  .sp-fz-42 {
    font-size: 3.25rem;
  }
  .sp-fz-56 {
    font-size: 3.5rem;
  }
  .sp-fz-60 {
    font-size: 3.75rem;
  }
  .sp-fz-64 {
    font-size: 4rem;
  }
  .sp-fz-80 {
    font-size: 5rem;
  }
  .sp-fz-120 {
    font-size: 7.5rem;
  }
  .sp-fz-144 {
    font-size: 9rem;
  }
  .sp-fz-160 {
    font-size: 10rem;
  }
  .sp-fz-200 {
    font-size: 12.5rem;
  }
}
/* typography: font-style */
/* -------------------------------------------------------------------------- */
.fs-normal {
  font-style: normal;
}

.fs-italic {
  font-style: italic;
}

.fs-italic {
  font-style: oblique;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-fs-normal {
    font-style: normal;
  }
  .sp-fs-italic {
    font-style: italic;
  }
  .sp-fs-italic {
    font-style: oblique;
  }
}
/* typography: font-weight */
/* -------------------------------------------------------------------------- */
.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* typography: letter-spacing */
/* -------------------------------------------------------------------------- */
.ls-0 {
  letter-spacing: 0;
}

.ls-d5 {
  letter-spacing: 0.05em;
}

.ls-1 {
  letter-spacing: 0.1em;
}

.ls-2 {
  letter-spacing: 0.2em;
}

.ls-3 {
  letter-spacing: 0.3em;
}

.ls-4 {
  letter-spacing: 0.4em;
}

.ls-5 {
  letter-spacing: 0.5em;
}

.ls-6 {
  letter-spacing: 0.6em;
}

.ls-7 {
  letter-spacing: 0.7em;
}

.ls-8 {
  letter-spacing: 0.8em;
}

.ls-9 {
  letter-spacing: 0.9em;
}

.ls-10 {
  letter-spacing: 1em;
}

.ls-11 {
  letter-spacing: 1.1em;
}

.ls-12 {
  letter-spacing: 1.2em;
}

.ls-13 {
  letter-spacing: 1.3em;
}

.ls-14 {
  letter-spacing: 1.4em;
}

.ls-15 {
  letter-spacing: 1.5em;
}

.ls-16 {
  letter-spacing: 1.6em;
}

.ls-17 {
  letter-spacing: 1.7em;
}

.ls-18 {
  letter-spacing: 1.8em;
}

.ls-19 {
  letter-spacing: 1.9em;
}

.ls-20 {
  letter-spacing: 2em;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-ls-0 {
    letter-spacing: 0;
  }
  .sp-ls-1 {
    letter-spacing: 0.1em;
  }
  .sp-ls-2 {
    letter-spacing: 0.2em;
  }
  .sp-ls-3 {
    letter-spacing: 0.3em;
  }
  .sp-ls-4 {
    letter-spacing: 0.4em;
  }
  .sp-ls-5 {
    letter-spacing: 0.5em;
  }
  .sp-ls-6 {
    letter-spacing: 0.6em;
  }
  .sp-ls-7 {
    letter-spacing: 0.7em;
  }
  .sp-ls-8 {
    letter-spacing: 0.8em;
  }
  .sp-ls-9 {
    letter-spacing: 0.9em;
  }
  .sp-ls-10 {
    letter-spacing: 1em;
  }
  .sp-ls-11 {
    letter-spacing: 1.1em;
  }
  .sp-ls-12 {
    letter-spacing: 1.2em;
  }
  .sp-ls-13 {
    letter-spacing: 1.3em;
  }
  .sp-ls-14 {
    letter-spacing: 1.4em;
  }
  .sp-ls-15 {
    letter-spacing: 1.5em;
  }
  .sp-ls-16 {
    letter-spacing: 1.6em;
  }
  .sp-ls-17 {
    letter-spacing: 1.7em;
  }
  .sp-ls-18 {
    letter-spacing: 1.8em;
  }
  .sp-ls-19 {
    letter-spacing: 1.9em;
  }
  .sp-ls-20 {
    letter-spacing: 2em;
  }
}
/* typography: br */
/* -------------------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  br.pc-br {
    display: inline;
  }
  br.sp-br {
    display: none;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  br.pc-br {
    display: none;
  }
  br.sp-br {
    display: inline;
  }
}
@media print {
  br.sp-br {
    display: none;
  }
}
/* typography: line-height */
/* -------------------------------------------------------------------------- */
.lh-1 {
  line-height: 1;
}

.lh-1d2 {
  line-height: 1.2;
}

.lh-1d4 {
  line-height: 1.4;
}

.lh-1d6 {
  line-height: 1.6;
}

.lh-1d8 {
  line-height: 1.8;
}

.lh-2 {
  line-height: 2;
}

.lh-2d2 {
  line-height: 2.2;
}

.lh-2d4 {
  line-height: 2.4;
}

.lh-2d6 {
  line-height: 2.6;
}

.lh-2d8 {
  line-height: 2.8;
}

.lh-3 {
  line-height: 3;
}

.lh-3d2 {
  line-height: 3.2;
}

.lh-3d4 {
  line-height: 3.4;
}

.lh-3d6 {
  line-height: 3.6;
}

.lh-3d8 {
  line-height: 3.8;
}

.lh-4 {
  line-height: 4;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-lh-1 {
    line-height: 1;
  }
  .sp-lh-1d2 {
    line-height: 1.2;
  }
  .sp-lh-1d4 {
    line-height: 1.4;
  }
  .sp-lh-1d6 {
    line-height: 1.6;
  }
  .sp-lh-1d8 {
    line-height: 1.8;
  }
  .sp-lh-2 {
    line-height: 2;
  }
  .sp-lh-2d2 {
    line-height: 2.2;
  }
  .sp-lh-2d4 {
    line-height: 2.4;
  }
  .sp-lh-2d6 {
    line-height: 2.6;
  }
  .sp-lh-2d8 {
    line-height: 2.8;
  }
  .sp-lh-3 {
    line-height: 3;
  }
  .sp-lh-3d2 {
    line-height: 3.2;
  }
  .sp-lh-3d4 {
    line-height: 3.4;
  }
  .sp-lh-3d6 {
    line-height: 3.6;
  }
  .sp-lh-3d8 {
    line-height: 3.8;
  }
  .sp-lh-4 {
    line-height: 4;
  }
}
/* typography: text-align */
/* -------------------------------------------------------------------------- */
.ta-left {
  text-align: left !important;
}

.ta-center {
  text-align: center !important;
}

.ta-right {
  text-align: right !important;
}

.ta-justify {
  text-align: justify !important;
}

@media screen and (max-width: 768px) {
  .sp-ta-left {
    text-align: left !important;
  }
  .sp-ta-center {
    text-align: center !important;
  }
  .sp-ta-right {
    text-align: right !important;
  }
  .sp-ta-justify {
    text-align: justify !important;
  }
}
/* typography: decoration */
/* -------------------------------------------------------------------------- */
.td-none {
  text-decoration: none;
}

.td-underline {
  text-decoration: underline;
}

.td-overline {
  text-decoration: overline;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-td-none {
    text-decoration: none;
  }
  .sp-td-underline {
    text-decoration: underline;
  }
  .sp-td-overline {
    text-decoration: overline;
  }
}
/* typography: white-space */
/* -------------------------------------------------------------------------- */
.ws-normal {
  white-space: normal;
}

.ws-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-ws-normal {
    white-space: normal;
  }
  .sp-ws-nowrap {
    white-space: nowrap;
  }
}
/* typography: word-break */
/* -------------------------------------------------------------------------- */
.wb-normal {
  word-break: normal;
}

.wb-break-all {
  word-break: break-all;
}

.wb-keep-all {
  word-break: keep-all;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-wb-normal {
    word-break: normal;
  }
  .sp-wb-break-all {
    word-break: break-all;
  }
  .sp-wb-keep-all {
    word-break: keep-all;
  }
}
/* typography: white-space */
/* -------------------------------------------------------------------------- */
.wm-v-rl {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

/* ========================================================================== */
/* plugins */
/* ========================================================================== */
/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

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

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}

/* ========================================================================== */
/* Elements */
/* ========================================================================== */
/* elements: color */
/* -------------------------------------------------------------------------- */
.c-ini {
  color: #ffffff !important;
}

.c-pri {
  color: #231815 !important;
}

.c-sec {
  color: #005dab !important;
}

.c-ter {
  color: #008798 !important;
}

.c-qua {
  color: #ff5a5f !important;
}

.c-qui {
  color: #e5eff6 !important;
}

.c-sen {
  color: #e5f3f4 !important;
}

.c-sep {
  color: #cccccc !important;
}

.c-oct {
  color: #f5f5f5 !important;
}

.c-g98 {
  color: #fbfbfc !important;
}

.c-g96 {
  color: #f8f8f8 !important;
}

.c-g94 {
  color: #f4f4f5 !important;
}

.c-g92 {
  color: #f0f1f1 !important;
}

.c-g90 {
  color: #eceded !important;
}

.c-g88 {
  color: #e8e9ea !important;
}

.c-g86 {
  color: #e5e6e7 !important;
}

.c-g84 {
  color: #e1e2e3 !important;
}

.c-g82 {
  color: #dddfe0 !important;
}

.c-g80 {
  color: #dadbdc !important;
}

.c-g78 {
  color: #d6d7d9 !important;
}

.c-g76 {
  color: #d3d4d6 !important;
}

.c-g74 {
  color: #cfd0d2 !important;
}

.c-g72 {
  color: #cbcdcf !important;
}

.c-g70 {
  color: #c7c9cb !important;
}

.c-g68 {
  color: #c3c5c7 !important;
}

.c-g66 {
  color: #c0c2c4 !important;
}

.c-g64 {
  color: #bcbec1 !important;
}

.c-g62 {
  color: #b8bbbd !important;
}

.c-g60 {
  color: #b5b7ba !important;
}

.c-g58 {
  color: #b1b3b6 !important;
}

.c-g56 {
  color: #adb0b3 !important;
}

.c-g54 {
  color: #aaacb0 !important;
}

.c-g52 {
  color: #a6a9ac !important;
}

.c-g50 {
  color: #a2a5a8 !important;
}

.c-g48 {
  color: #9ea1a5 !important;
}

.c-g46 {
  color: #bcbec1 !important;
}

.c-g44 {
  color: #979a9e !important;
}

.c-g42 {
  color: #93979b !important;
}

.c-g40 {
  color: #8f9397 !important;
}

.c-g38 {
  color: #8c8f94 !important;
}

.c-g36 {
  color: #888c90 !important;
}

.c-g34 {
  color: #84888d !important;
}

.c-g32 {
  color: #81858a !important;
}

.c-g30 {
  color: #7c8186 !important;
}

.c-g28 {
  color: #797d82 !important;
}

.c-g26 {
  color: #757a7f !important;
}

.c-g24 {
  color: #71767b !important;
}

.c-g22 {
  color: #6e7378 !important;
}

.c-g20 {
  color: #6a6f75 !important;
}

.c-g18 {
  color: #676b71 !important;
}

.c-g16 {
  color: #63686e !important;
}

.c-g14 {
  color: #5f646a !important;
}

.c-g12 {
  color: #5c6167 !important;
}

.c-g10 {
  color: #575d63 !important;
}

.c-g08 {
  color: #545960 !important;
}

.c-g06 {
  color: #50565c !important;
}

.c-g04 {
  color: #4c5259 !important;
}

.c-g02 {
  color: #494f55 !important;
}

/* elements: bg-color */
/* -------------------------------------------------------------------------- */
.bg-ini {
  background-color: #ffffff !important;
}

.bg-pri {
  background-color: #231815 !important;
}

.bg-sec {
  background-color: #005dab !important;
}

.bg-ter {
  background-color: #008798 !important;
}

.bg-qua {
  background-color: #ff5a5f !important;
}

.bg-qui {
  background-color: #e5eff6 !important;
}

.bg-sen {
  background-color: #e5f3f4 !important;
}

.bg-sep {
  background-color: #cccccc !important;
}

.bg-oct {
  background-color: #f5f5f5 !important;
}

.bg-l-yellow {
  background-color: #ffffa6 !important;
}

.bg-l-green {
  background-color: #c2eaba !important;
}

.bg-g98 {
  background-color: #fbfbfc !important;
}

.bg-g96 {
  background-color: #f8f8f8 !important;
}

.bg-g94 {
  background-color: #f4f4f5 !important;
}

.bg-g92 {
  background-color: #f0f1f1 !important;
}

.bg-g90 {
  background-color: #eceded !important;
}

.bg-g88 {
  background-color: #e8e9ea !important;
}

.bg-g86 {
  background-color: #e5e6e7 !important;
}

.bg-g84 {
  background-color: #e1e2e3 !important;
}

.bg-g82 {
  background-color: #dddfe0 !important;
}

.bg-g80 {
  background-color: #dadbdc !important;
}

.bg-g78 {
  background-color: #d6d7d9 !important;
}

.bg-g76 {
  background-color: #d3d4d6 !important;
}

.bg-g74 {
  background-color: #cfd0d2 !important;
}

.bg-g72 {
  background-color: #cbcdcf !important;
}

.bg-g70 {
  background-color: #c7c9cb !important;
}

.bg-g68 {
  background-color: #c3c5c7 !important;
}

.bg-g66 {
  background-color: #c0c2c4 !important;
}

.bg-g64 {
  background-color: #bcbec1 !important;
}

.bg-g62 {
  background-color: #b8bbbd !important;
}

.bg-g60 {
  background-color: #b5b7ba !important;
}

.bg-g58 {
  background-color: #b1b3b6 !important;
}

.bg-g56 {
  background-color: #adb0b3 !important;
}

.bg-g54 {
  background-color: #aaacb0 !important;
}

.bg-g52 {
  background-color: #a6a9ac !important;
}

.bg-g50 {
  background-color: #a2a5a8 !important;
}

.bg-g48 {
  background-color: #9ea1a5 !important;
}

.bg-g46 {
  background-color: #bcbec1 !important;
}

.bg-g44 {
  background-color: #979a9e !important;
}

.bg-g42 {
  background-color: #93979b !important;
}

.bg-g40 {
  background-color: #8f9397 !important;
}

.bg-g38 {
  background-color: #8c8f94 !important;
}

.bg-g36 {
  background-color: #888c90 !important;
}

.bg-g34 {
  background-color: #84888d !important;
}

.bg-g32 {
  background-color: #81858a !important;
}

.bg-g30 {
  background-color: #7c8186 !important;
}

.bg-g28 {
  background-color: #797d82 !important;
}

.bg-g26 {
  background-color: #757a7f !important;
}

.bg-g24 {
  background-color: #71767b !important;
}

.bg-g22 {
  background-color: #6e7378 !important;
}

.bg-g20 {
  background-color: #6a6f75 !important;
}

.bg-g18 {
  background-color: #676b71 !important;
}

.bg-g16 {
  background-color: #63686e !important;
}

.bg-g14 {
  background-color: #5f646a !important;
}

.bg-g12 {
  background-color: #5c6167 !important;
}

.bg-g10 {
  background-color: #575d63 !important;
}

.bg-g08 {
  background-color: #545960 !important;
}

.bg-g06 {
  background-color: #50565c !important;
}

.bg-g04 {
  background-color: #4c5259 !important;
}

.bg-g02 {
  background-color: #494f55 !important;
}

.bg-gd-a {
  background: linear-gradient(135deg, #005dab 0%, #008798 100%);
}

.bg-gd-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#005dab), to(transparent)) border-box border-box;
  background: linear-gradient(#005dab, transparent) border-box border-box;
}

.bg-gd-blue {
  background: -webkit-gradient(linear, right top, left top, from(#008798), to(transparent)) border-box border-box;
  background: linear-gradient(to left, #008798, transparent) border-box border-box;
}

.mbm-screen {
  mix-blend-mode: screen;
}

/* elements: icon */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "icon";
  src: url("../fonts/icon.eot?bfvk0i");
  src: url("../fonts/icon.eot?bfvk0i#iefix") format("embedded-opentype"), url("../fonts/icon.ttf?bfvk0i") format("truetype"), url("../fonts/icon.woff?bfvk0i") format("woff"), url("../fonts/icon.svg?bfvk0i#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  text-decoration: none;
}
.icon::before {
  display: inline-block;
  margin-right: 0.5em;
  text-decoration: none;
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #005dab;
}
.icon::before {
  content: "\e900";
}
.icon[target=_blank]::before {
  content: "\e902";
}
.icon[data-fancybox]::before {
  content: "\e903";
}
.icon[href^="mailto:"]::before, .icon[href*="/contact/"]::before {
  content: "\e906";
}
.icon[href^="tel:"]::before {
  content: "\e907";
}
.icon[href^="https://goo.gl/maps/"]::before, .icon[href^="https://www.google.com/maps/"]::before {
  content: "\e905";
}
.icon[class*=toggle-button]::before {
  content: "\e901";
}
.icon[href$=".pdf"]::before, .icon[href$=".xlsx"]::before, .icon[href$=".xls"]::before, .icon[href$=".docx"]::before, .icon[href$=".doc"]::before, .icon[href$=".pptx"]::before, .icon[href$=".ppt"]::before, .icon[href$=".txt"]::before {
  content: "\e904";
}
.icon--arrow::before {
  content: "\e900";
}
.icon--direction::before {
  content: "\e901";
}
.icon--newtab::before {
  content: "\e902";
}
.icon--modal::before {
  content: "\e903";
}
.icon--file::before {
  content: "\e904";
}
.icon--pin::before {
  content: "\e905";
}
.icon--email::before {
  content: "\e906";
}
.icon--phone::before {
  content: "\e907";
}
.icon--camera::before {
  content: "\e908";
}
.icon--comment::before {
  content: "\e909";
}
.icon--video::before {
  content: "\e90a";
}
.icon--download::before {
  content: "\e90b";
}
.icon--attention::before {
  content: "\e90c";
}
.icon--search::before {
  content: "\e90d";
}
.icon--folder::before {
  content: "\e90e";
}
.icon--global::before {
  content: "\e90f";
}
.icon--after::before {
  content: none !important;
}
.icon--after.icon--arrow::after {
  content: "\e900";
}
.icon--after.icon--direction::after {
  content: "\e901";
}
.icon--after.icon--newtab::after {
  content: "\e902";
}
.icon--after.icon--modal::after {
  content: "\e903";
}
.icon--after.icon--file::after {
  content: "\e904";
}
.icon--after.icon--pin::after {
  content: "" !important;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2023.21%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23005dab%3B%20stroke%3A%20%23fff%3B%20stroke-miterlimit%3A%2010%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.5.5C4.08.5.5%2C4.08.5%2C8.5c0%2C6%2C8%2C14%2C8%2C14%2C0%2C0%2C8-8%2C8-14C16.5%2C4.08%2C12.92.5%2C8.5.5M8.5%2C12.5c-2.21%2C0-4-1.79-4-4s1.79-4%2C4-4%2C4%2C1.79%2C4%2C4-1.79%2C4-4%2C4%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: 16px auto;
}
.icon--after.icon--email::after {
  content: "\e906";
}
.icon--after.icon--phone::after {
  content: "\e907";
}
.icon--after.icon--camera::after {
  content: "\e908";
}
.icon--after.icon--comment::after {
  content: "\e909";
}
.icon--after.icon--video::after {
  content: "\e90a";
}
.icon--after.icon--download::after {
  content: "\e90b";
}
.icon--after.icon--attention::after {
  content: "\e90c";
}
.icon--after.icon--search::after {
  content: "\e90d";
}
.icon--after.icon--folder::after {
  content: "\e90e";
}
.icon--after.icon--global::after {
  content: "\e90f";
}
.icon--after::before {
  content: none;
}
.icon--after::after {
  display: inline-block;
  margin-left: 0.5em;
  text-decoration: none;
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  line-height: 1;
  color: #005dab;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.icon--after::after {
  content: "\e900";
}
.icon--after[target=_blank]::after {
  content: "\e902";
}
.icon--after[data-fancybox]::after {
  content: "\e903";
}
.icon--after[href^="mailto:"]::after, .icon--after[href*="/contact/"]::after {
  content: "\e906";
}
.icon--after[href^="tel:"]::after {
  content: "\e907";
}
.icon--after[href^="https://goo.gl/maps/"]::after, .icon--after[href^="https://www.google.com/maps/"]::after {
  content: "\e905";
}
.icon--after[class*=toggle-button]::after {
  content: "\e901";
}
.icon--after[href$=".pdf"]::after, .icon--after[href$=".xlsx"]::after, .icon--after[href$=".xls"]::after, .icon--after[href$=".docx"]::after, .icon--after[href$=".doc"]::after, .icon--after[href$=".pptx"]::after, .icon--after[href$=".ppt"]::after, .icon--after[href$=".txt"]::after {
  content: "\e904";
}
.icon--after--arrow::after {
  content: "\e900";
}
.icon--after--direction::after {
  content: "\e901";
}
.icon--after--newtab::after {
  content: "\e902";
}
.icon--after--modal::after {
  content: "\e903";
}
.icon--after--file::after {
  content: "\e904";
}
.icon--after--pin::after {
  content: "\e905";
}
.icon--after--email::after {
  content: "\e906";
}
.icon--after--phone::after {
  content: "\e907";
}
.icon--after--camera::after {
  content: "\e908";
}
.icon--after--comment::after {
  content: "\e909";
}
.icon--after--video::after {
  content: "\e90a";
}
.icon--after--download::after {
  content: "\e90b";
}
.icon--after--attention::after {
  content: "\e90c";
}
.icon--after--search::after {
  content: "\e90d";
}
.icon--after--folder::after {
  content: "\e90e";
}
.icon--after--global::after {
  content: "\e90f";
}
.icon--before::before {
  display: inline-block;
  margin-right: 2em;
  text-decoration: none;
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  line-height: 1;
  color: #005dab;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.icon--before::after {
  content: none;
}
.icon--before::before {
  content: "\e900";
}
.icon--before[target=_blank]::after {
  content: "\e902";
}
.icon--before[data-fancybox]::after {
  content: "\e903";
}
.icon--before[href^="mailto:"]::after, .icon--before[href*="/contact/"]::after {
  content: "\e906";
}
.icon--before[href^="tel:"]::after {
  content: "\e907";
}
.icon--before[href^="https://goo.gl/maps/"]::after, .icon--before[href^="https://www.google.com/maps/"]::after {
  content: "\e905";
}
.icon--before[class*=toggle-button]::after {
  content: "\e901";
}
.icon--before[href$=".pdf"]::after, .icon--before[href$=".xlsx"]::after, .icon--before[href$=".xls"]::after, .icon--before[href$=".docx"]::after, .icon--before[href$=".doc"]::after, .icon--before[href$=".pptx"]::after, .icon--before[href$=".ppt"]::after, .icon--before[href$=".txt"]::after {
  content: "\e904";
}
.icon--before--arrow::after {
  content: "\e900";
}
.icon--before--direction::after {
  content: "\e901";
}
.icon--before--newtab::after {
  content: "\e902";
}
.icon--before--modal::after {
  content: "\e903";
}
.icon--before--file::after {
  content: "\e904";
}
.icon--before--pin::after {
  content: "\e905";
}
.icon--before--email::after {
  content: "\e906";
}
.icon--before--phone::after {
  content: "\e907";
}
.icon--before--camera::after {
  content: "\e908";
}
.icon--before--comment::after {
  content: "\e909";
}
.icon--before--video::after {
  content: "\e90a";
}
.icon--before--download::after {
  content: "\e90b";
}
.icon--before--attention::after {
  content: "\e90c";
}
.icon--before--search::after {
  content: "\e90d";
}
.icon--before--folder::after {
  content: "\e90e";
}
.icon--before--global::after {
  content: "\e90f";
}
.icon--disc::before {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: #005dab;
  background: -webkit-gradient(linear, left top, right top, from(rgb(4, 150, 255)), to(rgb(0, 50, 153)));
  background: linear-gradient(to right, rgb(4, 150, 255) 0%, rgb(0, 50, 153) 100%);
  text-align: center;
  line-height: 2;
  color: #ffffff;
}
.icon--disc-white::before {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background: none;
  background-color: #ffffff;
  text-align: center;
  line-height: 2;
  color: #cbcdcf;
}
.icon--disc-gray::before {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background: none;
  background-color: #f8f8f8;
  text-align: center;
  line-height: 2;
  color: #cbcdcf;
}
.icon--r90::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.icon--r180::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.icon--r270::before {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.icon--after[data-fancybox] {
  display: inline-block;
  position: relative;
}
.icon--after[data-fancybox]::after {
  position: absolute;
  inset: auto 0 0 auto;
  width: 2em;
  height: 2em;
  background-color: #005dab;
  text-align: center;
  line-height: 2;
  color: #ffffff;
}

.isnt-touch .icon--disc::before,
.isnt-touch .icon--disc-gray::before {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.isnt-touch a.icon:hover::before, .isnt-touch a.icon:hover::after {
  color: #008798;
}
.isnt-touch button.icon:hover::before, .isnt-touch button.icon:hover::after {
  color: #005dab;
}
.isnt-touch button.icon--disc:hover::before, .isnt-touch button.icon--disc:hover::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #ffffff;
}
.isnt-touch button.icon--disc-white:hover::before, .isnt-touch button.icon--disc-white:hover::after, .isnt-touch button.icon--disc-gray:hover::before, .isnt-touch button.icon--disc-gray:hover::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #005dab;
}
.isnt-touch a.icon--after[data-fancybox]:hover::after {
  background-color: #008798;
  color: #ffffff;
}
.isnt-touch a.icon--pin:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2023.21%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20stroke%3A%20%23005dab%3B%20stroke-miterlimit%3A%2010%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.5.5C4.08.5.5%2C4.08.5%2C8.5c0%2C6%2C8%2C14%2C8%2C14%2C0%2C0%2C8-8%2C8-14C16.5%2C4.08%2C12.92.5%2C8.5.5M8.5%2C12.5c-2.21%2C0-4-1.79-4-4s1.79-4%2C4-4%2C4%2C1.79%2C4%2C4-1.79%2C4-4%2C4%22%2F%3E%3C%2Fsvg%3E");
}

/* elements: box */
/* -------------------------------------------------------------------------- */
.box {
  position: relative;
  padding: 32px clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  border-radius: 16px;
  background-color: #e5eff6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box {
    padding: 16px clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
  }
}
.box > *:first-child {
  margin-top: 0;
}
.box > *:last-child {
  margin-bottom: 0;
}
.box__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.box__wrapper > * {
  width: 100%;
}
.box__wrapper > * > *:first-child {
  margin-top: 0;
}
.box__wrapper > * > *:last-child {
  margin-bottom: 0;
}
.box-contact {
  margin-top: 24px;
}
.box-contact__title {
  color: #005dab;
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 700;
}
.box-contact__details {
  margin-left: auto;
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
}
.box-contact__details th,
.box-contact__details td {
  font-weight: 700;
  text-align: right;
}
.box.bg-deco {
  padding: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box.bg-deco {
    padding: 2.5rem 5%;
  }
}

.bg-deco {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20480%20240%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23ffffff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M360%2C0c0%2C66.2-53.6%2C120-120%2C120S120%2C66.4%2C120%2C0H0c0%2C132.6%2C107.4%2C240%2C240%2C240S480%2C132.6%2C480%2C0h-120Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 6.25% top;
  background-size: clamp(15rem, -3.228rem + 37.97vw, 30rem) auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .bg-deco {
    background-position: center top;
    background-size: min(32vw, 240px) auto;
  }
}

/* elements: button */
/* -------------------------------------------------------------------------- */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0.1em solid #005dab;
  background-color: #ffffff;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  color: #005dab;
}
.button::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.button--entry {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 10em;
  height: 3.75em;
  border-radius: 9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0.1em solid #ff5a5f;
  background-color: #ff5a5f;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  color: #ffffff;
}
.button--entry::after {
  color: #ffffff !important;
}
.button--entry .button-text {
  color: #ffffff;
}
.button--entry.button-large {
  width: 100%;
  max-width: 560px;
  height: 5em;
  padding: 0 2em;
  margin-inline: auto;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  text-align: left;
}
.button--entry.button-large::after {
  font-size: 1.16em;
}
.button--pri {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18.75em;
  height: 3.75em;
  padding: 0 1.5em;
  color: #005dab;
  line-height: 1.3;
  background-color: #ffffff;
  border-radius: 9999px;
  -webkit-box-shadow: 0 0 0 1px #005dab;
          box-shadow: 0 0 0 1px #005dab;
}
.button--pri.button--pri-center {
  margin-inline: auto;
}
.button--sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #005dab;
  padding-right: 0.5em;
}
.button--sec::after {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5em;
  height: 2.5em;
  background-color: #ffffff;
  border: 1px solid #005dab;
  border-radius: 100%;
  -webkit-transition-property: background, opacity, color;
  transition-property: background, opacity, color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  will-change: transform;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .button--sec::after {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

.button--entry-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: clamp(3.75rem, 2.839rem + 1.9vw, 4.5rem) 0 0;
}

.button--prev {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 9999px;
  -webkit-box-shadow: 0 0 0 1px #005dab;
          box-shadow: 0 0 0 1px #005dab;
  width: 18.75em;
  height: 3.75em;
  color: #005dab;
  padding: 0 1.5em;
}

.bg-sec .button--pri {
  -webkit-box-shadow: 0 0 0 1px #ffffff;
          box-shadow: 0 0 0 1px #ffffff;
}

.button--pri.c-ghost,
.bg-sec .button--prev {
  color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px #ffffff;
          box-shadow: 0 0 0 1px #ffffff;
  background-color: transparent;
}
.button--pri.c-ghost.icon--before::before, .button--pri.c-ghost.icon--after::after,
.bg-sec .button--prev.icon--before::before,
.bg-sec .button--prev.icon--after::after {
  color: inherit;
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 10em;
  line-height: 1;
}
.list-btn__wrapper {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border: 1px solid #005dab;
  border-radius: 9999px;
  width: 22.5em;
  height: 3.75em;
  color: #005dab;
  padding: 0 1.5em;
  margin: 0;
}

.isnt-touch .button::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: translateX(-120%) skewX(45deg);
          transform: translateX(-120%) skewX(45deg);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.isnt-touch .button {
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  -webkit-transition-property: background-color, border-color, opacity;
  transition-property: background-color, border-color, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.isnt-touch .button .button-text {
  position: relative;
}
.isnt-touch .button--entry {
  cursor: pointer !important;
  overflow: hidden !important;
  opacity: 1 !important;
  -webkit-transition-property: background-color, border-color, opacity !important;
  transition-property: background-color, border-color, opacity !important;
  -webkit-transition-duration: 0.2s !important;
          transition-duration: 0.2s !important;
  -webkit-transition-timing-function: ease-out !important;
          transition-timing-function: ease-out !important;
}
.isnt-touch .button--entry::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #ffffff !important;
  -webkit-transform-origin: left !important;
          transform-origin: left !important;
  -webkit-transform: translateX(-120%) skewX(45deg) !important;
          transform: translateX(-120%) skewX(45deg) !important;
  -webkit-transition: -webkit-transform 0.2s ease-out !important;
  transition: -webkit-transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out !important;
}
.isnt-touch .button:hover {
  color: #005dab;
}
.isnt-touch .button:hover::before {
  -webkit-transform: translateX(0) skewX(0deg);
          transform: translateX(0) skewX(0deg);
  z-index: -1;
}
.isnt-touch .button--entry {
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  -webkit-transition-property: background-color, border-color, opacity;
  transition-property: background-color, border-color, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 0 !important;
}
.isnt-touch .button--entry .button-text {
  position: relative;
}
.isnt-touch .button--entry:hover {
  color: #ff5a5f;
}
.isnt-touch .button--entry:hover::before {
  -webkit-transform: translateX(0) skewX(0deg) !important;
          transform: translateX(0) skewX(0deg) !important;
  z-index: -1 !important;
}
.isnt-touch .button--entry:hover::after {
  color: #ff5a5f !important;
}
.isnt-touch .button--entry .button-text:hover {
  color: #ff5a5f;
}
.isnt-touch .button--pri {
  cursor: pointer;
  overflow: hidden;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 0 !important;
}
.isnt-touch .button--pri::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #005dab !important;
  -webkit-transform-origin: left !important;
          transform-origin: left !important;
  -webkit-transform: translateX(-120%) skewX(45deg) !important;
          transform: translateX(-120%) skewX(45deg) !important;
  -webkit-transition: -webkit-transform 0.2s ease-out !important;
  transition: -webkit-transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out !important;
  will-change: transform;
}
.isnt-touch .button--pri:hover {
  color: #ffffff;
}
.isnt-touch .button--pri:hover::before {
  -webkit-transform: translateX(0) skewX(0deg) !important;
          transform: translateX(0) skewX(0deg) !important;
  z-index: -1 !important;
}
.isnt-touch .button--pri:hover::after {
  color: #ffffff !important;
}
.isnt-touch .button--prev {
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  -webkit-transition-property: background-color, border-color, opacity;
  transition-property: background-color, border-color, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 0 !important;
}
.isnt-touch .button--prev::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #005dab !important;
  -webkit-transform-origin: left !important;
          transform-origin: left !important;
  -webkit-transform: translateX(-120%) skewX(45deg) !important;
          transform: translateX(-120%) skewX(45deg) !important;
  -webkit-transition: -webkit-transform 0.2s ease-out !important;
  transition: -webkit-transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out !important;
}
.isnt-touch .button--prev:hover {
  color: #ffffff;
}
.isnt-touch .button--prev:hover::after {
  -webkit-transform: translateX(0) skewX(0deg) !important;
          transform: translateX(0) skewX(0deg) !important;
  z-index: -1 !important;
}
.isnt-touch .button--prev:hover::before {
  color: #ffffff !important;
}
.isnt-touch .button--sec::after {
  -webkit-transition-property: background, opacity, color, -webkit-transform;
  transition-property: background, opacity, color, -webkit-transform;
  transition-property: background, opacity, color, transform;
  transition-property: background, opacity, color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.isnt-touch .button--sec:hover::after {
  color: #ffffff !important;
  background-color: #005dab;
  -webkit-transform: translateX(0.5em);
          transform: translateX(0.5em);
}
.isnt-touch .button--ter:hover {
  border-color: #008798;
  color: #008798;
}
.isnt-touch .button--qua:hover {
  border-color: #ff5a5f;
  color: #ff5a5f;
}
.isnt-touch .button--gray:hover {
  border-color: #bcbec1;
  color: #bcbec1;
}
.isnt-touch .button--outline:hover {
  background-color: #ffffff;
  border-color: #dc7b69;
  color: #dc7b69;
}
.isnt-touch .list-btn__wrapper {
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  -webkit-transition-property: background-color, border-color, opacity;
  transition-property: background-color, border-color, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 0 !important;
}
.isnt-touch .list-btn__wrapper::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #005dab !important;
  -webkit-transform-origin: left !important;
          transform-origin: left !important;
  -webkit-transform: translateX(-120%) skewX(45deg) !important;
          transform: translateX(-120%) skewX(45deg) !important;
  -webkit-transition: -webkit-transform 0.2s ease-out !important;
  transition: -webkit-transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out !important;
}
.isnt-touch .list-btn__wrapper:hover {
  color: #ffffff;
}
.isnt-touch .list-btn__wrapper:hover::before {
  -webkit-transform: translateX(0) skewX(0deg) !important;
          transform: translateX(0) skewX(0deg) !important;
  z-index: -1 !important;
}
.isnt-touch .list-btn__wrapper:hover::after {
  color: #ffffff !important;
}
.isnt-touch a:hover .button--sec::after {
  color: #ffffff !important;
  background-color: #005dab;
  -webkit-transform: translateX(0.5em);
          transform: translateX(0.5em);
}

.isnt-touch .button--pri.c-ghost:hover,
.isnt-touch .bg-sec .button--prev:hover {
  color: #005dab;
}
.isnt-touch .button--pri.c-ghost:hover.icon--before::before, .isnt-touch .button--pri.c-ghost:hover.icon--after::after,
.isnt-touch .bg-sec .button--prev:hover.icon--before::before,
.isnt-touch .bg-sec .button--prev:hover.icon--after::after {
  color: inherit !important;
}
.isnt-touch .button--pri.c-ghost:hover::before {
  background-color: #ffffff !important;
}
.isnt-touch .bg-sec .button--prev:hover::after {
  background-color: #ffffff !important;
}

/* display */
/* -------------------------------------------------------------------------- */
.d-i {
  display: inline;
}

.d-b {
  display: block;
}

.d-ib {
  display: inline-block;
}

.d-i-pc {
  display: inline;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-i-pc {
    display: none;
  }
}

.d-i-sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-i-sp {
    display: inline;
  }
}

.d-b-pc {
  display: block;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-b-pc {
    display: none;
  }
}

.d-b-sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-b-sp {
    display: block;
  }
}

.d-ib-pc {
  display: inline-block;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-ib-pc {
    display: none;
  }
}

.d-ib-sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-ib-sp {
    display: inline-block;
  }
}

.d-flex-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-flex-pc {
    display: none;
  }
}

.d-flex-sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .d-flex-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* elements: rough-hr */
/* -------------------------------------------------------------------------- */
/* elements: label */
/* -------------------------------------------------------------------------- */
.label {
  display: inline-block;
  padding: 0.15em 0.5em 0 0.5em;
  border-radius: 0.25em;
  background-color: #005dab;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}
.label--pri {
  background-color: #231815;
}
.label--sec {
  background-color: #005dab;
}
.label--ter {
  background-color: #008798;
}
.label--sen {
  background-color: #e5f3f4;
}
.label--sep {
  background-color: #cccccc;
}
.label--oct {
  background-color: #f5f5f5;
}
.label--border {
  border: 1px solid #231815;
  background-color: transparent;
  color: #231815;
}
.label--border.label--sec {
  border-color: #005dab;
  color: #005dab;
}
.label--border.label--ter {
  border-color: #008798;
  color: #008798;
}
.label--border.label--sen {
  border-color: #e5f3f4;
  color: #e5f3f4;
}
.label--border.label--sep {
  border-color: #cccccc;
  color: #cccccc;
}
.label--border.label--oct {
  border-color: #f5f5f5;
  color: #f5f5f5;
}
.label--info {
  background-color: #008798;
}
.label--press {
  background-color: #005dab;
}
.label--tec {
  background-color: #cccccc;
}
.label--product {
  background-color: #008798;
}
.label--paper {
  background-color: #005dab;
}
.label--introduction {
  background-color: #f5f5f5;
}
.label--description {
  background-color: #cccccc;
}

/* elements: list */
/* ---------------------------------------------------------------- */
.news-article__body ul,
ul.list-dot,
.news-article__body ol,
ol.list-num {
  counter-reset: number;
}
.news-article__body ul > li,
ul.list-dot > li,
.news-article__body ol > li,
ol.list-num > li {
  position: relative;
  margin: 0 0 0.5em;
  padding: 0 0 0 2.5em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-article__body ul > li,
  ul.list-dot > li,
  .news-article__body ol > li,
  ol.list-num > li {
    font-size: 0.875rem;
  }
}
.news-article__body ul > li::before,
ul.list-dot > li::before,
.news-article__body ol > li::before,
ol.list-num > li::before {
  position: absolute;
  left: 0;
  top: 0;
}
.news-article__body ul > li:last-child,
ul.list-dot > li:last-child,
.news-article__body ol > li:last-child,
ol.list-num > li:last-child {
  margin-bottom: 0;
}
.news-article__body ul > li ol,
.news-article__body ul > li ul,
ul.list-dot > li ol,
ul.list-dot > li ul,
.news-article__body ol > li ol,
.news-article__body ol > li ul,
ol.list-num > li ol,
ol.list-num > li ul {
  margin-top: 0.5em;
}

.news-article__body ul > li::before,
ul.list-dot > li::before {
  content: "";
  display: block;
  top: 0.3em;
  width: 1em;
  height: 1em;
  border: 2px solid #005dab;
  border-radius: 100%;
}

.news-article__body ol > li::before,
ol.list-num > li::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  color: #005dab;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.28;
}
.news-article__body ol:has(ol) > li,
ol.list-num:has(ol) > li {
  padding-left: 1em;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-article__body ol:has(ol) > li,
  ol.list-num:has(ol) > li {
    font-size: 1rem;
  }
}
.news-article__body ol:has(ol) > li::before,
ol.list-num:has(ol) > li::before {
  content: counter(number) ".";
  color: #231815;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.6;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 0 2.5em;
  margin: 2.5em 0 0;
  border-radius: 16px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list {
    padding: 0 1.5em;
  }
}
.news-list__item {
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 1px solid #cccccc;
}
.news-list__item:first-child {
  border-top: none;
}
.news-list__item:last-child {
  border-bottom: none;
}
.news-list__anchor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.25em 3em 2.25em 0;
  gap: 2.52em;
  text-decoration: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list__anchor {
    gap: 0.5em;
    padding-right: 2.5em;
  }
}
.news-list a.news-list__anchor::after {
  position: absolute;
  inset: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5em;
  height: 2.5em;
  margin: auto;
  background-color: #ffffff;
  border: 1px solid #005dab;
  border-radius: 100%;
  -webkit-transition-property: background, opacity, color, inset;
  transition-property: background, opacity, color, inset;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list a.news-list__anchor::after {
    font-size: 10px;
  }
}
.news-list a.news-list__anchor[target=_blank]::after {
  content: "\e902";
}
.news-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list__header {
    gap: 0;
  }
}
.news-list__date {
  width: 10em;
  line-height: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list__date {
    width: 9em;
  }
}
.news-list__category .label {
  width: 10em;
  padding: 0.57em 1em;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  background-color: #005dab;
}
.news-list__category .label--important {
  background-color: #ff0000;
}
.news-list__category .label--update {
  background-color: #008798;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-list__category .label {
    width: auto;
    font-size: 0.75rem;
  }
}
.news-list__content {
  margin: 0;
}

.event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(2rem, -1.646rem + 7.59vw, 5rem);
  margin: 40px 0 80px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .event-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }
}
.event-list__item {
  width: calc(33.3333333333% - clamp(2rem, -1.646rem + 7.59vw, 5rem) * 2 / 3);
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1080px) {
  .event-list__item {
    width: calc(50% - clamp(2rem, -1.646rem + 7.59vw, 5rem) / 2);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .event-list__item {
    width: 100%;
  }
}

.isnt-touch .news-list__anchor:hover::after {
  right: -1em;
  color: #ffffff !important;
  background-color: #005dab;
}

/* elements: logo */
/* -------------------------------------------------------------------------- */
.logo {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.logo__symbol {
  width: clamp(6.25rem, 1.693rem + 9.49vw, 10rem);
  fill: #005dab;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .logo__symbol {
    width: 100px;
    z-index: 10;
  }
}
.logo__typo {
  margin-left: clamp(1rem, -0.823rem + 3.8vw, 2.5rem);
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
  color: #231815;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .logo__typo {
    z-index: 10;
  }
}

.site-footer .logo__symbol {
  z-index: 1;
}
.site-footer .logo__typo {
  z-index: 1;
}

/* elements: media */
/* -------------------------------------------------------------------------- */
.pc-image {
  display: inline;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .pc-image {
    display: none;
  }
}

.sp-image {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .sp-image {
    display: inline;
  }
}

/* elements: table */
/* -------------------------------------------------------------------------- */
.table--pri {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #cccccc;
  border-radius: 16px;
  overflow: hidden;
}
.table--pri th,
.table--pri td {
  padding: 2em 1.5em;
  border-bottom: 1px solid #cccccc;
}
.table--pri th {
  width: 20%;
  background-color: #e5eff6;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table--pri th {
    text-align: left;
  }
}
.table--pri td {
  width: 80%;
  background-color: #ffffff;
  line-height: 1.6;
}
.table--pri thead th {
  text-align: center;
  background-color: #e5f3f4;
}
.table--pri thead td {
  width: auto;
}
.table--pri tbody tr:last-child th,
.table--pri tbody tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table--pri.sp-vertical th,
  .table--pri.sp-vertical td {
    display: block;
    width: 100%;
    padding: 1em;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table--pri.sp-vertical tr:last-child th {
    border-bottom: 1px solid #cccccc;
    border-bottom-left-radius: 0;
  }
}
.table--pri.grid-line th,
.table--pri.grid-line td {
  border-right: 1px solid #cccccc;
}
.table--pri.grid-line tr *:first-child,
.table--pri.grid-line tr *:last-child {
  border-right: 0;
}

table.wide-equally {
  table-layout: fixed;
}
table.wide-equally th,
table.wide-equally td {
  width: auto;
}

.table-spec {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #cccccc;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table-spec {
    border: none;
    border-radius: 0;
    overflow: visible;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table-spec tr {
    display: block;
    width: 100% !important;
    border: 1px solid #cccccc;
    border-radius: 16px;
    margin-bottom: 2em;
    overflow: hidden;
  }
}
.table-spec th,
.table-spec td {
  padding: 2em 1.5em;
  border-bottom: 1px solid #cccccc;
  vertical-align: middle;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table-spec th,
  .table-spec td {
    display: block;
    width: 100%;
    border: none;
    padding: 1em;
    vertical-align: baseline;
  }
}
.table-spec th {
  width: 20%;
  background-color: #e5eff6;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table-spec th {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
}
.table-spec td {
  width: 80%;
  background-color: #ffffff;
  line-height: 1.6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table-spec td {
    width: 100%;
    border-radius: 0 0 1em 1em;
  }
}
.table-spec tr:last-child th,
.table-spec tr:last-child td {
  border-bottom: none;
}
.table-spec tr:first-child th {
  border-top-left-radius: 1em;
}
.table-spec tr:first-child td {
  border-top-right-radius: 1em;
}
.table-spec tr:last-child th {
  border-bottom-left-radius: 1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table-spec tr:last-child th {
    border-bottom-left-radius: 0;
  }
}
.table-spec tr:last-child td {
  border-bottom-right-radius: 1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .table-spec tr:last-child {
    margin-bottom: 0;
  }
}

.bor-b-0 {
  border-bottom: none !important;
}

.isnt-touch .table--striped tbody tr:hover th,
.isnt-touch .table--striped tbody tr:hover td {
  background-color: #f0f1f1;
}
.isnt-touch .table--striped tbody tr:hover:nth-of-type(odd) th,
.isnt-touch .table--striped tbody tr:hover:nth-of-type(odd) td {
  background-color: #f0f1f1;
}

.js-scrollable {
  margin-bottom: 1em;
  padding-right: 2px;
  overflow-x: auto;
}
.js-scrollable table,
.js-scrollable .scrollable-content {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .js-scrollable table,
  .js-scrollable .scrollable-content {
    width: 680px;
  }
}

/* elements: base-text */
/* -------------------------------------------------------------------------- */
.base-text {
  display: inline-block;
  margin-bottom: 0.1em;
  padding: 0.5em;
  line-height: 1;
}
.base-text--ini {
  background-color: #ffffff;
}
.base-text--pri {
  background-color: #231815;
  color: #ffffff;
}
.base-text--sec {
  background-color: #005dab;
  color: #ffffff;
}
.base-text--ter {
  background-color: #008798;
}

/* elements: lead-text */
/* -------------------------------------------------------------------------- */
.lead-text {
  margin-top: 2em;
}
.lead-text.white {
  color: #ffffff;
}
/* elements: underline-text */
/* -------------------------------------------------------------------------- */
.underline-text {
  display: inline;
}
.underline-text--sec {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(10%, #005dab));
  background: linear-gradient(to bottom, transparent 80%, #005dab 10%);
}
.underline-text--ter {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(10%, #008798));
  background: linear-gradient(to bottom, transparent 80%, #008798 10%);
}

/* gradation-text */
/* -------------------------------------------------------------------------- */
.gd-text {
  background: linear-gradient(135deg, #005dab 0%, #008798 100%) border-box border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.note,
.note-num {
  position: relative;
  margin: 1em 0 0;
  padding-left: 1.5em;
  font-size: 0.875em;
}
.note + .note,
.note + .note-num,
.note-num + .note,
.note-num + .note-num {
  margin-top: 0;
}
.note::before,
.note-num::before {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 0;
}

.note:before {
  content: "※";
}

.note-num:before {
  content: "※" attr(data-num);
}

.note-num {
  padding-left: 2.5em;
}

/* elements: title */
/* -------------------------------------------------------------------------- */
.multi-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  margin-bottom: 0;
}
.multi-title__circle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(1.5rem, 0.285rem + 2.53vw, 2.5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .multi-title__circle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.multi-title__pri {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(2.25rem, 0.123rem + 4.43vw, 4rem);
  font-weight: 600;
  line-height: 1.6;
}
.multi-title__pri::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  border: 0.2em solid #005dab;
  margin-right: 1em;
  font-size: clamp(1.5rem, 0.285rem + 2.53vw, 2.5rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.bg-sec .multi-title__pri::before {
  border-color: #ffffff;
}
.multi-title__pri.title-small {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  line-height: 1.1;
}
.multi-title__pri.title-small::before {
  width: 0.84em;
  height: 0.84em;
  margin-right: 0.5em;
  font-size: inherit;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .multi-title__pri.title-small:has(+ .multi-title__sec) {
    margin-bottom: 0.5rem;
  }
}
.multi-title__pri.title-small:has(+ .multi-title__sec) + .multi-title__sec {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .multi-title__pri.title-small:has(+ .multi-title__sec) + .multi-title__sec {
    margin-left: 27px;
  }
}
.multi-title__sec {
  margin: 0;
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .multi-title__sec {
    margin-left: 48px;
  }
}
.multi-title__ter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, -0.127rem + 4.43vw, 3.75rem);
  min-height: clamp(5rem, -1.076rem + 12.66vw, 10rem);
  margin: clamp(5rem, -1.076rem + 12.66vw, 10rem) 0 clamp(2.5rem, 0.222rem + 4.75vw, 4.375rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .multi-title__ter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.multi-title__ter .title__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-height: clamp(5rem, -1.076rem + 12.66vw, 10rem);
  font-size: 1.5rem;
  padding: 0 0 clamp(0rem, -1.823rem + 3.8vw, 1.5rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.multi-title__ter .title__jp {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #231815;
  font-size: clamp(1.5rem, 0.892rem + 1.27vw, 2rem);
  line-height: 1.6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .multi-title__ter .title__jp {
    -ms-flex-item-align: baseline;
        align-self: baseline;
    font-size: 1rem;
    line-height: 2;
  }
}
.multi-title__ter .title__jp .title__sub {
  color: #005dab;
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
}
.multi-title__ter::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: clamp(5rem, -1.076rem + 12.66vw, 10rem);
  aspect-ratio: 0.5;
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20120%20240%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23e5eff6%3B%20%7D%20.st1%20%7B%20fill%3A%20%23005dab%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M0%2C60c33.2%2C0%2C60%2C26.9%2C60%2C60h60C120%2C53.7%2C66.3%2C0%2C0%2C0v60Z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2C240c66.3%2C0%2C120-53.7%2C120-120h-60c0%2C33.1-26.8%2C60-60%2C60v60Z%22%2F%3E%3C%2Fsvg%3E") no-repeat left top;
  background-size: contain;
  z-index: -1;
}
.multi-title__ter.c-ter .title__en {
  color: inherit;
}
.multi-title__ter.c-ter .title__sub {
  color: #008798;
}
.multi-title__ter.c-ter::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20120%20240%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23e5f3f4%3B%20%7D%20.st1%20%7B%20fill%3A%20%23008798%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M0%2C60c33.2%2C0%2C60%2C26.9%2C60%2C60h60C120%2C53.7%2C66.3%2C0%2C0%2C0v60Z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2C240c66.3%2C0%2C120-53.7%2C120-120h-60c0%2C33.1-26.8%2C60-60%2C60v60Z%22%2F%3E%3C%2Fsvg%3E");
}

.page-header.lower-level3 .page-header__wrapper {
  mix-blend-mode: multiply;
}
@media screen and (min-width: 769px) and (max-width: 1559px) {
  .page-header.lower-level3 .page-header__wrapper {
    top: 25px;
  }
}
.page-header.lower-level3 .multi-title__circle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}
.page-header.lower-level3 .multi-title__circle .multi-title__pri {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  line-height: 1.1;
}
.page-header.lower-level3 .multi-title__circle .multi-title__pri::before {
  width: 0.84em;
  height: 0.84em;
  margin-right: 0.5em;
  font-size: inherit;
}
.page-header.lower-level3 .multi-title__circle .multi-title__sec {
  margin-top: 0.5em;
  font-size: clamp(1.75rem, 0.231rem + 3.16vw, 3rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-level3 .multi-title__circle .multi-title__sec {
    margin-left: 0;
  }
}

.icon-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(1.5rem, 0.285rem + 2.53vw, 2.5rem);
  margin: 0 0 40px;
  font-size: clamp(1.625rem, 1.169rem + 0.95vw, 2rem);
  line-height: 1.3;
}
.icon-title::before {
  content: "";
  display: block;
  width: clamp(1.5rem, 0.285rem + 2.53vw, 2.5rem);
  aspect-ratio: 103/150;
  background: url(../images/icon/icon-question_01.svg) no-repeat center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.icon-title__text {
  margin: 0;
}
* + .icon-title {
  margin-top: clamp(5rem, -1.076rem + 12.66vw, 10rem);
}

.border-title {
  position: relative;
  margin: clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 0 1em;
  padding-left: 1.5em;
  font-size: clamp(1.5rem, 0.892rem + 1.27vw, 2rem);
  line-height: 1.75;
}
.border-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 0.3em;
  height: 100%;
  border-radius: 0.15em;
  margin-right: 1.875em;
  background: -webkit-gradient(linear, left bottom, left top, from(#008798), to(#005dab));
  background: linear-gradient(0deg, #008798, #005dab);
}

h2.border-title .button--sec::after {
  font-size: 0.5em;
}

.circle-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
}
.circle-title::before {
  content: "⚫︎";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  color: #d85910;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
* + .circle-title {
  margin-top: 3em;
}
h2 + .circle-title {
  margin-top: 0;
}

.link-title {
  position: relative;
}
.link-title a.icon::before {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 0;
}

.marker-title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.5rem, -0.323rem + 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .marker-title {
    width: auto;
  }
}
.marker-title > span {
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 0 0.6em;
  background-color: #ffffff;
  border-radius: clamp(0.25rem, -0.054rem + 0.63vw, 0.5rem);
}

.text__en,
.title__en {
  color: #005dab;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.1;
}

.title__en__fz-20 {
  color: #005dab;
  font-size: 20px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.1;
}

.title__en__fz-24 {
  color: #005dab;
  font-size: 24px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.1;
}

.title__wrap.has-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 2.5rem;
}
.title__wrap.has-note > * {
  margin: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .title__wrap.has-note {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .title__wrap.has-note .note {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* elements:bg-color image */
/* -------------------------------------------------------------------------- */
.bg-col__image,
.bg-col__image--center {
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}

.frame {
  overflow: hidden;
  border-radius: 16px;
}
.frame img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.frame--1-1 {
  aspect-ratio: 1/1;
}
.frame--2-1 {
  aspect-ratio: 2/1;
}
.frame--16-9 {
  aspect-ratio: 16/9;
}
.frame--3-2 {
  aspect-ratio: 3/2;
}
.frame--4-3 {
  aspect-ratio: 4/3;
}
.frame--2-3 {
  aspect-ratio: 2/3;
}
.frame--3-4 {
  aspect-ratio: 3/4;
}

.br80 {
  overflow: hidden;
  border-radius: 5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .br80 {
    border-radius: 2.5em;
  }
}

.br48 {
  overflow: hidden;
  border-radius: 3em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .br48 {
    border-radius: 2.5em;
  }
}

.br32 {
  overflow: hidden;
  border-radius: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .br32 {
    border-radius: 1.5em;
  }
}

.br24 {
  overflow: hidden;
  border-radius: 1.5em;
}

.br16 {
  overflow: hidden;
  border-radius: 16px;
}

.br8 {
  overflow: hidden;
  border-radius: 8px;
}

.bg-col__top-left {
  position: absolute;
  display: block;
  top: -5em;
  left: -10em;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .bg-col__top-left {
    top: -2.5em;
    left: -2.5em;
  }
}

.bg-col__bottom-left {
  position: absolute;
  display: block;
  top: -5em;
  left: -10em;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .bg-col__bottom-left {
    top: -2.5em;
    left: -2.5em;
  }
}

.bg-col__bottom-right {
  position: absolute;
  display: block;
  right: 5em;
  bottom: -2.5em;
  width: 50%;
  height: 50%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .bg-col__bottom-right {
    right: -2.5em;
    bottom: -2.5em;
  }
}

.img-banner a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}
.img-banner.is-frame a {
  -webkit-box-shadow: inset 0 0 0 1px #cccccc;
          box-shadow: inset 0 0 0 1px #cccccc;
}
.img-banner.is-frame a img {
  position: relative;
  z-index: -1;
}

.op-c-70 img {
  -o-object-position: center 70% !important;
     object-position: center 70% !important;
}

.op-c-80 img {
  -o-object-position: center 80% !important;
     object-position: center 80% !important;
}

@media screen and (min-width: 769px) {
  .op-pc-c-70 img {
    -o-object-position: center 70% !important;
       object-position: center 70% !important;
  }
  .op-pc-c-80 img {
    -o-object-position: center 80% !important;
       object-position: center 80% !important;
  }
  .op-pc-c-90 img {
    -o-object-position: center 90% !important;
       object-position: center 90% !important;
  }
}
@media screen and (max-width: 768px) {
  .op-sp-0-c img {
    -o-object-position: left center !important;
       object-position: left center !important;
  }
  .op-sp-10-c img {
    -o-object-position: 10% center !important;
       object-position: 10% center !important;
  }
  .op-sp-60-c img {
    -o-object-position: 60% center !important;
       object-position: 60% center !important;
  }
  .op-sp-c-80 img {
    -o-object-position: center 80% !important;
       object-position: center 80% !important;
  }
  .op-sp-c-b img {
    -o-object-position: center bottom !important;
       object-position: center bottom !important;
  }
  .ar-sp-3-2 {
    aspect-ratio: 3/2 !important;
  }
}
.isnt-touch .img-banner a img {
  -webkit-transition: scale(1);
  transition: scale(1);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.isnt-touch .img-banner:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* ========================================================================== */
/* Site header */
/* ========================================================================== */
.site-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  padding: 0 clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  letter-spacing: clamp(0rem, -0.097rem + 0.2vw, 0.08rem);
  -webkit-transition: background-color 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: background-color 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: 5;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-header {
    inset: 0 auto auto 0;
    width: 100%;
    height: 70px;
    padding: 0 0 0 5%;
    letter-spacing: 0.08em;
    background-color: transparent;
    /* GPUによるハードウェアアクセラレーションを有効にする */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.site-title {
  margin: 0;
  font-weight: 400;
}

.site-title__anchor {
  text-decoration: none;
}
.isnt-touch .site-title__anchor:hover {
  opacity: 0.6;
}

.is-scroll .site-header {
  inset: 0 auto auto 0;
  background-color: #ffffff;
  width: 100%;
}

.isnt-touch .site-header:has(.main-menu__item:hover) {
  background-color: #ffffff;
}

/* site-navi */
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-navi {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100dvh;
    padding: 70px 0 0;
    background-color: #ffffff;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .site-navi__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-header.is-open .site-navi {
    position: fixed;
    inset: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .site-header.is-open .site-navi__wrapper {
    height: calc(100dvh - 70px);
    overflow-y: auto;
  }
  .site-header.is-open .site-navi__wrapper::-webkit-scrollbar {
    display: none;
  }
  body:has(.site-header.is-open) {
    overflow: hidden;
  }
}
/* main-menu */
/* -------------------------------------------------------------------------- */
.main-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 clamp(0.75rem, -1.377rem + 4.43vw, 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 20px 0;
    overflow: auto;
  }
}
.main-menu__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  height: 6.25em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.main-menu__item:not(:has(.main-menu__child)) .toggle-button {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    -webkit-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
    overflow: hidden;
  }
}
.main-menu .button--news-event {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu .button--news-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    margin-top: 2.5em;
  }
  .main-menu .button--news-event__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    height: 7em;
  }
  .main-menu .button--news-event__item:nth-of-type(2n) {
    border-left: 1px solid #cccccc;
  }
}
.main-menu .button--entry {
  width: 10em;
  height: 3em;
  font-size: clamp(0.813rem, 0.281rem + 1.11vw, 1.25rem);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu .button--entry {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 80%;
    font-size: 1rem;
    border: 1px solid red;
    margin-top: 2.5em;
  }
}
.main-menu__anchor {
  position: relative;
  display: inline-block;
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.main-menu__anchor::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  width: 100%;
  height: 1px;
  background: #005dab;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__anchor {
    display: none;
  }
  .main-menu__anchor::after {
    display: none;
  }
}
.main-menu .main-menu__child__title--sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu .main-menu__child__title--sp {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 16px 0 16px 10%;
    height: auto;
  }
  .main-menu .main-menu__child__title--sp a {
    text-decoration: none;
  }
  .main-menu .main-menu__child__title--sp a .multi-title__pri {
    font-size: 1.75rem;
  }
  .main-menu .main-menu__child__title--sp a .multi-title__pri::before {
    width: 24px;
    height: 24px;
    margin-right: 12px;
  }
  .main-menu .main-menu__child__title--sp a .jp {
    display: inline-block;
    padding-left: 36px;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu .button--sec::after {
    width: 2.5em;
    height: 2.5em;
    font-size: 10px;
  }
}

.isnt-touch .main-menu__anchor:hover {
  color: #005dab;
}
.isnt-touch .main-menu__anchor:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* main-menu: current */
/* -------------------------------------------------------------------------- */
/* main-menu__child: toggle */
/* -------------------------------------------------------------------------- */
.main-menu__child {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 0 clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  background: #e5eff6;
  -webkit-box-shadow: 0 4px 10px -10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px -10px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(-1em);
          transform: translateY(-1em);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 90;
  cursor: default;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__child {
    position: relative !important;
    padding: 0 10%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
}
.main-menu__child__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 90;
}
.main-menu__child__wrapper .main-menu__child--sp {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__child__wrapper .main-menu__child--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5em;
    width: 100%;
  }
  .main-menu__child__wrapper .main-menu__child--sp .button--sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__child__wrapper {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding: 0;
    gap: 2em;
  }
}
.main-menu__child__title {
  width: 21.875%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__child__title {
    display: none;
  }
}
.main-menu__child .multi-title__circle > a {
  text-decoration: none;
}
.main-menu__child .multi-title__circle .multi-title__pri {
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
}
.main-menu__child .multi-title__circle .multi-title__pri::before {
  margin-right: 0.5em;
  font-size: 0.83em;
}
.main-menu__child .multi-title__circle .button--sec {
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
}
.main-menu__child__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 0 4.8%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__child__content {
    display: none;
  }
}
.main-menu__child__content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30%;
  gap: 1.25em;
  text-decoration: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__child__content__item {
    width: 100%;
  }
}
.main-menu__child__content__item .button--sec {
  gap: 0.5em;
  color: #231815;
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
  line-height: 1.3;
}
.main-menu__child__content__item .button--sec::after {
  font-size: 10px;
}
.main-menu__child__content__item--env {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
}
.main-menu__child__content__item--env .button--pri {
  width: 100%;
}
.main-menu__child__content__item--info .main-menu__child__content__item__anchor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  height: 6.25em;
  padding: 1em;
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
  border: 1px solid #005dab;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition-property: background-color, border-color, opacity;
  transition-property: background-color, border-color, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.main-menu__child__content__item--info .main-menu__child__content__item__anchor p {
  margin: 0;
  padding-left: 1em;
  line-height: 1.3;
}
.main-menu__child__content__item--info .main-menu__child__content__item__anchor .main-menu__child__content__item__anchor__icon {
  display: inline-block;
  width: 3em;
}
.main-menu__child__content__item--info .main-menu__child__content__item__anchor .main-menu__child__content__item__anchor__icon.nrw {
  width: 2em;
}
.main-menu__child__content__item__image {
  position: relative;
}
.main-menu__child__content__item__image a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.main-menu__child__content__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .main-menu__item .main-menu__child {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    inset: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: grid-template-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: grid-template-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: grid-template-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1), -ms-grid-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .main-menu__item .main-menu__child .main-menu__child__wrapper {
    width: 100%;
    overflow: hidden;
  }
  .main-menu__item .main-menu__child .main-menu__child--sp {
    padding: 2.5em 36px;
  }
  .main-menu__item.is-open .main-menu__child {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    visibility: visible;
    overflow: visible;
  }
}
.isnt-touch .main-menu__child__content__item__image {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.isnt-touch .main-menu__child__content__item__image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: scale;
  transition-property: scale;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .isnt-touch .main-menu__child__content__item__image {
    -webkit-transform: scale(1) translate(0, 0) !important;
            transform: scale(1) translate(0, 0) !important;
  }
}
.isnt-touch .main-menu__child__content__item__image:hover img {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}
.isnt-touch .main-menu__child__content__item--info .main-menu__child__content__item__anchor__icon img {
  -webkit-transition: scale(1);
  transition: scale(1);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.isnt-touch .main-menu__child__content__item--info:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.isnt-touch .main-menu__item:hover .main-menu__child {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

/* toggle-button */
/* -------------------------------------------------------------------------- */
.toggle-button {
  position: relative;
  display: none;
  cursor: pointer;
}
@media print {
  .toggle-button {
    display: none;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .toggle-button {
    display: block;
  }
}
.toggle-button--pri {
  inset: 0 5% auto auto;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #005dab;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.toggle-button--pri .toggle-button__line {
  display: block;
  position: absolute;
  inset: 50% auto auto 30%;
  width: 40%;
  height: 1px;
  background-color: #ffffff;
}
.toggle-button--pri .toggle-button__line {
  display: block;
  position: absolute;
  inset: 50% auto auto 30%;
  width: 40%;
  height: 1px;
  background-color: #ffffff;
}
.toggle-button--sec {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid #005dab;
  background-color: #ffffff;
  border-radius: 100%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .toggle-button--sec {
    display: block;
    inset: 28px 10% auto auto;
  }
}
.toggle-button--sec::before {
  position: absolute;
  inset: calc(50% - 0.5em) auto auto calc(50% - 0.5em);
  margin: 0;
  font-size: 10px;
  color: #005dab;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.toggle-button--sec.is-open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.toggle-button--sec.is-close::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (min-width: 769px) {
  .isnt-touch .main-menu__item:hover .toggle-button--sec::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@-webkit-keyframes tbl_1_o {
  0% {
    -webkit-transform: translateY(-0.5em) rotate(0);
            transform: translateY(-0.5em) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}
@keyframes tbl_1_o {
  0% {
    -webkit-transform: translateY(-0.5em) rotate(0);
            transform: translateY(-0.5em) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}
@-webkit-keyframes tbl_1_c {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-0.5em) rotate(0);
            transform: translateY(-0.5em) rotate(0);
  }
}
@keyframes tbl_1_c {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-0.5em) rotate(0);
            transform: translateY(-0.5em) rotate(0);
  }
}
@-webkit-keyframes tbl_2_o {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes tbl_2_o {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@-webkit-keyframes tbl_2_c {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes tbl_2_c {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes tbl_3_o {
  0% {
    -webkit-transform: translateY(0.5em) rotate(0);
            transform: translateY(0.5em) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
}
@keyframes tbl_3_o {
  0% {
    -webkit-transform: translateY(0.5em) rotate(0);
            transform: translateY(0.5em) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
}
@-webkit-keyframes tbl_3_c {
  0% {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.5em) rotate(0);
            transform: translateY(0.5em) rotate(0);
  }
}
@keyframes tbl_3_c {
  0% {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.5em) rotate(0);
            transform: translateY(0.5em) rotate(0);
  }
}
.toggle-button--pri.is-open .toggle-button__line:nth-of-type(1) {
  -webkit-animation: tbl_1_o 0.3s ease-in forwards;
          animation: tbl_1_o 0.3s ease-in forwards;
}
.toggle-button--pri.is-open .toggle-button__line:nth-of-type(2) {
  -webkit-animation: tbl_3_o 0.3s ease-in forwards;
          animation: tbl_3_o 0.3s ease-in forwards;
}

.toggle-button--pri.is-close .toggle-button__line:nth-of-type(1) {
  -webkit-animation: tbl_1_c 0.3s ease-in forwards;
          animation: tbl_1_c 0.3s ease-in forwards;
}
.toggle-button--pri.is-close .toggle-button__line:nth-of-type(2) {
  -webkit-animation: tbl_3_c 0.3s ease-in forwards;
          animation: tbl_3_c 0.3s ease-in forwards;
}

/* ========================================================================== */
/* Site aside */
/* ========================================================================== */
.site-aside {
  position: relative;
  padding: 4em 5%;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-aside {
    padding-bottom: 6em;
  }
}

/* ========================================================================== */
/* Site footer */
/* ========================================================================== */
.site-footer {
  position: relative;
  font-size: 0.875rem;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer {
    width: 100%;
  }
}
.site-footer__deco__wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: 420px;
  max-width: 70%;
  margin: 0 auto;
  aspect-ratio: 1.75;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.site-footer__deco__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.site-footer__deco__content .deco--footer {
  position: relative;
  width: 57.8%;
}
.site-footer__deco__content .deco--footer--02 {
  top: -1px;
  margin-left: auto;
}
.site-footer__entry {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 32.5em;
  padding: 40px 5%;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0);
}
.site-footer__entry::before {
  content: "";
  position: absolute;
  display: inline-block;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-image: url(../images/common/bg-image-entry_texture_01.svg), url(../images/common/bg-image-entry_01.webp);
  background-blend-mode: screen;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__entry {
    width: 100%;
  }
  .site-footer__entry::before {
    position: absolute;
    background-image: url(../images/common/bg-image-entry_texture_01.svg), url(../images/common/bg-image-entry_01_sp.webp);
  }
}
.site-footer__entry .button--entry {
  width: 12.5em;
  margin-top: 1em;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__entry .button--entry {
    width: 11em;
    height: 3em;
    font-size: 1.5rem;
  }
}
.site-footer__entry__ttl {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__entry__ttl {
    font-size: 1rem;
  }
}
.site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 5% 48px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 32px 5% 48px;
  }
}
.site-footer__bottom__header--sec {
  text-align: right;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__bottom__header--sec {
    text-align: left;
  }
}
.site-footer__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5em 48px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__notice {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 2em;
  }
}
.site-footer__notice__anchor {
  text-decoration: none;
}
.site-footer__notice__anchor::after {
  color: #231815;
}
.site-footer__address {
  margin-top: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__address {
    margin-top: 1.5em;
  }
}
.site-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-footer__copyright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 2em;
  }
}

/* ========================================================================== */
/* Page Menu */
/* ========================================================================== */
.page-menu {
  position: sticky;
  top: 6em;
  width: 100%;
  padding: 3em;
  border-radius: 1em 0 0 1em;
  background-color: #f8f8f8;
}
@media screen and (min-width: 1600px) {
  .page-menu {
    border-radius: 1em;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-menu {
    position: relative;
    top: auto;
    left: auto;
    width: inherit;
    border-radius: 1.5em 1.5em 0 0;
    margin-top: 6em;
  }
}
.page-menu__wrapper {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-height: calc(100vh - 19.75em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-menu__wrapper {
    overflow: visible;
    max-height: inherit;
  }
}
.page-menu__wrapper::-webkit-scrollbar {
  display: none;
}
.page-menu__anchor {
  text-decoration: none;
}
.page-menu__head {
  max-height: 5.25em;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #e8e9ea;
}
.page-menu__title {
  font-weight: 700;
  font-size: 1.25em;
}
.page-menu__sub-title {
  margin-bottom: 1em;
  font-weight: 700;
  opacity: 0.333;
}
.page-menu__sub-title.title-icon::before {
  background-color: #231815;
}
.page-menu__item {
  position: relative;
  margin-bottom: 1em;
}
.page-menu__item a {
  display: block;
}
.page-menu__item > a {
  font-size: 1.125em;
}
.page-menu__item + .page-menu__sub-title {
  margin-top: 2em;
}
.page-menu__child {
  display: none;
  margin-top: 0.75em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-menu__child {
    padding-bottom: 1.5em;
  }
}
.page-menu__child__item {
  position: relative;
  margin-top: 0.5em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-menu__child__item {
    padding-left: 2em;
  }
}
.page-menu__child__anchor {
  text-decoration: none;
}
.page-menu .accordion__trigger {
  gap: 0;
  padding: 0.5em 1em;
  background-color: #dadbdc;
  font-size: 1em;
  opacity: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-menu .accordion__trigger {
    padding: 1em;
  }
}
.page-menu .accordion__icon {
  margin-left: auto;
}
.page-menu .accordion__target {
  padding-top: 0;
}

/* page-menu: current */
/* -------------------------------------------------------------------------- */
/* page-menu: child current */
/* -------------------------------------------------------------------------- */
/* ========================================================================== */
/* Common */
/* ========================================================================== */
.page-main {
  position: relative;
}
.page-footer {
  margin-top: 6em;
}

::-moz-selection {
  background-color: #d85910;
  color: #ffffff;
}

::selection {
  background-color: #d85910;
  color: #ffffff;
}

body {
  position: relative;
}
body::after {
  position: fixed;
  inset: 0 auto auto 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/bg-grid--vertical_01.svg);
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-position: center top;
  z-index: -10;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body::after {
    background-image: url(../images/common/bg-grid--vertical_02.svg);
    background-position: center top !important;
  }
}
body .bg-animation {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  overflow: hidden;
}
body .bg-animation__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
body .bg-animation__line {
  fill: none;
  stroke: #e2e2e2;
  stroke-miterlimit: 10;
}
body .bg-animation__square__wrapper {
  position: absolute;
  inset: auto 15em 5em auto;
  width: 15em;
}
body .bg-animation__square--large {
  stroke-dashoffset: 1280;
  stroke-dasharray: 1280;
}
body .bg-animation__square--small {
  stroke-dashoffset: 640;
  stroke-dasharray: 640;
}
body .bg-animation__circle__wrapper {
  position: absolute;
  inset: 0 auto auto 0;
  width: 30em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body .bg-animation__circle__wrapper {
    width: 15em;
  }
}
body .bg-animation__circle--large {
  stroke-dashoffset: 1507.96;
  stroke-dasharray: 1507.96;
}
body .bg-animation__circle--small {
  stroke-dashoffset: 1005.31;
  stroke-dasharray: 1005.31;
}
body .bg-animation__curve__wrapper {
  position: absolute;
  inset: 10em 0 auto auto;
  width: 20em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body .bg-animation__curve__wrapper {
    width: 10em;
    inset: 5em 0 auto auto;
  }
}
body .bg-animation__curve--bottom {
  stroke-dashoffset: 251.37;
  stroke-dasharray: 251.37;
}
body .bg-animation__curve--top {
  stroke-dashoffset: 251.37;
  stroke-dasharray: 251.37;
}
body .bg-animation__diagonal__wrapper {
  position: absolute;
  inset: 5em 0 auto auto;
  width: 30em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body .bg-animation__diagonal__wrapper {
    width: 15em;
    inset: 5em 0 auto auto;
  }
}
body .bg-animation__diagonal--left {
  stroke-dashoffset: 452.55;
  stroke-dasharray: 452.55;
}
body .bg-animation__diagonal--right {
  stroke-dashoffset: 452.55;
  stroke-dasharray: 452.55;
}
body .bg-animation__semicircle__wrapper {
  position: absolute;
  inset: auto auto 0 0;
  width: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body .bg-animation__semicircle__wrapper {
    width: 5em;
  }
}
body .bg-animation__semicircle__vertical--bottom {
  stroke-dashoffset: 1322.03;
  stroke-dasharray: 1322.03;
}
body .bg-animation__semicircle__vertical--top {
  stroke-dashoffset: 1322.03;
  stroke-dasharray: 1322.03;
}
body .bg-animation__semicircle--horizontal__wrapper {
  position: absolute;
  inset: auto auto 0 50em;
  width: 20em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body .bg-animation__semicircle--horizontal__wrapper {
    inset: auto auto 0 20em;
    width: 10em;
  }
}
body .bg-animation__semicircle--horizontal--top {
  stroke-dashoffset: 502.73;
  stroke-dasharray: 502.73;
}
body .bg-animation__semicircle--horizontal--middle {
  stroke-dashoffset: 452.46;
  stroke-dasharray: 452.46;
}
body .bg-animation__semicircle--horizontal--bottom {
  stroke-dashoffset: 402.18;
  stroke-dasharray: 402.18;
}

p {
  line-height: 2;
}

/* ========================================================================== */
/* Accordion */
/* ========================================================================== */
.dtl-accordion__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
  min-height: 6.67em;
  padding: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem) 0;
  cursor: pointer;
  list-style: none;
  outline: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .dtl-accordion__trigger {
    min-height: 0;
  }
}
.dtl-accordion__trigger::-webkit-details-marker {
  display: none;
}
.dtl-accordion__trigger::after {
  content: "\e901";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5em;
  aspect-ratio: 1;
  color: #005dab;
  font-family: "icon" !important;
  font-size: clamp(0.688rem, 0.308rem + 0.79vw, 1rem);
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #005dab;
  border-radius: 100%;
  background-color: #ffffff;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.dtl-accordion__trigger__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dtl-accordion__body {
  overflow: hidden;
}
.dtl-accordion__title {
  margin: 0;
  padding: 0;
  color: #005dab;
  font-size: clamp(0.875rem, 0.116rem + 1.58vw, 1.5rem);
}

.dtl-accordion::details-content {
  display: block grid;
  content-visibility: unset;
  -webkit-transition: grid-template-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: grid-template-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: grid-template-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1), -ms-grid-rows 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.dtl-accordion:not([open])::details-content {
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
}

.dtl-accordion[open]::details-content {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.dtl-accordion[open] .dtl-accordion__trigger::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* ========================================================================== */
/* Breadcrumb */
/* ========================================================================== */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 96px;
  padding: 0.5em 5%;
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.6;
}
.breadcrumb__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5em;
  margin: 0;
  padding: 0;
}
.breadcrumb__list > li::after {
  display: block;
  font-family: "icon" !important;
  content: "\e901";
  color: #231815;
}
.breadcrumb__list > li:last-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.breadcrumb__list > li:last-of-type::after {
  content: none;
}
.breadcrumb__list a {
  text-decoration: none;
  color: #005dab;
}

.isnt-touch .breadcrumb a:hover {
  color: color-mix(in srgb, #005dab 50%, transparent);
}

/* ========================================================================== */
/* Card */
/* ========================================================================== */
/* card */
/* -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 16px;
  overflow: hidden;
}
.card__wrapper, .card__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.card__anchor.icon::before {
  position: absolute;
  right: 1em;
  bottom: 1em;
  z-index: 1;
  margin: 0;
}
.card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 1.25em;
  padding: 1.5em;
}
.card__content > *:last-child {
  margin-bottom: 0;
}
.card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card__title {
    font-size: 1rem;
  }
}
.card__read {
  font-size: 0.875rem;
  font-weight: 400;
  color: #a3a3a3;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card__read {
    font-size: 0.75rem;
  }
}
.card__category {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card__category {
    font-size: 0.75rem;
  }
}
.card__category .label {
  display: inline-block;
  padding: 0.5em 1.25em;
  border-radius: 6px;
  background-color: #ffffff;
  text-align: center;
}
.card__category .label--blue {
  border: 1px solid #005dab;
  color: #005dab;
}
.card__category .label--green {
  border: 1px solid #008798;
  color: #008798;
}
.card__date {
  margin-bottom: 0;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card__date {
    font-size: 0.75rem;
  }
}
.card--horizontal .card__wrapper, .card--horizontal .card__anchor {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.card--horizontal .card__image {
  width: 33.333%;
  aspect-ratio: 1/1;
}
.card--horizontal .card__content {
  width: 66.666%;
}
.card--news .card__content {
  padding-bottom: 5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card--news .card__content {
    padding: 1em;
    padding-bottom: 4em;
  }
}
.card--news .card__title {
  font-size: 1.25em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card--news .card__title {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card--news .card__category .label {
    font-size: 0.875em;
  }
  .card--news .card__date {
    left: 1em;
  }
  .card--news .card__date time {
    font-size: 0.875em;
  }
}

.isnt-touch .card__anchor {
  cursor: pointer;
}
.isnt-touch .card__anchor .card__image img {
  -webkit-transition: scale(1);
  transition: scale(1);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.isnt-touch .card__anchor:hover .card__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card--shadow {
  overflow: hidden;
  background-color: #ffffff;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
          box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
}

.flip-card {
  position: relative;
  aspect-ratio: 1/1.5;
  font-size: clamp(0.875rem, -0.458rem + 1.67vw, 1rem);
  cursor: pointer;
}
@media screen and (max-width: 1179px) {
  .flip-card {
    font-size: clamp(0.875rem, 0.642rem + 0.49vw, 1rem);
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .flip-card {
    aspect-ratio: 1/1.3;
    font-size: 0.875rem;
  }
}
.flip-card__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(3.75rem, -22.917rem + 33.33vw, 6.25rem) 1fr clamp(3.75rem, -22.917rem + 33.33vw, 6.25rem) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(3.75rem, -22.917rem + 33.33vw, 6.25rem);
  margin-top: 2em;
  margin-inline: auto;
}
@media screen and (max-width: 1179px) {
  .flip-card__wrapper {
    grid-template-columns: repeat(auto-fit, min(50% - 30px, 360px));
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .flip-card__wrapper {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    max-width: 360px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flip-card > * {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 32px clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) 70px;
  border-radius: 16px;
  -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
          box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.flip-card > *::after {
  content: "";
  position: absolute;
  display: block;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: #005dab url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23ffffff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M10%2C19c-5%2C0-9-4-9-9S5%2C1%2C10%2C1s9%2C4%2C9%2C9-1%2C4.7-2.6%2C6.4%22%2F%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%2216.4%2014%2016.4%2016.4%2018.7%2016.4%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: 20px;
  border-radius: 100%;
}
.flip-card > * > *:first-child {
  margin-top: 0;
}
.flip-card > * > *:last-child {
  margin-bottom: 0;
}
.flip-card:has(> *:only-child) {
  cursor: default;
}
.flip-card:has(> *:only-child) > *::after {
  content: none;
}
.flip-card h4 {
  color: #005dab;
  margin: 0 0 1.25em;
  font-size: clamp(1rem, -1.667rem + 3.33vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1179px) {
  .flip-card h4 {
    font-size: clamp(1rem, 0.534rem + 0.97vw, 1.25rem);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flip-card h4 {
    font-size: 1.25rem;
  }
}
.flip-card__icon {
  max-width: 65%;
  margin: 0 auto 1em;
}
.flip-card__front {
  background-color: #ffffff;
}
.flip-card__back {
  color: #ffffff;
  background-color: #005dab;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.flip-card__back::after {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23005dab%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M10%2C19c-5%2C0-9-4-9-9S5%2C1%2C10%2C1s9%2C4%2C9%2C9-1%2C4.7-2.6%2C6.4%22%2F%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%2216.4%2014%2016.4%2016.4%2018.7%2016.4%22%2F%3E%3C%2Fsvg%3E");
}
.flip-card__back h4 {
  color: #ffffff;
}
.flip-card:hover .flip-card__front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.flip-card:hover .flip-card__back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}
.flip-card:hover > *:only-child {
  -webkit-transform: none;
          transform: none;
}

/* ========================================================================== */
/* Column Container */
/* ========================================================================== */
/* column: default */
/* -------------------------------------------------------------------------- */
.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}

/* column: number and width */
/* -------------------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  .column.column--col-2 .column__item {
    width: calc(50% - clamp(2.5rem, -0.538rem + 6.33vw, 5rem) / 2);
  }
}
@media screen and (min-width: 769px) {
  .column.column--col-3 .column__item {
    width: calc(33.3333333333% - clamp(2.5rem, -0.538rem + 6.33vw, 5rem) * 2 / 3);
  }
}
@media screen and (min-width: 769px) {
  .column.column--col-4 .column__item {
    width: calc(25% - clamp(2.5rem, -0.538rem + 6.33vw, 5rem) * 3 / 4);
  }
}
@media screen and (min-width: 769px) {
  .column.column--col-5 .column__item {
    width: calc(20% - clamp(2.5rem, -0.538rem + 6.33vw, 5rem) * 4 / 5);
  }
}

.column-g-0 {
  gap: 0;
}
@media screen and (min-width: 769px) {
  .column-g-0--col-2 .column__item {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  .column-g-0--col-3 .column__item {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 769px) {
  .column-g-0--col-4 .column__item {
    width: 25%;
  }
}
@media screen and (min-width: 769px) {
  .column-g-0--col-5 .column__item {
    width: 20%;
  }
}

/* column: justify-content */
/* -------------------------------------------------------------------------- */
.column--jc-flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.column--jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column--jc-flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.column--jc-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.column--jc-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-jc-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .column--sp-jc-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .column--sp-jc-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .column--sp-jc-space-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .column--sp-jc-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/* column: align-items */
/* -------------------------------------------------------------------------- */
.column--ai-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.column--ai-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column--ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column--ai-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.column--ai-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .column--sp-ai-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .column--sp-ai-flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .column--sp-ai-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .column--sp-ai-flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .column--sp-ai-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

/* ========================================================================== */
/* Flex */
/* ========================================================================== */
/* flex: default */
/* -------------------------------------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex--fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex--fd-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex--fd-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex--fd-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-fd-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex--sp-fd-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex--sp-fd-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex--sp-fd-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.flex--jc-flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex--jc-flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex--jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex--jc-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex--jc-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-jc-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex--sp-jc-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .flex--sp-jc-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flex--sp-jc-space-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .flex--sp-jc-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.flex--ai-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex--ai-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex--ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex--ai-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.flex--ai-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-ai-flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .flex--sp-ai-flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .flex--sp-ai-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flex--sp-ai-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .flex--sp-ai-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.flex--fw-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex--fw-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-fw-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex--sp-fw-nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.flex--g-0 {
  gap: 0;
}
.flex--g-d5 {
  gap: 0.5em;
}
.flex--g-1 {
  gap: 1em;
}
.flex--g-1d5 {
  gap: 1.5em;
}
.flex--g-2 {
  gap: 2em;
}
.flex--g-2d5 {
  gap: 2.5em;
}
.flex--g-3 {
  gap: 3em;
}
.flex--g-3d5 {
  gap: 3.5em;
}
.flex--g-4 {
  gap: 4em;
}
.flex--g-4d5 {
  gap: 4.5em;
}
.flex--g-5 {
  gap: 5em;
}
.flex--g-5d5 {
  gap: 5.5em;
}
.flex--g-6 {
  gap: 6em;
}
.flex--g-7d5 {
  gap: 7.5em;
}
.flex--g-8 {
  gap: 8em;
}
.flex--g-8d5 {
  gap: 8.5em;
}
.flex--g-9 {
  gap: 9em;
}
.flex--g-9d5 {
  gap: 9.5em;
}
.flex--g-10 {
  gap: 10em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flex--sp-g-0 {
    gap: 0;
  }
  .flex--sp-g-d5 {
    gap: 0.5em;
  }
  .flex--sp-g-1 {
    gap: 1em;
  }
  .flex--sp-g-1d5 {
    gap: 1.5em;
  }
  .flex--sp-g-2 {
    gap: 2em;
  }
  .flex--sp-g-2d5 {
    gap: 2.5em;
  }
  .flex--sp-g-3 {
    gap: 3em;
  }
  .flex--sp-g-3d5 {
    gap: 3.5em;
  }
  .flex--sp-g-4 {
    gap: 4em;
  }
  .flex--sp-g-4d5 {
    gap: 4.5em;
  }
  .flex--sp-g-5 {
    gap: 5em;
  }
  .flex--sp-g-5d5 {
    gap: 5.5em;
  }
  .flex--sp-g-6 {
    gap: 6em;
  }
  .flex--sp-g-7d5 {
    gap: 7.5em;
  }
  .flex--sp-g-8 {
    gap: 8em;
  }
  .flex--sp-g-8d5 {
    gap: 8.5em;
  }
  .flex--sp-g-9 {
    gap: 9em;
  }
  .flex--sp-g-9d5 {
    gap: 9.5em;
  }
  .flex--sp-g-10 {
    gap: 10;
  }
}

/* ========================================================================== */
/* Image Slider */
/* ========================================================================== */
.swiper__container {
  position: relative;
}

.swiper-pagination {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 4;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #005dab !important;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-button-prev,
.swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.33em;
  height: 3.33em;
  border: 1px solid #005dab;
  border-radius: 100%;
  background-color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-family: "icon" !important;
  font-size: clamp(0.75rem, -0.161rem + 1.9vw, 1.5rem);
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "\e900";
  display: block;
  font-size: 1em;
  color: #005dab;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.swiper-button-prev::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.swiper--business, .swiper--environment {
  position: relative;
  width: 100%;
  margin: 4em auto 0;
  overflow: visible !important;
}
.swiper--business .swiper-pagination, .swiper--environment .swiper-pagination {
  text-align: right;
}
.swiper--business .swiper-button-prev,
.swiper--business .swiper-button-next, .swiper--environment .swiper-button-prev,
.swiper--environment .swiper-button-next {
  top: calc(15.125vw - 0.8325em);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business .swiper-button-prev,
  .swiper--business .swiper-button-next, .swiper--environment .swiper-button-prev,
  .swiper--environment .swiper-button-next {
    top: calc(25vw - 20px);
  }
}
.swiper--business .swiper-button-prev, .swiper--environment .swiper-button-prev {
  left: calc(22.5% - 1.665em - 5px);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business .swiper-button-prev, .swiper--environment .swiper-button-prev {
    left: calc(9% - 20px);
  }
}
.swiper--business .swiper-button-next, .swiper--environment .swiper-button-next {
  right: calc(22.5% - 1.665em - 5px);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business .swiper-button-next, .swiper--environment .swiper-button-next {
    right: calc(9% - 20px);
  }
}
.swiper--business .swiper-wrapper, .swiper--environment .swiper-wrapper {
  position: relative;
}
.swiper--business .swiper-slide, .swiper--environment .swiper-slide {
  position: relative;
  display: inline-block;
  top: 7vw;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: default;
}
.swiper--business .swiper-slide:not([class*=swiper-slide-active]), .swiper--environment .swiper-slide:not([class*=swiper-slide-active]) {
  pointer-events: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business .swiper-slide, .swiper--environment .swiper-slide {
    top: 0;
    -webkit-transform: scale(1) translate(0, 0) !important;
            transform: scale(1) translate(0, 0) !important;
  }
}
.swiper--business__anchor, .swiper--environment__anchor {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #231815;
  text-decoration: none;
}
.swiper--business__image, .swiper--environment__image {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper--business__image img, .swiper--environment__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: scale;
  transition-property: scale;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.swiper--business--image__wrapper, .swiper--environment--image__wrapper {
  position: relative;
}
.swiper--business__number, .swiper--environment__number {
  position: absolute;
  inset: auto auto -2em -3.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 8.57em;
  height: 8.57em;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(0.625rem, 0.321rem + 0.63vw, 0.875rem);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1;
  border-radius: 100%;
  background-color: #d85910;
  color: #ffffff;
  z-index: 1 !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  clip-path: inset(0 100% 0 0);
  -webkit-animation: markerHide 0.4s both;
          animation: markerHide 0.4s both;
}
.swiper--business__number span, .swiper--environment__number span {
  display: inline-block;
}
.swiper--business__number span.number-txt, .swiper--environment__number span.number-txt {
  line-height: 1.2;
}
.swiper--business__number span.number-num, .swiper--environment__number span.number-num {
  font-size: 2.857em;
}
.swiper--business__content, .swiper--environment__content {
  margin: 1.5em 0 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  clip-path: inset(0 100% 0 0);
  -webkit-animation: markerHide 0.4s both;
          animation: markerHide 0.4s both;
}
.swiper--business__title, .swiper--environment__title {
  color: #231815;
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
}
.swiper--business__title::after, .swiper--environment__title::after {
  width: 2.5em !important;
  height: 2.5em !important;
  margin-left: 2em !important;
  font-size: 50% !important;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business__title::after, .swiper--environment__title::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 2.5em !important;
    height: 2.5em !important;
    margin-left: 2.5em !important;
    font-size: 50% !important;
  }
}
.swiper--business__read, .swiper--environment__read {
  margin: 1.5em 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business__read, .swiper--environment__read {
    margin: 1em 0 0;
  }
}
.swiper--business .swiper-slide-active, .swiper--environment .swiper-slide-active {
  top: 0;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  cursor: pointer !important;
  z-index: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business .swiper-slide-active, .swiper--environment .swiper-slide-active {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}
.swiper--business .swiper-slide-active .swiper--business__number, .swiper--environment .swiper-slide-active .swiper--business__number {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  clip-path: inset(0 0 0 0);
  -webkit-animation: markerBg 1s 0.5s both;
          animation: markerBg 1s 0.5s both;
}
.swiper--business .swiper-slide-active .swiper--business__content, .swiper--environment .swiper-slide-active .swiper--business__content {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  clip-path: inset(0 0 0 0);
  -webkit-animation: markerBg 1s 0.5s both;
          animation: markerBg 1s 0.5s both;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .swiper--business .swiper-slide-active .swiper--business__title::after, .swiper--environment .swiper-slide-active .swiper--business__title::after {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    width: 2.5em !important;
    height: 2.5em !important;
    margin-left: 2.5em !important;
    font-size: 50% !important;
  }
}
.page-section--interview .swiper__container {
  margin-right: calc(50% - 50vw);
}
.page-section--interview .swiper--interview {
  position: relative;
  width: 100%;
  margin: 3em 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--interview .swiper--interview {
    width: 100%;
    margin: 1em 0 0;
  }
}
.page-section--interview .swiper--interview .interview-list__wrapper {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
}
.page-section--interview .swiper--interview .interview-list__anchor {
  color: #ffffff;
  margin-right: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--interview .swiper--interview .interview-list__title {
    font-size: 1rem;
  }
}
.page-section--interview .swiper-scrollbar {
  position: static;
  width: 72%;
  max-width: 480px;
  height: 10px;
  margin: clamp(2rem, -1.038rem + 6.33vw, 4.5rem) auto 0;
  background-color: #ffffff;
  border-radius: 5px;
}
.page-section--interview .swiper-scrollbar-drag {
  height: 100%;
  background-color: #d85910;
  border-radius: 5px;
}
.page-section--interview .swiper-button__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
}
.page-section--interview .swiper-button__wrapper .swiper-button-prev,
.page-section--interview .swiper-button__wrapper .swiper-button-next {
  position: relative;
  inset: -3.33em 0 0 0;
  margin: 0 0 -3.33em;
  z-index: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--interview .swiper-button__wrapper .swiper-button-prev,
  .page-section--interview .swiper-button__wrapper .swiper-button-next {
    inset: 0;
    margin: 0;
  }
}
.page-section--interview .swiper-pagination {
  position: relative;
  inset: 0;
  margin: clamp(2rem, -1.038rem + 6.33vw, 4.5rem) auto 0;
}
.page-section--interview .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 1;
}
.page-section--interview .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d85910 !important;
}

.page-section--business .swiper-pagination {
  inset: -3em auto 0 28%;
  width: 44%;
  text-align: right;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--business .swiper-pagination {
    right: 9%;
    width: auto;
  }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment {
    width: 100%;
  }
}
.page-section--environment .swiper-pagination {
  inset: -3em 0 0;
  width: 59.9%;
  text-align: right;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment .swiper-pagination {
    width: 100%;
  }
}
.page-section--environment .swiper__container {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin: 0 calc(clamp(2.5rem, -0.538rem + 6.33vw, 5rem) / 2 * -1) 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment .swiper__container {
    margin-right: 0;
  }
}
.page-section--environment .swiper__container .swiper-button-prev,
.page-section--environment .swiper__container .swiper-button-next {
  margin-top: 0;
  z-index: 1;
}
.page-section--environment .swiper__container .swiper-button-prev {
  inset: 8em calc(3.33em + clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem)) auto auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment .swiper__container .swiper-button-prev {
    top: calc(59vw - 20px);
    right: 60px;
  }
}
.page-section--environment .swiper__container .swiper-button-next {
  inset: 8em 0 auto auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment .swiper__container .swiper-button-next {
    top: calc(59vw - 20px);
    right: 0;
  }
}
.page-section--environment .swiper--environment {
  margin: 0;
  overflow: hidden !important;
}
.page-section--environment .swiper--environment .swiper-wrapper .swiper-slide {
  top: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment .swiper--environment .swiper-wrapper .swiper-slide {
    -webkit-transform: scale(1) translate(0, 0) !important;
            transform: scale(1) translate(0, 0) !important;
  }
}
.page-section--environment .swiper--environment .swiper-wrapper .swiper-slide > * {
  margin-right: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment .swiper--environment .swiper-wrapper .swiper-slide > * {
    margin-right: 0;
  }
}
.page-section--environment .swiper--environment__anchor {
  width: auto;
}
.page-section--environment .swiper--environment__content {
  position: static;
  margin: 2.5em 0 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  clip-path: inset(0 100% 0 0);
  -webkit-animation: markerHide 0.4s both;
          animation: markerHide 0.4s both;
}
.page-section--environment .swiper--environment .swiper-slide-active {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section--environment .swiper--environment .swiper-slide-active {
    width: 100% !important;
  }
}
.page-section--environment .swiper--environment .swiper-slide-active .swiper--environment__content {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  clip-path: inset(0 0 0 0);
  -webkit-animation: markerBg 1s 0.5s both;
          animation: markerBg 1s 0.5s both;
}

.isnt-touch .swiper-slide-active:hover .swiper--business__image img, .isnt-touch .swiper-slide-active:hover .swiper--environment__image img {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}
.isnt-touch .swiper-button-prev:hover,
.isnt-touch .swiper-button-next:hover {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}
.isnt-touch .swiper--business__anchor:hover, .isnt-touch .swiper--environment__anchor:hover {
  color: #231815;
}

/* ========================================================================== */
/* Scroll Assist */
/* ========================================================================== */
.scroll-assist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  inset: auto auto 0 5vw;
  font-size: 0.875rem;
  line-height: 1;
  z-index: -1;
}
.scroll-assist__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.scroll-assist__title {
  margin-bottom: 1.75em;
  color: #231815;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
.scroll-assist__line {
  position: relative;
  width: 1px;
  height: min(14vh, 90px);
  overflow: hidden;
}
.scroll-assist__line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #231815;
  -webkit-animation: scroll-assist_line 2s ease-in-out infinite;
          animation: scroll-assist_line 2s ease-in-out infinite;
}

@-webkit-keyframes scroll-assist_line {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes scroll-assist_line {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
/* ========================================================================== */
/* Visual */
/* ========================================================================== */
/* main-visual トップページ*/
/* -------------------------------------------------------------------------- */
.site-key-visual {
  position: relative;
  width: 100vw;
  height: 100svh;
}
.site-key-visual__tagline {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}
.site-key-visual__tagline span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-key-visual__tagline--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-key-visual__tagline--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-key-visual__object {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.site-key-visual__object__circle {
  display: block;
  fill: #d85910;
  -webkit-transform: translate(0.000001, -0.000004);
          transform: translate(0.000001, -0.000004);
  stroke-dasharray: 94.25;
}
.site-key-visual__object__line {
  stroke-width: 30;
  stroke-miterlimit: 10;
  stroke-dasharray: 62.85;
  stroke-dashoffset: 62.85;
  fill: none;
}
.site-key-visual__object__line--sec {
  stroke: #005dab;
}
.site-key-visual__object__line--ter {
  stroke: #008798;
}
.site-key-visual__object__line--qui {
  stroke: #e5eff6;
}
.site-key-visual__object__line--sen {
  stroke: #e5f3f4;
}
.site-key-visual__object--blue, .site-key-visual__object--green {
  position: absolute;
  inset: 6.25vw 7.5vw auto auto;
  display: block;
  fill: none;
  z-index: -1;
  width: min(27.5vw, 470px);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-key-visual__object--blue, .site-key-visual__object--green {
    inset: auto 18.5vw 20vw auto;
    width: 55vw;
  }
}
.site-key-visual__object--green {
  inset: auto 1.25vw 1.25vw auto;
  width: min(15vw, 240px);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-key-visual__object--green {
    inset: auto 2.5vw 10vw auto;
    width: 30vw;
  }
}
.site-key-visual__object__texture {
  position: absolute;
  inset: 6.25vw auto auto 41.25vw;
  width: 44.375vw;
  z-index: -3;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-key-visual__object__texture {
    inset: auto auto 15vw -12.5vw;
    width: 88vw;
  }
}
.site-key-visual__object__sub {
  position: absolute;
  inset: auto -5vw -8vw auto;
  width: 48.125vw;
  background-color: transparent;
  z-index: -2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-key-visual__object__sub {
    inset: auto -5vw -8vw auto;
    width: 96.25vw;
  }
}
.site-key-visual__content {
  position: absolute;
  inset: auto auto 5vw 5vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-key-visual__content {
    inset: 20vw auto auto 5vw;
  }
}
.site-key-visual__tagline--main {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 1.6s ease-out, -webkit-transform 1.6s ease-out;
  transition: opacity 1.6s ease-out, -webkit-transform 1.6s ease-out;
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
  transition: opacity 1.6s ease-out, transform 1.6s ease-out, -webkit-transform 1.6s ease-out;
  z-index: 3;
}
.site-key-visual__tagline--main span {
  display: inline-block;
  width: 9vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-key-visual__tagline--main span {
    width: 12vw;
    line-height: 1.2;
  }
}
.site-key-visual__read {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin: 2em 0 0;
  padding-left: 5vw;
  z-index: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .site-key-visual__read {
    width: 90%;
    padding-left: 0;
  }
}

.js-skip .site-key-visual .site-key-visual__object,
.js-skip .site-key-visual .site-key-visual__read,
.js-skip .site-key-visual .scroll-assist,
.js-skip .site-key-visual .site-key-visual__object__texture,
.js-skip .site-key-visual .site-key-visual__tagline--main {
  -webkit-transition-duration: 0.3s !important;
          transition-duration: 0.3s !important;
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}

/* ========================================================================== */
/* Page Header */
/* ========================================================================== */
.page-header {
  position: relative;
  container-type: inline-size;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: min(13.75vw, 220px) 0 0;
  padding: 0 5%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header {
    margin: 100px 0 0;
  }
}
.page-header__wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.page-header .deco-area__wrapper--left {
  width: min(15vw, 240px);
  -webkit-transform: translate(-50%, -38%);
          transform: translate(-50%, -38%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header .deco-area__wrapper--left {
    top: 65px;
    width: min(32vw, 120px);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.page-header .deco-area__wrapper--right {
  width: min(32vw, 480px);
  inset: 0 0 auto auto;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header .deco-area__wrapper--right {
    top: 0;
    width: min(60vw, 240px);
    -webkit-transform: translate(50%, -12%);
            transform: translate(50%, -12%);
  }
}
.page-header__lead {
  margin: 40px 0 0;
}
.page-header.lower-level2 .page-header__mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 400px;
  margin: clamp(3.75rem, 2.231rem + 3.16vw, 5rem) -5vw 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-level2 .page-header__mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: none;
  }
}
.page-header.lower-level2 .page-header__mv .page-header__img {
  width: 100%;
  overflow: clip;
}
@media screen and (min-width: 481px) and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-level2 .page-header__mv .page-header__img:last-child {
    display: none;
  }
}
@media screen and (max-width: 480px) and (orientation: portrait) {
  .page-header.lower-level2 .page-header__mv .page-header__img {
    max-height: 190px;
  }
}
.page-header.lower-level2 .page-header__mv .page-header__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-header.lower-level2 .page-header__mv + .page-header__wrapper {
  z-index: 1;
}
.page-header.lower-level2 .page-header__mv + .page-header__wrapper .page-header__content {
  max-width: 1000px;
  margin-right: 11vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-level2 .page-header__mv + .page-header__wrapper .page-header__content {
    margin-right: min(20vw, 85px);
  }
}
.page-header.lower-level2 .deco-area__wrapper {
  z-index: 1;
}
.page-header.lower-level2 .deco-area__wrapper--left {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-level2 .deco-area__wrapper--left {
    top: 0;
  }
}
.page-header.lower-level2 .deco-area__wrapper--right {
  inset: auto 0 0 auto;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

/* ========================================================================== */
/* Wrapper */
/* ========================================================================== */
.page-wrapper {
  overflow-x: clip;
}

.page-section {
  position: relative;
  padding: clamp(5rem, -1.076rem + 12.66vw, 10rem) 5%;
}
.page-section.bg-sec {
  color: #ffffff;
}
.page-section.other-page .deco-area__wrapper {
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

/* content-wrapper: default */
/* -------------------------------------------------------------------------- */
.content-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.content-wrapper--wide {
  width: 100%;
  max-width: none;
}
.content-wrapper > :first-child {
  margin-top: 0;
}
.content-wrapper > :last-child {
  margin-bottom: 0;
}

/* content-wrapper: column */
/* -------------------------------------------------------------------------- */
.content-wrapper--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  max-width: 100em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .content-wrapper--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content-wrapper--column .content-wrapper__pri {
  width: 66.666%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .content-wrapper--column .content-wrapper__pri {
    width: 90%;
    overflow: hidden;
  }
}
.content-wrapper--column .content-wrapper__sec {
  width: 23.333%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .content-wrapper--column .content-wrapper__sec {
    width: 100%;
  }
}

/* About us INDEX / Job & People INDEX / Special INDEX /*/
/* -------------------------------------------------------------------------- */
.page-index {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-index {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.page-index__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 1.5em;
}
.page-index__item.row3 {
  -ms-grid-row-span: 5;
  grid-row: span 5;
}
.page-index__item.row5 {
  -ms-grid-row-span: 5;
  grid-row: span 5;
}
.page-index__image {
  aspect-ratio: 3/2;
  margin: 0 0 0.5em;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-index__image {
    border-radius: 1.25em;
  }
}
.page-index__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-index .title__en {
  font-size: clamp(2rem, 1.392rem + 1.27vw, 2.5rem);
}
.page-index .title__jp {
  margin: 0.5em 0 0;
  font-weight: 700;
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
}
.page-index__read {
  margin-bottom: 0;
}
.page-index.item-horizontal {
  display: block;
}
.page-index.item-horizontal .page-index__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
.page-index.item-horizontal .page-index__item > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page-index.item-horizontal .page-index__item > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-index.item-horizontal .page-index__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.page-index.item-horizontal .page-index__item .item-horizontal__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
      align-self: center;
  gap: 1.5em;
}

/* elements: scroll-infinity */
/* -------------------------------------------------------------------------- */
.scroll-infinity-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  visibility: visible;
}
.scroll-infinity__wrap span {
  display: inline-block;
}
.scroll-infinity--text {
  overflow: hidden;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(6.25rem, -1.345rem + 15.82vw, 12.5rem);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  color: #005dab;
  opacity: 0.05;
}
.scroll-infinity-area--top .scroll-infinity--text {
  color: #ffffff;
}
.scroll-infinity-area--bottom .scroll-infinity--text {
  opacity: 0.15;
}
.scroll-infinity--text--visible {
  margin-bottom: 0;
}
.scroll-infinity--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.scroll-infinity__item {
  width: min(38vw, 480px);
  margin-right: clamp(1rem, -0.215rem + 2.53vw, 2rem);
}
.scroll-infinity__item--small {
  width: min(38vw, 240px);
  margin-right: 1rem;
}

.scroll-infinity__list--left {
  -webkit-animation: flowing 30s linear infinite both;
          animation: flowing 30s linear infinite both;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.scroll-infinity__list--right {
  -webkit-animation: flowingReverse 50s linear infinite both;
          animation: flowingReverse 50s linear infinite both;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.scroll-infinity--text:has(+ .scroll-infinity--image) {
  margin-bottom: -0.15em;
}

.related-contents .scroll-infinity-area--top {
  position: absolute;
  inset: 0;
}
.related-contents .scroll-infinity-area--bottom {
  position: absolute;
  inset: auto auto 0 0;
}
.related-contents .scroll-infinity-area--bottom .scroll-infinity--text {
  margin-bottom: -0.15em;
}

@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes flowingReverse {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes flowingReverse {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ========================================================================== */
/* related-contents */
/* ========================================================================== */
.related-contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0;
  padding: 80px 5% 160px;
  background: -webkit-gradient(linear, left bottom, left top, from(#e5eff6), to(#005dab));
  background: linear-gradient(0deg, #e5eff6, #005dab);
  overflow: hidden;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .related-contents {
    margin-top: 40px;
    padding-bottom: min(28vw, 160px);
  }
}
.related-contents__wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .related-contents__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.related-contents__title {
  margin: 0 0 5em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .related-contents__title {
    margin-bottom: 2.5em;
    text-align: center;
  }
}
.related-contents__title h3 {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
.related-contents__btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7.8125%;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 1400px) {
  .related-contents__btn__wrapper {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .related-contents__btn__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.related-contents__btn__wrapper .button--page-link {
  width: 28.125%;
}
@media screen and (max-width: 1400px) {
  .related-contents__btn__wrapper .button--page-link {
    width: calc(33.3333333333% - 26.6666666667px);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .related-contents__btn__wrapper .button--page-link {
    width: 100%;
  }
}

/* ========================================================================== */
/* contents-link */
/* ========================================================================== */
.contents-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: clamp(5rem, -1.076rem + 12.66vw, 10rem) 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .contents-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contents-link .button--page-link {
  width: 22.5em;
}

/* ========================================================================== */
/* Home Page */
/* ========================================================================== */
.news-article__date-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-article__date-label {
    gap: 0;
  }
}
.news-article__title {
  margin-top: 0.5em;
  font-size: clamp(2.25rem, 1.339rem + 1.9vw, 3rem);
}
.news-article__body {
  margin: 8em 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-article__body {
    margin: 5em 0;
  }
}

.news-article__body > *:first-child {
  margin-top: 0;
}
.news-article__body > h2 {
  position: relative;
  margin: clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 0 2em;
  padding-left: 1.5em;
  font-size: clamp(1.5rem, 0.892rem + 1.27vw, 2rem);
  line-height: 1.75;
}
.news-article__body > h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 0.3em;
  height: 100%;
  border-radius: 0.15em;
  margin-right: 1.875em;
  background: -webkit-gradient(linear, left bottom, left top, from(#008798), to(#005dab));
  background: linear-gradient(0deg, #008798, #005dab);
}
.news-article__body > h3 {
  margin: 4rem 0 1em;
  font-size: clamp(1.375rem, 0.919rem + 0.95vw, 1.75rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-article__body > h3 {
    margin: 2.5em 0 1em;
  }
}
.news-article__body > h3 + h4 {
  margin-top: 1rem;
}
.news-article__body > h4 {
  margin: 3rem 0 1em;
}
.news-article__body a {
  color: #005dab;
  text-underline-offset: 0.8ex;
}
.news-article__body figure img {
  border-radius: 16px;
  overflow: clip;
}

.width-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  margin: 5em auto 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .width-control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.width-control > figure {
  width: 100%;
  margin-bottom: 0;
}
.width-control > figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
.width-control--w100 {
  width: 100%;
}
.width-control--w100.column-2 > * {
  width: calc(50% - clamp(2.5rem, -0.538rem + 6.33vw, 5rem) / 2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .width-control--w100.column-2 > * {
    width: 100%;
  }
}
.width-control--w100.column-3 > * {
  width: calc(33.3333333333% - clamp(2.5rem, -0.538rem + 6.33vw, 5rem) * 2 / 3);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .width-control--w100.column-3 > * {
    width: 100%;
  }
}
.width-control--w100.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.width-control--w100.align-center > figure {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.width-control--w45 {
  width: 45%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .width-control--w45 {
    width: 100%;
  }
}
.width-control--w-auto figure {
  width: auto;
}

.contact-item__title {
  margin-bottom: 0;
  font-weight: 700;
}
.contact-item__tel {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .contact-item__tel {
    font-size: 1.25rem;
  }
}

.news-article__anchor {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #005dab;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 0.8ex;
}
.news-article__anchor + .news-article__anchor {
  margin-top: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .news-article__anchor + .news-article__anchor {
    margin-top: 1em;
  }
}

/* ========================================================================== */
/* page - about */
/* ========================================================================== */
.card-number {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  aspect-ratio: 1/1.3;
  padding: 54px 0 48px;
  font-size: clamp(0.875rem, -0.458rem + 1.67vw, 1rem);
  background-color: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
          box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
}
@media screen and (max-width: 1179px) {
  .card-number {
    font-size: clamp(0.875rem, 0.642rem + 0.49vw, 1rem);
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .card-number {
    font-size: 0.875rem;
  }
}
.card-number__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(3.75rem, -22.917rem + 33.33vw, 6.25rem) 1fr clamp(3.75rem, -22.917rem + 33.33vw, 6.25rem) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(3.75rem, -22.917rem + 33.33vw, 6.25rem);
  margin-inline: auto;
}
@media screen and (max-width: 1179px) {
  .card-number__wrapper {
    grid-template-columns: repeat(auto-fit, min(50% - 30px, 360px));
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .card-number__wrapper {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    max-width: 360px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.card-number > *:first-child {
  margin-top: 0;
}
.card-number > *:last-child {
  margin-bottom: 0;
}
.card-number h4 {
  color: #005dab;
  margin: 0;
  font-size: clamp(1.125rem, 0.455rem + 0.91vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1179px) {
  .card-number h4 {
    font-size: clamp(1.125rem, 0.892rem + 0.49vw, 1.25rem);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card-number h4 {
    font-size: 1.25rem;
  }
}
.card-number__icon {
  max-width: 72.5%;
  margin: 0 auto;
}
.card-number__data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1em auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto 0 auto;
  grid-template-rows: auto auto;
  gap: 0 1em;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  font-weight: 700;
  line-height: 1;
}
.card-number__data > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.card-number__data > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.card-number__data > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.card-number__data > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.card-number__data:has(> *:only-child) {
  -ms-grid-columns: -webkit-max-content;
  -ms-grid-columns: max-content;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.card-number__data:has(> *:only-child) > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.card-number__data > .card-number__data__label,
.card-number__data > .card-number__data__num {
  margin: 0;
  padding: 0;
}
.card-number__data .card-number__data__num {
  color: #005dab;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(3.75rem, -2.955rem + 9.09vw, 5rem);
}
@media screen and (max-width: 1179px) {
  .card-number__data .card-number__data__num {
    font-size: clamp(3.75rem, 1.42rem + 4.85vw, 5rem);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card-number__data .card-number__data__num {
    font-size: 5rem;
  }
}
.card-number__data .card-number__data__num {
  letter-spacing: normal;
  text-align: right;
}
.card-number__data .card-number__data__num .data-unit {
  color: #231815;
  font-size: 0.3em;
}
.card-number__data .card-number__data__num .data-unit.unit-per {
  color: #005dab;
  font-family: "Albert Sans", sans-serif;
  font-size: 0.625em;
}
.card-number__data__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 24px;
  padding: 0 clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
}
.card-number__data__row .card-number__data {
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 0.5rem;
}
.card-number__data__row .card-number__data > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.card-number__data__row .card-number__data .card-number__data__label {
  text-align: center;
}
.card-number__data__row .card-number__data .card-number__data__num {
  font-size: clamp(2.5rem, -0.182rem + 3.64vw, 3rem);
}
@media screen and (max-width: 1179px) {
  .card-number__data__row .card-number__data .card-number__data__num {
    font-size: clamp(2.5rem, 1.568rem + 1.94vw, 3rem);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .card-number__data__row .card-number__data .card-number__data__num {
    font-size: 3rem;
  }
}
.card-number.training-num .card-number__icon {
  max-width: 21.1%;
}
.card-number.training-num .card-number__data {
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 0;
}
.card-number.training-num .card-number__data > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.card-number.training-num .card-number__data__label {
  margin-top: 0.5em;
}

.strengths-content {
  position: relative;
}
.strengths-content .page-header {
  position: fixed;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 170px min(11vw, 140px);
  background: url(../images/about/strengths/img_kv.webp) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths-content .page-header {
    position: relative;
    height: 100vw;
    padding: 22.6vw 5%;
  }
}
.strengths-content .page-header .deco-area__wrapper--left {
  top: 170px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths-content .page-header .deco-area__wrapper--left {
    top: unset;
    bottom: 0;
    width: min(32vw, 240px);
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    z-index: 1;
  }
}
.strengths-content .page-header .scroll-assist {
  inset: 50% 5vw auto auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.strengths-content .page-header .scroll-assist .scroll-assist__line {
  height: min(12vw, 90px);
}
.strengths-content .page-header .multi-title__circle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}
.strengths-content .page-header .multi-title__circle .multi-title__pri {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  line-height: 1.1;
}
.strengths-content .page-header .multi-title__circle .multi-title__pri::before {
  width: 0.84em;
  height: 0.84em;
  margin-right: 0.5em;
  font-size: inherit;
}
.strengths-content .page-header .multi-title__circle .multi-title__sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  margin-top: clamp(1.25rem, -1.788rem + 6.33vw, 3.75rem);
  font-size: clamp(0.875rem, -0.492rem + 2.85vw, 2rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths-content .page-header .multi-title__circle .multi-title__sec {
    margin-left: 0;
  }
}
.strengths-content .page-header .multi-title__circle .multi-title__sec .title__en {
  font-size: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}

.strengths-wrapper {
  position: relative;
  margin-top: 100vh;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths-wrapper {
    margin-top: 0;
  }
}
.strengths-wrapper .strengths__section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  background-color: #e5eff6;
}
.strengths-wrapper .strengths__section[data-index="2"] {
  background-color: #e5f3f4;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths-wrapper .strengths__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: calc(min(32vw, 240px) / 2 + 40px);
  }
}

.strengths__img {
  width: 37.5%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__img {
    position: relative;
    width: 100%;
  }
}
.strengths__img__viewer {
  position: sticky;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__img__viewer {
    position: unset;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.strengths__img__viewer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.strengths__img__viewer img.active {
  opacity: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__img__viewer img {
    position: unset;
  }
  .strengths__img__viewer img:not(.active) {
    display: none;
  }
}
.strengths__img .deco-area__wrapper {
  display: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__img .deco-area__wrapper {
    display: block;
    inset: auto 0 -1px auto;
    width: min(32vw, 240px);
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
    z-index: 1;
  }
  .strengths__img .deco-area__wrapper .l-bottom {
    bottom: 2px;
  }
}
.strengths__body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(7.5rem, 1.424rem + 12.66vw, 12.5rem) min(5vw, 40px);
  z-index: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__body {
    padding: calc(min(32vw, 240px) / 2 + 20px) min(5vw, 40px) 30px;
  }
}
.strengths__body__inner {
  max-width: 600px;
  margin-inline: auto;
}
.strengths__body__inner h2 {
  margin-bottom: 1.5em;
  font-size: clamp(1.5rem, 0.285rem + 2.53vw, 2.5rem);
  line-height: 1.6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__body__inner h2 {
    margin-bottom: 32px;
  }
}
.strengths__body__inner h3 {
  margin-bottom: 0.75em;
  font-size: clamp(1.25rem, 0.339rem + 1.9vw, 2rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__body__inner h3 {
    margin-bottom: 32px;
  }
}
.strengths__body__inner p + h3 {
  margin-top: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__body__inner p + h3 {
    margin-top: 60px;
  }
}
.strengths__body__text {
  position: relative;
}
.strengths__body__text > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__body__text::after {
    position: absolute;
    right: 20px;
    top: -0.25em;
    font-family: "Albert Sans", sans-serif;
    letter-spacing: normal;
    font-size: clamp(11.25rem, 9.731rem + 3.16vw, 12.5rem);
    line-height: 1;
    opacity: 0.1;
  }
  .strengths__section[data-index="1"] .strengths__body__text::after {
    content: "01";
    color: #005dab;
  }
  .strengths__section[data-index="2"] .strengths__body__text::after {
    content: "02";
    color: #008798;
  }
  .strengths__section[data-index="3"] .strengths__body__text::after {
    content: "03";
    color: #005dab;
  }
}
.strengths__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 2.5em;
  padding: 0 1.5em;
  color: #ffffff;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 3.5em;
  border-radius: 8px;
  background-color: #005dab;
  z-index: 1;
}
[data-index="2"] .strengths__label {
  background-color: #008798;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__label {
    margin-bottom: 36px;
    line-height: 2em;
  }
}
.strengths__bg, .strengths__indicator, .strengths__deco {
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: calc(100vh - 100px);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__bg, .strengths__indicator, .strengths__deco {
    display: none;
  }
}
.strengths__bg {
  right: 0;
  background: url("../images/about/strengths/bg_deco.svg") no-repeat right bottom;
  background-size: clamp(15rem, -3.228rem + 37.97vw, 30rem);
}
.strengths__indicator {
  right: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  width: 2em;
  font-family: "Albert Sans", sans-serif;
  letter-spacing: normal;
  font-size: clamp(11.25rem, 9.731rem + 3.16vw, 12.5rem);
  line-height: 1;
  opacity: 0.1;
}
.strengths__indicator__num {
  display: block;
  margin-top: 55px;
  color: #005dab;
  text-align: right;
}
.strengths__indicator__num.indicator--1 {
  color: #005dab;
}
.strengths__indicator__num.indicator--2 {
  color: #008798;
}
.strengths__indicator__num.indicator--3 {
  color: #005dab;
}
.strengths__deco {
  left: calc(37.5% - clamp(7.5rem, -1.614rem + 18.99vw, 15rem) / 2);
  width: clamp(7.5rem, -1.614rem + 18.99vw, 15rem);
}
.strengths__deco__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(13.125rem, -2.824rem + 33.23vw, 26.25rem);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.strengths__deco__item.active {
  opacity: 1;
}
.strengths__deco__content {
  position: relative;
  width: clamp(13.125rem, -2.824rem + 33.23vw, 26.25rem);
  aspect-ratio: 1.75;
  margin-left: clamp(7.5rem, -1.614rem + 18.99vw, 15rem);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.strengths__deco__content .deco--strengths {
  position: relative;
  width: 57.8%;
}
.strengths__deco__content .deco--strengths.deco--strengths--02 {
  top: -1px;
  margin-left: auto;
}
.strengths__signboard {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 100px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.strengths__signboard__sign {
  margin: 0 0 0.75em;
  font-family: "Shippori Mincho", serif;
  font-size: min(6vw, 72px);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strengths__signboard__sign {
    margin-left: 0.625em;
    font-size: min(9vw, 48px);
    text-align: center;
  }
}
.strengths__signboard__logo {
  margin: 0;
  width: 160px;
}

/* ========================================================================== */
/* page - information */
/* ========================================================================== */
.job-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(340px, auto);
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  margin: 0 0 clamp(3.5rem, 2.285rem + 2.53vw, 4.5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .job-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, auto);
  }
}
.job-list__item {
  width: 100%;
}
.job-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: clamp(1.25rem, 0.339rem + 1.9vw, 2rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  text-decoration: none;
  border-radius: 16px;
  -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.063rem, -0.229rem + 2.69vw, 2.125rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) 0px color-mix(in srgb, #231815 20%, transparent);
          box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.063rem, -0.229rem + 2.69vw, 2.125rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) 0px color-mix(in srgb, #231815 20%, transparent);
  background-color: #ffffff;
}
.job-list__item a .job-list__title {
  color: #005dab;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
}
.job-list__item a .job-list__body {
  margin-bottom: auto;
}
.job-list__item a .job-list__body > *:first-child {
  margin-top: 0;
}
.job-list__item a .job-list__body > *:last-child {
  margin-bottom: 0;
}
.job-list__item a .job-list__read {
  margin-bottom: 1em;
}
.job-list__item a .button--sec {
  margin: 16px 0 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.requirements-list {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 0 clamp(1.25rem, 0.339rem + 1.9vw, 2rem);
  border-radius: 16px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .requirements-list {
    padding: 0 1.5em;
  }
}
.requirements-list--item:not(:first-of-type) {
  border-top: 1px solid #cccccc;
}
.requirements-list .dtl-accordion__body__inner {
  padding: 0 2px clamp(2rem, 0.177rem + 3.8vw, 3.5rem);
}
.requirements-list .dtl-accordion__body__inner .js-scrollable .table--pri {
  min-width: 800px;
}

.circle-title + .circle-title__sub {
  margin-bottom: 2em;
  padding-left: clamp(1.875rem, 1.419rem + 0.95vw, 2.25rem);
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
}

.process-flow {
  position: relative;
  counter-reset: number;
}
.process-flow::before {
  content: "";
  position: absolute;
  display: block;
  left: calc(min(16vw, 120px) / 2 - clamp(0.25rem, 0.011rem + 1.02vw, 0.5rem) / 2);
  top: 5px;
  width: clamp(0.25rem, 0.011rem + 1.02vw, 0.5rem);
  height: calc(100% - 10px);
  background-color: #005dab;
  z-index: -1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow::before {
    left: 26px;
    width: 4px;
  }
}
.process-flow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.process-flow__item:not(:first-of-type) .process-flow__body {
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.process-flow__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(16vw, 120px);
  aspect-ratio: 1;
  border: 2px solid #005dab;
  border-radius: 100%;
  background-color: #ffffff;
}
.process-flow__image img {
  width: 51.6%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__image {
    width: 60px;
    margin-top: 32px;
  }
}
.process-flow__body {
  min-height: 200px;
  padding: 1.5em 0;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__body {
    min-height: 0;
    padding: 48px 10px 24px;
  }
}
.process-flow__body > *:first-child {
  margin-top: 0;
}
.process-flow__body > *:last-child {
  margin-bottom: 0;
}
.process-flow__title {
  position: relative;
  margin: 0 0 0.75em;
  padding: 0 0 0 2.25em;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
}
.process-flow__title::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: #d85910;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.1;
}

.process-flow__item:first-of-type::before,
.process-flow__item:last-of-type::before {
  content: "";
  position: absolute;
  display: block;
  left: calc(min(16vw, 120px) / 2 - clamp(0.25rem, 0.011rem + 1.02vw, 0.5rem) / 2);
  width: clamp(0.25rem, 0.011rem + 1.02vw, 0.5rem);
  height: 50%;
  background-color: #ffffff;
  z-index: -1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__item:first-of-type::before,
  .process-flow__item:last-of-type::before {
    width: 4px;
    left: 26px;
  }
}

.process-flow__item:first-of-type::before {
  top: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__item:first-of-type::before {
    content: none;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__item:first-of-type .process-flow__image {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__item:first-of-type .process-flow__body {
    padding-top: 16px;
  }
}

.process-flow__item:last-of-type::before {
  bottom: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__item:last-of-type::before {
    height: calc(100% - 62px);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .process-flow__item:last-of-type .process-flow__body {
    padding-bottom: 0;
  }
}

.faq-list {
  counter-reset: faq-num;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 0 clamp(1.25rem, 0.339rem + 1.9vw, 2rem);
  margin: 2.5em 0 0;
  border-radius: 16px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .faq-list {
    padding: 0 1.5em;
  }
}
.faq-list__q, .faq-list__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem) 0;
}
.faq-list__q .faq-list--item__wrap, .faq-list__a .faq-list--item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}
.faq-list__q .faq-list--item__wrap::before, .faq-list__a .faq-list--item__wrap::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5em;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Albert Sans", sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
  text-align: center;
}
.faq-list__q {
  min-height: 6.25em;
  counter-increment: faq-num;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .faq-list__q {
    min-height: 0;
  }
}
.faq-list__q .faq-list--item__wrap::before {
  content: "Q" counter(faq-num);
  color: #005dab;
}
.faq-list__a .faq-list--item__wrap::before {
  content: "A" counter(faq-num);
  color: #d85910;
}
.faq-list__anchor {
  margin: 1.5em 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px clamp(1.5rem, -0.93rem + 5.06vw, 3.5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .faq-list__anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ========================================================================== */
/* page - interview */
/* ========================================================================== */
.interview-list__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(3.125rem, -0.672rem + 7.91vw, 6.25rem);
}
.interview-list__item {
  position: relative;
  display: block;
  width: calc(33.3333333333% - clamp(3.125rem, -0.672rem + 7.91vw, 6.25rem) * 2 / 3);
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: default;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-list__item {
    width: 100%;
    font-size: 0.875rem;
    -webkit-transform: scale(1) translate(0, 0) !important;
            transform: scale(1) translate(0, 0) !important;
  }
}
.interview-list__anchor {
  display: inline-block;
  color: #231815;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.interview-list__image {
  position: relative;
  border-radius: 16px;
  overflow: clip;
}
.interview-list__image img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: scale;
  transition-property: scale;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.interview-list__category {
  position: relative;
  width: 8.75em;
  height: 2.5em;
  margin: -2.5em 0 0 auto;
  color: #ffffff;
  background-color: #005dab;
  border-radius: 16px 0 16px 0;
  -webkit-transform: translate(1px, 0);
          transform: translate(1px, 0);
  z-index: 1;
}
.interview-list__category__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.interview-list__category__wrapper::before, .interview-list__category__wrapper::after {
  position: absolute;
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-image: url(../images/common/dec-blue_type-a_01.svg);
}
.interview-list__category__wrapper::before {
  inset: -0.5em 0 auto auto;
}
.interview-list__category__wrapper::after {
  inset: auto auto 0 -0.5em;
}
.interview-list__content {
  margin-top: 1.5em;
}
.interview-list__title {
  font-size: clamp(0.875rem, 0.116rem + 1.58vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .interview-list__title {
    font-size: 1.5rem;
  }
}
.interview-list__title::after {
  display: none !important;
}
.interview-list__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5em;
  text-decoration: none;
}
.interview-list__profile__text > *:last-child {
  margin-bottom: 0;
}
.interview-list__profile.button--sec {
  color: inherit;
}

.isnt-touch .interview-list__anchor:hover .interview-list__image img {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}
.isnt-touch .interview-list__anchor:hover .interview-list__category {
  color: color-mix(in srgb, #ffffff 50%, transparent);
}
.isnt-touch .interview-list__anchor:hover .interview-list__profile.button--sec:after {
  margin-left: 0.5em;
}

.isnt-touch .page-section--interview .interview-list__anchor:hover {
  color: color-mix(in srgb, #ffffff 50%, transparent);
}
.isnt-touch .page-section--interview .interview-list__anchor:hover .interview-list__profile.button--sec:after {
  opacity: 0.5;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview {
    margin-top: 80px;
  }
}
.page-header.lower-interview .page-header__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 43.75% 56.25%;
  grid-template-columns: 43.75% 56.25%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .page-header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-header.lower-interview .page-header__content .multi-title__circle {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  -ms-grid-row-align: self-start;
      align-self: self-start;
  z-index: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .page-header__content .multi-title__circle {
    height: 60px;
    padding: 20px 0 0 50px;
  }
}
.page-header.lower-interview .page-header__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/4/3;
  position: relative;
  margin-top: calc(clamp(1.25rem, -3.307rem + 9.49vw, 5rem) * -1);
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .page-header__image {
    margin-top: 0;
  }
}
.page-header.lower-interview .page-header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-header.lower-interview .page-header__body {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 3/1/4/2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: auto;
  z-index: 1;
}
.page-header.lower-interview .page-header__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
  margin: 20px 0;
  z-index: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .page-header__title {
    -ms-flex-item-align: baseline;
        align-self: baseline;
    margin: -2.6em 0 0;
    height: calc(30vw + 2.6em + 40px);
    max-height: calc(120px + 2.6em + 40px);
  }
}
.page-header.lower-interview .page-header__title .marker-title {
  max-width: 100cqb;
}
.page-header.lower-interview .member-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: auto 0 0 clamp(1rem, -0.367rem + 2.85vw, 2.125rem);
  padding: 0 40px 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .member-profile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 12px 24px;
    padding-right: 0;
  }
}
.page-header.lower-interview .member-profile > * {
  margin: 0;
}
.page-header.lower-interview .member-profile__label {
  width: 100%;
  margin: 0 0 1.25em;
  font-size: 1rem;
  font-weight: 700;
  line-height: clamp(2.25rem, 1.339rem + 1.9vw, 3rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .member-profile__label {
    margin-bottom: 8px;
  }
}
.page-header.lower-interview .member-profile__label span {
  display: inline-block;
  min-width: 10em;
  padding: 0 1em;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  background-color: #005dab;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .member-profile__label span {
    min-width: 0;
  }
}
.page-header.lower-interview .member-profile__name {
  font-size: 1rem;
  font-weight: 700;
}
.page-header.lower-interview .member-profile__name small {
  font-size: 0.75rem;
}
.page-header.lower-interview .member-profile__dept {
  margin-top: 1em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .member-profile__dept {
    width: 100%;
    margin-top: 4px;
  }
}
.page-header.lower-interview .scroll-infinity-area {
  position: absolute;
  inset: auto auto 0 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .scroll-infinity-area {
    inset: 0 auto auto 0;
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
  }
}
.page-header.lower-interview .deco-area__wrapper--right {
  inset: auto 0 0 auto;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .deco-area__wrapper--right {
    inset: 0 0 auto auto;
    top: calc(60px + 100cqw);
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
.page-header.lower-interview .deco-area__wrapper--left {
  width: min(32vw, 480px);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-interview .deco-area__wrapper--left {
    width: 120px;
    top: 0;
    z-index: 1;
  }
}
@media screen and (min-width: 769px) {
  .page-header.lower-interview + .page-section {
    padding-top: clamp(8.75rem, -1.883rem + 22.15vw, 17.5rem);
  }
}

.box-member {
  margin: clamp(5rem, -1.076rem + 12.66vw, 10rem) 0 0;
}
.box-member__title__pri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px clamp(1.875rem, -0.403rem + 4.75vw, 3.75rem);
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box-member__title__pri {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.box-member__title__pri .title__en {
  font-size: clamp(1.25rem, -0.877rem + 4.43vw, 3rem);
}
.box-member__title__pri .title__jp {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
}
* + .box-member__title__pri {
  margin-top: clamp(3.75rem, 0.104rem + 7.59vw, 6.75rem);
}
.box-member__title__sec {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  line-height: 1.6;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box-member__title__sec {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.box-member__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin: 0 0 clamp(1.75rem, 0.231rem + 3.16vw, 3rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box-member__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.box-member__head .box-member__title__pri {
  margin-bottom: 0;
}
.box-member__head .member-schedule__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, 0.339rem + 1.9vw, 2rem);
  margin-left: auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box-member__head .member-schedule__desc {
    margin-left: 0;
  }
}
.box-member__head .member-schedule__desc .schedule__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.box-member__head .member-schedule__desc .schedule__desc::before {
  content: "";
  display: block;
  width: clamp(1.25rem, 0.491rem + 1.58vw, 1.875rem);
  aspect-ratio: 1;
  border: 1px solid #cccccc;
}
.box-member__head .member-schedule__desc .schedule__desc.desc-01::before {
  background-color: #ffffa6;
}
.box-member__head .member-schedule__desc .schedule__desc.desc-02::before {
  background-color: #c2eaba;
}
.box-member .box__wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .box-member .box__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.box-member .box__wrapper .box__wrapper__text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.member-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .member-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.member-content__wrapper {
  counter-reset: member-q;
}
.member-content__wrapper > *:first-child {
  margin-top: 0;
}
.member-content__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 40px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .member-content__image {
    aspect-ratio: 3/2;
  }
  .member-content__image.image--switch > * {
    opacity: 0;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  .member-content__image.image-2 > * {
    -webkit-animation-name: css-image-switch-fade-num2;
            animation-name: css-image-switch-fade-num2;
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
  }
  .member-content__image.image-3 > * {
    -webkit-animation-name: css-image-switch-fade-num3;
            animation-name: css-image-switch-fade-num3;
    -webkit-animation-duration: 15s;
            animation-duration: 15s;
  }
  .member-content__image.image-4 > * {
    -webkit-animation-name: css-image-switch-fade-num4;
            animation-name: css-image-switch-fade-num4;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
  }
  .member-content__image.image-5 > * {
    -webkit-animation-name: css-image-switch-fade-num5;
            animation-name: css-image-switch-fade-num5;
    -webkit-animation-duration: 25s;
            animation-duration: 25s;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .member-content__image--item {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
  }
  .member-content__image--item:nth-of-type(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .member-content__image--item:nth-of-type(2) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
  }
  .member-content__image--item:nth-of-type(3) {
    -webkit-animation-delay: 10s;
            animation-delay: 10s;
  }
  .member-content__image--item:nth-of-type(4) {
    -webkit-animation-delay: 15s;
            animation-delay: 15s;
  }
  .member-content__image--item:nth-of-type(5) {
    -webkit-animation-delay: 20s;
            animation-delay: 20s;
  }
}
.member-content__text {
  width: 56.25%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .member-content__text {
    width: 100%;
  }
}
.member-content__text > *:first-child {
  margin-top: 0;
}
.member-content__text > *:last-child {
  margin-bottom: 0;
}
.member-content__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: member-q;
  gap: clamp(1rem, -0.823rem + 3.8vw, 2.5rem);
  margin: clamp(1.875rem, -4.201rem + 12.66vw, 6.875rem) 0 2em;
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  line-height: 2;
}
.member-content__q::before {
  content: "Q" counter(member-q);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(2.5rem, 0.981rem + 3.16vw, 3.75rem);
  aspect-ratio: 1;
  color: #005dab;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.1;
  border: 1px solid #005dab;
  border-radius: 100%;
}

table.member-schedule {
  table-layout: fixed;
  width: 100%;
  min-width: 960px;
  font-size: clamp(0.75rem, -0.583rem + 1.67vw, 0.875rem);
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #cccccc;
  border-radius: 16px;
  overflow: hidden;
}
table.member-schedule th,
table.member-schedule td {
  padding: 0.5em;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background-color: #ffffff;
}
table.member-schedule th {
  font-weight: 400;
  letter-spacing: normal;
}
table.member-schedule tr > *:first-child {
  border-left: none;
}
table.member-schedule tr > td:first-of-type {
  border-left: 1px solid #cccccc;
}
table.member-schedule thead th {
  height: 60px;
  font-size: clamp(1.25rem, -1.417rem + 3.33vw, 1.5rem);
  font-weight: 700;
  background-color: #f5f5f5;
}
table.member-schedule thead th:first-of-type {
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(0.875rem, -0.458rem + 1.67vw, 1rem);
  font-weight: 400;
}
table.member-schedule tbody th {
  height: 70px;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(0.875rem, -0.458rem + 1.67vw, 1rem);
}
table.member-schedule tbody td:not([rowspan]) {
  height: 35px;
}
table.member-schedule tbody tr:last-child th,
table.member-schedule tbody tr:last-child td {
  border-bottom: none;
}

@-webkit-keyframes css-image-switch-fade-num2 {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes css-image-switch-fade-num2 {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes css-image-switch-fade-num3 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes css-image-switch-fade-num3 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes css-image-switch-fade-num4 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes css-image-switch-fade-num4 {
  0% {
    opacity: 0;
  }
  7.5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes css-image-switch-fade-num5 {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes css-image-switch-fade-num5 {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ========================================================================== */
/* page - environment */
/* ========================================================================== */
.page-index__crosstalk {
  position: relative;
  margin-top: clamp(5rem, -1.076rem + 12.66vw, 10rem);
}
.page-index__crosstalk::before {
  content: "";
  position: absolute;
  display: block;
  left: calc(50% - 50vw);
  top: 0;
  width: 100vw;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 135, 152, 0)), color-stop(40%, rgb(0, 93, 171)), color-stop(70%, rgb(0, 135, 152)), to(rgba(0, 135, 152, 0)));
  background-image: linear-gradient(180deg, rgba(0, 135, 152, 0) 0%, rgb(0, 93, 171) 40%, rgb(0, 135, 152) 70%, rgba(0, 135, 152, 0) 100%);
  z-index: -1;
}
.page-index__crosstalk .page-index,
.page-index__crosstalk .page-index .title__en {
  color: #ffffff;
}

.page-header.lower-environment, .page-header.lower-business {
  margin-bottom: min(12.5vw, 200px);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment, .page-header.lower-business {
    margin-top: 80px;
    margin-bottom: max(16vw, 120px);
  }
}
.page-header.lower-environment .deco-area__wrapper--right, .page-header.lower-business .deco-area__wrapper--right {
  width: min(16vw, 240px);
  min-width: 120px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .deco-area__wrapper--right, .page-header.lower-business .deco-area__wrapper--right {
    right: -5vw;
  }
}
.page-header.lower-environment .deco-area__wrapper--left, .page-header.lower-business .deco-area__wrapper--left {
  inset: auto auto 0 0;
  width: min(32vw, 480px);
  min-width: 240px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .deco-area__wrapper--left, .page-header.lower-business .deco-area__wrapper--left {
    left: -5vw;
  }
}
.page-header.lower-environment .scroll-infinity-area, .page-header.lower-business .scroll-infinity-area {
  position: absolute;
  inset: 0 auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .scroll-infinity-area, .page-header.lower-business .scroll-infinity-area {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
  }
}
.page-header.lower-environment .multi-title__circle, .page-header.lower-business .multi-title__circle {
  height: clamp(3.125rem, 2.366rem + 1.58vw, 3.75rem);
  margin: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .multi-title__circle, .page-header.lower-business .multi-title__circle {
    padding: 4px 0 0;
  }
}
.page-header.lower-environment .page-header__category, .page-header.lower-business .page-header__category {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 32px 0 0;
  padding: 1.05em clamp(1.75rem, 1.446rem + 0.63vw, 2rem);
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  z-index: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .page-header__category, .page-header.lower-business .page-header__category {
    padding: 0.75em 1em 0.75em 0;
    border-radius: 0 0 8px 0;
  }
}
.page-header.lower-environment .page-header__category::before, .page-header.lower-environment .page-header__category::after, .page-header.lower-business .page-header__category::before, .page-header.lower-business .page-header__category::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  width: 16px;
  height: 16px;
  background: url(../images/common/dec-white_type-b_01.svg) no-repeat center;
  background-size: contain;
}
.page-header.lower-environment .page-header__category::before, .page-header.lower-business .page-header__category::before {
  left: -16px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .page-header__category::before, .page-header.lower-business .page-header__category::before {
    content: none;
  }
}
.page-header.lower-environment .page-header__category::after, .page-header.lower-business .page-header__category::after {
  right: -16px;
}
.page-header.lower-environment .page-header__category__inner, .page-header.lower-business .page-header__category__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem);
}
@media screen and (max-width: 560px) and (orientation: portrait) {
  .page-header.lower-environment .page-header__category__inner, .page-header.lower-business .page-header__category__inner {
    max-width: 21em;
  }
}
.page-header.lower-environment .page-header__category__inner > *, .page-header.lower-business .page-header__category__inner > * {
  display: inline-block;
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
}
.page-header.lower-environment .page-header__category .title__en, .page-header.lower-business .page-header__category .title__en {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem);
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
}
.page-header.lower-environment .page-header__category .title__en::after, .page-header.lower-business .page-header__category .title__en::after {
  content: "";
  display: block;
  width: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem);
  height: 1px;
  background-color: #005dab;
}
.page-header.lower-environment .page-header__title, .page-header.lower-business .page-header__title {
  position: absolute;
  top: calc(100% - clamp(1.5rem, -0.323rem + 3.8vw, 3rem) * 1.7 * 1.5);
  z-index: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .page-header__title, .page-header.lower-business .page-header__title {
    top: calc(100% - 60px);
  }
}
.page-header.lower-environment .page-header__mv, .page-header.lower-business .page-header__mv {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 0 2.5vw;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .page-header__mv, .page-header.lower-business .page-header__mv {
    margin: 0;
    padding: 0;
  }
}
.page-header.lower-environment .page-header__mv .page-header__img, .page-header.lower-business .page-header__mv .page-header__img {
  position: relative;
  max-height: 630px;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment .page-header__mv .page-header__img, .page-header.lower-business .page-header__mv .page-header__img {
    aspect-ratio: 1;
  }
}
.page-header.lower-environment .page-header__mv .page-header__img img, .page-header.lower-business .page-header__mv .page-header__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-header.lower-environment:has(+ .talk-member), .page-header.lower-business:has(+ .talk-member) {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment:has(.ar-sp-3-2) .page-header__title, .page-header.lower-business:has(.ar-sp-3-2) .page-header__title {
    top: calc(100% - 36px);
  }
}

.growthstory-wrapper {
  counter-reset: gs-num;
}
.growthstory-wrapper .growthstory-box {
  counter-increment: gs-num;
  padding: 0;
  background-size: clamp(7.5rem, -1.614rem + 18.99vw, 15rem) auto;
}
.growthstory-wrapper .growthstory-box::after {
  content: counter(gs-num, decimal-leading-zero);
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 2em;
  aspect-ratio: 1;
  padding: 0 clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) 0 0;
  color: #005dab;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(3.75rem, -0.807rem + 9.49vw, 7.5rem);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  text-align: right;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20480%20240%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23ffffff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M360%2C0c0%2C66.2-53.6%2C120-120%2C120S120%2C66.4%2C120%2C0H0c0%2C132.6%2C107.4%2C240%2C240%2C240S480%2C132.6%2C480%2C0h-120Z%22%2F%3E%3C%2Fsvg%3E") no-repeat left top;
  background-size: auto 100%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box::after {
    background-image: none;
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger {
  position: relative;
  padding: clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 5% clamp(3rem, 0.57rem + 5.06vw, 5rem);
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  font-size: clamp(1rem, -0.215rem + 2.53vw, 2rem);
  -webkit-transform: translate(-50%, 50%) rotate(180deg);
          transform: translate(-50%, 50%) rotate(180deg);
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 21.4% 40px auto;
  grid-template-columns: 21.4% auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0 40px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner {
    -ms-grid-columns: 120px 20px 1fr;
    grid-template-columns: 120px 1fr;
    gap: 0 20px;
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .dtl-accordion__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 1/1/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  margin: 0 0 clamp(2rem, 1.013rem + 2.06vw, 2.813rem);
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  line-height: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .dtl-accordion__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .dtl-accordion__title .title__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  font-size: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .dtl-accordion__title .title__en {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .dtl-accordion__title .title__en::after {
  content: "";
  display: block;
  width: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  height: 1px;
  background-color: #005dab;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .dtl-accordion__title .title__en::after {
    width: 1px;
    height: 20px;
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .dtl-accordion__title .title__jp {
  color: #231815;
  font-size: inherit;
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/4/2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__desc {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__desc {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
    -ms-grid-row-align: center;
        align-self: center;
    font-size: clamp(0.688rem, 0.509rem + 0.76vw, 0.875rem);
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__text {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 3/2/4/3;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__text {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3;
    margin-top: 32px;
  }
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__text h3 {
  margin: 0 0 24px;
  color: #005dab;
  font-size: clamp(1.5rem, 0.892rem + 1.27vw, 2rem);
  line-height: 1.5;
}
.growthstory-wrapper .growthstory-box .dtl-accordion__trigger__inner .growthstory-box__text > *:last-child {
  margin-bottom: 0;
}
.growthstory-wrapper .growthstory-box .dtl-accordion__body__inner {
  padding: clamp(3rem, 0.57rem + 5.06vw, 5rem) 5% clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .growthstory-wrapper .growthstory-box .dtl-accordion__body__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.growthstory-wrapper .growthstory-box:not(:first-child) {
  margin-top: 80px;
}
.growthstory-wrapper .growthstory-box[open] .dtl-accordion__trigger::after {
  -webkit-transform: translate(-50%, 50%) rotate(90deg);
          transform: translate(-50%, 50%) rotate(90deg);
}

.story-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  z-index: 1;
}
.story-list::before {
  content: "";
  position: absolute;
  display: block;
  left: calc(clamp(5rem, -1.076rem + 12.66vw, 10rem) / 2 - clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) / 2);
  top: 10px;
  width: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  height: calc(100% - 10px);
  background-color: #ffffff;
  z-index: -1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .story-list::before {
    left: calc(50% - 10px);
  }
}
.story-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .story-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.story-list__item:last-child::before {
  content: "";
  position: absolute;
  display: block;
  left: calc(clamp(5rem, -1.076rem + 12.66vw, 10rem) / 2 - clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) / 2);
  bottom: 0;
  width: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  height: calc(100% - clamp(5rem, -1.076rem + 12.66vw, 10rem) + 10px);
  background-color: #e5eff6;
  z-index: -1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .story-list__item:last-child::before {
    content: none;
  }
}
.story-list__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(5rem, -1.076rem + 12.66vw, 10rem);
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #ffffff;
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  background-color: #005dab;
  border-radius: 100%;
}
.story-list__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px clamp(2rem, 1.392rem + 1.27vw, 2.5rem);
  color: #ffffff;
  background-color: #005dab;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .story-list__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 40px 20px 32px;
    border-radius: 0;
  }
}
.story-list__body::after {
  content: "";
  position: absolute;
  display: block;
  inset: auto 0 0 auto;
  width: clamp(7.5rem, -1.614rem + 18.99vw, 15rem);
  aspect-ratio: 1;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20480%20240%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23ffffff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M360%2C0c0%2C66.2-53.6%2C120-120%2C120S120%2C66.4%2C120%2C0H0c0%2C132.6%2C107.4%2C240%2C240%2C240S480%2C132.6%2C480%2C0h-120Z%22%2F%3E%3C%2Fsvg%3E") no-repeat left top;
  background-size: auto 100%;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .story-list__body::after {
    inset: 0 0 auto auto;
    -webkit-transform: none;
            transform: none;
  }
}
.story-list__text {
  position: relative;
  width: 50%;
  z-index: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .story-list__text {
    width: auto;
  }
}
.story-list__text > *:last-child {
  margin-bottom: 0;
}
.story-list__image {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 1;
}

.story-list__item:nth-child(even) .story-list__label,
.story-list__item:nth-child(even) .story-list__body {
  background-color: #008798;
}

.talk-member {
  padding: clamp(2rem, -1.038rem + 6.33vw, 4.5rem) 5% clamp(3rem, 1.177rem + 3.8vw, 4.5rem);
  background-size: clamp(7.5rem, -1.614rem + 18.99vw, 15rem) auto;
}
.talk-member__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-member__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .talk-member__title .note {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.talk-member__title > * {
  margin: 0;
}
.talk-member__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.talk-member__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(2.5rem, 0.981rem + 3.16vw, 3.75rem) 1fr clamp(2.5rem, 0.981rem + 3.16vw, 3.75rem) 1fr clamp(2.5rem, 0.981rem + 3.16vw, 3.75rem) 1fr clamp(2.5rem, 0.981rem + 3.16vw, 3.75rem) 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(2.5rem, 0.981rem + 3.16vw, 3.75rem);
  margin: clamp(3rem, 1.177rem + 3.8vw, 4.5rem) auto 0;
}
@media screen and (min-width: 769px) {
  .talk-member__list:has(> *:first-child:nth-last-child(4)) {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    max-width: 1012px;
  }
  .talk-member__list:has(> *:first-child:nth-last-child(3)) {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    max-width: 744px;
  }
  .talk-member__list:has(> *:first-child:nth-last-child(2)) {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    max-width: 476px;
  }
  .talk-member__list:has(> *:only-child) {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    max-width: 208px;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-member__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.talk-member__list p {
  margin: 0;
}
.talk-member__list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 16px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-member__list__item {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    -ms-grid-columns: 120px 20px 1fr;
    grid-template-columns: 120px 1fr;
    gap: 16px 20px;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-member__list__item .member-desc {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    font-size: clamp(0.688rem, 0.509rem + 0.76vw, 0.875rem);
  }
}
.talk-member__list__item .member-name {
  margin: 6px 0 12px;
  color: #005dab;
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-member__list__item .member-name {
    margin-top: 0;
  }
}
.talk-member__list__item .member-year {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-member__list__item .member-profile {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
}

.section-talk {
  padding-bottom: clamp(10rem, 3.924rem + 12.66vw, 15rem);
}

.talk-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(min(15vw, 240px) + 40px);
    margin-left: 0;
  }
}
.talk-content__image {
  position: relative;
  width: 44.5%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-content__image {
    width: 100%;
  }
}
.talk-content__image__item {
  border-radius: 0 16px 16px 0;
  overflow: clip;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-content__image__item {
    border-radius: 16px;
  }
}
.talk-content__image .deco-area__wrapper {
  inset: auto auto 0 0;
  width: min(32vw, 240px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.talk-content__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.talk-content__body .talk-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
}
.talk-content__body .talk-item__thumb {
  width: clamp(4.5rem, 3.892rem + 1.27vw, 5rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.talk-content__body .talk-item__thumb .thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: clip;
}
.talk-content__body .talk-item__thumb .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transform-origin: 50% 5%;
          transform-origin: 50% 5%;
}
.talk-content__body .talk-item__thumb .name {
  margin-top: 0.25em;
  color: #005dab;
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(0.688rem, 0.308rem + 0.79vw, 1rem);
  letter-spacing: normal;
  text-align: center;
}
.talk-content__body .talk-item__balloon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: clamp(0.75rem, -0.161rem + 1.9vw, 1.5rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  border-radius: 8px;
  background-color: #e5eff6;
}
.talk-content__body .talk-item__balloon::after {
  content: "";
  position: absolute;
  display: block;
  left: calc((clamp(0.938rem, -0.202rem + 2.37vw, 1.875rem) - 2px) * -1);
  top: clamp(0.938rem, -0.202rem + 2.37vw, 1.875rem);
  width: clamp(0.938rem, -0.202rem + 2.37vw, 1.875rem);
  aspect-ratio: 3/2;
  background-color: #e5eff6;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.talk-content__body .talk-item__balloon > *:last-child {
  margin-bottom: 0;
}
.talk-content__body .talk-item__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  aspect-ratio: 2;
  color: #ffffff;
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  background-color: #005dab;
  border-radius: 8px;
}
.talk-content__body .talk-item__badge + .talk-item__balloon::after {
  top: 20px;
}
.talk-content__body .talk-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-content__body .talk-item:has(.talk-item__text) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .section-talk.is-story .multi-title__ter.c-ter + .talk-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: 0;
    margin-right: calc(50% - 50vw);
  }
  .section-talk.is-story .multi-title__ter.c-ter + .talk-content .talk-content__image .talk-content__image__item {
    border-radius: 16px 0 0 16px;
  }
  .section-talk.is-story .multi-title__ter.c-ter + .talk-content .talk-content__image .deco-area__wrapper {
    inset: auto 0 0 auto;
    -webkit-transform: scaleX(-1) translate(-50%, 50%);
            transform: scaleX(-1) translate(-50%, 50%);
  }
}
.section-talk.is-story .multi-title__ter.c-ter + .talk-content .talk-content__body .talk-item__badge {
  background-color: #008798;
}
@media screen and (min-width: 769px) {
  .section-talk.is-story:has(.content-wrapper > .talk-content:first-of-type:nth-last-of-type(even)) + .page-section.other-page .deco-area__wrapper {
    inset: 0 auto auto 0;
    -webkit-transform: scaleX(-1) translate(50%, -50%);
            transform: scaleX(-1) translate(50%, -50%);
  }
  .section-talk.is-story:has(.content-wrapper > .talk-content:first-of-type:nth-last-of-type(even)) + .page-section.other-page .deco-area__wrapper .deco-area__content .r-bottom {
    display: none;
  }
}

.talk-img__wide {
  aspect-ratio: 2.415;
  margin: 48px 0 0;
  border-radius: 16px;
  overflow: clip;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .talk-img__wide {
    margin: 48px -5vw 0;
    border-radius: 0;
  }
}
.talk-img__wide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.other-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  margin: clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .other-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.other-contents__image {
  width: 56.25%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .other-contents__image {
    width: 100%;
  }
}
.other-contents__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .other-contents__body .title__en__fz-20 {
    margin-bottom: 1em;
  }
}
.other-contents__body .title__jp {
  margin-bottom: 1.125em;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
}
.other-contents__body .button--pri {
  margin-top: 2em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .other-contents__body .button--pri {
    width: 22.5em;
    margin-inline: auto;
  }
}
.other-contents + .contents-link {
  margin-top: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-header.lower-environment:has(+ .page-section .branch-map) .page-header__img img {
    -o-object-position: 44% center;
       object-position: 44% center;
  }
}

.page-section:has(.branch-map) {
  padding-top: 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .page-section:has(.branch-map) {
    padding-top: 50px;
  }
}

.branch-map {
  display: -ms-grid;
  display: grid;
  grid-row-gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  -ms-grid-columns: 28.125% 62.5%;
  grid-template-columns: 28.125% 62.5%;
  -ms-grid-rows: 1fr clamp(2.5rem, -0.538rem + 6.33vw, 5rem) auto;
  grid-template-rows: 1fr auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.branch-map > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.branch-map > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.branch-map > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.branch-map > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.branch-map__lead {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: min(8vw, 100px);
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__lead {
    width: auto;
    margin-top: 0;
  }
}
.branch-map__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__buttons {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.branch-map__buttons > .button--pri {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(1rem, -0.215rem + 2.53vw, 2rem);
  width: 100%;
}
.branch-map__buttons > .button--pri::after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.branch-map__canvas {
  position: relative;
  aspect-ratio: 0.926;
  background: url(../images/environment/branch/map.svg) no-repeat left bottom;
  background-size: contain;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas {
    grid-area: auto;
  }
}
.branch-map__canvas .map-marker {
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.branch-map__canvas .map-marker .marker-icon {
  display: block;
  width: clamp(2rem, 1.392rem + 1.27vw, 2.5rem);
  aspect-ratio: 40/55;
  background: url(../images/environment/branch/map_marker.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker .marker-icon {
    width: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  }
}
.branch-map__canvas .map-marker.marker-hokkaido {
  inset: auto auto 82.06% calc(74.375% - clamp(2rem, 1.392rem + 1.27vw, 2.5rem) / 2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker.marker-hokkaido {
    left: calc(74.375% - clamp(1rem, 0.046rem + 4.07vw, 2rem) / 2);
  }
}
.branch-map__canvas .map-marker.marker-tokyo {
  inset: auto auto 29.398% calc(66% - clamp(2rem, 1.392rem + 1.27vw, 2.5rem) / 2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker.marker-tokyo {
    left: calc(66% - clamp(1rem, 0.046rem + 4.07vw, 2rem) / 2);
  }
}
.branch-map__canvas .map-marker.marker-tokyo .marker-name {
  left: 0;
  right: unset;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.branch-map__canvas .map-marker.marker-yokohama {
  inset: auto auto 27.431% calc(65.25% - clamp(2rem, 1.392rem + 1.27vw, 2.5rem) / 2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker.marker-yokohama {
    left: calc(65.25% - clamp(1rem, 0.046rem + 4.07vw, 2rem) / 2);
  }
}
.branch-map__canvas .map-marker.marker-yokohama .marker-name {
  inset: auto auto -2.5em 50%;
}
.branch-map__canvas .map-marker.marker-chubu {
  inset: auto auto 26.852% calc(49% - clamp(2rem, 1.392rem + 1.27vw, 2.5rem) / 2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker.marker-chubu {
    left: calc(49% - clamp(1rem, 0.046rem + 4.07vw, 2rem) / 2);
  }
}
.branch-map__canvas .map-marker.marker-kansai {
  inset: auto auto 24.537% calc(39% - clamp(2rem, 1.392rem + 1.27vw, 2.5rem) / 2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker.marker-kansai {
    left: calc(39% - clamp(1rem, 0.046rem + 4.07vw, 2rem) / 2);
  }
}
.branch-map__canvas .map-marker.marker-kansai .marker-name {
  inset: auto auto -2.5em 50%;
}
.branch-map__canvas .map-marker.marker-kyushu {
  inset: auto auto 18.403% calc(7.5% - clamp(2rem, 1.392rem + 1.27vw, 2.5rem) / 2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker.marker-kyushu {
    left: calc(7.5% - clamp(1rem, 0.046rem + 4.07vw, 2rem) / 2);
  }
}
.branch-map__canvas .map-marker .marker-name {
  position: absolute;
  display: block;
  top: -2.5em;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 0.75em;
  color: #ffffff;
  font-size: clamp(0.75rem, 0.142rem + 1.27vw, 1.25rem);
  font-weight: 700;
  line-height: 2;
  background-color: #005dab;
  border-radius: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-map__canvas .map-marker .marker-name {
    font-size: clamp(0.688rem, 0.031rem + 2.8vw, 1.375rem);
  }
}

.isnt-touch .map-marker:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.branch-introduction__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  margin: clamp(5rem, -2.291rem + 15.19vw, 11rem) 0 1.5em;
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
}
@media screen and (max-width: 1540px) {
  .branch-introduction__title {
    margin-left: calc(120px - 5vw + 10px);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-introduction__title {
    margin-left: min(13.5vw, 90px);
  }
}
.branch-introduction__title .title__en {
  color: #005dab;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(2.5rem, -0.538rem + 6.33vw, 5rem);
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1;
}
.branch-introduction__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 56.25% 37.5%;
  grid-template-columns: 56.25% 37.5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-introduction__main {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    gap: 1.5em;
  }
}
.branch-introduction__main > * {
  margin-bottom: 0;
}
.branch-introduction__main__image {
  position: relative;
}
.branch-introduction__main__image img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  overflow: clip;
}
.branch-introduction__main__image figcaption {
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
}
.branch-introduction__main__image > *:last-child {
  margin-bottom: 0;
}
.branch-introduction__main__text > *:first-child {
  margin-top: 0;
}
.branch-introduction__main__text > *:last-child {
  margin-bottom: 0;
}
.branch-introduction__main__text .address {
  margin-top: 3em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-introduction__main__text .address {
    margin-top: 2em;
  }
}
.branch-introduction__main__text .button--sec {
  margin-top: 2em;
}
.branch-introduction__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(2rem, -3.165rem + 10.76vw, 6.25rem) 1fr clamp(2rem, -3.165rem + 10.76vw, 6.25rem) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, -3.165rem + 10.76vw, 6.25rem);
  margin: clamp(2.5rem, 0.677rem + 3.8vw, 4rem) 0 0;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .branch-introduction__gallery {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    margin-top: 2rem;
  }
}
.branch-introduction__gallery > * {
  margin-bottom: 0;
}
.branch-introduction__gallery__image img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  overflow: clip;
}
.branch-introduction__gallery__image figcaption {
  margin-top: 1.5em;
  font-weight: 700;
  line-height: 1.6;
}
.branch-introduction__gallery__image figcaption + * {
  margin-top: 1em;
}
.branch-introduction__gallery__image > *:last-child {
  margin-bottom: 0;
}
.branch-introduction__button {
  margin: clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 0 0;
}
.branch-introduction__button .button--pri {
  width: 100%;
  max-width: 360px;
  margin: 0 0 0 auto;
}

.deco-area__branch-introduction {
  position: relative;
  margin: 0 calc(50% - 50vw);
}
.deco-area__branch-introduction .deco-area__wrapper {
  inset: 0 auto auto 0;
  width: min(32vw, 240px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 1400px) {
  .deco-area__branch-introduction .deco-area__wrapper {
    width: max(15vw, 240px);
  }
}

.support-structure__data-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  margin: 0 0 clamp(1.875rem, 1.116rem + 1.58vw, 2.5rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .support-structure__data-label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
}
.support-structure__data-label .data-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.support-structure__data-label .data-label::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(127, 174, 213)), to(rgb(0, 93, 171)));
  background-image: linear-gradient(180deg, rgb(127, 174, 213) 0%, rgb(0, 93, 171) 100%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .support-structure__data-label .data-label::before {
    width: 20px;
  }
}
.support-structure__data-label .data-label.label-02::before {
  background-image: -webkit-gradient(linear, right top, left top, from(rgb(235, 172, 135)), to(rgb(216, 89, 16)));
  background-image: linear-gradient(-90deg, rgb(235, 172, 135) 0%, rgb(216, 89, 16) 100%);
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .js-scrollable .support-structure__image {
    width: 1120px;
  }
}

.flow-training {
  padding: 0 0 172px;
}
.flow-training .training__period {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: clamp(3.75rem, 2.231rem + 3.16vw, 5rem) 1fr;
  grid-template-rows: clamp(3.75rem, 2.231rem + 3.16vw, 5rem) 1fr;
  background-color: #ffffff;
  -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
          box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
  border-radius: 16px;
}
.flow-training .training__period::before {
  content: "";
  position: absolute;
  display: block;
  left: calc(50% - 16px);
  bottom: -172px;
  width: 32px;
  height: 172px;
  background-color: #cccccc;
  z-index: -1;
}
.flow-training .training__period .period__title {
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.875rem, 0.723rem + 0.32vw, 1rem);
  background-color: #231815;
  border-radius: 16px 16px 0 0;
}
.flow-training .training__period .period__month {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(5rem, 1.962rem + 6.33vw, 7.5rem);
  aspect-ratio: 1;
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  font-weight: 700;
  border: 1px solid #cccccc;
  border-radius: 100%;
  background-color: #ffffff;
}
.flow-training .training__period .period__month__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding: 40px 0;
  z-index: 1;
}
.flow-training .training__period .period__month__wrapper::after {
  content: "";
  position: absolute;
  display: block;
  top: 50px;
  left: calc(50% - 4px);
  width: 8px;
  height: calc(100% - 100px);
  background-color: #cccccc;
  z-index: -1;
}
.flow-training .training__program {
  position: relative;
  color: #ffffff;
  border-radius: 16px;
  background-color: color-mix(in srgb, #005dab 78%, white);
}
.flow-training .training__program.period_04 {
  background-color: color-mix(in srgb, #d85910 80%, white);
}
.flow-training .training__program.period_04 .program__title {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(235, 172, 135)), to(rgb(216, 89, 16)));
  background-image: linear-gradient(180deg, rgb(235, 172, 135) 0%, rgb(216, 89, 16) 100%);
}
.flow-training .training__program .program__body {
  position: relative;
  padding: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
}
.flow-training .training__program .program__body > *:first-child {
  margin-top: 0;
}
.flow-training .training__program .program__body > *:last-child {
  margin-bottom: 0;
}
.flow-training .training__program .program__title {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: clamp(3.75rem, 2.231rem + 3.16vw, 5rem);
  margin: 0;
  padding: 0 1em;
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(127, 174, 213)), to(rgb(0, 93, 171)));
  background-image: linear-gradient(180deg, rgb(127, 174, 213) 0%, rgb(0, 93, 171) 100%);
  border-radius: 16px 16px 0 0;
}
.flow-training .training__program .program__title--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  gap: 1em;
}
.flow-training .training__program .program__title--sub::before, .flow-training .training__program .program__title--sub::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.66em;
  background-color: #ffffff;
}
.flow-training .training__program .program__title--sub::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.flow-training .training__program .program__title--sub::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.flow-training .training__program hr {
  margin: clamp(1.25rem, 0.339rem + 1.9vw, 2rem) 0;
  border-color: color-mix(in srgb, #ffffff 30%, transparent);
}
.flow-training .training__program ul li {
  position: relative;
  margin: 0.5em 0 0;
  padding: 0 0 0 1em;
  line-height: 1.5;
}
.flow-training .training__program ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.flow-training .training__program p:has(+ ul) {
  margin-bottom: 0;
}
.flow-training .training__program .text__em {
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}
.flow-training .training__program .text__em__24 {
  font-size: clamp(0.875rem, 0.116rem + 1.58vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.flow-training .training__program .frame--3-2 {
  margin-top: clamp(1.875rem, 1.116rem + 1.58vw, 2.5rem);
}
.flow-training .training__program.period_02 .note {
  position: absolute;
  right: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  top: calc(clamp(1rem, 0.392rem + 1.27vw, 1.5rem) * 1.5);
  margin: 0;
}
@media screen and (min-width: 769px) {
  .flow-training {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 17.5% 40px 1fr 40px 1fr;
    grid-template-columns: 17.5% 1fr 1fr;
    gap: clamp(2.5rem, -0.538rem + 6.33vw, 5rem) 40px;
  }
  .flow-training .training__period.period_01 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .flow-training .training__period.period_02 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/4/2;
  }
  .flow-training .training__period.period_03 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4/1/6/2;
  }
  .flow-training .training__period.period_03::before {
    background: url(../images/environment/training/dot_pc.webp) no-repeat center bottom;
    background-size: 32px auto;
  }
  .flow-training .training__program.period_01 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: 1/2/2/4;
  }
  .flow-training .training__program.period_02 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: 2/2/3/4;
  }
  .flow-training .training__program.period_02_02 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3;
  }
  .flow-training .training__program.period_03 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4/2/5/3;
  }
  .flow-training .training__program.period_03_02 {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 5/2/6/3;
  }
  .flow-training .training__program.period_04 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 3/3/6/4;
  }
  .flow-training .training__type,
  .flow-training .training__period.period_02_02,
  .flow-training .training__period.period_04 {
    display: none;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .flow-training {
    padding-bottom: 116px;
  }
  .flow-training .training__type {
    padding: 1em;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    background-color: color-mix(in srgb, #005dab 78%, white);
  }
  .flow-training .training__type.type-02 {
    margin-top: 200px;
    background-color: color-mix(in srgb, #d85910 80%, white);
  }
  .flow-training .training__period {
    display: block;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .flow-training .training__period::before {
    top: 0;
    bottom: unset;
    left: calc(50% - 8px);
    width: 16px;
    height: 500px;
  }
  .flow-training .training__period.period_02::before, .flow-training .training__period.period_02_02::before, .flow-training .training__period.period_03::before {
    top: -50px;
  }
  .flow-training .training__period .period__title {
    height: 40px;
    margin-top: 40px;
    font-size: 1rem;
    border-radius: 9999px;
  }
  .flow-training .training__period .period__month {
    width: 60px;
  }
  .flow-training .training__period .period__month.is-pc {
    display: none;
  }
  .flow-training .training__period .period__month__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px;
    margin: 20px 0 0;
    padding: 20px 0;
    background-color: #ffffff;
    border-radius: 16px;
    -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
            box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
  }
  .flow-training .training__period .period__month__wrapper::after {
    top: calc(50% - 2px);
    left: calc(50% - 40px);
    width: 80px;
    height: 4px;
  }
  .flow-training .training__program {
    margin-top: 40px;
  }
  .flow-training .training__program.period_02 .note {
    position: relative;
    inset: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1em;
  }
  .flow-training .training__program.period_03_02::before, .flow-training .training__program.period_04::before {
    content: "";
    position: absolute;
    display: block;
    left: calc(50% - 8px);
    bottom: -116px;
    width: 16px;
    height: 116px;
    background: url(../images/environment/training/dot_sp.webp) no-repeat center bottom;
    background-size: 16px auto;
    z-index: -1;
  }
}

/* ========================================================================== */
/* page - business */
/* ========================================================================== */
.business--flow__image img {
  image-rendering: -webkit-optimize-contrast;
}
.business--record {
  position: relative;
  margin: clamp(3.5rem, 2.285rem + 2.53vw, 4.5rem) 0 0;
  padding: clamp(3.75rem, -0.047rem + 7.91vw, 6.875rem) 20px clamp(3.75rem, 2.231rem + 3.16vw, 5rem);
  text-align: center;
  background-color: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
          box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business--record {
    text-align: left;
  }
}
.business--record > *:last-child {
  margin-bottom: 0;
}
.business--record__title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18.5em;
  margin: 0;
  padding: 1em 0;
  color: #ffffff;
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  text-align: center;
  background-color: #005dab;
  border-radius: 0 0 clamp(0.5rem, -0.108rem + 1.27vw, 1rem) clamp(0.5rem, -0.108rem + 1.27vw, 1rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business--record__title {
    width: 14.5em;
  }
}
.business--record__title::before, .business--record__title::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/dec-blue_type-a_01.svg);
}
.business--record__title::before {
  left: -15px;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.business--record__title::after {
  right: -15px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.business--record__image {
  max-width: 994px;
  margin: 0 auto;
}
.business--record__image img {
  image-rendering: -webkit-optimize-contrast;
}
.business--record .js-scrollable {
  margin: clamp(3rem, 1.177rem + 3.8vw, 4.5rem) 0 0;
}
.business--products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(2.5rem, -2.057rem + 9.49vw, 6.25rem) 1fr clamp(2.5rem, -2.057rem + 9.49vw, 6.25rem) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, -2.057rem + 9.49vw, 6.25rem);
  margin: clamp(2.5rem, -2.057rem + 9.49vw, 6.25rem) 0 clamp(5rem, -1.076rem + 12.66vw, 10rem);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business--products {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.business--products__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 0;
  padding: clamp(2.5rem, 0.981rem + 3.16vw, 3.75rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) 40px;
  background-color: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
          box-shadow: clamp(0.625rem, -0.134rem + 1.58vw, 1.25rem) clamp(1.094rem, -0.208rem + 2.71vw, 2.165rem) clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) rgba(35, 24, 21, 0.2);
}
.business--products__title {
  color: #005dab;
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  text-align: center;
}
.business--service {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: clamp(1.875rem, -0.403rem + 4.75vw, 3.75rem) 0 0;
}
@media screen and (max-width: 1079px) {
  .business--service {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 859px) {
  .business--service {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business--service {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.business--service__item {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 16px;
  aspect-ratio: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business--service__item {
    aspect-ratio: unset;
    cursor: default;
  }
}
.business--service__item:hover .business--service__detail {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.business--service__body {
  padding: 32px 0 40px;
}
.business--service__title {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  text-align: center;
}
.business--service__icon {
  max-width: 55.86%;
  margin: 0 auto 0;
}
.business--service__detail {
  position: absolute;
  left: calc(clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) * -1);
  width: calc(100% + clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) * 2);
  margin: 0;
  padding: 30px clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
  background-color: #e5eff6;
  border-radius: 16px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.business--service__detail::before {
  content: "";
  position: absolute;
  left: calc(clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem) * 2);
  top: -30px;
  width: 20px;
  height: 30px;
  background-color: #e5eff6;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .business--service__detail {
    position: unset;
    width: auto;
    border-radius: 0 0 16px 16px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .business--service__detail::before {
    content: none;
  }
}
.business--service__detail > *:last-child {
  margin-bottom: 0;
}
.business--service__detail h5 {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
}
.business--service__detail .list-dot li {
  padding-left: 1.5em;
}
.business--service__detail .list-dot li::before {
  border-color: #231815;
  border-width: 1px;
}
/*# sourceMappingURL=style.css.map */