@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%);
}
.wpcf7-list-item {
  margin: 0;
}

.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, .c-radio input[type=radio] + .wpcf7-list-item-label {
  display: block;
  line-height: 1.2;
}
.c-radio input[type=radio] + .c-radio__title:hover, .c-radio input[type=radio] + .wpcf7-list-item-label:hover {
  cursor: pointer;
}
.c-radio input[type=radio] + .c-radio__title:before, .c-radio input[type=radio] + .wpcf7-list-item-label: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, .c-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: var(--blue-primary);
  box-shadow: inset 0 0 0 4px #ffffff;
}
.c-radio input[type=radio]:focus + .c-radio__title:before, .c-radio input[type=radio]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: var(--blue-primary);
}
.c-radio input[type=radio]:disabled + .c-radio__title:before, .c-radio input[type=radio]:disabled + .wpcf7-list-item-label: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, .c-radio input[type=radio] + .wpcf7-list-item-label: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;
}

.p-company {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-xl);
  margin-top: var(--space-lg);
}
.p-company__header {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.p-company__headingGroup {
  position: relative;
  z-index: 2;
}
.p-company__heading {
  color: var(--blue-primary);
  line-height: 1.2;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  white-space: nowrap;
  margin: 0;
}
.p-company__heading > span {
  display: block;
  line-height: 1;
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7429577465rem + 0.5633802817vw, 1.25rem);
  letter-spacing: 0.05em;
  margin-top: 0.4em;
}
.p-company__lead {
  color: var(--black);
  line-height: 2;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.6919014085rem + 1.3145539906vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 1.4em 0 0;
}
.p-company__headerImages {
  max-width: 856px;
  position: relative;
  z-index: 1;
  margin: var(--space-md) 0 0;
}
.p-company__headerObjects > * > span {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 5px;
}
.p-company__headerObjects > *.obj01 > span {
  opacity: 0.3;
  width: 438px;
  height: 438px;
  background-color: var(--marin-secondary);
  top: -115px;
  right: calc(50% + 325px);
}
.p-company__headerObjects > *.obj02 > span {
  opacity: 0.5;
  width: 80px;
  height: 80px;
  background-color: var(--marin-secondary);
  top: 340px;
  right: calc(50% + 570px);
}
.p-company__headerObjects > *.obj03 > span {
  opacity: 0.2;
  width: 112px;
  height: 112px;
  background-color: #009EFF;
  top: -125px;
  left: calc(50% + 452px);
}
.p-company__headerObjects > *.obj04 > span {
  opacity: 0.2;
  width: 64px;
  height: 64px;
  background-color: #009EFF;
  top: -120px;
  left: calc(50% + 530px);
}
.p-company__headerObjects > *.obj05 > span {
  opacity: 0.3;
  width: 314px;
  height: 314px;
  background-color: var(--marin-secondary);
  top: 410px;
  left: calc(50% + 295px);
}
.p-company__sections {
  margin-top: var(--space-xxl);
}
.p-company__section {
  position: relative;
  padding: var(--space-lg) 6%;
  background-color: var(--white);
}
.p-company__section + * {
  margin-top: var(--space-xl);
}
.p-company__title {
  color: var(--blue-secondary);
  line-height: 1;
  font-size: 30px;
  font-size: 1.875rem;
  font-size: clamp(1.875rem, 1.5228873239rem + 1.5023474178vw, 2.875rem);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
}
.p-company__title span {
  color: var(--blue-primary);
  display: block;
  font-family: "Roboto Condensed";
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6839788732rem + 0.2816901408vw, 0.9375rem);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin-bottom: 1em;
}
.p-company__content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-company__contentLeft {
  width: 100%;
}
.p-company__contentRight {
  width: 100;
  margin: var(--space-md) 0 0;
}
.p-company__subtitle {
  color: var(--blue-secondary);
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0 0 0 1em;
  border-left: 6px solid var(--blue-secondary);
}
.p-company__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);
  text-align: justify;
  letter-spacing: 0.05em;
  margin: 1em 0 0;
}
.p-company__listWrap {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-company {
    margin-top: 195px;
    padding-bottom: 80px;
  }
  .p-company__header {
    flex-direction: row;
  }
  .p-company__headerImages {
    margin: 0 8.6% 0 auto;
  }
  .p-company__headingGroup {
    position: absolute;
    top: 10px;
    left: 2%;
    z-index: 2;
  }
  .p-company__lead {
    line-height: 1.8;
    letter-spacing: 0.2em;
  }
  .p-company__sections {
    margin-top: 180px;
  }
  .p-company__section {
    padding: 95px 10%;
  }
  .p-company__section + * {
    margin-top: 180px;
  }
  .p-company__content {
    flex-direction: row;
  }
  .p-company__contentLeft {
    width: 58%;
  }
  .p-company__contentRight {
    width: calc(42% - 80px);
    margin: 0 0 0 auto;
  }
  .p-company__desc {
    margin: 20px 0 0;
  }
}

.p-message {
  position: relative;
  z-index: 1;
  margin-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.p-message__content {
  display: flex;
  flex-direction: column;
  max-width: 950px;
  margin: 0 auto;
}
.p-message__contentLeft {
  width: 100%;
}
.p-message__contentRight {
  width: 100%;
  margin: var(--space-lg) 0 0;
}
.p-message__title {
  color: var(--blue-primary);
  line-height: 2;
  font-size: 26px;
  font-size: 1.625rem;
  font-size: clamp(1.625rem, 1.5809859155rem + 0.1877934272vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.p-message__name {
  margin: 2em 0 0;
}
.p-message__name > img {
  max-width: 120px;
  margin-top: 5px;
}
.p-message__namePosition {
  color: var(--gray20);
  line-height: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.p-message__desc {
  color: var(--gray20);
  line-height: 2.4;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-message__objects > * > span {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: 5px;
}
.p-message__objects > *.obj01 > span {
  opacity: 0.3;
  width: 418px;
  height: 418px;
  background-color: var(--marin-secondary);
  top: -148px;
  right: calc(50% + 220px);
}
.p-message__objects > *.obj02 > span {
  opacity: 0.2;
  width: 130px;
  height: 130px;
  background-color: #009EFF;
  top: 295px;
  right: calc(50% + 585px);
}
.p-message__objects > *.obj03 > span {
  opacity: 0.5;
  width: 80px;
  height: 80px;
  background-color: var(--marin-secondary);
  top: 440px;
  right: calc(50% + 295px);
}
.p-message__objects > *.obj04 > span {
  opacity: 0.3;
  width: 80px;
  height: 80px;
  background-color: var(--marin-secondary);
  top: 210px;
  left: calc(50% + 560px);
}
.p-message__objects > *.obj05 > span {
  opacity: 0.2;
  width: 130px;
  height: 130px;
  background-color: #009EFF;
  top: 220px;
  left: calc(50% + 610px);
}
@media screen and (min-width: 1024px) {
  .p-message {
    margin-top: 180px;
    padding-bottom: 100px;
  }
  .p-message__content {
    flex-direction: row;
  }
  .p-message__contentLeft {
    width: calc(100% - 555px);
  }
  .p-message__contentRight {
    width: 555px;
    margin: 0;
  }
  .p-message__name {
    margin: 100px 0 0;
  }
  .p-message__desc {
    letter-spacing: 0.15em;
  }
}

.p-base {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}
.p-base__body {
  max-width: 600px;
  margin: 0 auto;
}
.p-base__section {
  display: flex;
  flex-direction: column;
}
.p-base__section + * {
  margin-top: var(--space-xl);
}
.p-base__thumbnail {
  width: 100%;
  max-width: 622px;
  aspect-ratio: 520/300;
}
.p-base__thumbnail > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-base__content {
  width: 100%;
  margin: var(--space-xs) 0 0;
}
.p-base__title {
  color: var(--blue-secondary);
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0 0 0.5em;
  border-bottom: 3px solid var(--blue-secondary);
}
.p-base__tel {
  color: var(--black);
  display: flex;
  align-items: center;
  line-height: 1;
  font-family: "Roboto";
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0.8em 0 0;
  transition: all 0.35s ease;
}
.p-base__tel:hover {
  opacity: 0.5;
}
.p-base__tel span {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8714788732rem + 0.2816901408vw, 1.125rem);
  font-weight: 500;
}
.p-base__telIcon {
  margin-right: 10px;
}
.p-base__telIcon::after {
  content: "";
  display: block;
  width: 0.83em;
  height: 0.83em;
  background: url("../../assets/img/icon-tel.svg") no-repeat 0 0/cover;
}
.p-base__address {
  color: var(--black);
  line-height: 1.5;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8714788732rem + 0.2816901408vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0;
  margin: 0.5em 0 0;
}
.p-base__map {
  position: relative;
  margin: 1em 0 0;
  aspect-ratio: 4/3;
}
.p-base__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-base__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-base__gridCol {
  width: 100%;
}
.p-base__gridCol + * {
  margin-top: var(--space-xl);
}
@media screen and (min-width: 1024px) {
  .p-base {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .p-base__body {
    max-width: 1050px;
  }
  .p-base__section {
    flex-direction: row;
  }
  .p-base__section + * {
    margin-top: 100px;
  }
  .p-base__thumbnail {
    width: 48%;
  }
  .p-base__content {
    width: 48%;
    margin: 0 0 0 auto;
  }
  .p-base__title {
    border-bottom: 4px solid var(--blue-secondary);
  }
  .p-base__map {
    aspect-ratio: 520/300;
  }
  .p-base__grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-base__gridCol {
    width: 48%;
  }
  .p-base__gridCol + * {
    margin-top: 0;
  }
}

.js-scrollTlElmsQuality .el01,
.js-scrollTlElmsQuality .el02,
.js-scrollTlElmsQuality .el03,
.js-scrollTlElmsQuality .el04 .cover,
.js-scrollTlElmsQuality .el04 img {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.p-quality {
  padding-bottom: var(--space-xl);
  margin-top: var(--space-lg);
}
.p-quality__section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
}
.p-quality__section + * {
  margin-top: var(--space-xxl);
}
.p-quality__section--reverse {
  z-index: 1;
}
.p-quality__section--reverse::after {
  content: "";
  display: block;
  width: 100%;
  height: 114%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-color: #CFECFA;
  -webkit-clip-path: polygon(0% 0%, 100% 4%, 100% 96%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 4%, 100% 96%, 0% 100%);
}
.p-quality__section--reverse .p-quality__title {
  margin: 0 0 0 auto;
}
.p-quality__section--reverse .p-quality__subtitle {
  align-items: flex-end;
  margin: 1.4em 0 0 auto;
}
.p-quality__section--reverse .p-quality__descs {
  background-color: #CFECFA;
}
.p-quality__content {
  position: relative;
  z-index: 2;
  margin: var(--space-md) 0 0;
}
.p-quality__title {
  display: block;
  line-height: 1;
  width: 70%;
}
.p-quality__subtitle {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.948943662rem + 0.7511737089vw, 1.625rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 1.4em 0 0;
}
.p-quality__subtitle > span {
  display: inline-flex;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.2em 0.2em;
  background-color: var(--blue-primary);
}
.p-quality__descs {
  color: var(--black);
  line-height: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.1em;
  margin-top: 2em;
}
.p-quality__descs > * + * {
  margin-top: 2em;
}
.p-quality__thumbs01, .p-quality__thumbs02, .p-quality__thumbs03 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 -8px;
}
.p-quality__thumbs01 > *.thumb01, .p-quality__thumbs02 > *.thumb01, .p-quality__thumbs03 > *.thumb01 {
  width: calc(100% - 16px);
}
.p-quality__thumbs01 > *.thumb02, .p-quality__thumbs01 > *.thumb03, .p-quality__thumbs02 > *.thumb02, .p-quality__thumbs02 > *.thumb03, .p-quality__thumbs03 > *.thumb02, .p-quality__thumbs03 > *.thumb03 {
  width: calc(50% - 16px);
  margin: 16px 8px 0;
}
.p-quality__clipped {
  position: relative;
  overflow: hidden;
}
.p-quality__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.5) 0%, rgba(164, 225, 255, 0.5) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-quality__thumbs01, .p-quality__thumbs02, .p-quality__thumbs03 {
    padding: 0 30px;
    margin: 0 -10px;
  }
  .p-quality__thumbs01 > *.thumb01, .p-quality__thumbs02 > *.thumb01, .p-quality__thumbs03 > *.thumb01 {
    width: calc(100% - 20px);
  }
  .p-quality__thumbs01 > *.thumb02, .p-quality__thumbs01 > *.thumb03, .p-quality__thumbs02 > *.thumb02, .p-quality__thumbs02 > *.thumb03, .p-quality__thumbs03 > *.thumb02, .p-quality__thumbs03 > *.thumb03 {
    width: calc(50% - 20px);
    margin: 16px 10px 0;
  }
}
@media screen and (min-width: 820px) {
  .p-quality__thumbs01, .p-quality__thumbs02, .p-quality__thumbs03 {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-quality {
    margin-top: 80px;
    padding-bottom: 230px;
  }
  .p-quality__section {
    flex-direction: row;
    padding-top: 40px;
  }
  .p-quality__section + * {
    margin-top: 250px;
  }
  .p-quality__section--reverse {
    flex-direction: row-reverse;
  }
  .p-quality__section--reverse::after {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1440/1255;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -44%);
    background-color: #CFECFA;
    -webkit-clip-path: polygon(0% 0%, 100% 15%, 100% 85%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 15%, 100% 85%, 0% 100%);
  }
  .p-quality__section--reverse .p-quality__descs {
    padding: 1em 0 1em 1em;
    margin-left: auto;
  }
  .p-quality__content {
    margin: 0;
  }
  .p-quality__title {
    width: auto;
  }
  .p-quality__subtitle {
    letter-spacing: 0.2em;
  }
  .p-quality__descs {
    max-width: 580px;
    padding: 1em 1em 1em 0;
    background-color: #EDF9FF;
  }
  .p-quality__thumbs01, .p-quality__thumbs02, .p-quality__thumbs03 {
    display: block;
    padding: 0;
  }
  .p-quality__thumbs01 > *, .p-quality__thumbs03 > * {
    position: absolute;
  }
  .p-quality__thumbs01 > *.thumb01, .p-quality__thumbs03 > *.thumb01 {
    width: 60vw;
    top: 0;
    right: 0;
    margin: 0;
  }
  .p-quality__thumbs01 > *.thumb01 img, .p-quality__thumbs03 > *.thumb01 img {
    height: 580px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-quality__thumbs01 > *.thumb02, .p-quality__thumbs03 > *.thumb02 {
    width: 27.2vw;
    top: 500px;
    left: calc(50% + 175px);
    margin: 0;
  }
  .p-quality__thumbs01 > *.thumb02 img, .p-quality__thumbs03 > *.thumb02 img {
    height: 264px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-quality__thumbs01 > *.thumb03, .p-quality__thumbs03 > *.thumb03 {
    width: 19.72vw;
    top: 785px;
    left: calc(50% + 40px);
    margin: 0;
  }
  .p-quality__thumbs01 > *.thumb03 img, .p-quality__thumbs03 > *.thumb03 img {
    height: 191px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-quality__thumbs02 > * {
    position: absolute;
  }
  .p-quality__thumbs02 > *.thumb01 {
    width: 60vw;
    top: 0;
    left: 0;
    margin: 0;
  }
  .p-quality__thumbs02 > *.thumb01 img {
    height: 580px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-quality__thumbs02 > *.thumb02 {
    width: 24vw;
    top: 500px;
    right: calc(50% + 235px);
    margin: 0;
  }
  .p-quality__thumbs02 > *.thumb02 img {
    height: 233px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-quality__thumbs02 > *.thumb03 {
    width: 24vw;
    top: 770px;
    right: calc(50% + 110px);
    margin: 0;
  }
  .p-quality__thumbs02 > *.thumb03 img {
    height: 233px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-business__header {
  display: flex;
  flex-direction: column;
  padding-top: var(--space-lg);
}
.p-business__headingGroup {
  max-width: 770px;
}
.p-business__heading {
  color: var(--black);
  line-height: 1.8;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}
.p-business__lead {
  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;
  margin: 0.8em 0 0;
}
.p-business__marks {
  max-width: 216px;
  margin: var(--space-md) auto 0;
}
.p-business__body {
  padding-bottom: var(--space-xl);
  margin-top: var(--space-xl);
}
.p-business__columns {
  margin-top: 40px;
}
.p-business__column {
  display: flex;
  flex-direction: column;
}
.p-business__column + * {
  margin-top: 40px;
}
.p-business__canvas {
  padding: 40px 20px;
  background-color: var(--white);
}
.p-business__title {
  color: var(--blue-tertiary);
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 0 auto;
}
.p-business__subtitle {
  color: var(--black);
  line-height: 1;
  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;
  margin: 2em auto -1em;
}
.p-business__listWrap {
  margin: 20px auto 0;
}
.p-business__note {
  color: var(--black);
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.536971831rem + 0.3755868545vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: center;
  margin: 1.8em auto 0;
}
.p-business__banner {
  max-width: 832px;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.p-business__banner:hover {
  opacity: 0.5;
}
.p-business__desc {
  color: var(--black);
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7904929577rem + 0.0938967136vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: justify;
  margin: 2.5em auto 0;
}
@media screen and (min-width: 1024px) {
  .p-business__header {
    flex-direction: row;
    align-items: center;
    padding-top: 90px;
  }
  .p-business__marks {
    margin: 0 auto;
  }
  .p-business__body {
    padding-bottom: 100px;
    margin-top: 80px;
  }
  .p-business__note {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .p-business__desc {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    text-align: center;
  }
}

.p-flow {
  margin-top: var(--space-xl);
}
.p-flow__body {
  margin-top: 30px;
}
.p-flow__lead {
  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;
}
.p-flow__imageHeader {
  max-width: 700px;
  margin: 25px auto 0;
}
.p-flow__grid {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-md) 6%;
  margin: var(--space-md) auto 0;
  background-color: var(--white);
}
.p-flow__colLeft {
  width: 100%;
}
.p-flow__colRight {
  width: 100%;
  margin: var(--space-sm) 0 0;
}
.p-flow__title {
  color: var(--blue-primary);
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0 0 0.5em;
  margin-bottom: 1em;
  border-bottom: 3px solid var(--blue-primary);
}
.p-flow__tables {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.p-flow__table {
  width: 100%;
  margin: 0;
}
.p-flow__table + * {
  margin-top: -1px;
}
.p-flow__slideNav {
  max-width: 705px;
  margin: 0 auto;
}
.p-flow__slideNav svg {
  width: 100%;
  height: auto;
}
.p-flow__slideNav svg a {
  transition: opacity 0.35s ease;
}
.p-flow__slideNav svg a:hover {
  opacity: 0.7;
}
.p-flow__slideNav svg > path {
  pointer-events: none;
}
.p-flow__slide {
  overflow: hidden;
  width: calc(100% + 20px);
  padding-top: 16vh;
}
@media screen and (min-width: 768px) {
  .p-flow__slide {
    width: calc(100% + 30px);
  }
}
@media screen and (min-width: 820px) {
  .p-flow__slide {
    width: calc(100% + 40px);
  }
}
@media screen and (min-width: 1024px) {
  .p-flow {
    margin-top: 100px;
  }
  .p-flow__grid {
    flex-direction: row;
    padding: 60px 50px;
    margin: 50px auto 0;
  }
  .p-flow__colLeft {
    width: 28.5%;
  }
  .p-flow__colRight {
    width: 64.5%;
    margin: 0;
  }
  .p-flow__title {
    margin-bottom: 0;
  }
  .p-flow__tables {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 -30px;
  }
  .p-flow__table {
    width: calc(50% - 60px);
    margin: 0 30px;
  }
  .p-flow__table + * {
    margin-top: 0;
  }
  .p-flow__slide {
    width: calc(100vw - (100vw - 985px) / 2);
    padding-top: 160px;
  }
}

.p-management {
  margin-top: var(--space-xl);
}
.p-management__body {
  margin-top: var(--space-md);
}
.p-management__columns > * + * {
  margin-top: var(--space-lg);
}
.p-management__title {
  color: var(--blue-tertiary);
  position: relative;
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding-bottom: 1em;
}
.p-management__title::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 0.125em;
  background-color: var(--blue-tertiary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-management__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: 1em 0 0;
}
.p-management__content {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-management {
    margin-top: 100px;
  }
  .p-management__body {
    margin-top: 55px;
  }
  .p-management__content {
    margin: 20px 0 0;
  }
  .p-management__columns > * + * {
    margin-top: 85px;
  }
}

.p-imc__header {
  position: relative;
  z-index: 1;
}
.p-imc__headerInner {
  position: relative;
}
.p-imc__headerDesc {
  color: var(--black);
  line-height: 2.2;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: justify;
  padding: 6.5em 0 12em 0;
  position: relative;
  z-index: 2;
}
.p-imc__headerBadge {
  width: 35%;
  max-width: 250px;
  position: absolute;
  top: 22%;
  right: 6%;
  z-index: 3;
}
.p-imc__headerBg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.p-imc__headerBg img {
  height: 65vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-imc__body {
  position: relative;
  z-index: 2;
}
.p-imc__section--about {
  padding-top: 50px;
  padding-bottom: var(--space-lg);
  background: url("../../assets/img/bg-imc-about.jpg") no-repeat 0 0/cover;
}
.p-imc__title {
  color: var(--blue-primary);
  position: relative;
  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;
  padding-bottom: 1em;
}
.p-imc__title::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 0.125em;
  background-color: var(--blue-primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-imc__desc {
  color: var(--black);
  line-height: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: justify;
  margin: 1.5em auto 0;
}
.p-imc__list {
  width: 85%;
  max-width: 838px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto 0;
}
.p-imc__item {
  width: calc(50% - 5px);
}
.p-imc__example {
  max-width: 880px;
  margin: var(--space-sm) auto 0;
}
@media screen and (min-width: 500px) {
  .p-imc__headerDesc {
    padding: 7.5em 0 18em 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-imc__headerDesc {
    padding: 6.5em 0 10em 4em;
  }
  .p-imc__headerBadge {
    width: 250px;
    top: 66%;
    left: 8%;
    right: inherit;
  }
  .p-imc__headerBg > img {
    height: 612px;
  }
  .p-imc__body {
    z-index: 0;
  }
  .p-imc__section--about {
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .p-imc__desc {
    text-align: center;
  }
  .p-imc__list {
    width: 100%;
    flex-wrap: nowrap;
    gap: 26px;
  }
  .p-imc__item {
    width: calc(25% - 13px);
  }
  .p-imc__example {
    margin: 45px auto 0;
  }
}

.p-strength {
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}
.p-strength__heading {
  color: var(--blue-primary);
  position: relative;
  line-height: 1.3;
  font-size: 21px;
  font-size: 1.3125rem;
  font-size: clamp(1.3125rem, 1.2464788732rem + 0.2816901408vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding-bottom: 1em;
}
.p-strength__heading::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 0.125em;
  background-color: var(--blue-primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-strength__heading br {
  display: block;
}
.p-strength__lead {
  color: var(--gray20);
  line-height: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: justify;
  margin: 1.5em auto 0;
}
.p-strength__lead br {
  display: none;
}
.p-strength__body {
  margin-top: 30px;
}
.p-strength__content {
  max-width: 880px;
  padding: 40px 6% 50px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: var(--white);
}
.p-strength__columns > * + * {
  margin-top: 25px;
}
.p-strength__title {
  color: var(--white);
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 0.8em 0;
  border-radius: 4px;
  background-color: var(--gray50);
}
.p-strength__titleRed {
  color: var(--white);
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1399647887rem + 0.4694835681vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 0.8em 0;
  border-radius: 4px;
  background-color: var(--red-primary);
}
.p-strength__desc {
  color: var(--red-primary);
  position: relative;
  z-index: 1;
  line-height: 1.6;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1399647887rem + 0.4694835681vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 1em auto 0;
}
.p-strength__desc > strong {
  position: relative;
  display: inline;
}
.p-strength__desc > strong::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.6em;
  background-color: var(--yellow-primary);
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.p-strength__figure01 {
  max-width: 632px;
  display: block;
  margin: 20px auto 0;
}
.p-strength__figure02 {
  max-width: 653px;
  display: block;
  margin: 20px auto 0;
}
.p-strength__note {
  color: var(--gray20);
  line-height: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: justify;
  margin: 2.2em auto 0;
}
@media screen and (min-width: 1024px) {
  .p-strength {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .p-strength__heading {
    line-height: 1;
  }
  .p-strength__heading br {
    display: none;
  }
  .p-strength__lead {
    text-align: center;
  }
  .p-strength__lead br {
    display: block;
  }
  .p-strength__content {
    padding: 40px 10.227% 50px;
  }
  .p-strength__titleRed {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .p-strength__desc {
    line-height: 1;
  }
  .p-strength__desc br {
    display: none;
  }
  .p-strength__note {
    text-align: center;
  }
}

.js-scrollBottomIn {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.js-initIkepaLogo .logoBefore,
.js-initIkepaLogo .logoAfter {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.js-initIkepaObjects img {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.p-ikepa__header {
  position: relative;
  z-index: 1;
  padding-top: 43vw;
  padding-bottom: 90vw;
  background-color: #0079C7;
  background-image: linear-gradient(0deg, transparent 24px, rgba(255, 255, 255, 0.5) 25px), linear-gradient(90deg, transparent 24px, rgba(255, 255, 255, 0.5) 25px);
  background-size: 25px 25px;
  background-position: center center;
}
.p-ikepa__headerLogo {
  position: relative;
  z-index: 2;
  width: 65%;
  max-width: 400px;
  margin: 0 auto;
}
.p-ikepa__headerLogoBefore {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.p-ikepa__headerLogoAfter {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.p-ikepa__headerObjectsHumans > * {
  position: absolute;
  z-index: -1;
  transform: translateY(-50%);
}
.p-ikepa__headerObjectsHumans > *.obj01 {
  width: 25%;
  top: 56%;
  right: 74vw;
}
.p-ikepa__headerObjectsHumans > *.obj02 {
  width: 29%;
  top: 55%;
  left: 71vw;
}
.p-ikepa__headerObjectsProductsLeft > * {
  position: absolute;
  z-index: -1;
}
.p-ikepa__headerObjectsProductsLeft > *.obj01 {
  width: 15%;
  top: 15%;
  right: 79vw;
}
.p-ikepa__headerObjectsProductsLeft > *.obj02 {
  width: 14%;
  top: 5%;
  left: 77vw;
}
.p-ikepa__headerObjectsProductsLeft > *.obj03 {
  width: 19%;
  top: 6%;
  right: 59vw;
}
.p-ikepa__headerObjectsProductsLeft > *.obj04 {
  width: 12%;
  top: 10%;
  left: 54vw;
}
.p-ikepa__headerObjectsProductsLeft > *.obj05 {
  width: 12%;
  top: 17%;
  left: 83vw;
}
.p-ikepa__headerObjectsProductsRight > * {
  position: absolute;
  z-index: -1;
}
.p-ikepa__headerObjectsProductsRight > *.obj01 {
  width: 12%;
  top: 73%;
  right: 76vw;
}
.p-ikepa__headerObjectsProductsRight > *.obj02 {
  width: 12%;
  top: 69%;
  left: 76vw;
}
.p-ikepa__headerObjectsProductsRight > *.obj03 {
  width: 10%;
  top: 76%;
  left: 53vw;
}
.p-ikepa__headerObjectsProductsRight > *.obj04 {
  width: 19%;
  top: 63%;
  right: 48vw;
}
.p-ikepa__section {
  position: relative;
  z-index: 1;
}
.p-ikepa__section::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.p-ikepa__section--01 {
  padding-top: var(--space-md);
  padding-bottom: var(--space-xxl);
  margin-top: calc(var(--space-sm) * -2.2);
}
.p-ikepa__section--01::after {
  background-color: #FFEE00;
  -webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
}
.p-ikepa__section--02 {
  padding-top: calc(var(--space-lg) * 2);
  padding-bottom: var(--space-xxl);
  margin-top: calc(var(--space-sm) * -2);
}
.p-ikepa__section--02::after {
  background-color: rgb(255, 221, 0);
  background: url("../../assets/img/bg-ikepa-stripe.png") repeat center center/90px 90px;
  -webkit-clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
}
.p-ikepa__section--03 {
  padding-top: calc(var(--space-lg) * 2);
  padding-bottom: var(--space-xxl);
  margin-top: calc(var(--space-sm) * -2);
}
.p-ikepa__section--03::after {
  background-color: #FFF340;
  -webkit-clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
}
.p-ikepa__section--04 {
  padding-top: calc(var(--space-lg) * 2);
  padding-bottom: var(--space-xxl);
  margin-top: calc(var(--space-sm) * -2);
}
.p-ikepa__section--04::after {
  background-color: #FFEE00;
  background: url("../../assets/img/bg-ikepa-dots.png") repeat center center/100px 100px;
  -webkit-clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
}
.p-ikepa__section--05 {
  padding-top: calc(var(--space-lg) * 2);
  padding-bottom: var(--space-xxl);
  margin-top: calc(var(--space-sm) * -2);
}
.p-ikepa__section--05::after {
  background-color: #FFDD00;
  -webkit-clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
}
.p-ikepa__section--06 {
  padding-top: calc(var(--space-lg) * 2);
  padding-bottom: var(--space-xl);
  margin-top: calc(var(--space-sm) * -2);
}
.p-ikepa__section--06::after {
  background-color: #FFEE00;
  background: url("../../assets/img/bg-ikepa-pattern-square.png") repeat center center/15px 15px;
  -webkit-clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
}
.p-ikepa__content {
  position: relative;
  z-index: 2;
}
.p-ikepa__contentObjects01 > * {
  position: absolute;
  z-index: 3;
  transform: translateY(-50%);
}
.p-ikepa__contentObjects01 > *.obj01 {
  width: 25%;
  top: 65%;
  right: 53vw;
}
.p-ikepa__contentObjects01 > *.obj02 {
  width: 58%;
  top: 62.5%;
  left: 32vw;
  z-index: 2;
}
.p-ikepa__contentObjects02 > * {
  position: absolute;
  z-index: 1;
}
.p-ikepa__contentObjects02 > *.obj01 {
  width: 46%;
  top: 2%;
  left: 51vw;
}
.p-ikepa__contentObjects02 > *.obj02 {
  width: 25vw;
  top: 77.5%;
  left: 58%;
  z-index: 2;
}
.p-ikepa__contentObjects03 > * {
  position: absolute;
  z-index: 1;
}
.p-ikepa__contentObjects03 > *.obj01 {
  display: none;
}
.p-ikepa__contentObjects03 > *.obj02 {
  display: none;
}
.p-ikepa__contentObjects03 > *.obj03 {
  width: 32vw;
  top: 46%;
  right: 71vw;
}
.p-ikepa__contentObjects03 > *.obj04 {
  width: 27vw;
  top: 47%;
  left: 72vw;
}
.p-ikepa__contentObjects04 > * {
  position: absolute;
  z-index: 1;
}
.p-ikepa__contentObjects04 > *.obj01 {
  width: 27vw;
  top: 78%;
  right: 63vw;
}
.p-ikepa__contentObjects06 > * {
  position: absolute;
  z-index: 1;
}
.p-ikepa__contentObjects06 > *.obj01 {
  width: 44vw;
  top: 1%;
  left: 60vw;
}
.p-ikepa__title {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.p-ikepa__title img {
  position: relative;
  z-index: 2;
}
.p-ikepa__title--01 {
  width: 73%;
}
.p-ikepa__title--02 {
  width: 58%;
}
.p-ikepa__title--03 {
  width: 82%;
}
.p-ikepa__title--04 {
  width: 76%;
}
.p-ikepa__title--05 {
  width: 36%;
}
.p-ikepa__title--06 {
  width: 59%;
}
.p-ikepa__number {
  color: var(--white);
  line-height: 0.72;
  font-family: "Montserrat", sans-serif;
  font-size: 100px;
  font-size: 6.25rem;
  font-size: clamp(6.25rem, 4.0492957746rem + 9.3896713615vw, 12.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: calc(100% - 20px);
  z-index: 1;
}
.p-ikepa__number--01 {
  left: 46vw;
}
.p-ikepa__number--02 {
  right: 36vw;
}
.p-ikepa__number--03 {
  left: 47vw;
}
.p-ikepa__number--04 {
  right: 40vw;
}
.p-ikepa__number--05 {
  left: 12vw;
}
.p-ikepa__number--06 {
  right: 25vw;
}
.p-ikepa__desc {
  color: var(--black);
  line-height: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7024647887rem + 0.4694835681vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: justify;
  margin: 1.2em auto 0;
}
.p-ikepa__desc--02 {
  width: 56%;
  margin: -0.5em 0 0;
}
.p-ikepa__desc--02 br {
  display: none;
}
.p-ikepa__desc--03 {
  width: 56%;
  margin: 5em 0 0 auto;
}
.p-ikepa__desc--03 br {
  display: none;
}
.p-ikepa__figure--01 {
  margin: var(--space-sm) auto 0;
}
.p-ikepa__figure--03 {
  margin: 0 auto;
}
.p-ikepa__tabContent {
  margin: var(--space-sm) auto 0;
}
.p-ikepa__banner {
  max-width: 864px;
  display: block;
  margin: var(--space-sm) auto 0;
  transition: all 0.35s ease;
}
.p-ikepa__banner:hover {
  opacity: 0.5;
}
.p-ikepa__comment {
  max-width: 568px;
  margin: 40px auto 0;
}
.p-ikepa__subtitle {
  max-width: 730px;
  margin: 35px auto 0;
}
.p-ikepa__listToDelively {
  max-width: 950px;
  margin: var(--space-xs) auto 0;
}
.p-ikepa__case {
  margin: var(--space-sm) auto 0;
}
.p-ikepa__faq {
  max-width: 1015px;
  margin: var(--space-sm) auto 0;
}
.p-ikepa__button {
  color: var(--white);
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  margin: 1.5em auto 0;
}
.p-ikepa__button--01 {
  max-width: 268px;
  margin: 49vw auto 0;
}
.p-ikepa__button--02 {
  max-width: 245px;
}
.p-ikepa__button--03 {
  max-width: 350px;
}
.p-ikepa__button--04 {
  max-width: 245px;
  margin: 2.5em auto 0;
}
@media screen and (min-width: 1024px) {
  .p-ikepa__header {
    padding-top: 90px;
    padding-bottom: 300px;
    background-color: #0079C7;
    background-image: linear-gradient(0deg, transparent 34px, rgba(255, 255, 255, 0.5) 35px), linear-gradient(90deg, transparent 34px, rgba(255, 255, 255, 0.5) 35px);
    background-size: 35px 35px;
    background-position: center center;
  }
  .p-ikepa__headerLogo {
    width: 100%;
    max-width: 538px;
  }
  .p-ikepa__headerObjectsHumans > *.obj01 {
    width: 154px;
    top: 47%;
    right: calc(50% + 265px);
  }
  .p-ikepa__headerObjectsHumans > *.obj02 {
    width: 178px;
    top: 47%;
    left: calc(50% + 250px);
  }
  .p-ikepa__headerObjectsProductsLeft > *.obj01 {
    width: 115px;
    top: 135px;
    right: calc(50% + 530px);
  }
  .p-ikepa__headerObjectsProductsLeft > *.obj02 {
    width: 98px;
    top: 98px;
    left: inherit;
    right: calc(50% + 305px);
  }
  .p-ikepa__headerObjectsProductsLeft > *.obj03 {
    width: 136px;
    top: 350px;
    right: calc(50% + 470px);
  }
  .p-ikepa__headerObjectsProductsLeft > *.obj04 {
    width: 88px;
    top: 520px;
    left: inherit;
    right: calc(50% + 570px);
  }
  .p-ikepa__headerObjectsProductsLeft > *.obj05 {
    width: 89px;
    top: 630px;
    left: inherit;
    right: calc(50% + 340px);
  }
  .p-ikepa__headerObjectsProductsRight > *.obj01 {
    width: 94px;
    top: 135px;
    right: inherit;
    left: calc(50% + 342px);
  }
  .p-ikepa__headerObjectsProductsRight > *.obj02 {
    width: 88px;
    top: 85px;
    left: calc(50% + 530px);
  }
  .p-ikepa__headerObjectsProductsRight > *.obj03 {
    width: 73px;
    top: 340px;
    left: calc(50% + 505px);
  }
  .p-ikepa__headerObjectsProductsRight > *.obj04 {
    width: 155px;
    top: 515px;
    right: inherit;
    left: calc(50% + 495px);
  }
  .p-ikepa__contentObjects01 > *.obj01 {
    width: 153px;
    top: 59%;
    right: calc(50% + 292px);
  }
  .p-ikepa__contentObjects01 > *.obj02 {
    width: 427px;
    top: 57%;
    left: calc(50% + 100px);
  }
  .p-ikepa__contentObjects02 > * {
    transform: translateY(-50%);
  }
  .p-ikepa__contentObjects02 > *.obj01 {
    width: 287px;
    top: 14%;
    left: calc(50% + 245px);
  }
  .p-ikepa__contentObjects02 > *.obj02 {
    width: 154px;
    top: 1500px;
    left: calc(50% + 295px);
  }
  .p-ikepa__contentObjects03 > * {
    transform: translateY(-50%);
  }
  .p-ikepa__contentObjects03 > *.obj01 {
    display: block;
    width: 333px;
    top: 51%;
    right: calc(50% + 375px);
  }
  .p-ikepa__contentObjects03 > *.obj02 {
    display: block;
    width: 351px;
    top: 51%;
    left: calc(50% + 335px);
  }
  .p-ikepa__contentObjects03 > *.obj03 {
    width: 246px;
    top: 46%;
    right: calc(50% + 175px);
  }
  .p-ikepa__contentObjects03 > *.obj04 {
    width: 196px;
    top: 47%;
    left: calc(50% + 185px);
  }
  .p-ikepa__contentObjects04 > * {
    transform: translateY(-50%);
  }
  .p-ikepa__contentObjects04 > *.obj01 {
    width: 150px;
    top: 71%;
    right: calc(50% + 171px);
  }
  .p-ikepa__contentObjects06 > * {
    transform: translateY(-50%);
  }
  .p-ikepa__contentObjects06 > *.obj01 {
    width: 277px;
    top: 12%;
    left: calc(50% + 190px);
  }
  .p-ikepa__section--01 {
    padding-top: 120px;
    padding-bottom: 420px;
    margin-top: -275px;
  }
  .p-ikepa__section--01::after {
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
  .p-ikepa__section--02 {
    padding-top: 210px;
    padding-bottom: 365px;
    margin-top: -425px;
  }
  .p-ikepa__section--02::after {
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
  }
  .p-ikepa__section--03 {
    padding-top: 145px;
    padding-bottom: 395px;
    margin-top: -325px;
  }
  .p-ikepa__section--03::after {
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
  .p-ikepa__section--04 {
    padding-top: 125px;
    padding-bottom: 325px;
    margin-top: -280px;
  }
  .p-ikepa__section--04::after {
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
  }
  .p-ikepa__section--05 {
    padding-top: 115px;
    padding-bottom: 340px;
    margin-top: -210px;
  }
  .p-ikepa__section--05::after {
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
  .p-ikepa__section--06 {
    padding-bottom: 150px;
  }
  .p-ikepa__section--06 {
    padding-top: 85px;
    padding-bottom: 150px;
    margin-top: -220px;
  }
  .p-ikepa__section--06::after {
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
  }
  .p-ikepa__title {
    width: 100%;
  }
  .p-ikepa__title--01 {
    max-width: 679px;
  }
  .p-ikepa__title--02 {
    max-width: 437px;
  }
  .p-ikepa__title--03 {
    max-width: 544px;
  }
  .p-ikepa__title--04 {
    max-width: 582px;
  }
  .p-ikepa__title--05 {
    max-width: 243px;
  }
  .p-ikepa__title--06 {
    max-width: 397px;
  }
  .p-ikepa__number--01 {
    left: calc(50% + 155px);
  }
  .p-ikepa__number--02 {
    right: calc(50% + 160px);
  }
  .p-ikepa__number--03 {
    left: calc(50% + 65px);
  }
  .p-ikepa__number--04 {
    right: calc(50% + 130px);
  }
  .p-ikepa__number--05 {
    left: calc(50% + 65px);
  }
  .p-ikepa__number--06 {
    right: calc(50% + 140px);
  }
  .p-ikepa__desc {
    text-align: center;
    margin: 1.5em auto 0;
  }
  .p-ikepa__desc--02 {
    width: 60%;
    margin: 1.5em auto 0;
  }
  .p-ikepa__desc--02 br {
    display: block;
  }
  .p-ikepa__desc--03 {
    width: 100%;
    margin: 1.5em auto 0;
  }
  .p-ikepa__desc--03 br {
    display: block;
  }
  .p-ikepa__figure--01 {
    max-width: 1080px;
    margin: 45px auto 0;
  }
  .p-ikepa__figure--03 {
    max-width: 657px;
    margin: -22px auto 0;
  }
  .p-ikepa__tabContent {
    margin: 50px auto 0;
  }
  .p-ikepa__banner {
    margin: 65px auto 0;
  }
  .p-ikepa__listToDelively {
    max-width: 950px;
    margin: 60px auto 0;
  }
  .p-ikepa__case {
    margin: 80px auto 0;
  }
  .p-ikepa__faq {
    margin: 60px auto 0;
  }
  .p-ikepa__button {
    margin: 35px auto 0;
  }
  .p-ikepa__button--01 {
    margin: 35px auto 0;
  }
  .p-ikepa__button--04 {
    margin: 35px auto 0;
  }
}

.p-environment {
  padding-top: calc(var(--space-xl) * 1.8);
  padding-bottom: calc(var(--space-xl) * 2.2);
  background: url("../../assets/img/bg-environment.jpg") no-repeat center bottom/cover;
}
.p-environment__body {
  padding: 0 20px;
}
.p-environment__title {
  color: var(--white);
  line-height: 1;
  font-size: 21px;
  font-size: 1.3125rem;
  font-size: clamp(1.3125rem, 0.9823943662rem + 1.4084507042vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-environment__desc {
  color: var(--white);
  line-height: 2.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: 3em auto 0;
}
@media screen and (min-width: 1024px) {
  .p-environment {
    padding-top: 150px;
    padding-bottom: 180px;
  }
  .p-environment__body {
    padding: 0;
  }
  .p-environment__title {
    letter-spacing: 0.15em;
  }
  .p-environment__desc {
    letter-spacing: 0.15em;
  }
}

.p-equipment {
  position: relative;
  z-index: 1;
  background-color: #EDF9FF;
}
.p-equipment::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/63;
  position: absolute;
  bottom: 99.9%;
  left: 50%;
  z-index: -2;
  background: url("../../assets/img/bg-equipment-parts.png") no-repeat 0 0/cover;
  transform: translateX(-50%);
}
.p-equipment__inner {
  position: relative;
  padding-top: calc(var(--space-lg) * 1.5);
  padding-bottom: calc(var(--space-lg) * 2.5);
}
.p-equipment__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2%;
  left: 0;
  z-index: -1;
  background: url("../../assets/img/bg-equipment-sp-top.png") no-repeat center top/contain;
}
.p-equipment__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url("../../assets/img/bg-equipment-sp-bottom.png") no-repeat center bottom/contain;
}
.p-equipment__header {
  position: relative;
  z-index: 2;
}
.p-equipment__heading {
  width: 22%;
  max-width: 122px;
  position: absolute;
  top: -37vw;
  left: 20px;
}
.p-equipment__lead {
  color: var(--blue-primary);
  max-width: 68%;
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0 6% 0 auto;
}
.p-equipment__lead br {
  display: none;
}
.p-equipment__title {
  color: var(--white);
  line-height: 1;
  font-size: 30px;
  font-size: 1.875rem;
  font-size: clamp(1.875rem, 1.7429577465rem + 0.5633802817vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-equipment__desc {
  color: var(--white);
  line-height: 2.2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: justify;
  margin: 3em auto 0;
}
.p-equipment__body {
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-equipment__body {
    margin: var(--space-lg) auto 0;
  }
  .p-equipment__heading {
    width: 14%;
    top: -18vw;
  }
  .p-equipment__lead {
    max-width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .p-equipment {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .p-equipment__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-equipment__inner::before, .p-equipment__inner::after {
    display: none;
  }
  .p-equipment::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 1450px;
    height: auto;
    aspect-ratio: 2900/2244;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    background: url("../../assets/img/bg-equipment.png") no-repeat 0 0/cover;
    transform: translateX(-50%);
  }
  .p-equipment__heading {
    width: 100%;
    top: 50%;
    left: inherit;
    right: calc(50% + 400px);
    transform: translateY(-50%);
  }
  .p-equipment__lead {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    letter-spacing: 0.15em;
    margin: 0 auto;
  }
  .p-equipment__lead br {
    display: block;
  }
  .p-equipment__title {
    letter-spacing: 0.15em;
  }
  .p-equipment__desc {
    letter-spacing: 0.15em;
  }
  .p-equipment__body {
    max-width: 800px;
    padding: 0;
    margin: 50px auto 0;
  }
}

.p-suggestion {
  position: relative;
  z-index: 2;
  background-color: #CFECFA;
}
.p-suggestion::after {
  content: "";
  display: block;
  width: 1581px;
  max-width: 1581px;
  height: auto;
  aspect-ratio: 3162/2251;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  background: url("../../assets/img/bg-suggestion.png") no-repeat 0 0/cover;
  transform: translateX(-50%);
}
.p-suggestion__inner {
  position: relative;
  padding-top: calc(var(--space-lg) * 1);
  padding-bottom: calc(var(--space-lg) * 2.5);
}
.p-suggestion__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2%;
  left: 0;
  z-index: -1;
  background: url("../../assets/img/bg-suggestion-sp-top.png") no-repeat center top/contain;
}
.p-suggestion__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url("../../assets/img/bg-suggestion-sp-bottom.png") no-repeat center bottom/contain;
}
.p-suggestion__header {
  position: relative;
  z-index: 2;
}
.p-suggestion__heading {
  width: 21%;
  max-width: 122px;
  position: absolute;
  top: -30vw;
  right: 20px;
}
.p-suggestion__lead {
  color: var(--blue-primary);
  max-width: 58%;
  line-height: 2.2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0 auto 0 6%;
}
.p-suggestion__lead br {
  display: none;
}
.p-suggestion__body {
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto;
}
.p-suggestion__title {
  color: var(--white);
  line-height: 1;
  font-size: 30px;
  font-size: 1.875rem;
  font-size: clamp(1.875rem, 1.7429577465rem + 0.5633802817vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-suggestion__desc {
  color: var(--white);
  line-height: 2.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: 3em auto 0;
}
.p-suggestion__body {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-suggestion__body {
    margin: var(--space-lg) auto 0;
  }
  .p-suggestion__heading {
    width: 14%;
    top: -22vw;
  }
  .p-suggestion__lead {
    max-width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .p-suggestion {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .p-suggestion__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-suggestion__inner::before, .p-suggestion__inner::after {
    display: none;
  }
  .p-suggestion__heading {
    width: 100%;
    max-width: 122px;
    top: 50%;
    right: inherit;
    left: calc(50% + 445px);
    transform: translateY(-50%);
  }
  .p-suggestion__lead {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    letter-spacing: 0.15em;
    margin: 0 auto;
  }
  .p-suggestion__lead br {
    display: block;
  }
  .p-suggestion__title {
    letter-spacing: 0.15em;
  }
  .p-suggestion__desc {
    letter-spacing: 0.15em;
  }
  .p-suggestion__body {
    max-width: 800px;
    padding: 0;
    margin: 50px auto 0;
  }
}

.p-recruit {
  position: relative;
  z-index: 1;
  padding-top: 18vh;
  padding-bottom: 18vh;
  background-color: var(--marin-secondary);
}
.p-recruit__header {
  position: relative;
}
.p-recruit__heading {
  max-width: 838px;
  margin: 0 auto;
}
.p-recruit__lead {
  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-indent: 0.1em;
  text-align: center;
  margin: 1.8em auto 0;
}
.p-recruit__body {
  margin-top: var(--space-lg);
}
.p-recruit__content {
  max-width: 1000px;
  margin: 30px auto 0;
}
.p-recruit__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -8px -8px;
}
.p-recruit__item {
  width: calc(50% - 16px);
  margin: 8px 8px;
}
.p-recruit__item:nth-child(5) {
  width: 100%;
}
.p-recruit__item:nth-child(5) img {
  display: block;
  width: calc(50% - 8px);
  margin: 0 auto;
}
.p-recruit__title {
  color: var(--blue-primary);
  line-height: 1;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.3089788732rem + 0.2816901408vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  margin: 2em auto 0;
}
.p-recruit__listEmployee {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin: 1rem auto 0;
}
.p-recruit__listEmployee > li {
  color: var(--black);
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7904929577rem + 0.0938967136vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 1em 2em;
  border-radius: 4px;
  background-color: var(--white);
}
.p-recruit__background {
  width: 100%;
  max-width: 1730px;
  aspect-ratio: 375/1026;
  position: absolute;
  top: 21%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit__list {
    gap: 20px;
    margin: 0 auto;
  }
  .p-recruit__item {
    width: 100%;
    margin: 0;
  }
  .p-recruit__item:nth-child(5) {
    width: 100%;
  }
  .p-recruit__item:nth-child(5) img {
    width: 100%;
    margin: 0 auto;
  }
  .p-recruit__item:nth-child(1), .p-recruit__item:nth-child(2) {
    width: calc((100% - 20px) / 2);
  }
  .p-recruit__item:nth-child(n+3) {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit {
    padding-top: 150px;
    padding-bottom: 300px;
  }
  .p-recruit__lead {
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }
  .p-recruit__body {
    margin-top: 85px;
  }
  .p-recruit__list {
    gap: 30px;
  }
  .p-recruit__item:nth-child(1), .p-recruit__item:nth-child(2) {
    width: calc((100% - 30px) / 2);
  }
  .p-recruit__item:nth-child(n+3) {
    width: calc((100% - 60px) / 3);
  }
  .p-recruit__background {
    min-width: 1730px;
    max-width: 1730px;
    aspect-ratio: auto;
    top: 290px;
    left: 41%;
    transform: translateX(-50%);
  }
}

.p-fitness {
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 12vh;
  padding-bottom: 12vh;
  margin-top: -10vh;
}
.p-fitness::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  background-color: #CCEEFF;
  -webkit-clip-path: polygon(0 2%, 100% 0, 100% 98%, 0% 100%);
          clip-path: polygon(0 2%, 100% 0, 100% 98%, 0% 100%);
}
.p-fitness__body {
  padding: 0 20px;
  margin-top: var(--space--md);
}
.p-fitness__columns > * + * {
  margin-top: var(--space--md);
}
@media screen and (min-width: 1024px) {
  .p-fitness {
    padding-top: 110px;
    padding-bottom: 330px;
    margin-top: -245px;
  }
  .p-fitness::after {
    height: auto;
    aspect-ratio: 1440/1690;
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
  }
  .p-fitness__body {
    padding: 0;
    margin-top: 60px;
  }
  .p-fitness__columns > * + * {
    margin-top: 80px;
  }
}

.p-voice {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding-top: 20vh;
  margin-top: -10vh;
}
.p-voice__header {
  position: relative;
  z-index: 2;
}
.p-voice__lead {
  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-indent: 0.1em;
  text-align: center;
  margin: 1.8em auto 0;
}
.p-voice__body {
  margin-top: var(--space-xs);
}
.p-voice__section {
  position: relative;
}
.p-voice__section--01 {
  padding-bottom: 10vh;
}
.p-voice__section--02 {
  padding-top: 8vh;
  padding-bottom: 16vh;
}
.p-voice__section--02::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  transform: translateX(-50%);
  background-color: #A4E1FF;
  -webkit-clip-path: polygon(0% 0%, 100% 2%, 100% 98%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 2%, 100% 98%, 0% 100%);
}
.p-voice__section--03 {
  padding-top: 4vh;
  padding-bottom: var(--space-xl);
}
.p-voice__titleGroup {
  position: absolute;
  top: -3rem;
  left: -3rem;
  z-index: 2;
}
.p-voice__title {
  color: var(--marin-primary);
  line-height: 1;
  font-family: "Roboto Condensed";
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-voice__number {
  color: var(--white);
  line-height: 0.9;
  font-family: "Roboto Condensed";
  font-size: 110px;
  font-size: 6.875rem;
  font-size: clamp(6.875rem, 6.3908450704rem + 2.0657276995vw, 8.25rem);
  font-weight: 500;
  letter-spacing: 0;
  text-indent: -0.05em;
  text-shadow: 3px 3px 0 var(--marin-primary), -3px 3px 0 var(--marin-primary), -3px -3px 0 var(--marin-primary), 3px -3px 0 var(--marin-primary);
}
.p-voice__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.p-voice__thumbWrap {
  width: 68%;
  max-width: 330px;
  position: relative;
  margin: var(--space-lg) auto 0;
}
.p-voice__thumbnail {
  position: relative;
  z-index: 1;
}
.p-voice__thumbnail::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--marin-primary);
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: -1;
}
.p-voice__thumbnail > figcaption {
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 1.6em 0 0 2.5em;
}
.p-voice__thumbnail > figcaption span {
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-right: 0.5em;
}
.p-voice__list {
  width: 100%;
  margin: var(--space-lg) 0 0;
}
.p-voice__button {
  color: var(--blue-primary);
  max-width: 280px;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  margin: var(--space-xl) auto 0;
}
@media screen and (min-width: 768px) {
  .p-voice__button {
    max-width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .p-voice {
    padding-top: 180px;
    margin-top: -360px;
  }
  .p-voice__body {
    margin-top: 45px;
  }
  .p-voice__section {
    position: relative;
  }
  .p-voice__section--01 {
    padding-bottom: 200px;
  }
  .p-voice__section--01::after {
    content: "";
    display: block;
    width: 100vw;
    height: auto;
    aspect-ratio: 1440/1650;
    position: absolute;
    top: -295px;
    left: 50%;
    z-index: -3;
    transform: translateX(-50%);
    background-color: #EDF9FF;
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  }
  .p-voice__section--02 {
    padding-top: 200px;
    padding-bottom: 300px;
    margin-top: -200px;
  }
  .p-voice__section--02::after {
    content: "";
    display: block;
    width: 100vw;
    height: auto;
    aspect-ratio: 1440/1650;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -2;
    transform: translateX(-50%);
    background-color: #A4E1FF;
    -webkit-clip-path: polygon(0% 0%, 100% 10%, 100% 90%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 10%, 100% 90%, 0% 100%);
  }
  .p-voice__section--03 {
    padding-top: 250px;
    padding-bottom: 150px;
    margin-top: -250px;
  }
  .p-voice__section--03::after {
    content: "";
    display: block;
    width: 100vw;
    height: auto;
    aspect-ratio: 1440/1650;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    background-color: #EDF9FF;
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  }
  .p-voice__content {
    flex-direction: row;
    align-items: flex-start;
  }
  .p-voice__content--reverse {
    flex-direction: row-reverse;
  }
  .p-voice__content--reverse .p-voice__list {
    margin: 0 auto 0 0;
  }
  .p-voice__titleGroup {
    top: -70px;
    left: -70px;
  }
  .p-voice__thumbWrap {
    width: auto;
    max-width: inherit;
    margin: 80px 0 0;
  }
  .p-voice__thumbnail {
    max-width: 330px;
  }
  .p-voice__list {
    width: calc(100% - 330px - 60px);
    margin: 0 0 0 auto;
  }
  .p-voice__button {
    max-width: 600px;
    margin: 135px auto 0;
  }
}

.p-recruitment {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background-color: #EDF9FF;
}
.p-recruitment__column {
  padding: var(--space-md) 6%;
  background-color: var(--white);
}
.p-recruitment__column + * {
  margin-top: var(--space-lg);
}
.p-recruitment__title {
  color: var(--white);
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.8em 1em;
  margin: 0 auto;
  border-radius: 4px;
  background-color: var(--blue-secondary);
}
.p-recruitment__table {
  margin-top: 20px;
}
.p-recruitment__button {
  color: var(--white);
  max-width: 220px;
  margin: 40px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-recruitment {
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .p-recruitment__column {
    padding: 50px 8%;
  }
  .p-recruitment__column + * {
    margin-top: 80px;
  }
}

.p-entry, .p-contact {
  padding-top: calc(var(--space-lg) * 1.6);
  padding-bottom: var(--space-lg);
  background-color: #EDF9FF;
}
.p-entry__body, .p-contact__body {
  margin-top: 35px;
}
.p-entry__content, .p-contact__content {
  max-width: 900px;
  padding: var(--space-md) 6% var(--space-lg);
  margin: 0 auto;
  background-color: var(--white);
}
.p-entry__lead, .p-contact__lead {
  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: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-entry__lead, .p-contact__lead {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-entry, .p-contact {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .p-entry__content, .p-contact__content {
    padding: 40px 7.85% 80px;
  }
  .p-entry__lead, .p-contact__lead {
    letter-spacing: 0.15em;
  }
}

.p-policy {
  padding-top: calc(var(--space-lg) * 1.6);
  padding-bottom: var(--space-xl);
  background-color: #EDF9FF;
}
.p-policy__content {
  max-width: 800px;
  margin: 0 auto;
}
.p-policy__columns > * + * {
  margin-top: 3em;
}
.p-policy__title {
  color: var(--black);
  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: 700;
  letter-spacing: 0.05em;
  padding-bottom: 0.8em;
}
.p-policy__desc {
  color: var(--black);
  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.05em;
  text-align: justify;
}
.p-policy__desc a {
  color: var(--blue-secondary);
  display: inline;
  transition: all 0.35s ease;
}
.p-policy__desc a:hover {
  opacity: 0.5;
}
.p-policy__listNumber {
  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.05em;
  text-align: justify;
  padding-left: 1.5em;
}
.p-policy__listNumber > li {
  list-style-type: decimal;
  list-style-position: outside;
}
.p-policy__note {
  padding: 2em 6%;
  margin-top: 1.8em;
  border: 1px solid var(--gray40);
}
@media screen and (min-width: 1024px) {
  .p-policy {
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .p-policy__columns > * + * {
    margin-top: 4em;
  }
  .p-policy__note {
    padding: 1.5em 2.5em;
  }
}

.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));
  }
}
