@charset "UTF-8";
:root {
  --white: #ffffff;
  --black: #000000;
  --gray10: #333333;
  --gray20: #474747;
  --gray30: #5C5C5C;
  --gray40: #757575;
  --gray50: #9E9E9E;
  --gray60: #C2C2C2;
  --gray70: #E0E0E0;
  --gray80: #F4F4F4;
  --gray90: #FBFBFB;
  --red-primary: #E71A1A;
  --blue-primary: #0079C3;
  --blue-secondary: #00578D;
  --blue-tertiary: #1D4763;
  --marin-primary: #3BCEFF;
  --marin-secondary: #A4E1FF;
  --marin-tertiary: #E2F4FC;
  --yellow-primary: #FFEE00;
  --border: var(--gray60);
  --accent: var(--red);
  --inactive: var(--gray60);
  --disabled: var(--gray60);
  --japanese-sans-serif:
    "Noto Sans JP",
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN",
    "メイリオ", Meiryo, Arial, sans-serif;
  --english-sans-serif: "Roboto", var(--japanese-sans-serif);
  --space-xs: clamp(1.25rem, 0.1389rem + 2.3148vw, 1.875rem);
  --space-sm: calc(var(--space-xs) * 1.5);
  --space-md: calc(var(--space-xs) * 2);
  --space-lg: calc(var(--space-xs) * 3);
  --space-xl: calc(var(--space-xs) * 4);
  --space-xxl: calc(var(--space-xs) * 5);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--black);
  font-feature-settings: "palt";
  font-family: var(--english-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  line-break: strict;
  text-align: left;
  margin: 0;
  background-color: #ffffff;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section, a, picture {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

p a {
  display: inline-block;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
  margin: 0;
}

ol,
ul,
dl,
ol ol,
ul ul,
ol ul,
ul ol {
  padding: 0;
  margin: 0;
}

ol li,
ul li {
  list-style-position: inside;
  padding: 0;
}

ul li, ol li {
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

a, p a {
  color: var(--active);
  display: block;
  text-decoration: none;
  background-color: transparent;
}

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

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin: 0;
  overflow: auto;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  color: var(--black);
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin: 0;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  vertical-align: top;
  padding: 0.2rem 0.5rem;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=submit] {
  outline: none;
  border: 1px solid var(--border);
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

button, input[type=submit], input[type=button] {
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button, select, input {
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}
button::-moz-placeholder, select::-moz-placeholder, input::-moz-placeholder {
  color: var(--black);
}
button::placeholder, select::placeholder, input::placeholder {
  color: var(--black);
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.l-main {
  overflow: hidden;
  margin-top: 50px;
  background-color: #EDF9FF;
}
.l-main.is-top {
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .l-main {
    margin-top: 90px;
  }
}

.l-header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: rgb(255, 255, 255);
  transition: all 0.5s var(--easeOutQuint);
}
.l-header.is-active {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
}
.l-header.is-show {
  top: -150px;
}
.l-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.l-header__logo {
  margin: 0 auto 0 0;
}
.l-header__nav {
  display: none;
  margin: auto 0 1.8em auto;
}
.l-header__button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 51px 0 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 70px;
  }
  .l-header__button {
    margin: 0 71px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-header {
    height: 90px;
  }
  .l-header__nav {
    display: block;
    margin: auto 0 1.8em auto;
  }
  .l-header__button {
    margin: 0 0 0 3%;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__inner {
    padding-left: 30px;
  }
  .l-header__button {
    margin: 0 0 0 4%;
  }
}

.l-footer {
  position: relative;
  z-index: 100;
  padding-bottom: 25px;
  background-color: var(--white);
}
.l-footer__nav {
  display: none;
}
.l-footer__body {
  padding-top: var(--space-lg);
}
.l-footer__content {
  position: relative;
}
.l-footer__logo {
  max-width: 265px;
  margin: 0 auto;
}
.l-footer__logo svg {
  width: 100%;
  height: auto;
}
.l-footer__address {
  color: var(--black);
  line-height: 1;
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.599471831rem + 0.3755868545vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 2em auto 0;
}
.l-footer__list {
  display: flex;
  justify-content: center;
  line-height: 1;
  margin: 1em 0 0;
}
.l-footer__list > * {
  color: var(--black);
  font-family: "arial";
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.l-footer__list > * + * {
  margin-left: 2em;
}
.l-footer__list > * a {
  display: inline-block;
  margin-left: 1em;
  transition: opacity 0.35s ease;
}
.l-footer__list > * a:hover {
  opacity: 0.5;
}
.l-footer__copyContainer {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 15px;
  margin: var(--space-md) auto 0;
}
.l-footer__listSub {
  color: var(--black);
  display: flex;
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5589788732rem + 0.2816901408vw, 0.8125rem);
  margin-left: 1em;
}
.l-footer__listSub > * {
  padding: 0 1em;
}
.l-footer__listSub > * + * {
  border-left: 1px solid var(--black);
}
.l-footer__sns {
  margin: 0 auto 1.5em;
}
.l-footer__copy {
  line-height: 1;
}
.l-footer__copy small {
  color: var(--black);
  font-family: var(--japanese-sans-serif);
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.l-footer__marks {
  width: 50.5%;
  max-width: 170px;
  margin: var(--space-md) auto 0;
}
.l-footer__button {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 65px;
    padding-bottom: 35px;
  }
  .l-footer__nav {
    display: block;
  }
  .l-footer__body {
    padding-top: 50px;
    margin-top: 55px;
    border-top: 1px solid #E2E2E2;
  }
  .l-footer__logo {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0;
  }
  .l-footer__address {
    text-align: left;
    margin: 2em 0 0;
  }
  .l-footer__list {
    justify-content: flex-start;
  }
  .l-footer__copyContainer {
    flex-direction: row;
    align-items: center;
    gap: 0;
    align-items: flex-end;
    margin: 20px 0 0;
  }
  .l-footer__sns {
    margin: 0 0 0 0.2em;
  }
  .l-footer__marks {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 50px;
  }
  .l-footer__button {
    right: 35px;
    bottom: 35px;
  }
}

.c-logo {
  max-width: 182px;
  transition: all 0.5s var(--easeOutQuint);
}
.c-logo svg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .c-logo {
    max-width: 214px;
  }
}

a.c-logo {
  transition: all 0.35s ease;
}
a.c-logo:hover {
  color: var(--blue01);
  opacity: 0.5;
}

.js-toggleSub--target {
  overflow: hidden;
  visibility: hidden;
  padding: 0 2em;
  border-radius: 10px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 255, 255);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  top: calc(100% + 0.8em);
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.js-toggleSub--target.is-active {
  visibility: visible;
  padding: 1.2em 2em;
}

.js-toggleSub--target > * {
  color: var(--black);
  display: block;
  line-height: 1;
  font-family: var(--japanese-sans-serif);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  white-space: nowrap;
  margin: 1em 0;
  transition: all 0.35s ease;
}

.js-toggleSub--target > *:hover {
  opacity: 0.5;
}

.js-toggleSub--target > * + * {
  margin-top: 1em;
}

.c-globalNav {
  display: none;
}
.c-globalNav__list {
  display: flex;
}
.c-globalNav__item {
  position: relative;
  margin: 0;
}
.c-globalNav__item.is-active > a::after {
  transform: scale(1, 1);
  transform-origin: top left;
}
.c-globalNav__item:not(:first-of-type) {
  margin-left: 1.2em;
}
.c-globalNav__item > a {
  color: var(--black);
  line-height: 1;
  position: relative;
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.599471831rem + 0.3755868545vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-bottom: 0.8em;
  transform: translateY(0.8em);
}
.c-globalNav__item > a.is-current {
  color: var(--accent);
}
.c-globalNav__item > a:hover::after {
  transform: scale(1, 1);
  transform-origin: top left;
}
.c-globalNav__item > a::after {
  pointer-events: none;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--blue-primary);
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 0.2s;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .c-globalNav {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .c-globalNav__item:not(:first-of-type) {
    margin-left: 1.5em;
  }
}

.c-buttonContact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  aspect-ratio: 1/1;
  background-color: var(--blue-primary);
  transition: all 0.5s var(--easeOutQuint);
}
.c-buttonContact:hover {
  opacity: 0.5;
}
.c-buttonContact__icon::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 18/12;
  background: url("../../assets/img/icon-mail-header-contact.svg") no-repeat 0 0/cover;
}
.c-buttonContact__title {
  display: none;
  color: var(--white);
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.536971831rem + 0.3755868545vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-buttonContact__icon::before {
    width: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-buttonContact {
    aspect-ratio: inherit;
    padding: 0 1.65em;
  }
  .c-buttonContact__icon::before {
    width: 18px;
  }
  .c-buttonContact__title {
    display: inline-block;
  }
}

.c-offcanvas {
  width: 100%;
  height: 100%;
}
.c-offcanvas.is-active .c-offcanvas__button {
  background-color: var(--blue-secondary);
}
.c-offcanvas.is-active .c-offcanvas__hamburger {
  background-color: transparent;
}
.c-offcanvas.is-active .c-offcanvas__hamburger::before {
  margin-top: 0;
  transform: rotate(135deg);
}
.c-offcanvas.is-active .c-offcanvas__hamburger::after {
  margin-top: 0;
  transform: rotate(-135deg);
}
.c-offcanvas.is-active .c-offcanvas__body {
  right: 0;
  transition: all 0.3s ease;
}
.c-offcanvas__button {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2003;
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--blue-primary);
  transition: all 0.5s var(--easeOutQuint);
}
.c-offcanvas__hamburger {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 2px;
  margin: auto auto;
  background-color: var(--white);
  transform-origin: center;
  transition: all 0.35s var(--easeOutQuint);
}
.c-offcanvas__hamburger::before, .c-offcanvas__hamburger::after {
  display: block;
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--white);
  transform-origin: center;
  transition: all 0.35s ease 0.1s;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  margin-left: -9px;
}
.c-offcanvas__hamburger::before {
  transform: translateY(6px);
}
.c-offcanvas__hamburger::after {
  transform: translateY(-6px);
}
.c-offcanvas__menu {
  display: block;
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.c-offcanvas__body {
  overflow: auto;
  width: 100%;
  height: calc(100svh - 50px);
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  background: var(--blue-secondary);
  transition: all 0.5s ease;
  position: fixed;
  right: -100%;
  top: 50px;
  z-index: 2002;
}
.c-offcanvas__title {
  position: relative;
  display: flex;
  align-items: center;
}
.c-offcanvas__title .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.2s ease-out;
}
.c-offcanvas__title .icon.is-active {
  transform: translateY(-50%) rotate(-180deg);
}
.c-offcanvas__list, .c-offcanvas__listSub {
  width: 100%;
  line-height: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.c-offcanvas__item {
  color: var(--white);
  list-style: none;
  padding: 0;
  border-bottom: 1px solid #4D9BCB;
}
.c-offcanvas__item:first-of-type {
  border-top: 1px solid #4D9BCB;
}
.c-offcanvas__item a {
  color: inherit;
  display: block;
  padding: 1.5em 0;
  transition: all 0.35s ease;
}
.c-offcanvas__item a:hover {
  opacity: 0.5;
}
.c-offcanvas__listSub {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.c-offcanvas__listSub > * {
  padding-left: 1em;
}
.c-offcanvas__listSub > *:last-child > a {
  padding: 1em 0 2.5em;
}
.c-offcanvas__listSub > * > a {
  color: inherit;
  display: block;
  padding: 1em 0;
  transition: all 0.35s ease;
}
.c-offcanvas__listSub > * > a:hover {
  opacity: 0.5;
}
.c-offcanvas__listBottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 2.15rem auto 0;
}
.c-offcanvas__listBottom > * {
  color: var(--white);
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7904929577rem + 0.0938967136vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  list-style: none;
  padding: 0;
}
.c-offcanvas__listBottom > * + * {
  margin-top: 1.5em;
}
.c-offcanvas__listBottom > * + * .iconX {
  width: 40px;
  height: 40px;
}
.c-offcanvas__listBottom > * a {
  transition: all 0.35s ease;
}
.c-offcanvas__listBottom > * a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .c-offcanvas__button {
    width: 70px;
    height: 70px;
  }
  .c-offcanvas__body {
    height: calc(100svh - 70px);
    top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .c-offcanvas {
    display: none;
  }
}

.c-iconChevron::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.65em;
  height: 0.65em;
  border: 2px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
}
.c-footerNav {
  max-width: 400px;
  margin: 0 auto;
}
.c-footerNav__list {
  display: flex;
  flex-direction: column;
}
.c-footerNav__item {
  line-height: 1.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
}
.c-footerNav__item:not(:first-child) {
  margin-top: 1.5em;
}
.c-footerNav__item a {
  color: var(--black);
  display: table;
  position: relative;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-footerNav__item a:hover::after {
  transform: scale(1, 1);
  transform-origin: top left;
}
.c-footerNav__item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--blue-primary);
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 0.2s;
  position: absolute;
  bottom: -0.4em;
  left: 0;
}
.c-footerNav__item > ul li + li {
  margin-top: 1.2em;
}
.c-footerNav__listSub {
  display: flex;
  flex-direction: column;
}
.c-footerNav__listSub li {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  margin-top: 1.2em;
}
.c-footerNav__listSub li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 2px;
  margin-right: 0.8em;
  background-color: var(--blue-primary);
}
.c-footerNav__listSub li a {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-footerNav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .c-footerNav__item {
    width: 50%;
  }
  .c-footerNav__item:not(:first-child) {
    margin-top: 0;
  }
  .c-footerNav__item:nth-child(n+3) {
    margin-top: 2em;
  }
}
@media screen and (min-width: 1024px) {
  .c-footerNav {
    max-width: none;
  }
  .c-footerNav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .c-footerNav__item:nth-child(n+3) {
    margin-top: 0;
  }
}

.c-listMarks {
  display: flex;
  gap: 20px;
}
.c-listMarks > * {
  width: 50%;
}
@media screen and (min-width: 1024px) {
  .c-listMarks {
    gap: 40px;
  }
  .c-listMarks > * {
    width: 98px;
  }
}

.c-buttonToTop {
  color: var(--black);
  position: relative;
  display: block;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.c-buttonToTop:hover {
  opacity: 0.5;
}
.c-buttonToTop__base {
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--blue-primary);
  border-radius: 0.4rem;
}
.c-buttonToTop__base::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.125rem solid #fff;
  border-left: 0.125rem solid #fff;
  transform: rotate(45deg);
  transform-origin: left top;
  border-radius: 0.125rem 0 0 0;
}
@media screen and (min-width: 1024px) {
  .c-buttonToTop__base {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 0.5rem;
  }
  .c-buttonToTop__base::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.js-winBanner {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition: all 0.35s ease-in-out;
}
.js-winBanner.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .js-winBanner {
    display: block;
  }
}

.c-windowFixedBanner {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 102;
}
.c-windowFixedBanner__link {
  display: block;
  max-width: 230px;
  transition: all 0.35s ease;
}
.c-windowFixedBanner__link:hover {
  opacity: 0.5;
}
.c-windowFixedBanner__button {
  position: absolute;
  top: -4px;
  right: -8px;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.35s ease;
}
.c-windowFixedBanner__button:hover {
  opacity: 0.5;
}
.c-windowFixedBanner__button > svg {
  width: 100%;
  height: auto;
}
.c-bannerContact {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  background: url("../../assets/img/bg-banner-contact.jpg") repeat center center/19px 19px;
}
.c-bannerContact::after {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background-color: #0065A2;
  transform: skewX(-19deg) translateX(-48%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-bannerContact__body {
  max-width: 870px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.c-bannerContact__title {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-size: 30px;
  font-size: 1.875rem;
  font-size: clamp(1.875rem, 1.698943662rem + 0.7511737089vw, 2.375rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
}
.c-bannerContact__title > span {
  color: var(--white);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-weight: 800;
  text-indent: 0.1em;
  padding: 0.5em 0.8em;
  margin: 1.5em auto 0;
  border: 2px solid var(--white);
}
.c-bannerContact__desc {
  color: var(--white);
  max-width: 600px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7024647887rem + 0.4694835681vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin: 1.5em 0 0;
}
.c-bannerContact__desc br {
  display: none;
}
.c-bannerContact__buttons {
  max-width: 390px;
  margin: var(--space-xs) auto 0;
}
.c-bannerContact__buttons > * + * {
  margin-top: 2%;
}
@media screen and (min-width: 1024px) {
  .c-bannerContact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .c-bannerContact::after {
    width: 55%;
    transform: skewX(-35deg) translateX(-25%);
  }
  .c-bannerContact__body {
    flex-direction: row;
  }
  .c-bannerContact__title {
    flex-direction: row;
  }
  .c-bannerContact__title > span {
    border: 3px solid var(--white);
    margin: 0 0 0 2.5em;
  }
  .c-bannerContact__desc {
    max-width: none;
    margin: 1em 0 0;
  }
  .c-bannerContact__desc br {
    display: block;
  }
  .c-bannerContact__buttons {
    margin: 0 0 0 auto;
  }
  .c-bannerContact__buttons > * + * {
    margin-top: 30px;
  }
}

.c-buttonCall {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  transition: all 0.35s ease;
}
.c-buttonCall:hover {
  opacity: 0.5;
}
.c-buttonCall::before {
  content: "";
  display: block;
  width: 36px;
  height: 34px;
  margin-right: 1em;
  background: url("../../assets/img/icon-tel-contact.svg") no-repeat 0 0/cover;
}
.c-buttonCall__title {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  font-size: 2.1875rem;
  font-size: clamp(2.1875rem, 1.9674295775rem + 0.9389671362vw, 2.8125rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.c-buttonToContact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  border-radius: 6.25rem;
  padding: 1.2em 0;
  background-color: #FFEE00;
  transition: all 0.35s ease;
}
.c-buttonToContact:hover {
  opacity: 0.5;
}
.c-buttonToContact::before {
  content: "";
  display: block;
  width: 33px;
  height: 22px;
  margin-right: 0.5em;
  background: url("../../assets/img/icon-mail-contact.svg") no-repeat 0 0/cover;
}
.c-buttonToContact__title {
  color: var(--blue-primary);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .c-buttonToContact {
    padding: 1.5em 0;
  }
}

.c-buttonBlue {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 1;
  padding: 1.2em 2em;
  border-radius: 5px;
  background-color: var(--blue-primary);
  transition: all 0.35s ease;
}
.c-buttonBlue:hover {
  opacity: 0.5;
}
.c-buttonBlue::after {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  background: url("../../assets/img/icon-arrow-white.svg") no-repeat 0 0/cover;
}
.c-buttonBlue__title {
  color: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8529929577rem + 0.0938967136vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.c-buttonWhite {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 1;
  border-radius: 5px;
  padding: 1.2em 2em;
  background-color: var(--white);
  transition: all 0.35s ease;
}
.c-buttonWhite:hover {
  opacity: 0.5;
}
.c-buttonWhite::after {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  background: url("../../assets/img/icon-arrow-blue.svg") no-repeat 0 0/cover;
}
.c-buttonWhite__title {
  color: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8529929577rem + 0.0938967136vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.js-effectPageTitle .cover, .js-effectPageTitle .title, .js-effectPageTitle .subtitle {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.c-pageTitle {
  position: relative;
  z-index: 5;
  margin-bottom: calc(var(--space-xl) * -0.2);
}
.c-pageTitle::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(var(--space-xl) * 3);
  background-color: var(--white);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 81%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 81%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-pageTitle__inner {
  position: relative;
  overflow: hidden;
}
.c-pageTitle__body {
  padding: var(--space-lg) 0 var(--space-xl);
}
.c-pageTitle__clipped {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.c-pageTitle__title {
  color: var(--blue-primary);
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  opacity: 0.1;
  line-height: 0.82;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  margin: 0;
}
.c-pageTitle__title > span {
  display: inline-block;
}
.c-pageTitle__subtitle {
  color: var(--blue-primary);
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin: 0.5em 0 0;
}
.c-pageTitle__subtitle > span {
  display: inline-block;
}
.c-pageTitle__cover {
  display: block;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 99.9%;
  background-color: var(--marin-tertiary);
  background: linear-gradient(90deg, rgba(0, 121, 195, 0.3) 0%, rgba(164, 225, 255, 0.3) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 500px) {
  .c-pageTitle {
    margin-bottom: calc(var(--space-xl) * -0.4);
  }
  .c-pageTitle__cliped {
    flex-direction: row;
    align-items: center;
  }
  .c-pageTitle__title {
    font-size: 50px;
    font-size: 3.125rem;
    font-size: clamp(3.125rem, 0.9242957746rem + 9.3896713615vw, 9.375rem);
  }
  .c-pageTitle__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
    font-size: clamp(1.125rem, 0.860915493rem + 1.1267605634vw, 1.875rem);
    letter-spacing: 0.2em;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 1.2em;
    transform: translateY(-55%);
  }
}
@media screen and (min-width: 1024px) {
  .c-pageTitle {
    margin-bottom: -55px;
  }
  .c-pageTitle::after {
    height: 370px;
  }
  .c-pageTitle__body {
    padding: 90px 0 140px;
  }
}

.c-pageNav {
  position: relative;
  z-index: 10;
  margin: 0 auto 0 20px;
}
.c-pageNav__list {
  min-height: 5.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7429577465rem + 0.5633802817vw, 1.25rem);
  gap: 1.2em;
  padding: 1.3em 1em;
  margin-right: 20px;
  border-radius: 8px;
  background-color: var(--blue-secondary);
  box-shadow: 0 0 10px 0 tgba(0, 0, 0, 0.15);
}
.c-pageNav__item {
  color: var(--white);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-pageNav__item br {
  display: block;
}
.c-pageNav__item a {
  position: relative;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.c-pageNav__item a:hover::after, .c-pageNav__item a.is-active::after {
  width: 100%;
}
.c-pageNav__item a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #A4E1FF;
  position: absolute;
  bottom: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}
@media screen and (min-width: 500px) {
  .c-pageNav {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
  .c-pageNav__list {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    gap: 1.5rem;
    padding: 2em 2em;
    margin-right: 0;
  }
  .c-pageNav__item {
    line-height: 1;
    letter-spacing: 0.2em;
    text-align: left;
  }
  .c-pageNav__item br {
    display: none;
  }
  .c-pageNav__item a::after {
    bottom: -0.5em;
  }
}
@media screen and (min-width: 768px) {
  .c-pageNav__item a::after {
    height: 3px;
  }
}
@media screen and (min-width: 1024px) {
  .c-pageNav {
    margin: 0 auto;
  }
  .c-pageNav__list {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    min-height: inherit;
    gap: 2.5em;
    padding: 1.8em 3.5em 1.6em;
  }
  .c-pageNav__item a::after {
    height: 4px;
  }
}

.c-titleCentered {
  color: var(--white);
  position: relative;
  overflow: hidden;
  line-height: 1;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 0.9788732394rem + 1.6901408451vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 1em 0;
  margin: 0 auto;
  border-radius: 6px;
  background-color: var(--blue-secondary);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.c-titleCentered::after {
  content: "";
  display: block;
  width: 58%;
  height: 100%;
  background-color: var(--blue-primary);
  transform: skewX(-35deg) translateX(-13%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-titleCentered > span {
  display: block;
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .c-titleCentered {
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    padding: 0.7em 0;
  }
}

.c-tableCompany {
  width: 100%;
  margin: -1.2em auto 0;
}
.c-tableCompany tbody tr th, .c-tableCompany tbody tr td {
  line-height: 2;
  line-break: strict;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-tableCompany tbody tr th {
  color: var(--blue-primary);
  min-width: 6em;
  font-weight: 700;
  vertical-align: top;
  padding: 1.2em 0;
  border-bottom: 2px solid var(--blue-primary);
}
.c-tableCompany tbody tr td {
  color: var(--black);
  padding: 1.2em 0;
  vertical-align: top;
  border-bottom: 2px solid var(--gray70);
}
.c-tableCompany tbody tr td h3, .c-tableCompany tbody tr td p {
  font-size: inherit;
}
.c-tableCompany tbody tr td h3 br, .c-tableCompany tbody tr td p br {
  display: block;
}
.c-tableCompany tbody tr td p a, .c-tableCompany tbody tr td address a {
  color: var(--blue-primary);
  display: inline;
  transition: all 0.35s ease;
}
.c-tableCompany tbody tr td p a:hover, .c-tableCompany tbody tr td address a:hover {
  opacity: 0.5;
}
.c-tableCompany tbody tr td address span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-tableCompany tbody tr th {
    min-width: 8em;
  }
  .c-tableCompany tbody tr td {
    padding: 1.2em 1em;
  }
  .c-tableCompany tbody tr td h3 br, .c-tableCompany tbody tr td p br {
    display: none;
  }
  .c-tableCompany tbody tr td address span {
    display: inline-block;
    margin-right: 1em;
  }
  .c-tableCompany tbody tr td address br {
    display: none;
  }
}

.c-listTimeline__item {
  display: flex;
}
.c-listTimeline__item:first-child .c-listTimeline__block::before {
  top: 50%;
}
.c-listTimeline__item:last-child .c-listTimeline__block {
  padding: 2.2em 0 0 4rem;
}
.c-listTimeline__year {
  color: var(--blue-primary);
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  line-height: 1;
  font-family: "Roboto";
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2rem 0 0;
  margin: 0;
}
.c-listTimeline__block {
  position: relative;
  padding: 2.2em 0 2.2rem 4rem;
}
.c-listTimeline__block::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(2em - 0.5px);
  background-color: var(--gray70);
}
.c-listTimeline__block::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  position: absolute;
  top: 2.5rem;
  left: calc(2em - 4.5px);
  background-color: var(--blue-primary);
}
.c-listTimeline__block > * + * {
  padding-top: 1.2rem;
}
.c-listTimeline__titleGroup {
  display: flex;
}
.c-listTimeline__nengou {
  color: var(--black);
  min-width: 5em;
  line-height: 1.4;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
  font-weight: 500;
  letter-spacing: 0;
}
.c-listTimeline__title {
  color: var(--black);
  line-height: 1.4;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-listTimeline__figure {
  display: block;
}
.c-listTimeline__figure > img {
  max-width: 250px;
}
@media screen and (min-width: 1024px) {
  .c-listTimeline__nengou {
    margin-right: 1.5rem;
  }
}

.c-listHistory {
  border-top: 1px solid var(--gray70);
}
.c-listHistory__item {
  padding: 1em 0;
  border-bottom: 1px solid var(--gray70);
}
.c-listHistory__item > h4 {
  color: var(--black);
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-listHistory__item > p {
  color: var(--black);
  line-height: 1.5;
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6434859155rem + 0.1877934272vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.3em;
}
.c-listBusiness {
  display: flex;
  flex-wrap: wrap;
  margin: -6px -10px;
}
.c-listBusiness__item {
  width: calc(50% - 20px);
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0;
  padding: 1.2em 1em;
  margin: 6px 10px;
  border-left: 4px solid var(--marin-secondary);
  background-color: var(--marin-tertiary);
}
@media screen and (min-width: 1024px) {
  .c-listBusiness__item {
    width: calc(20% - 20px);
  }
}

.c-listShape {
  display: flex;
  flex-wrap: wrap;
  margin: -15px -10px;
}
.c-listShape__item {
  width: calc(50% - 20px);
  margin: 15px 10px;
}
.c-listShape__thumbnail {
  position: relative;
  aspect-ratio: 225/160;
  background-color: var(--gray80);
}
.c-listShape__content {
  margin: 0.6rem 0 0;
}
.c-listShape__title {
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}
.c-listShape__desc {
  color: var(--black);
  line-height: 1.5;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: justify;
  margin: 0.5em 0 0;
}
@media screen and (min-width: 1024px) {
  .c-listShape__item {
    width: calc(25% - 20px);
  }
}

.c-slideFlow__body {
  margin-top: 20px;
}
.c-slideFlow__body.u-container {
  padding-right: 0;
}
.c-slideFlow__card {
  min-height: 113vw;
  display: flex;
  justify-content: stretch;
  padding: 40px 10% 25px;
  margin-bottom: 5px;
  border-radius: 15px;
  background-color: #f5f5f5;
  box-shadow: 5px 5px 0px 0 rgba(0, 0, 0, 0.25);
}
.c-slideFlow__card--orange {
  background-color: #FCE6CC;
}
.c-slideFlow__card--orange .c-slideFlow__title {
  color: #EF8200;
}
.c-slideFlow__card--orange .c-slideFlow__number {
  background-color: #EF8200;
}
.c-slideFlow__card--blue {
  background-color: #CCE4F3;
}
.c-slideFlow__card--blue .c-slideFlow__title {
  color: #0079C3;
}
.c-slideFlow__card--blue .c-slideFlow__number {
  background-color: #0079C3;
}
.c-slideFlow__card--green {
  background-color: #CCECEA;
}
.c-slideFlow__card--green .c-slideFlow__title {
  color: #009E96;
}
.c-slideFlow__card--green .c-slideFlow__number {
  background-color: #009E96;
}
.c-slideFlow__icon {
  position: relative;
  overflow: hidden;
  width: 55%;
  max-width: 300px;
  aspect-ratio: 300/250;
  margin: 0 auto;
  background-color: transparent;
  position: absolute;
  top: -12vh;
  left: 50%;
  transform: translateX(-50%);
}
.c-slideFlow__content {
  display: flex;
  flex-direction: column;
  padding: var(--space-md) 0 0;
}
.c-slideFlow__title {
  color: #555;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.8019366197rem + 0.8450704225vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: -30px;
}
.c-slideFlow__number {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  line-height: 1;
  aspect-ratio: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7394366197rem + 0.8450704225vw, 1.5rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  margin-right: 0.5em;
  border-radius: 100%;
  background-color: #555;
}
.c-slideFlow__desc {
  color: var(--black);
  line-height: 1.6;
  line-break: strict;
  font-family: var(--japanese-sans-serif);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0.5em 0 0;
}
.c-slideFlow__desc span {
  display: block;
  font-weight: 700;
}
.c-slideFlow__thumbnail {
  display: block;
  margin: auto 0 0;
}
@media screen and (min-width: 768px) {
  .c-slideFlow__body.u-container {
    padding-right: 30px;
  }
  .c-slideFlow__card {
    min-height: 46vh;
  }
}
@media screen and (min-width: 1024px) {
  .c-slideFlow__body.u-container {
    padding-right: 50px;
  }
  .c-slideFlow__card {
    min-height: 600px;
    padding: 40px 11%;
    border-radius: 20px;
  }
  .c-slideFlow__content {
    padding: 60px 0 0;
    margin: 0.6em auto 0;
  }
  .c-slideFlow__icon {
    width: 100%;
    top: -148px;
  }
  .c-slideFlow__number {
    width: 1.8em;
  }
  .c-slideFlow__desc {
    margin: 1em 0 0;
  }
  .c-slideFlow__thumbnail img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-tableFlow {
  width: 100%;
  border-top: 1px solid var(--gray60);
}
.c-tableFlow tbody tr.min th {
  padding: 1em 0 0;
  border-bottom: none;
}
.c-tableFlow tbody tr.min td {
  padding: 1em 0 0 1em;
  border-bottom: none;
}
.c-tableFlow tbody tr th, .c-tableFlow tbody tr td {
  line-height: 1;
  line-break: strict;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-tableFlow tbody tr th {
  color: var(--black);
  font-weight: 500;
  vertical-align: top;
  padding: 1em 0;
  border-bottom: 1px solid var(--gray60);
}
.c-tableFlow tbody tr td {
  color: var(--black);
  font-weight: 500;
  text-align: right;
  padding: 1em 0 1em 1em;
  vertical-align: top;
  border-bottom: 1px solid var(--gray60);
}
@media screen and (min-width: 1024px) {
  .c-tableFlow {
    margin: 25px auto 0;
  }
}

.c-listSafety__list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.c-listSafety__item {
  width: 100%;
  display: flex;
  margin: 1rem 0 0;
}
.c-listSafety__thumbnail {
  width: 38%;
}
.c-listSafety__content {
  width: 60%;
  margin: 0 0 0 2%;
}
.c-listSafety__title {
  color: var(--blue-primary);
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.c-listSafety__desc {
  color: var(--black);
  line-height: 1.8;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7279929577rem + 0.0938967136vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0.5em 0 0;
}
@media screen and (min-width: 1024px) {
  .c-listSafety__list {
    flex-direction: row;
  }
  .c-listSafety__item {
    width: 30.4333%;
    flex-direction: column;
    margin: 0 1.45%;
  }
  .c-listSafety__thumbnail {
    width: 100%;
  }
  .c-listSafety__content {
    width: auto;
    margin: 0.8em 0 0;
  }
}

.c-listQuality__list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.c-listQuality__item {
  width: 100%;
  padding: 2.8em 0;
  margin: 0;
}
.c-listQuality__item:not(:first-child) {
  border-top: 1px solid var(--gray60);
}
.c-listQuality__item:last-child {
  padding: 2.8em 0 0;
}
.c-listQuality__content {
  margin: 0.8em 0 0;
}
.c-listQuality__thumbnail {
  max-width: 155px;
  text-align: center;
  aspect-ratio: 220/160;
  margin: 0 auto;
}
.c-listQuality__title {
  color: var(--blue-primary);
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}
.c-listQuality__desc {
  color: var(--black);
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.8125rem + 0vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0.5em 0 0;
}
@media screen and (min-width: 1024px) {
  .c-listQuality__list {
    flex-direction: row;
  }
  .c-listQuality__item {
    width: 33.3333%;
    padding: 0 3.8%;
    margin: 0 auto;
    border-left: 1px solid var(--gray60);
  }
  .c-listQuality__item:not(:first-child) {
    border-top: none;
  }
  .c-listQuality__item:last-child {
    padding: 0 3.8%;
    border-right: 1px solid var(--gray60);
  }
  .c-listQuality__content {
    margin: 1.5em 0 0;
  }
  .c-listQuality__thumbnail {
    max-width: 220px;
  }
}

.c-listExample {
  padding: var(--space-sm) 6%;
  border-radius: 10px;
  background-color: var(--blue-primary);
}
.c-listExample__title {
  color: var(--white);
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 0 auto 0.8em;
}
.c-listExample__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -6px -8px;
}
.c-listExample__item {
  aspect-ratio: 150/42;
  width: calc(50% - 16px);
  position: relative;
  padding: 1em 0;
  margin: 6px 8px;
  border-radius: 4px;
  background-color: var(--white);
}
.c-listExample__item > span {
  display: block;
  line-height: 1.3;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .c-listExample {
    padding: 28px 11%;
  }
  .c-listExample__list {
    margin: -6px -10px;
  }
  .c-listExample__item {
    aspect-ratio: 150/45;
    width: calc(25% - 20px);
    margin: 6px 10px;
  }
}

.c-buttonDownload {
  padding-bottom: var(--space-lg);
}
.c-buttonDownload__link {
  width: 80%;
  max-width: 590px;
  display: table;
  position: relative;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.c-buttonDownload__link:hover {
  opacity: 0.5;
}
.c-buttonDownload__balloon {
  width: 24%;
  max-width: 142px;
  position: absolute;
  top: -28%;
  right: 85%;
}
@media screen and (min-width: 1024px) {
  .c-buttonDownload {
    padding-bottom: 100px;
  }
  .c-buttonDownload__link {
    width: auto;
  }
}

.c-buttonIkepa {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 1;
  padding: 1.5em 1.5em;
  border: 3px solid var(--white);
  border-radius: 5px;
  background-color: var(--blue-primary);
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}
.c-buttonIkepa:hover {
  opacity: 0.5;
}
.c-buttonIkepa::after {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  margin-left: 1em;
  background: url("../../assets/img/icon-arrow-white.svg") no-repeat 0 0/cover;
}
.c-buttonIkepa__title {
  color: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1024px) {
  .c-buttonIkepa {
    padding: 1.2em 1.5em;
    border-width: 4px;
  }
}

.c-listCase__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}
.c-listCase__item {
  width: calc(50% - 12px);
  margin: 6px 6px;
}
.c-listCase__item:nth-child(even) {
  margin-top: 30px;
}
.c-listCase__card {
  position: relative;
  padding: 8% 6% 14%;
  border-radius: 5px;
  background: var(--white);
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}
.c-listCase__number {
  width: 45px;
  position: absolute;
  top: -5%;
  right: 6%;
}
.c-listCase__thumbnail {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.c-listCase__title {
  color: var(--blue-primary);
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7429577465rem + 0.5633802817vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto;
}
.c-listCase__tag {
  color: var(--gray40);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 8px;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.411971831rem + 0.3755868545vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 0.4em 1em 0.2em;
  margin: 0.8em auto 0;
  border: 1px solid var(--gray60);
}
.c-listCase__desc {
  color: var(--black);
  line-height: 1.8;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5589788732rem + 0.2816901408vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: justify;
  margin: 1em auto 0;
  min-height: 5em;
}
@media screen and (min-width: 1024px) {
  .c-listCase__list {
    flex-wrap: nowrap;
  }
  .c-listCase__item {
    width: calc(25% - 20px);
    margin: 0 10px;
  }
  .c-listCase__item:nth-child(even) {
    margin-top: 50px;
  }
  .c-listCase__card {
    padding: 30px 20px 45px;
    border-radius: 10px;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.25);
  }
  .c-listCase__number {
    width: 78px;
    top: -22px;
    right: 20px;
  }
  .c-listCase__thumbnail {
    width: 100%;
  }
  .c-listCase__desc {
    text-align: center;
    min-height: inherit;
  }
}

.c-listToDelively__list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -10px;
}
.c-listToDelively__item {
  width: calc(50% - 20px);
  margin: 10px 10px;
}
.c-listToDelively__content {
  margin: 0.5em 0 0;
}
.c-listToDelively__thumbnail {
  width: 85%;
  max-width: 185px;
  position: relative;
  text-align: center;
  aspect-ratio: 1;
  margin: 0 auto;
}
.c-listToDelively__title {
  color: var(--blue-primary);
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}
.c-listToDelively__desc {
  color: var(--black);
  line-height: 1.8;
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6434859155rem + 0.1877934272vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0.3em 0 0;
}
@media screen and (min-width: 768px) {
  .c-listToDelively__desc {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .c-listToDelively__list {
    justify-content: center;
    margin: -14px -35px;
  }
  .c-listToDelively__item {
    width: calc(25% - 70px);
    margin: 14px 35px;
  }
  .c-listToDelively__item:not(:last-of-type) .c-listToDelively__thumbnail::after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 9px 0 9px 12px;
    border-color: transparent transparent transparent #0079C3;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(100% + 28px);
  }
  .c-listToDelively__content {
    margin: 0.8em 0 0;
  }
  .c-listToDelively__thumbnail {
    width: 100%;
  }
  .c-listToDelively__desc {
    text-align: justify;
    margin: 0.5em 0 0;
  }
}

.c-listFaq__list > * + * {
  margin-top: 60px;
}
.c-listFaq__question {
  width: 95%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1em 1em;
  border-radius: 10px;
  background-color: var(--blue-primary);
}
.c-listFaq__question::after {
  content: "";
  display: block;
  width: 25px;
  height: auto;
  aspect-ratio: 35/28;
  background: url("../../assets/img/parts-balloon-blue-left.png") no-repeat 0 0/cover;
  position: absolute;
  top: 100%;
  left: 3%;
}
.c-listFaq__question .icon {
  color: var(--marin-secondary);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-size: clamp(2rem, 1.6038732394rem + 1.6901408451vw, 3.125rem);
  font-weight: 600;
  transform: translateY(-0.08em);
}
.c-listFaq__question .title {
  color: var(--white);
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.573943662rem + 0.7511737089vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 0 1em;
}
.c-listFaq__answer {
  width: 95%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1em 1em;
  margin: 30px 0 0 auto;
  border-radius: 10px;
  background-color: var(--white);
}
.c-listFaq__answer::after {
  content: "";
  display: block;
  width: 25px;
  height: auto;
  aspect-ratio: 35/28;
  background: url("../../assets/img/parts-balloon-white-right.png") no-repeat 0 0/cover;
  position: absolute;
  top: 100%;
  right: 3%;
}
.c-listFaq__answer .icon {
  color: var(--blue-primary);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-size: clamp(2rem, 1.6038732394rem + 1.6901408451vw, 3.125rem);
  font-weight: 600;
}
.c-listFaq__answer .title {
  color: var(--black);
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 0 1em;
}
@media screen and (min-width: 1024px) {
  .c-listFaq__question {
    width: 80%;
    padding: 20px 30px;
  }
  .c-listFaq__question::after {
    width: 35px;
  }
  .c-listFaq__answer {
    width: 80%;
    padding: 20px 30px;
  }
  .c-listFaq__answer::after {
    width: 35px;
  }
}

.c-tab {
  width: 100%;
}
.c-tab__buttons {
  max-width: 760px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin: 0 auto;
}
.c-tab__button {
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  line-height: 1.2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6144366197rem + 0.8450704225vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
  border: 3px solid var(--blue-primary);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  margin: 0 5px;
  background-color: var(--blue-primary);
  transition: all 0.35s ease;
}
.c-tab__button.is-active, .c-tab__button:hover {
  color: var(--blue-primary);
  background-color: var(--white);
}
.c-tab__button br {
  display: block;
}
.c-tab__panels {
  margin-top: -3px;
  border: 3px solid var(--blue-primary);
  border-radius: 10px 10px 10px 10px;
  background-color: var(--white);
}
.c-tab__panel {
  display: none;
  text-align: justify;
  letter-spacing: 0;
  border-radius: 10px 10px 10px 10px;
  background-color: var(--white);
  transition: all 0.2s ease 0s;
}
.c-tab__content {
  padding: 8% 6%;
}
.c-tab__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -2.5px;
}
.c-tab__item {
  width: calc(33.3333% - 5px);
  margin: 5px 2.5px;
}
.c-tab__figure > figcaption {
  color: var(--black);
  line-height: 1.4;
  font-size: 9px;
  font-size: 0.5625rem;
  font-size: clamp(0.5625rem, 0.4084507042rem + 0.6572769953vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 1em auto 0;
}
.c-tab__title {
  color: var(--blue-primary);
  line-height: 1.8;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 0 auto 1em;
}
.c-tab__title br {
  display: block;
}
.c-tab__note {
  color: var(--blue-primary);
  line-height: 1.8;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 3em auto 0;
}
.c-tab__note br {
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-tab__buttons {
    padding: 0;
  }
  .c-tab__button {
    padding: 0.7em 0;
    margin: 0 10px;
    border-width: 4px;
  }
  .c-tab__button br {
    display: none;
  }
  .c-tab__panels {
    margin-top: -4px;
    border-width: 4px;
  }
  .c-tab__content {
    padding: 45px 130px;
  }
  .c-tab__list {
    margin: -20px -10px;
  }
  .c-tab__item {
    width: calc(25% - 20px);
    margin: 20px 10px;
  }
  .c-tab__title {
    line-height: 1.4;
  }
  .c-tab__title br {
    display: none;
  }
  .c-tab__note {
    line-height: 1.4;
  }
  .c-tab__note br {
    display: none;
  }
}

.c-listEquipment__list {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.c-listEquipment__item {
  width: 100%;
  margin: var(--space-md) 0 0;
}
.c-listEquipment__thumbnail {
  position: relative;
  z-index: 1;
}
.c-listEquipment__text {
  margin-top: -1.75rem;
}
.c-listEquipment__title {
  color: var(--white);
  width: 60vw;
  max-width: 263px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  aspect-ratio: 263/55;
  margin: 0 auto;
  background: url("../../assets/img/bg-listequipment.png") no-repeat center center/cover;
}
.c-listEquipment__desc {
  color: var(--black);
  line-height: 1.8;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7279929577rem + 0.0938967136vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: justify;
  margin: 1em auto 0;
}
@media screen and (min-width: 768px) {
  .c-listEquipment__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -3.5%;
  }
  .c-listEquipment__item {
    width: 43%;
    margin: 0 3.5%;
  }
  .c-listEquipment__item:nth-child(even) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .c-listEquipment__title {
    width: auto;
  }
}

.c-listSuggestion__list {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.c-listSuggestion__item {
  width: 100%;
  margin: var(--space-md) 0 0;
}
.c-listSuggestion__thumbnail {
  position: relative;
  z-index: 1;
}
.c-listSuggestion__text {
  margin-top: -1.75rem;
}
.c-listSuggestion__title {
  color: var(--white);
  width: 60vw;
  max-width: 263px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  aspect-ratio: 263/55;
  margin: 0 auto;
  background: url("../../assets/img/bg-listequipment.png") no-repeat center center/cover;
}
.c-listSuggestion__desc {
  color: var(--black);
  line-height: 1.8;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.7279929577rem + 0.0938967136vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: justify;
  margin: 1em auto 0;
}
@media screen and (min-width: 768px) {
  .c-listSuggestion__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -3.5%;
  }
  .c-listSuggestion__item {
    width: 43%;
    margin: 0 3.5%;
  }
  .c-listSuggestion__item:nth-child(even) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .c-listSuggestion__title {
    width: auto;
  }
}

.c-cardFitness {
  display: flex;
  flex-direction: column;
}
.c-cardFitness--reverse {
  flex-direction: column;
}
.c-cardFitness__thumbnail {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: var(--space-md) 0 0;
}
.c-cardFitness__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: var(--space-xs) 0 0;
}
.c-cardFitness__title {
  color: var(--blue-primary);
  width: 100%;
  display: table;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-bottom: 0.7em;
  border-bottom: 0.16em solid var(--blue-primary);
}
.c-cardFitness__title span {
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-size: 70px;
  font-size: 4.375rem;
  font-size: clamp(4.375rem, 3.8028169014rem + 2.441314554vw, 6rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  position: absolute;
  bottom: 0.15em;
  left: 0;
  transform: translateX(-0.3em);
  mix-blend-mode: multiply;
}
.c-cardFitness__desc {
  color: var(--black);
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: justify;
  margin: 1.5em 0 0;
}
@media screen and (min-width: 1024px) {
  .c-cardFitness {
    flex-direction: row-reverse;
  }
  .c-cardFitness--reverse {
    flex-direction: row;
  }
  .c-cardFitness--reverse .c-cardFitness__thumbnail {
    margin: 0 50px 0 0;
  }
  .c-cardFitness__thumbnail {
    width: calc(100% - 550px);
    margin: 0 0 0 50px;
  }
  .c-cardFitness__content {
    max-width: 500px;
    margin: 70px 0 0;
  }
  .c-cardFitness__desc {
    margin: 1.8em 0 0;
  }
}

.c-listVoice--type2 .c-listVoice__question {
  background-color: #0079C3;
}
.c-listVoice--type2 .c-listVoice__question::after {
  background: url("../../assets/img/parts-balloon-blue-left.png") no-repeat 0 0/cover;
}
.c-listVoice__list > * + * {
  margin-top: 40px;
}
.c-listVoice__question {
  width: 95%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1em 1em;
  border-radius: 8px;
  background-color: #27ADFF;
}
.c-listVoice__question::after {
  content: "";
  display: block;
  width: 25px;
  height: auto;
  aspect-ratio: 35/28;
  background: url("../../assets/img/parts-balloon-marin-left.png") no-repeat 0 0/cover;
  position: absolute;
  top: 100%;
  left: 5%;
}
.c-listVoice__question .icon {
  color: var(--marin-secondary);
  line-height: 1;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 2.323943662rem + 0.7511737089vw, 3rem);
  font-weight: 600;
  margin: 0 0.4em 0 0;
  transform: translateY(-0.08em);
}
.c-listVoice__question .title {
  color: var(--white);
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.c-listVoice__answer {
  width: 95%;
  min-height: 95px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1em 1em;
  margin: 30px 0 0 auto;
  border-radius: 8px;
  background-color: var(--white);
}
.c-listVoice__answer::after {
  content: "";
  display: block;
  width: 25px;
  height: auto;
  aspect-ratio: 35/28;
  background: url("../../assets/img/parts-balloon-white-right.png") no-repeat 0 0/cover;
  position: absolute;
  top: 100%;
  right: 5%;
}
.c-listVoice__answer .title {
  color: var(--gray20);
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .c-listVoice__question {
    padding: 14px 30px;
    border-radius: 10px;
  }
  .c-listVoice__question::after {
    width: 35px;
  }
  .c-listVoice__question .icon {
    margin: 0 0.6em 0 0;
  }
  .c-listVoice__answer {
    padding: 14px 30px;
    border-radius: 10px;
  }
  .c-listVoice__answer::after {
    width: 35px;
  }
}

.c-buttonYellowToRecruitment {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  border: 3px solid var(--blue-primary);
  border-radius: 5px;
  padding: 1.25em 1em;
  background-color: var(--yellow-primary);
  transition: all 0.35s ease;
}
.c-buttonYellowToRecruitment:hover {
  opacity: 0.5;
}
.c-buttonYellowToRecruitment::after {
  content: "";
  display: block;
  width: 1.375em;
  aspect-ratio: 33/19;
  margin-left: 1em;
  background: url("../../assets/img/icon-arrow-blue-md.svg") no-repeat 0 0/cover;
}
.c-buttonYellowToRecruitment__title {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1024px) {
  .c-buttonYellowToRecruitment {
    padding: 1.45em 1em;
    border-width: 4px;
  }
}

.c-tableRecruitment {
  width: 100%;
}
.c-tableRecruitment tbody tr:first-child th {
  border-top: 1px solid var(--blue-primary);
}
.c-tableRecruitment tbody tr:first-child td {
  border-top: 1px solid var(--gray70);
}
.c-tableRecruitment tbody tr th, .c-tableRecruitment tbody tr td {
  line-height: 1.8;
  line-break: strict;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-tableRecruitment tbody tr th {
  color: var(--blue-primary);
  min-width: 8em;
  font-weight: 700;
  vertical-align: top;
  padding: 1.4em 0 1.2em;
  border-bottom: 1px solid var(--blue-primary);
}
.c-tableRecruitment tbody tr td {
  color: var(--black);
  padding: 1.4em 1em 1.2em;
  vertical-align: top;
  border-bottom: 1px solid var(--gray70);
}
.c-tableRecruitment tbody tr td h3, .c-tableRecruitment tbody tr td p {
  font-size: inherit;
}
.c-tableRecruitment tbody tr td a {
  color: var(--blue-primary);
  display: inline;
  transition: all 0.35s ease;
}
.c-tableRecruitment tbody tr td a:hover {
  opacity: 0.5;
}
.c-buttonBlueRecruitment {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 1;
  padding: 1.2em 2em;
  border-radius: 5px;
  background-color: var(--blue-primary);
  transition: all 0.35s ease;
}
.c-buttonBlueRecruitment:hover {
  opacity: 0.5;
}
.c-buttonBlueRecruitment::after {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  background: url("../../assets/img/icon-arrow-white.svg") no-repeat 0 0/cover;
}
.c-buttonBlueRecruitment__title {
  color: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8529929577rem + 0.0938967136vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  padding: 2.5em 2em;
  border-radius: 10px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output {
  margin: 3em 0 0;
  background-color: #ff0001;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: var(--blue-primary);
  background-color: var(--yellow-primary);
}

.c-form__form table {
  width: 100%;
}
.c-form__form table tbody tr:first-child th {
  padding: 0;
}
.c-form__form table tbody th, .c-form__form table tbody td {
  color: var(--black);
  display: block;
  width: 100%;
  text-align: left;
}
.c-form__form table tbody th {
  position: relative;
  min-width: 17em;
  line-height: 1;
  font-size: inherit;
  padding: 1.5em 0 0;
}
.c-form__form table tbody td {
  width: 100%;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 400;
  padding: 0.8em 0 0;
}
.c-form__form table tbody td input[type=text], .c-form__form table tbody td input[type=email], .c-form__form table tbody td input[type=tel], .c-form__form table tbody td select, .c-form__form table tbody td textarea {
  color: var(--black);
  width: 100%;
  line-height: 1.4;
  font-size: inherit;
  border: 1px solid var(--gray60);
  outline: none;
  border-radius: 4px;
  background-color: var(--white);
  transition: border 0.35s ease;
}
.c-form__form table tbody td input[type=text]::-moz-placeholder, .c-form__form table tbody td input[type=email]::-moz-placeholder, .c-form__form table tbody td input[type=tel]::-moz-placeholder, .c-form__form table tbody td select::-moz-placeholder, .c-form__form table tbody td textarea::-moz-placeholder {
  color: var(--gray50);
}
.c-form__form table tbody td input[type=text]::placeholder, .c-form__form table tbody td input[type=email]::placeholder, .c-form__form table tbody td input[type=tel]::placeholder, .c-form__form table tbody td select::placeholder, .c-form__form table tbody td textarea::placeholder {
  color: var(--gray50);
}
.c-form__form table tbody td input[type=text]:focus, .c-form__form table tbody td input[type=email]:focus, .c-form__form table tbody td input[type=tel]:focus, .c-form__form table tbody td select:focus, .c-form__form table tbody td textarea:focus {
  border-color: var(--blue-secondary);
}
.c-form__form table tbody td input[type=text].w-sm, .c-form__form table tbody td input[type=email].w-sm, .c-form__form table tbody td input[type=tel].w-sm, .c-form__form table tbody td select.w-sm, .c-form__form table tbody td textarea.w-sm {
  max-width: 7em;
}
.c-form__form table tbody td input[type=text], .c-form__form table tbody td input[type=email], .c-form__form table tbody td input[type=tel], .c-form__form table tbody td textarea {
  padding: 0.5em 1em;
}
.c-form__form table tbody td select {
  padding: 0.5em 3em 0.5em 1em;
  background-color: var(--gray80);
}
.c-form__form table tbody td .flex {
  display: flex;
  gap: 1.5em;
}
.c-form__form table tbody td textarea {
  min-height: 230px;
}
.c-form__form table tbody td textarea.h-sm {
  min-height: 100px;
}
.c-form__title {
  color: var(--black);
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-form__note {
  color: var(--black);
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
.c-form__require {
  color: var(--red-primary);
  display: inline-block;
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vw, 0.75rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 0.2em 0.5em;
  margin: 0;
  border: 1px solid var(--red-primary);
  border-radius: 2px;
}
.c-form__agree {
  text-align: center;
  margin-top: var(--space-sm);
}
.c-form__button {
  margin: var(--space-md) auto 0;
}
@media screen and (min-width: 768px) {
  .c-form__form table tbody tr:first-child th {
    padding: 1.5em 0 0;
  }
  .c-form__form table tbody th, .c-form__form table tbody td {
    display: table-cell;
    vertical-align: top;
    border-bottom: 1px solid var(--gray03);
  }
  .c-form__form table tbody th {
    width: auto;
    padding: 1.5em 0 0;
  }
  .c-form__form table tbody td {
    padding: 1em 0;
  }
  .c-form__require {
    position: absolute;
    top: 2.3em;
    right: 2em;
  }
  .c-form__agree {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .c-form__button {
    margin: 40px auto 0;
  }
}

.c-buttonSelect {
  position: relative;
  width: 100%;
}
.c-buttonSelect::after {
  pointer-events: none;
  content: "";
  display: block;
  width: 8px;
  height: 17px;
  background: url("../../assets/img/icon-select-arrow.png") no-repeat 0 0/cover;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.c-radio {
  display: flex;
  flex-direction: row;
}
.c-radio > * + * {
  margin-left: 2em;
}
.c-radio__title {
  color: var(--black);
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.c-radio input[type=radio] + .c-radio__title {
  display: block;
  line-height: 1.2;
}
.c-radio input[type=radio] + .c-radio__title:hover {
  cursor: pointer;
}
.c-radio input[type=radio] + .c-radio__title:before {
  content: "";
  background: #ffffff;
  border-radius: 100%;
  border: 1px solid var(--gray60);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0;
  margin-right: 0.5em;
  vertical-align: sub;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.c-radio input[type=radio]:checked + .c-radio__title:before {
  background-color: var(--blue-primary);
  box-shadow: inset 0 0 0 4px #ffffff;
}
.c-radio input[type=radio]:focus + .c-radio__title:before {
  outline: none;
  border-color: var(--blue-primary);
}
.c-radio input[type=radio]:disabled + .c-radio__title:before {
  box-shadow: inset 0 0 0 4px #ffffff;
  border-color: var(--gray60);
  background: var(--gray60);
}
.c-radio input[type=radio] + .c-radio__title:empty:before {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .c-radio {
    padding: 10px 0;
  }
}

.c-checkbox__input {
  display: none;
}
.c-checkbox__label {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.5em;
  position: relative;
  width: auto;
}
.c-checkbox__label::before {
  background: #fff;
  border: 1px solid var(--gray60);
  border-radius: 3px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  left: 0;
  margin-top: -9px;
  position: absolute;
  top: 50%;
}
.c-checkbox__label::after {
  opacity: 0;
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  margin-top: -7px;
  border-right: 2px solid var(--blue-primary);
  border-bottom: 2px solid var(--blue-primary);
  position: absolute;
  top: 50%;
  left: 6px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.c-checkbox__label > a {
  color: var(--blue-secondary);
  display: inline;
  text-decoration: underline;
}

input[type=checkbox]:checked + .c-checkbox__label::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
}

.c-buttonSubmit {
  width: 100%;
  max-width: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: opacity 0.35s ease;
}
.c-buttonSubmit.is-submit-ok:hover {
  opacity: 0.5;
}
.c-buttonSubmit.is-submit-ok .c-buttonSubmit__icon {
  opacity: 1;
}
.c-buttonSubmit input[type=submit], .c-buttonSubmit input[type=button] {
  color: #ffffff;
  cursor: pointer;
  width: 100%;
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  font-weight: 700;
  padding: 1.5em 2em;
  border: none;
  border-radius: 5px;
  border: none;
  background-color: var(--blue-primary);
  transition: opacity 0.35s ease;
}
.c-buttonSubmit input[type=submit]:disabled, .c-buttonSubmit input[type=button]:disabled {
  pointer-events: none;
  opacity: 0.2;
}
.c-buttonSubmit__icon {
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
  right: 40px;
  transition: opacity 0.2s ease;
}

.c-buttonBack {
  color: #ffffff;
  width: 100%;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 1em auto 0;
  background-color: var(--gray60);
}
.c-buttonBack input[type=submit], .c-buttonBack input[type=button], .c-buttonBack button {
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-weight: 700;
  padding: 0.5em 0;
  margin: 0;
  border: none;
  transition: opacity 0.2s ease;
}
.c-buttonBack input[type=submit][aria-disabled=true], .c-buttonBack input[type=button][aria-disabled=true], .c-buttonBack button[aria-disabled=true] {
  pointer-events: none;
  opacity: 0.2;
}
.c-buttonBack input[type=submit][aria-disabled=false]:hover, .c-buttonBack input[type=button][aria-disabled=false]:hover, .c-buttonBack button[aria-disabled=false]:hover {
  opacity: 0.5;
}

.js-initTopHero .cover, .js-initTopHero .title {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.js-initTopHero {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.js-initTopHero .title {
  display: block;
}
.js-initTopHero .cover {
  display: block;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 95%;
  background-color: var(--blue-primary);
  background: linear-gradient(90deg, rgba(0, 121, 195, 0.5) 0%, rgba(164, 225, 255, 0.5) 100%);
  position: absolute;
  top: 0%;
  left: 0;
}

.p-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-hero__inner {
  width: 100%;
  height: calc(100dvh - 50px);
  background: var(--white);
}
.p-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}
.p-hero__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-hero__video::after {
  content: "";
  display: block;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-hero__content {
  width: 100%;
  position: absolute;
  bottom: 3rem;
  left: 20px;
  z-index: 3;
}
.p-hero__title {
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-size: clamp(2.8125rem, 1.8221830986rem + 4.2253521127vw, 5.625rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  margin: 0;
}
.p-hero__subtitle {
  line-height: 1;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  margin-top: 0.4em;
}
.p-hero__subtitle svg {
  width: 6.7em;
  height: auto;
  max-width: 541px;
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    height: calc(100dvh - 70px);
  }
  .p-hero__content {
    left: 8%;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero__inner {
    height: calc(100dvh - 90px);
  }
  .p-hero__content {
    left: 4%;
    bottom: 55px;
  }
}

.p-banner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--space-md) * 1.2);
}
.p-banner__banner {
  width: 100%;
  max-width: 358px;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.p-banner__banner:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-banner__banner {
    width: 100%;
    max-width: 816px;
  }
}
@media screen and (min-width: 1024px) {
  .p-banner {
    padding-top: 80px;
  }
}

.p-about {
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
}
.p-about__content {
  display: flex;
  flex-direction: column-reverse;
}
.p-about__column {
  width: 100%;
  max-width: 600px;
  padding: 0 10px;
  margin: 0 auto;
}
.p-about__column:not(:last-child) {
  margin-top: var(--space-sm);
}
.p-about__headingGroup {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.p-about__heading {
  color: var(--blue-primary);
  display: block;
  position: relative;
  line-height: 0.8;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-bottom: 1.2em;
  margin: 0;
}
.p-about__heading::after {
  content: "";
  display: block;
  width: 5.5em;
  height: 2px;
  background-color: var(--blue-primary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-about__subheading {
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  margin: 30px 0 0;
}
.p-about__subheading svg {
  width: 15em;
  max-width: 450px;
  height: auto;
}
.p-about__lead {
  color: var(--black);
  display: block;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: justify;
  margin: 1.2em 0 0;
}
.p-about__thumbnail {
  max-width: 600px;
  margin: 0 auto;
}
.p-about__button {
  color: var(--white);
  max-width: 220px;
  margin: 1.5rem 0 0;
}
.p-about__objects > * > span {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 5px;
}
.p-about__objects > *.obj01 > span {
  opacity: 0.3;
  width: 62vw;
  height: 62vw;
  background-color: var(--marin-secondary);
  top: -12vw;
  left: 45vw;
}
.p-about__objects > *.obj02 > span {
  opacity: 0.5;
  width: 18vw;
  height: 18vw;
  background-color: var(--marin-secondary);
  top: 35vw;
  left: 89vw;
}
.p-about__objects > *.obj03 > span {
  opacity: 0.2;
  width: 12vw;
  height: 12vw;
  background-color: var(--blue-primary);
  top: 66vw;
  left: 83vw;
}
@media screen and (min-width: 1024px) {
  .p-about {
    margin-top: 85px;
  }
  .p-about__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .p-about__column {
    width: 50%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0;
    margin: 0;
  }
  .p-about__column:not(:last-child) {
    margin-top: 0;
  }
  .p-about__lead {
    letter-spacing: 0.15em;
    margin: 2em 0 0;
  }
  .p-about__thumbnail {
    max-width: 500px;
    margin: 0 0 0 auto;
  }
  .p-about__thumbnail img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-about__button {
    margin: 30px 0 0;
  }
  .p-about__objects > *.obj01 > span {
    width: 428px;
    height: 428px;
    top: -150px;
    left: calc(50% + 300px);
  }
  .p-about__objects > *.obj02 > span {
    width: 130px;
    height: 130px;
    top: 240px;
    left: calc(50% + 620px);
  }
  .p-about__objects > *.obj03 > span {
    width: 80px;
    height: 80px;
    top: 400px;
    left: calc(50% + 580px);
  }
}

.p-quality {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--space-lg) * 2);
}
.p-quality__content {
  display: flex;
  flex-direction: column-reverse;
  padding: 0 10px;
}
.p-quality__column {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.p-quality__column:not(:last-child) {
  margin-top: var(--space-md);
}
.p-quality__headingGroup {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.p-quality__heading {
  color: var(--blue-primary);
  display: block;
  position: relative;
  line-height: 0.8;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-bottom: 1.2em;
  margin: 0;
}
.p-quality__heading::after {
  content: "";
  display: block;
  width: 5.5em;
  height: 2px;
  background-color: var(--blue-primary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-quality__subheading {
  margin: 20px 0 0;
}
.p-quality__lead {
  color: var(--black);
  display: block;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: justify;
  margin: 1.5em 0 0;
}
.p-quality__thumbnail {
  max-width: 600px;
  margin: 0 0 0 auto;
}
.p-quality__button {
  color: var(--white);
  max-width: 270px;
  margin: 1.5rem 0 0;
}
.p-quality__objects > * > span {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 5px;
}
.p-quality__objects > *.obj01 > span {
  opacity: 0.2;
  width: 35vw;
  height: 35vw;
  background-color: var(--blue-primary);
  top: -11vw;
  right: 87vw;
}
.p-quality__objects > *.obj02 > span {
  opacity: 0.5;
  width: 22vw;
  height: 22vw;
  background-color: var(--marin-secondary);
  top: 12vw;
  right: 74vw;
}
.p-quality__objects > *.obj03 > span {
  opacity: 0.3;
  width: 43vw;
  height: 43vw;
  background-color: var(--marin-secondary);
  top: 40vw;
  left: 63vw;
}
@media screen and (min-width: 1024px) {
  .p-quality {
    margin-top: 125px;
  }
  .p-quality__content {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  .p-quality__column {
    width: 50%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0;
  }
  .p-quality__column:not(:last-child) {
    margin-top: 0;
  }
  .p-quality__headingGroup {
    margin: 0 0 0 8%;
  }
  .p-quality__lead {
    letter-spacing: 0.15em;
  }
  .p-quality__thumbnail {
    max-width: 500px;
    margin: 0 0 0 auto;
  }
  .p-quality__thumbnail img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-quality__button {
    margin: 30px 0 0;
  }
  .p-quality__objects > *.obj01 > span {
    width: 130px;
    height: 130px;
    top: -55px;
    right: calc(50% + 650px);
  }
  .p-quality__objects > *.obj02 > span {
    width: 80px;
    height: 80px;
    top: 0px;
    right: calc(50% + 600px);
  }
  .p-quality__objects > *.obj03 > span {
    width: 310px;
    height: 310px;
    top: 180px;
    left: inherit;
    right: calc(50% + 240px);
  }
}

.p-business {
  position: relative;
  z-index: 2;
  margin-top: var(--space-xxl);
}
.p-business::after {
  content: "";
  display: block;
  width: 100vw;
  height: calc(100% - 30vw);
  background: url("../../assets/img/bg-top-business.jpg") repeat center center/19px 19px;
  position: absolute;
  top: 30vw;
  left: 0;
  z-index: -1;
}
.p-business__content {
  display: flex;
  flex-direction: column-reverse;
  max-width: 600px;
  padding-bottom: var(--space-lg);
  margin: 0 auto;
}
.p-business__column {
  width: 100%;
}
.p-business__headingGroup {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: var(--space-sm) 0 0;
}
.p-business__heading {
  color: var(--white);
  display: block;
  line-height: 0.8;
  font-size: 35px;
  font-size: 2.1875rem;
  font-size: clamp(2.1875rem, 1.9454225352rem + 1.0328638498vw, 2.875rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0;
}
.p-business__subheading {
  color: var(--white);
  display: block;
  line-height: 0.8;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 2em 0 0;
}
.p-business__lead {
  color: var(--white);
  display: block;
  line-height: 2;
  line-break: strict;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: justify;
  margin: 1.5em 0 0;
}
.p-business__button {
  color: var(--blue-primary);
  max-width: 220px;
  margin: 30px 0 0;
}
.p-business__thumbnail {
  width: 100%;
  padding: 0 10px;
}
@media screen and (min-width: 1024px) {
  .p-business {
    margin-top: 125px;
  }
  .p-business::after {
    width: 80vw;
    height: 100%;
    top: 0;
  }
  .p-business__content {
    flex-direction: row;
    justify-content: space-between;
    max-width: none;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .p-business__column {
    width: 50%;
  }
  .p-business__headingGroup {
    margin: 0 8% 0 0;
  }
  .p-business__lead {
    line-height: 1.8;
    margin: 2em 0 0;
  }
  .p-business__thumbnail {
    width: 50vw;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

.p-environment {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--space-lg) * 2.5);
}
.p-environment__body {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20vw 9% 0;
  margin: 0 auto;
  aspect-ratio: 320/710;
  background: url("../../assets/img/bg-top-environment-sp.jpg") no-repeat 0 0/cover;
  -webkit-mask: url("../../assets/img/mask-top-environment-sp.svg") no-repeat 0 0/cover;
          mask: url("../../assets/img/mask-top-environment-sp.svg") no-repeat 0 0/cover;
}
.p-environment__thumbnail {
  width: 60%;
  max-width: 198px;
}
.p-environment__content {
  width: 100%;
  margin: var(--space-xs) 0 0;
}
.p-environment__title {
  color: var(--white);
  line-height: 1.6;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.2059859155rem + 0.1877934272vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
.p-environment__title br {
  display: block;
}
.p-environment__desc {
  color: var(--white);
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vw, 0.9375rem);
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.15em;
  margin-top: 1.2em;
}
.p-environment__button {
  color: var(--blue-primary);
  max-width: 275px;
  margin: 1.2em 0 0;
}
.p-environment__objects > * > span {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 5px;
}
.p-environment__objects > *.obj01 > span {
  opacity: 0.3;
  width: 50vw;
  height: 50vw;
  background-color: var(--marin-secondary);
  top: -23%;
  right: 80vw;
}
.p-environment__objects > *.obj02 > span {
  opacity: 0.5;
  width: 18vw;
  height: 18vw;
  background-color: var(--marin-secondary);
  top: -15%;
  right: 70vw;
}
.p-environment__objects > *.obj03 > span {
  opacity: 0.5;
  width: 25vw;
  height: 25vw;
  background-color: var(--marin-secondary);
  top: 87%;
  left: 80%;
}
.p-environment__objects > *.obj04 > span {
  opacity: 0.2;
  width: 16vw;
  height: 16vw;
  background-color: var(--blue-primary);
  top: 95%;
  left: 73%;
}
@media screen and (min-width: 768px) {
  .p-environment__body {
    flex-direction: row;
    max-width: 860px;
    aspect-ratio: 860/500;
    padding: 0 10%;
    background: url("../../assets/img/bg-top-environment.jpg") no-repeat 0 0/cover;
    -webkit-mask: url("../../assets/img/mask-top-environment-mb.svg") no-repeat 0 0/100% auto;
            mask: url("../../assets/img/mask-top-environment-mb.svg") no-repeat 0 0/100% auto;
  }
  .p-environment__thumbnail {
    width: auto;
  }
  .p-environment__content {
    width: calc(100% - 198px - 50px);
    margin: 0 0 0 auto;
  }
  .p-environment__title {
    line-height: 1;
    text-align: left;
  }
  .p-environment__title br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-environment {
    margin-top: 105px;
  }
  .p-environment__body {
    aspect-ratio: 860/300;
    padding: 0 12%;
    background: url("../../assets/img/bg-top-environment.jpg") no-repeat 0 0/cover;
    -webkit-mask: url("../../assets/img/mask-top-environment.svg") no-repeat 0 0/100% auto;
            mask: url("../../assets/img/mask-top-environment.svg") no-repeat 0 0/100% auto;
  }
  .p-environment__objects > *.obj01 > span {
    width: 314px;
    height: 314px;
    top: -170px;
    right: calc(50% + 635px);
  }
  .p-environment__objects > *.obj02 > span {
    width: 114px;
    height: 114px;
    top: -48px;
    right: calc(50% + 565px);
  }
  .p-environment__objects > *.obj03 > span {
    width: 130px;
    height: 130px;
    top: 210px;
    left: calc(50% + 615px);
  }
  .p-environment__objects > *.obj04 > span {
    width: 80px;
    height: 80px;
    top: 265px;
    left: calc(50% + 575px);
  }
}

.p-recruit {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--space-lg) * 2);
  margin-bottom: var(--space-md);
}
.p-recruit__body {
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: var(--space-lg) 6% var(--space-md);
  margin: 0 auto;
}
.p-recruit__body::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../../assets/img/bg-top-recruit.jpg") repeat center center/19px 19px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-recruit__content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: -9vw 0 0;
}
.p-recruit__title {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0.82;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-size: 78px;
  font-size: 4.875rem;
  font-size: clamp(4.875rem, 3.5545774648rem + 5.6338028169vw, 8.625rem);
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0;
}
.p-recruit__title > span {
  color: var(--blue-primary);
  display: block;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.7764084507rem + 1.220657277vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin-top: -0.6em;
}
.p-recruit__desc {
  color: var(--black);
  max-width: 28em;
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.05em;
  margin: 1.8em auto 0;
}
.p-recruit__desc br {
  display: none;
}
.p-recruit__button {
  color: var(--blue-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 1.5em auto 0;
}
.p-recruit__button > a {
  color: var(--white);
  width: 80%;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8529929577rem + 0.0938967136vw, 0.9375rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 1.4em 0;
  border-radius: 5px;
  background-color: var(--blue-primary);
  transition: all 0.35s ease;
}
.p-recruit__button > a:hover {
  opacity: 0.5;
}
.p-recruit__thumbnail {
  position: relative;
  z-index: 1;
  max-width: 486px;
  margin: -27vw 0 0;
}
.p-recruit__objects > * > span {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 5px;
}
.p-recruit__objects > *.obj01 > span {
  opacity: 0.5;
  width: 12vw;
  height: 12vw;
  background-color: var(--marin-secondary);
  top: 96%;
  right: 90%;
}
.p-recruit__objects > *.obj02 > span {
  opacity: 0.2;
  width: 38vw;
  height: 38vw;
  background-color: var(--marin-secondary);
  top: 105%;
  right: 57%;
}
.p-recruit__objects > *.obj03 > span {
  opacity: 0.3;
  width: 20vw;
  height: 20vw;
  background-color: var(--marin-secondary);
  top: 124%;
  right: 86%;
}
@media screen and (min-width: 768px) {
  .p-recruit {
    margin-top: calc(var(--space-lg) * 4.5);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit {
    margin-top: 85px;
    margin-bottom: 0;
  }
  .p-recruit__body {
    max-width: none;
    flex-direction: row;
    padding: 0 3.125rem; /* 50px相当 */
  }
  .p-recruit__body::after {
    height: 84%;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-recruit__body::after > a {
    width: 50%;
  }
  .p-recruit__content {
    width: calc(100% - 486px - 50px);
    margin: 0;
  }
  .p-recruit__thumbnail {
    margin: 0 0 0 auto;
  }
  .p-recruit__desc {
    margin: 2.2em auto 0;
  }
  .p-recruit__desc br {
    display: block;
  }
  .p-recruit__button {
    flex-direction: row;
    max-width: 395px;
    gap: 2.5rem;
    margin: 1.8em auto 0;
  }
  .p-recruit__button > a {
    padding: 1.2em 0;
  }
  .p-recruit__objects > *.obj01 > span {
    width: 70px;
    height: 70px;
    top: 230px;
    right: calc(50% + 680px);
  }
  .p-recruit__objects > *.obj02 > span {
    width: 235px;
    height: 235px;
    top: 340px;
    right: calc(50% + 450px);
  }
  .p-recruit__objects > *.obj03 > span {
    width: 124px;
    height: 124px;
    top: 540px;
    right: calc(50% + 635px);
  }
}

.p-officialX {
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.p-officialX__content {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8274647887rem + 0.4694835681vw, 1.25rem);
  color: var(--black);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.p-officialX__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  max-width: 300px;
  padding: 1.5em 0;
  margin: 0 auto;
  border-radius: 5px;
  background-color: var(--black);
  transition: background-color 0.35s ease;
}
.p-officialX__button:hover {
  background-color: var(--blue-primary);
}
.p-officialX__icon {
  margin-right: 1em;
}
.p-officialX__icon svg {
  width: 1.5em;
  max-width: 31px;
  height: auto;
}
.p-officialX__title {
  color: var(--white);
  font-family: var(--japansese-sans-serif);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.p-officialX__objects > * > span {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 5px;
}
.p-officialX__objects > *.obj01 > span {
  opacity: 0.3;
  width: 170px;
  height: 170px;
  background-color: var(--marin-secondary);
  top: -20px;
  left: calc(50% + 450px);
}
@media screen and (min-width: 1024px) {
  .p-officialX {
    margin-top: 80px;
    margin-bottom: 100px;
  }
  .p-officialX__button {
    width: 100%;
    max-width: 550px;
    padding: 1.8em 0;
  }
}

.u-container {
  width: 100%;
  max-width: 1250px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.u-container--max1000 {
  max-width: 1100px;
}
.u-container--max950 {
  max-width: 1050px;
}
.u-container--max900 {
  max-width: 1000px;
}
.u-container--max850 {
  max-width: 950px;
}
.u-container--max800 {
  max-width: 900px;
}
.u-container--max750 {
  max-width: 850px;
}
.u-container--max700 {
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .u-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 820px) {
  .u-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .u-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

:root {
  --swiper-theme-color: var(--blue-primary) !important;
  --swiper-navigation-size: 30px !important;
}

.js-sliderHero {
  width: 100%;
  height: 100%;
}
.js-sliderHero .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.js-sliderHero .swiper-slide {
  cursor: grab;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.js-sliderHero .swiper-slide-image {
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.js-sliderHero .swiper-slide-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}
.js-sliderHero .swiper-slide-active .swiper-slide-image,
.js-sliderHero .swiper-slide-duplicate-active .swiper-slide-image,
.js-sliderHero .swiper-slide-prev .swiper-slide-image {
  animation: zoomUp 6s linear 0s;
  animation-fill-mode: both;
}
.js-sliderHero .swiper-horizontal > .swiper-pagination-progressbar,
.js-sliderHero .swiper-pagination-progressbar.swiper-pagination-horizontal {
  bottom: 0;
  top: auto;
}
.js-sliderHero .swiper-button-next, .js-sliderHero .swiper-button-prev {
  transition: opacity 0.35s ease;
}
.js-sliderHero .swiper-button-next:hover, .js-sliderHero .swiper-button-prev:hover {
  opacity: 0.5;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.js-sliderSingleBusiness {
  overflow: hidden;
}
.js-sliderSingleBusiness .swiper-container {
  position: relative;
}
.js-sliderSingleBusiness .swiper-slide {
  cursor: grab;
}
.js-sliderSingleBusiness .swiper-pagination {
  text-align: left;
  line-height: 1;
}
.js-sliderSingleBusiness .swiper-horizontal > .swiper-pagination-bullets, .js-sliderSingleBusiness .swiper-pagination-bullets.swiper-pagination-horizontal, .js-sliderSingleBusiness .swiper-pagination-custom, .js-sliderSingleBusiness .swiper-pagination-fraction {
  position: relative;
  line-height: 1;
  bottom: 0;
  text-align: center;
}
.js-sliderSingleBusiness .swiper-pagination-bullet {
  opacity: 1;
  width: 50px;
  height: 2px;
  bottom: 0;
  border-radius: 0;
  background-color: var(--gray70);
}
.js-sliderSingleBusiness .swiper-pagination-bullet-active {
  background-color: var(--marin-primary);
}
.js-sliderSingleBusiness .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .js-sliderSingleBusiness .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 0 0;
}
@media screen and (min-width: 500px) {
  .js-sliderSingleBusiness .swiper-pagination-bullet {
    width: 60px;
    height: 3px;
  }
}
@media screen and (min-width: 768px) {
  .js-sliderSingleBusiness .swiper-pagination-bullet {
    width: 70px;
    height: 3px;
  }
}
@media screen and (min-width: 820px) {
  .js-sliderSingleBusiness .swiper-pagination-bullet {
    width: 80px;
    height: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .js-sliderSingleBusiness img {
    height: 466px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.js-carousel.is-swiper-inactive {
  overflow: auto;
}
.js-carousel.is-swiper-inactive .swiper-wrapper {
  gap: 10px;
}
.js-carousel.is-swiper-inactive .swiper-slide {
  width: calc(45.4545% - 6px);
}
.js-carousel.is-swiper-inactive .swiper-button-next,
.js-carousel.is-swiper-inactive .swiper-button-prev {
  display: none;
}
.js-carousel .swiper-wrapper {
  transition: transform 5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.js-carousel .swiper-buttons {
  position: absolute;
  top: calc(50% - 120px);
  width: calc(100% - 20px);
  height: 50px;
}
.js-carousel .swiper-button-prev, .js-carousel .swiper-button-next {
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1;
  transition: opacity 0.35s ease;
}
.js-carousel .swiper-button-prev:hover, .js-carousel .swiper-button-next:hover {
  opacity: 0.5;
}
.js-carousel .swiper-button-prev::before, .js-carousel .swiper-button-next::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100%;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.05);
}
.js-carousel .swiper-button-prev::after, .js-carousel .swiper-button-next::after {
  display: none;
}
.js-carousel .swiper-button-prev {
  left: -8px;
}
.js-carousel .swiper-button-prev::before {
  background: url("../../assets/img/nav-slide-prev.png") no-repeat center center;
  background-size: contain;
}
.js-carousel .swiper-button-next {
  right: 12px;
}
.js-carousel .swiper-button-next::before {
  background: url("../../assets/img/nav-slide-next.png") no-repeat center center;
  background-size: contain;
}
.js-carousel .swiper-button-next.swiper-button-disabled, .js-carousel .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
@media screen and (min-width: 500px) {
  .js-carousel.is-swiper-inactive .swiper-wrapper {
    gap: 12px;
  }
  .js-carousel.is-swiper-inactive .swiper-slide {
    width: calc(45.4545% - 8px);
  }
}
@media screen and (min-width: 768px) {
  .js-carousel.is-swiper-inactive .swiper-wrapper {
    gap: 16px;
  }
  .js-carousel.is-swiper-inactive .swiper-slide {
    width: calc(25% - 12px);
  }
  .js-carousel .swiper-buttons {
    top: calc(50% - 80px);
    width: calc(100% - 60px);
    height: 60px;
  }
  .js-carousel .swiper-button-prev, .js-carousel .swiper-button-next {
    width: 60px;
  }
  .js-carousel .swiper-button-next {
    right: -10px;
  }
  .js-carousel .swiper-button-prev {
    left: -10px;
  }
}
@media screen and (min-width: 1024px) {
  .js-carousel.is-swiper-inactive .swiper-wrapper {
    gap: 20px;
  }
  .js-carousel.is-swiper-inactive .swiper-slide {
    width: calc(20% - 16px);
  }
  .js-carousel .swiper-buttons {
    top: calc(50% + 30px);
    width: calc(100% - 100px);
    height: 70px;
  }
  .js-carousel .swiper-button-prev, .js-carousel .swiper-button-next {
    width: 70px;
  }
  .js-carousel .swiper-button-next {
    right: -35px;
  }
  .js-carousel .swiper-button-prev {
    left: -35px;
  }
}

.js-sliderSingle {
  overflow: hidden;
  -webkit-mask: url("../../assets/img/mask-slide-fitness.svg") no-repeat 0 0/cover;
          mask: url("../../assets/img/mask-slide-fitness.svg") no-repeat 0 0/cover;
}
.js-sliderSingle img {
  -webkit-mask: url("../../assets/img/mask-slide-fitness.svg") no-repeat 0 0/cover;
          mask: url("../../assets/img/mask-slide-fitness.svg") no-repeat 0 0/cover;
}
.js-sliderSingle.swiper-container {
  position: relative;
}
.js-sliderSingle .swiper-slide {
  cursor: grab;
}
.js-sliderSingle .swiper-pagination {
  text-align: left;
}
.js-sliderSingle .swiper-horizontal > .swiper-pagination-bullets, .js-sliderSingle .swiper-pagination-bullets.swiper-pagination-horizontal, .js-sliderSingle .swiper-pagination-custom, .js-sliderSingle .swiper-pagination-fraction {
  position: relative;
}
.js-sliderSingle .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 50px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 2px));
  border-radius: 0;
}
.js-sliderSingle .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .js-sliderSingle .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 14px) 0 0;
}
@media screen and (min-width: 768px) {
  .js-sliderSingle .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 80px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 3px));
  }
}
@media screen and (min-width: 1024px) {
  .js-sliderSingle .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 100px));
  }
}
