@charset "UTF-8";
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding-block: 0;
  padding-inline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

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

sup {
  vertical-align: text-top;
}

img,
picture {
  display: block;
  max-width: 100%;
}

iframe {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  vertical-align: middle;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  overflow-x: clip;
  font-size: 16px;
}
@media (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.8095238095vw;
  }
}
@media (max-width: 420px) {
  html {
    font-size: 3.8095238095vw;
  }
}

body {
  background-color: #fff;
  color: #0c2d4c;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
}

.js-body.is-active {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

button {
  color: #0c2d4c;
}

.l-inner {
  width: 100%;
  max-width: 78.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.p-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  overflow-x: clip;
  background: transparent;
  -webkit-transition: background 0.25s ease-in-out;
  transition: background 0.25s ease-in-out;
}

@media screen and (max-width: 768px) {
  .js-body.is-active .p-header {
    bottom: 0;
    overflow-x: visible;
    overflow-y: auto;
  }
}

.p-header__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding-block: 2.5rem;
  padding-inline: 2.5rem;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding-block: 1.4375rem;
    padding-inline: 0.75rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__logo {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 1rem;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    border-radius: 0.5rem;
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
  }
}

.p-header__logo a {
  display: block;
}

.p-header__logo img {
  width: 12.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-header__logo img {
    width: 7.5rem;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 41.1875rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    background: #0a6fcb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: visibility 0.3s, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s;
    transition: transform 0.3s ease-in-out, visibility 0.3s, -webkit-transform 0.3s ease-in-out;
  }
}

@media screen and (max-width: 768px) {
  .js-navigation.is-open {
    pointer-events: inherit;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-header__nav-body {
  display: contents;
}
@media screen and (max-width: 768px) {
  .p-header__nav-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2.5625rem;
    -webkit-padding-before: 7.875rem;
            padding-block-start: 7.875rem;
    -webkit-padding-after: 5rem;
            padding-block-end: 5rem;
    padding-inline: 1.25rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 42.5rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
    max-width: none;
    width: auto;
  }
}

.p-header__nav-item {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item {
    font-size: 1rem;
  }
}

.p-header__nav-item a {
  display: inline-block;
  position: relative;
  z-index: 0;
  background: transparent;
  color: #0a6fcb;
  padding-block: 1rem;
  padding-inline: 0.5rem;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item a {
    color: #0a6fcb;
    background: #fff;
    padding-top: 0.75rem;
    padding-bottom: 0.625rem;
    padding-inline: 0.5rem;
    border-bottom: 2px solid #0a6fcb;
  }
}

.p-header__nav-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item a::before {
    content: none;
  }
}

.p-header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: -1;
  background: #0a6fcb;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item a::after {
    content: none;
  }
}

@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    color: #fff;
  }
}
@media screen and (any-hover: hover) and (max-width: 768px) {
  .p-header__nav-item a:hover {
    color: #0a6fcb;
  }
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover::after {
    height: 100%;
  }
}
.p-header__nav-cta {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__nav-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    background-color: #f86944;
    border: 0.1875rem solid #fff;
    border-radius: 0.875rem;
    padding-block: 0.8125rem;
    padding-inline: 0.625rem;
    gap: 0.8125rem;
    -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
            box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
  }
}

@media screen and (max-width: 768px) {
  .p-header__nav-cta::before {
    content: "";
    position: absolute;
    top: -2.9375rem;
    left: -1.8125rem;
    width: 5.9375rem;
    height: 5.5rem;
    background-image: url("../images/icon/eye.svg");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .p-header__nav-cta::after {
    content: "";
    position: absolute;
    bottom: -1.75rem;
    right: -0.9375rem;
    width: 3.1875rem;
    height: 4.75rem;
    background-image: url("../images/icon/yubi.svg");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }
}

.p-header__nav-cta-text {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.37;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

.p-hamburger {
  display: none;
  position: relative;
  z-index: 9999;
  background: #0a6fcb;
  border: 2px solid #fff;
  border-radius: 100vh;
  padding-block: 0.625rem;
  padding-inline: 0.625rem;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.js-hamburger.is-active {
  background: #fff;
  border-color: #fff;
}

.js-hamburger.is-active .p-hamburger__label {
  color: #0a6fcb;
}

.p-hamburger__label {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.p-footer {
  position: relative;
  background: #0a6fcb;
}

.p-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 75rem;
  height: 3px;
  background: #fff;
}

.p-footer__inner {
  padding-top: 7.75rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding-top: 3.75rem;
    padding-bottom: 1.5rem;
  }
}

.p-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.p-footer__company-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-footer__company-title {
    font-size: 1.25rem;
  }
}

.p-footer__company-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-footer__company-dl {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
}

.p-footer__company-dl-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-footer__company-dl-row {
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.p-footer__company-dl-row dt {
  width: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-footer__company-dl-row dt {
    width: 4.5rem;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-list {
    width: 100%;
    gap: 0.625rem;
  }
}

.p-footer__nav-item {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-item {
    font-size: 0.875rem;
  }
}

.p-footer__nav-item a {
  display: block;
  position: relative;
  z-index: 0;
  color: #fff;
  padding-block: 1rem;
  padding-inline: 0.5rem;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-item a {
    padding-block: 0.375rem;
  }
}

.p-footer__nav-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0a6fcb;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-item a::before {
    content: none;
  }
}

.p-footer__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: -1;
  background: #fff;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-item a::after {
    height: 2px;
  }
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    color: #0a6fcb;
  }
}
@media screen and (any-hover: hover) and (max-width: 768px) {
  .p-footer__nav-item a:hover {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover::after {
    height: 100%;
  }
}
.p-footer__copyright-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright-wrapper {
    margin-top: 1.5rem;
  }
}

.p-footer__logo-box {
  background: #fff;
  border-radius: 0.5rem;
  padding-block: 0.3125rem;
  padding-inline: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__logo-box img {
  width: 9.4375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__copyright {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    font-size: 0.75rem;
  }
}

.p-footer__br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-footer__br {
    display: block;
  }
}

.p-fv {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow: clip;
  aspect-ratio: 1440/800;
  max-height: 50rem;
}
@media (min-width: 1440px) {
  .p-fv {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-fv {
    aspect-ratio: 420/392;
  }
}

.p-fv__visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-fv__slider {
  grid-area: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-fv__slider {
    gap: 1rem;
  }
}

.p-fv__slider-row {
  overflow: hidden;
}

.p-fv__slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-fv__slider-track {
    gap: 1rem;
  }
}

.p-fv__slider-track img {
  width: auto;
  height: 15rem;
  opacity: 0.5;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-fv__slider-track img {
    height: 7.5rem;
    opacity: 0.3;
    border-radius: 0.5rem;
  }
}

.p-fv__illust {
  position: absolute;
  bottom: -14.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 90rem;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .p-fv__illust {
    bottom: -1rem;
  }
}

@media (min-width: 1440px) {
  .p-fv__illust::before {
    content: "";
    position: absolute;
    bottom: 14.25rem;
    right: 100%;
    width: calc(50vw - 44.375rem);
    height: 23.65625rem;
    background-color: #0a6fcb;
  }
}

.p-fv__illust img {
  width: 90rem;
  height: auto;
  aspect-ratio: 1440/875;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-fv__illust img {
    width: 100%;
    aspect-ratio: 420/328;
  }
}

.p-honokaze {
  overflow: hidden;
}

.p-honokaze__layout {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-honokaze__layout {
    margin-top: 0;
  }
}

.p-honokaze__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: honokaze-scroll 10s linear infinite;
          animation: honokaze-scroll 10s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-honokaze__track {
    gap: 1rem;
    -webkit-animation-duration: 15s;
            animation-duration: 15s;
  }
}

.p-honokaze__track img {
  width: 100vw;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-honokaze__track img {
    width: 34.375rem;
    aspect-ratio: 375/60;
  }
}

@-webkit-keyframes honokaze-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - 1.25rem));
            transform: translateX(calc(-50% - 1.25rem));
  }
}

@keyframes honokaze-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - 1.25rem));
            transform: translateX(calc(-50% - 1.25rem));
  }
}
.p-about {
  position: relative;
  color: #fff;
  scroll-margin-block-start: 17.8125rem;
}

.p-about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #0a6fcb;
}

.p-about__inner {
  position: relative;
  z-index: 3;
  -webkit-margin-before: -3.5rem;
          margin-block-start: -3.5rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-padding-before: 1.5625rem;
            padding-block-start: 1.5625rem;
    -webkit-padding-after: 3.125rem;
            padding-block-end: 3.125rem;
  }
}

.p-about__title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-about__title {
    font-size: 2.25rem;
  }
}

.p-about__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 3;
  letter-spacing: 0.12em;
  margin-top: 7.4375rem;
}
@media screen and (max-width: 768px) {
  .p-about__text {
    font-size: 1rem;
    line-height: 2;
    margin-top: 2.5rem;
  }
}

.p-about__br {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-about__br {
    display: none;
  }
}

.p-about__note {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.12em;
  margin-top: 4rem;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .p-about__note {
    margin-top: 2.5rem;
    font-size: 0.75rem;
  }
}

.p-about__note::before {
  content: "※";
}

.p-workstyle__inner {
  padding-top: 2.625rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__inner {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
    padding-inline: 1rem;
  }
}

.p-workstyle__header {
  text-align: center;
}

.p-workstyle__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-workstyle__label {
    font-size: 1rem;
  }
}

.p-workstyle__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0a6fcb;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__title {
    font-size: 1.5rem;
  }
}

.p-workstyle__lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a6fcb;
  text-align: center;
  line-height: 3;
  letter-spacing: 0.12em;
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__lead {
    font-size: 1rem;
    line-height: 2;
    margin-top: 2.5rem;
  }
}

.p-workstyle__lead-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-workstyle__lead-br {
    display: block;
  }
}

.p-workstyle__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.p-workstyle__column {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .p-workstyle__column {
    display: block;
  }
}

.p-workstyle__column--blue {
  color: #fff;
}

.p-workstyle__column--pink {
  color: #0c2d4c;
}

.p-workstyle__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.5rem;
  padding-block: 4rem;
  padding-inline: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-workstyle__block {
    padding-block: 1.5rem;
    padding-inline: 2.5rem;
    border-radius: 1rem;
  }
}

.p-workstyle__block > .p-workstyle__info-label + .p-workstyle__info-text,
.p-workstyle__block > .p-workstyle__info-text + .p-workstyle__info-text {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__block > .p-workstyle__info-label + .p-workstyle__info-text,
  .p-workstyle__block > .p-workstyle__info-text + .p-workstyle__info-text {
    margin-top: 1.125rem;
  }
}

.p-workstyle__card-img,
.p-workstyle__block:first-child .p-workstyle__card-text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__card-img,
  .p-workstyle__block:first-child .p-workstyle__card-text {
    margin-top: 0;
  }
}

.p-workstyle__column--blue .p-workstyle__block {
  background-color: #0a6fcb;
}

.p-workstyle__column--pink .p-workstyle__block {
  background-color: #eec2c3;
}

@media screen and (max-width: 768px) {
  .p-workstyle__column--pink .p-workstyle__block--header {
    padding-block: 1.4375rem;
    padding-inline: 1.0625rem;
  }
}

.p-workstyle__block + .p-workstyle__block::before,
.p-workstyle__accordion-body-inner > .p-workstyle__block:first-child:not(.p-workstyle__block--desc)::before {
  content: "";
  position: absolute;
  top: -0.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0.75rem;
  background-image: url("../images/icon/dot_line.webp");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-workstyle__block + .p-workstyle__block::before,
  .p-workstyle__accordion-body-inner > .p-workstyle__block:first-child:not(.p-workstyle__block--desc)::before {
    top: -0.1875rem;
    width: calc(100% - 1.375rem);
    height: 0.4375rem;
  }
}

.p-workstyle__card-tagline {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-workstyle__card-tagline {
    font-size: 0.75rem;
  }
}

.p-workstyle__card-label {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 0.1875rem solid currentColor;
  border-radius: 0.125rem;
  margin-top: 0.5rem;
  padding-block: 0.75rem;
  padding-inline: 1.125rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-workstyle__card-label {
    font-size: 1.125rem;
    line-height: 1.2;
    padding-block: 0.5rem;
    padding-inline: 1rem;
  }
}

.p-workstyle__card-img {
  width: 100%;
  max-width: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.p-workstyle__card-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-workstyle__card-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-workstyle__card-text {
    font-size: 0.875rem;
  }
}

.p-workstyle__info-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8.125rem;
  height: 2.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  border: 1px solid currentColor;
  border-radius: 100vh;
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__info-label {
    font-size: 1rem;
    padding-block: 0.25rem;
    padding-inline: 1rem;
  }
}

.p-workstyle__info-list li::before {
  content: "・";
  -webkit-margin-end: 0.25rem;
          margin-inline-end: 0.25rem;
}

.p-workstyle__info-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-workstyle__info-text {
    font-size: 0.875rem;
  }
}

.p-workstyle__block > .p-workstyle__info-label + .p-workstyle__info-text--salary {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-workstyle__block > .p-workstyle__info-label + .p-workstyle__info-text--salary {
    font-size: 1.125rem;
  }
}

.p-workstyle__lead-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-workstyle__lead-br {
    display: block;
  }
}

.p-workstyle__block > .p-workstyle__info-text--salary + .p-workstyle__info-text--hourly {
  font-size: 1.25rem;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-workstyle__block > .p-workstyle__info-text--salary + .p-workstyle__info-text--hourly {
    font-size: 1rem;
  }
}

.p-workstyle__accordion-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-workstyle__accordion-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    padding: 0;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
  }
}

.p-workstyle__accordion-toggle-text {
  -webkit-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
}

.p-workstyle__accordion-toggle-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.p-workstyle__accordion-toggle-icon::before,
.p-workstyle__accordion-toggle-icon::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  background-color: currentColor;
  border-radius: 0.0625rem;
}

.p-workstyle__accordion-toggle-icon::before {
  width: 1rem;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-workstyle__accordion-toggle-icon::after {
  width: 1px;
  height: 1rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.is-open > .p-workstyle__block--header .p-workstyle__accordion-toggle-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-workstyle__accordion-body {
  display: contents;
}
@media screen and (max-width: 768px) {
  .p-workstyle__accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.25s ease-in-out;
    transition: grid-template-rows 0.25s ease-in-out;
    transition: grid-template-rows 0.25s ease-in-out, -ms-grid-rows 0.25s ease-in-out;
  }
}

@media screen and (max-width: 768px) {
  .is-open > .p-workstyle__accordion-body {
    grid-template-rows: 1fr;
  }
}

.p-workstyle__accordion-body-inner {
  display: contents;
}
@media screen and (max-width: 768px) {
  .p-workstyle__accordion-body-inner {
    display: block;
    overflow: hidden;
    min-height: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__accordion-body-inner > .p-workstyle__block:first-child:not(.p-workstyle__block--desc)::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--header {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0.25rem 0.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-block: 1.4375rem;
    padding-inline: 1.4375rem;
    min-height: 11.75rem;
    overflow: hidden;
    cursor: pointer;
  }
}

@media screen and (max-width: 768px) {
  .is-open > .p-workstyle__block--header {
    height: auto;
    grid-template-rows: auto auto 1fr auto;
    overflow: visible;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--header::after {
    content: "";
    position: absolute;
    bottom: -0.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 1.375rem);
    height: 0.4375rem;
    background-image: url("../images/icon/dot_line.webp");
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    z-index: 1;
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .is-open > .p-workstyle__block--header::after {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--header .p-workstyle__card-img {
    grid-column: 1;
    grid-row: 1/-1;
    width: 100%;
    max-width: none;
    height: 8.75rem;
    margin-top: 0;
    border-radius: 0.5rem;
    align-self: start;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--header .p-workstyle__card-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--header .p-workstyle__card-tagline {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--header .p-workstyle__card-label {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.125rem;
    border-width: 0.125rem;
    margin-top: 0;
    padding-block: 0.625rem;
    padding-inline: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--header .p-workstyle__accordion-toggle {
    position: absolute;
    top: 10.3125rem;
    right: 1.4375rem;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__column--pink .p-workstyle__block--header .p-workstyle__accordion-toggle {
    top: 10.3125rem;
    right: 1.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__card-text--pc {
    display: none;
  }
}

.p-workstyle__block--desc {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-workstyle__block--desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .p-workstyle__block--desc .p-workstyle__card-text {
    font-size: 0.875rem;
  }
}

.p-example__inner {
  padding-bottom: 5rem;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-example__inner {
    padding-bottom: 2.5rem;
  }
}

.p-example__title {
  position: relative;
  z-index: 1;
  margin-left: -0.8125rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .p-example__title {
    margin-left: -0.375rem;
  }
}

.p-example__title.is-visible {
  -webkit-animation: slide-in-right 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slide-in-right 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slide-in-right {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-example__title img {
  width: 100%;
  max-width: 62.125rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-example__title img {
    max-width: 23.75rem;
  }
}

.p-example__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-top: -0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-example__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    margin-top: -0.375rem;
    padding-inline: 1rem;
  }
}

.p-example__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 1.5rem;
  padding-block: 4rem;
  padding-inline: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-example__card {
    width: 100%;
    padding-block: 1.5rem;
    padding-inline: 1.25rem;
  }
}

.p-example__card--blue {
  background: #0a6fcb;
  color: #fff;
}

.p-example__card--pink {
  background-color: #eec2c3;
  color: #0c2d4c;
}

.p-example__case-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #fff;
}

.p-example__case-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.p-example__case-sub {
  background: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: normal;
  padding-block: 0.25rem;
  padding-inline: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-example__case-sub {
    font-size: 1.125rem;
  }
}

.p-example__card--blue .p-example__case-sub {
  color: #0a6fcb;
}

.p-example__case-main {
  background: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: normal;
  padding-block: 0.25rem;
  padding-inline: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-example__case-main {
    font-size: 1.5rem;
  }
}

.p-example__card--blue .p-example__case-main {
  color: #0a6fcb;
}

.p-example__case-img {
  width: 15rem;
  aspect-ratio: 1;
  border-radius: 100vh;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-example__case-img {
    width: 10rem;
    height: 10rem;
    margin-top: 1rem;
  }
}

.p-example__case-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-example__case-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-example__case-schedule {
    margin-top: 1rem;
  }
}

.p-example__card--blue .p-example__case-schedule {
  color: #fff;
}

.p-example__case-days {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-example__case-days {
    font-size: 1.25rem;
  }
}

.p-example__case-days span {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-example__case-days span {
    font-size: 1.75rem;
  }
}

.p-example__case-detail {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-example__case-detail {
    font-size: 1.125rem;
  }
}

.p-example__case-salary {
  border-radius: 0.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  width: 100%;
  text-align: center;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-example__case-salary {
    padding-block: 0.75rem;
    padding-inline: 1rem;
    margin-top: 1rem;
  }
}

.p-example__card--blue .p-example__case-salary {
  background: #fff;
  color: #0a6fcb;
}

.p-example__card--pink .p-example__case-salary {
  background: #fff;
}

.p-example__case-amount {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-example__case-amount {
    font-size: 1.125rem;
  }
}

.p-example__case-amount span {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-example__case-amount span {
    font-size: 2rem;
  }
}

.p-example__case-hourly {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-example__case-hourly {
    font-size: 1rem;
  }
}

.p-concerns {
  margin-top: 14.5625rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .p-concerns {
    margin-top: 4rem;
    padding-bottom: 3.75rem;
  }
}

.p-concerns__inner {
  max-width: 79.375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__inner {
    padding-inline: 1.25rem;
    gap: 3rem;
  }
}

.p-concerns__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-padding-start: 0.5625rem;
          padding-inline-start: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

.p-concerns__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  -webkit-padding-end: 0.5625rem;
          padding-inline-end: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}

.p-concerns__item:nth-of-type(3) {
  -webkit-padding-end: 0.5625rem;
          padding-inline-end: 0.5625rem;
}

.p-concerns__item--reverse::before {
  content: "";
  position: absolute;
  top: 3.3125rem;
  left: -13.0625rem;
  width: 58.75rem;
  height: 0.375rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-concerns__item--reverse::before {
    display: none;
  }
}

.p-concerns__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-padding-before: 2.5625rem;
          padding-block-start: 2.5625rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__text-area {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    text-align: center;
  }
}

.p-concerns__text-area--right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-concerns__text-area--right {
    text-align: center;
  }
}

.p-concerns__worry {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-concerns__worry {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
  }
}

.p-concerns__worry--dots {
  display: inline;
}

.p-concerns__solution {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__solution {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1rem;
  }
}

.p-concerns__solution-text {
  font-size: 4rem;
  font-weight: 700;
  color: #0a6fcb;
  background: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
  padding-block: 0.8125rem;
  padding-inline: 1.3125rem;
  border-radius: 0.125rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-concerns__solution-text {
    font-size: 1.75rem;
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
  }
}

.p-concerns__text-area--right .p-concerns__solution-text {
  font-size: 4.1875rem;
  padding-inline: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__text-area--right .p-concerns__solution-text {
    font-size: 1.75rem;
  }
}

.p-concerns__solution-text + .p-concerns__solution-text {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__solution-text + .p-concerns__solution-text {
    margin-top: 0.5rem;
  }
}

.p-concerns__image {
  position: relative;
  width: 25rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-concerns__image {
    width: 15rem;
    margin-inline: auto;
  }
}

.p-concerns__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-concerns__item:not(.p-concerns__item--reverse) .p-concerns__image::before {
  content: "";
  position: absolute;
  top: 3.125rem;
  right: 6.875rem;
  left: -20.5rem;
  height: 0.75rem;
  background-image: url("../images/icon/dot_line.webp");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: left center;
}
@media screen and (max-width: 768px) {
  .p-concerns__item:not(.p-concerns__item--reverse) .p-concerns__image::before {
    content: none;
  }
}

.p-concerns__item:nth-of-type(3) .p-concerns__image::before {
  left: -24.75rem;
}
@media screen and (max-width: 768px) {
  .p-concerns__item:nth-of-type(3) .p-concerns__image::before {
    content: none;
  }
}

.p-concerns__note {
  margin-top: 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.12em;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .p-concerns__note {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

.p-concerns__note::before {
  content: "※";
}

.p-concerns__br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-concerns__br {
    display: block;
  }
}

.p-tasks {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-tasks {
    padding-inline: 0;
  }
}

.p-tasks__inner {
  padding-top: 2.5rem;
  padding-inline: 7.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-tasks__inner {
    padding-inline: 1rem;
    padding-bottom: 1.5rem;
  }
}

.p-tasks__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-tasks__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}

.p-tasks__title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.2;
}

.p-tasks__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-tasks__label {
    font-size: 1.25rem;
    text-align: left;
  }
}

.p-tasks__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-tasks__title {
    font-size: 1.75rem;
  }
}

.p-tasks__lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a6fcb;
  line-height: 3;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .p-tasks__lead {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-tasks__arrows {
  position: absolute;
  right: 8rem;
  top: 6.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-tasks__arrows {
    position: relative;
    right: auto;
    top: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: -1.5rem;
  }
}

.p-tasks__arrow {
  width: 5rem;
  height: 5rem;
  border-radius: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
          box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-tasks__arrow {
    width: 3rem;
    height: 3rem;
    -webkit-transition: ease-in-out, 0.1s;
    transition: ease-in-out, 0.1s;
  }
}

.p-tasks__arrow-icon {
  display: block;
  width: 1.375rem;
  height: 2.5625rem;
  mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  background: #fff;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-tasks__arrow-icon {
    width: 1rem;
    height: 1.375rem;
  }
}

.p-tasks__arrow--prev {
  background-color: #f86944;
}

.p-tasks__arrow--prev .p-tasks__arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-tasks__arrow--next {
  background-color: #f86944;
}

.p-tasks__arrow--next .p-tasks__arrow-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.p-tasks__arrow--prev:active,
.p-tasks__arrow--next:active {
  background: #fff;
  border-color: #f86944;
}

.p-tasks__arrow--prev:active .p-tasks__arrow-icon,
.p-tasks__arrow--next:active .p-tasks__arrow-icon {
  background-color: #f86944;
}

@media (any-hover: hover) {
  .p-tasks__arrow--prev:hover,
  .p-tasks__arrow--next:hover {
    background: #fff;
    border-color: #f86944;
  }
  .p-tasks__arrow--prev:hover .p-tasks__arrow-icon,
  .p-tasks__arrow--next:hover .p-tasks__arrow-icon {
    background-color: #f86944;
  }
}
.p-tasks__slider.swiper {
  margin-top: 5rem;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .p-tasks__slider.swiper {
    margin-top: 1.5rem;
  }
}

.p-tasks__slider .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.p-tasks__slider .swiper-slide {
  height: auto;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-tasks__slider .swiper-slide {
    border-radius: 1rem;
  }
}

.p-tasks__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-tasks__card {
    border-radius: 1rem;
  }
}

.p-tasks__card-img {
  width: 100%;
  aspect-ratio: 3/2;
}

.p-tasks__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-tasks__card-body {
  background: #fff;
  padding-top: 2.5rem;
  padding-bottom: 2.4375rem;
  padding-inline: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-tasks__card-body {
    padding-block: 1.5rem;
    padding-inline: 1.25rem;
    gap: 0.75rem;
  }
}

.p-tasks__card-header {
  text-align: center;
  padding-bottom: 1.125rem;
}

.p-tasks__card-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 16rem;
  margin-inline: auto;
  padding-inline: 0.75rem;
  border-radius: 100vh;
  border: 1px solid currentColor;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-tasks__card-category {
    font-size: 0.875rem;
  }
}

.p-tasks__card--blue .p-tasks__card-category {
  color: #0a6fcb;
  border-color: #0a6fcb;
}

.p-tasks__card--navy .p-tasks__card-category {
  color: #1e3a81;
  border-color: #1e3a81;
}

.p-tasks__card-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-tasks__card-title {
    font-size: 1.25rem;
  }
}

.p-tasks__card--blue .p-tasks__card-title {
  color: #0a6fcb;
}

.p-tasks__card--navy .p-tasks__card-title {
  color: #1e3a81;
}

.p-tasks__card-subtitle {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-tasks__card-subtitle {
    font-size: 0.875rem;
  }
}

.p-tasks__card--blue .p-tasks__card-subtitle {
  color: #0a6fcb;
}

.p-tasks__card--navy .p-tasks__card-subtitle {
  color: #1e3a81;
}

.p-tasks__card-divider {
  width: 100%;
  height: 1px;
}

.p-tasks__card--blue .p-tasks__card-divider {
  background-color: #0a6fcb;
}

.p-tasks__card--navy .p-tasks__card-divider {
  background-color: #1e3a81;
}

.p-tasks__card-desc {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: justify;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-tasks__card-desc {
    font-size: 0.875rem;
  }
}

.p-tasks__card--blue .p-tasks__card-desc {
  color: #0a6fcb;
}

.p-tasks__card--navy .p-tasks__card-desc {
  color: #1e3a81;
}

.p-tasks__card-title-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-tasks__card-title-br {
    display: block;
  }
}

.p-tasks__card-location {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.0625rem;
  margin-left: auto;
  padding-block: 0;
  padding-inline: 0.75rem;
  border-radius: 100vh;
  background-color: #1e3a81;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-tasks__card-location {
    font-size: 0.875rem;
  }
}

.p-flow {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding-bottom: 5rem;
  }
}

.p-flow__inner {
  padding-block: 6.25rem;
  padding-inline: 5rem;
  background: #0a6fcb;
  border-radius: 2.75rem;
  color: #fff;
  max-width: 75rem;
}
@media screen and (max-width: 768px) {
  .p-flow__inner {
    border-radius: 1rem;
    padding-block: 5rem;
    padding-inline: 1rem;
  }
}

.p-flow__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-flow__header {
    text-align: center;
  }
}

.p-flow__label {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-flow__label {
    font-size: 1.25rem;
  }
}

.p-flow__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-flow__title {
    font-size: 1.75rem;
  }
}

.p-flow__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-flow__steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

.p-flow__step {
  position: relative;
  width: 13.75rem;
  height: 13.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #0a6fcb;
  padding-top: 2.6875rem;
  padding-bottom: 1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-flow__step {
    width: 11.875rem;
    height: 11.875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
  }
}

.p-flow__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.25rem;
  width: 130%;
  height: 100%;
  background: url(../images/flow_bubble.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-flow__step::before {
    width: 100%;
    height: 85%;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    background-size: auto 100%;
  }
}

.p-flow__step--last {
  background: #fff;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  .p-flow__step--last {
    width: 10.0625rem;
    height: 10.0625rem;
    margin-top: 0.9375rem;
  }
}

.p-flow__step--last::before {
  display: none;
}

.p-flow__step-label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-flow__step-label {
    font-size: 0.625rem;
  }
}

.p-flow__step-num {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-flow__step-num {
    font-size: 2rem;
  }
}

.p-flow__step-text {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__step-text {
    font-size: 0.875rem;
  }
}

.p-flow__target {
  border: 0.375rem solid #fff;
  border-radius: 2.75rem;
  padding-top: 3.625rem;
  padding-bottom: 3.75rem;
  padding-inline: 2.5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-flow__target {
    border-radius: 1rem;
    padding-block: 1.5rem;
    padding-inline: 1rem;
    gap: 1rem;
  }
}

.p-flow__target-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  border: 0.1875rem solid #fff;
  border-radius: 0.125rem;
  display: inline-block;
  padding-block: 0.5625rem;
  padding-inline: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-flow__target-title {
    font-size: 1.125rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
  }
}

.p-flow__target-list {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  max-width: 22rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-flow__target-list {
    font-size: 1.25rem;
  }
}

.p-flow__target-note-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-flow__target-note-br {
    display: block;
  }
}

.p-flow__target-note {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__target-note {
    font-size: 1.125rem;
  }
}

.p-staff {
  background-color: #0a6fcb;
}

.p-staff__layout {
  -webkit-margin-before: -1.25rem;
          margin-block-start: -1.25rem;
}

.p-staff__inner {
  padding-top: 11.375rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .p-staff__inner {
    padding-top: 6.25rem;
    padding-bottom: 5rem;
  }
}

.p-staff__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-staff__header {
    gap: 0.625rem;
  }
}

.p-staff__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-staff__label {
    font-size: 1.25rem;
  }
}

.p-staff__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-staff__title {
    font-size: 1.75rem;
  }
}

.p-staff__lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 3;
  letter-spacing: 0.12em;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-staff__lead {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.p-staff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9.75rem 8.0625rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-staff__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    overflow: hidden;
  }
}

.p-staff__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-staff__card {
    gap: 1rem;
  }
}

.p-staff__card:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -4rem;
  width: 1px;
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-staff__card:nth-child(odd)::after {
    content: none;
  }
}

.p-staff__card:nth-child(-n+2)::before {
  content: "";
  position: absolute;
  bottom: -5.8125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-staff__card:nth-child(-n+2)::before {
    bottom: -2rem;
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-staff__card:nth-child(n+3)::before {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
  }
}

@media screen and (max-width: 768px) {
  .p-staff__card:last-child::before {
    content: none;
  }
}

.p-staff__card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-staff__card-top {
    gap: 1rem;
  }
}

.p-staff__card-photo {
  width: 10rem;
  height: 10rem;
  border-radius: 100vh;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-staff__card-photo {
    width: 5rem;
    height: 5rem;
  }
}

.p-staff__card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-staff__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  color: #fff;
}

.p-staff__card-name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-staff__card-name {
    font-size: 1.5rem;
  }
}

.p-staff__card-sub {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-staff__card-sub {
    font-size: 1.125rem;
  }
}

.p-staff__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-staff__card-meta {
    gap: 0.75rem;
  }
}

.p-staff__card-meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6875rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-staff__card-meta-item {
    font-size: 1.125rem;
    gap: 0.75rem;
  }
}

.p-staff__card-meta-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 8.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #fff;
  border-radius: 100vh;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-staff__card-meta-label {
    min-width: 7rem;
    font-size: 0.875rem;
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
  }
}

.p-staff__card-message {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-staff__card-message {
    font-size: 0.875rem;
  }
}

.p-staff__card-message-br,
.p-staff__card-meta-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-staff__card-message-br,
  .p-staff__card-meta-br {
    display: block;
  }
}

.p-staff__more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 17.4375rem;
}
@media screen and (max-width: 768px) {
  .p-staff__more {
    gap: 0.75rem;
    margin-top: 7.5rem;
  }
}

.p-staff__more::before {
  content: "";
  position: absolute;
  top: -10.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.75rem;
  height: 5.75rem;
  background: url("../images/icon/dot_vertical.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-staff__more::before {
    width: 0.5rem;
    height: 3.875rem;
    top: -5rem;
  }
}

.p-staff__more-sub {
  font-size: 2rem;
  font-weight: 700;
  color: #0a6fcb;
  background: #fff;
  padding-block: 0.8125rem;
  padding-inline: 1.3125rem;
  border-radius: 0.125rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-staff__more-sub {
    font-size: 1.25rem;
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
  }
}

.p-staff__more-main {
  font-size: 3rem;
  font-weight: 700;
  color: #0a6fcb;
  background: #fff;
  padding-block: 0.8125rem;
  padding-inline: 1.3125rem;
  border-radius: 0.125rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-staff__more-main {
    font-size: 1.5rem;
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
  }
}

.p-faq__inner {
  padding-top: 10.25rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .p-faq__inner {
    padding-block: 7.5rem;
  }
}

.p-faq__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-faq__label {
    font-size: 1.125rem;
  }
}

.p-faq__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0a6fcb;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-faq__title {
    font-size: 1.75rem;
  }
}

.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    gap: 0.75rem;
    margin-top: 2.5rem;
  }
}

.p-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.25s ease-in-out;
  transition: grid-template-rows 0.25s ease-in-out;
  transition: grid-template-rows 0.25s ease-in-out, -ms-grid-rows 0.25s ease-in-out;
}

.p-faq__body-inner {
  min-height: 0;
  display: flow-root;
  overflow: hidden;
}

.p-faq__item.is-open .p-faq__body {
  grid-template-rows: 1fr;
}

.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.375rem;
  padding-block: 1.5rem;
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
  -webkit-padding-end: 3.125rem;
          padding-inline-end: 3.125rem;
  cursor: pointer;
  background-color: #eec2c3;
  border-radius: 1.5rem;
  font-weight: 700;
  color: #0c2d4c;
  letter-spacing: 0.03em;
  border: none;
  text-align: left;
  width: 100%;
  -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
          box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
}
@media screen and (max-width: 768px) {
  .p-faq__question {
    padding-block: 1rem;
    padding-inline: 1.25rem;
    gap: 1rem;
    border-radius: 1rem;
  }
}

.p-faq__question::after {
  content: "";
  width: 1.375rem;
  height: 2.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  background-color: #fff;
  -webkit-mask-image: url("../images/icon/arrow.svg");
          mask-image: url("../images/icon/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-faq__question::after {
    width: 0.875rem;
    height: 1.625rem;
  }
}

.p-faq__item.is-open .p-faq__question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-faq__question-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-faq__question-br {
    display: block;
  }
}

.p-faq__question-br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-faq__question-br-pc {
    display: none;
  }
}

.p-faq__q {
  font-size: 4rem;
  font-weight: 700;
  color: #0c2d4c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.2;
  width: 3.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-faq__q {
    font-size: 1.625rem;
    width: 1.5rem;
  }
}

.p-faq__question-divider {
  width: 0.25rem;
  height: 5rem;
  background-color: #0c2d4c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-faq__question-divider {
    width: 0.1875rem;
    height: 2.5rem;
  }
}

.p-faq__question-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-faq__question-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c2d4c;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-faq__question-main {
    font-size: 1rem;
  }
}

.p-faq__q-sub {
  font-size: 1rem;
  font-weight: 700;
  color: #0c2d4c;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-faq__q-sub {
    font-size: 0.875rem;
  }
}

.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.375rem;
  padding-block: 1.5rem;
  padding-inline: 2.5rem;
  background-color: #0a6fcb;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-faq__answer {
    padding-block: 1rem;
    padding-inline: 1.25rem;
    gap: 1rem;
    border-radius: 1rem;
  }
}

.p-faq__a {
  font-size: 4rem;
  font-weight: 700;
  color: #eec2c3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.2;
  letter-spacing: 0.03em;
  width: 3.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-faq__a {
    font-size: 1.625rem;
    width: 1.5rem;
  }
}

.p-faq__answer-divider {
  width: 0.25rem;
  height: 5rem;
  background-color: #eec2c3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-faq__answer-divider {
    width: 0.1875rem;
    height: 2.5rem;
  }
}

.p-faq__answer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-faq__answer-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eec2c3;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-faq__answer-main {
    font-size: 1rem;
  }
}

.p-faq__answer-sub {
  font-size: 1rem;
  font-weight: 700;
  color: #eec2c3;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-faq__answer-sub {
    font-size: 0.875rem;
  }
}

.p-access__bg {
  background: #0a6fcb;
}

.p-access__inner {
  padding-top: 5.75rem;
  padding-bottom: 12.5rem;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-access__inner {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.p-access__header {
  text-align: center;
}

.p-access__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-access__label {
    font-size: 1.125rem;
  }
}

.p-access__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-access__title {
    font-size: 1.75rem;
  }
}

.p-access__lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 3;
  letter-spacing: 0.12em;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-access__lead {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}

.p-access__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-access__list {
    gap: 2rem;
    margin-top: 2rem;
  }
}

.p-access__card {
  position: relative;
}

.p-access__card-body {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding-block: 2.5rem;
  padding-inline: 2.5rem;
  max-width: 43.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-access__card-body {
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
    border-radius: 0.75rem;
    max-width: none;
  }
}

.p-access__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-access__card-content {
    gap: 1.5rem;
  }
}

.p-access__card-header {
  text-align: center;
}

.p-access__card-type {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #0a6fcb;
  letter-spacing: 0.03em;
  border-radius: 100vh;
  display: inline-block;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-access__card-type {
    font-size: 0.875rem;
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
  }
}

.p-access__card-name {
  font-size: 2rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-access__card-name {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.p-access__card-address {
  font-size: 1rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.5;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .p-access__card-address {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.p-access__card-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-access__card-photos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}

.p-access__card-photo {
  width: 18.75rem;
  height: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-access__card-photo {
    width: 100%;
    height: auto;
  }
}

.p-access__card-photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 300/200;
}

.p-access__card-tel {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-access__card-tel {
    pointer-events: auto;
  }
}

.p-access__card-dl {
  display: grid;
  grid-template-columns: fit-content(100%) minmax(0, 1fr);
}
@media screen and (max-width: 768px) {
  .p-access__card-dl {
    grid-template-columns: 1fr;
  }
}

.p-access__card-dl-row {
  display: contents;
}

.p-access__card-dl-row dt {
  padding-block: 1.41875rem;
  padding-inline: 1rem;
  border-bottom: 1px solid #eec2c3;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-access__card-dl-row dt {
    font-size: 0.8125rem;
    padding-block: 0.75rem 0.25rem;
    padding-inline: 0.5rem;
    border-bottom: none;
  }
}

.p-access__card-dl-row dd {
  padding-block: 1.41875rem;
  padding-inline: 1rem;
  border-bottom: 1px solid #eec2c3;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-access__card-dl-row dd {
    font-size: 0.8125rem;
    font-weight: 400;
    padding-block: 0.25rem 0.75rem;
    padding-inline: 0.5rem;
  }
}

.p-access__card-dl-row:first-child dt {
  border-top: 1px solid #eec2c3;
}

.p-access__card-dl-row:first-child dd {
  border-top: 1px solid #eec2c3;
}
@media screen and (max-width: 768px) {
  .p-access__card-dl-row:first-child dd {
    border-top: none;
  }
}

.p-access__card-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-access__card-links {
    gap: 1rem;
  }
}

.p-access__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4rem;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  border-radius: 100vh;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  position: relative;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
  -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
          box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
}
@media screen and (max-width: 768px) {
  .p-access__card-link {
    font-size: 1.125rem;
    height: 3.25rem;
    padding-block: 1rem;
    padding-inline: 0.75rem;
  }
}

.p-access__card-link--map {
  background-color: #0a6fcb;
  border: 2px solid #0a6fcb;
  color: #fff;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
}

.p-access__card-link--map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
  border-radius: inherit;
  z-index: -1;
}

.p-access__card-link--line {
  background-color: #2acb0a;
  border: 2px solid #2acb0a;
  color: #fff;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
}

.p-access__card-link--line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
  border-radius: inherit;
  z-index: -1;
}

.p-access__card-link-arrow {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.625rem 0 0.625rem 0.875rem;
  border-color: transparent transparent transparent #fff;
  -webkit-transition: border-color 0.4s, right 0.4s;
  transition: border-color 0.4s, right 0.4s;
}
@media screen and (max-width: 768px) {
  .p-access__card-link-arrow {
    right: 1.25rem;
    border-width: 0.5rem 0 0.5rem 0.6875rem;
  }
}

@media (any-hover: hover) {
  .p-access__card-link--map:hover {
    color: #0a6fcb;
  }
  .p-access__card-link--map:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .p-access__card-link--line:hover {
    color: #2acb0a;
  }
  .p-access__card-link--line:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .p-access__card-link--map:hover .p-access__card-link-arrow {
    border-color: transparent transparent transparent #0a6fcb;
    right: 2rem;
  }
  .p-access__card-link--line:hover .p-access__card-link-arrow {
    border-color: transparent transparent transparent #2acb0a;
    right: 2rem;
  }
}
.p-contact {
  background-color: #0a6fcb;
  border-radius: 2.5rem 2.5rem 0 0;
  overflow: clip;
}

.p-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5.625rem;
  padding-top: 7.6875rem;
  padding-bottom: 7.3125rem;
  max-width: 78.4375rem;
}
@media screen and (max-width: 768px) {
  .p-contact__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding-block: 3.75rem;
    padding-inline: 1rem;
  }
}

.p-contact__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .p-contact__left {
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-contact__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-contact__header {
    gap: 0.625rem;
    text-align: center;
  }
}

.p-contact__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-contact__label {
    font-size: 1.25rem;
  }
}

.p-contact__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 1.75rem;
  }
}

.p-contact__lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 3;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .p-contact__lead {
    font-size: 1.125rem;
    text-align: center;
    line-height: 2;
  }
}

.p-contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-contact__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding-top: 0;
  }
}

.p-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20rem;
  border-radius: 2.5rem;
  padding-block: 3.375rem;
  padding-inline: 2.125rem;
  gap: 2.5625rem;
  text-decoration: none;
  -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
          box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-contact__btn {
    width: 100%;
    padding-block: 1.875rem;
    padding-inline: 1.875rem;
    gap: 1.5rem;
  }
}

@media (any-hover: hover) {
  .p-contact__btn:hover .p-contact__btn-arrow {
    -webkit-transform: translateX(0.375rem);
            transform: translateX(0.375rem);
  }
}
.p-contact__btn--web {
  background: #fff;
  color: #f86944;
  border: 0.3125rem solid #f86944;
}

.p-contact__btn--tiktok {
  background-color: #f86944;
  color: #fff;
  border: 0.3125rem solid #fff;
}

.p-contact__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.p-contact__btn-sub {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-contact__btn-sub {
    font-size: 1.125rem;
  }
}

.p-contact__btn-sub-large {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-contact__btn-sub-large {
    font-size: 1.5rem;
  }
}

.p-contact__btn-main {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-contact__btn-main {
    font-size: 1.125rem;
  }
}

.p-contact__btn-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

.p-contact__btn-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.p-contact__btn-note {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-contact__btn-note {
    font-size: 0.875rem;
  }
}

.p-contact__btn-arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.875rem 0 0.875rem 1.4375rem;
  border-color: transparent transparent transparent currentColor;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.p-cta-fixed {
  position: fixed;
  bottom: 1.875rem;
  right: 1.5rem;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f86944;
  border: 0.1875rem solid #fff;
  border-radius: 1rem;
  padding-block: 1.125rem;
  padding-inline: 0.9375rem;
  gap: 0.625rem;
  -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
          box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
  -webkit-transition: -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-out;
  will-change: transform;
  -webkit-transform: translateY(calc(100% + 5rem));
          transform: translateY(calc(100% + 5rem));
}
@media screen and (max-width: 768px) {
  .p-cta-fixed {
    bottom: 1.25rem;
    right: 1rem;
    border-radius: 0.5rem;
  }
}

.p-cta-fixed.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-cta-fixed.is-visible:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: 0.125rem 0.125rem 0.625rem rgba(30, 58, 129, 0.12);
          box-shadow: 0.125rem 0.125rem 0.625rem rgba(30, 58, 129, 0.12);
}

.p-cta-fixed::before {
  content: "";
  position: absolute;
  top: -2.9375rem;
  left: -1.8125rem;
  width: 5.9375rem;
  height: 5.5rem;
  background-image: url("../images/icon/eye.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-cta-fixed::before {
    width: 3.3125rem;
    height: 3.0625rem;
    top: -1.25rem;
    left: -1rem;
  }
}

.p-cta-fixed::after {
  content: "";
  position: absolute;
  bottom: -1.3125rem;
  right: -0.6875rem;
  width: 3.25rem;
  height: 4.4375rem;
  background-image: url("../images/icon/yubi.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  -webkit-filter: drop-shadow(0.0625rem 0.0625rem 0.5rem rgba(30, 58, 129, 0.03));
          filter: drop-shadow(0.0625rem 0.0625rem 0.5rem rgba(30, 58, 129, 0.03));
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .p-cta-fixed::after {
    width: 1.875rem;
    height: 2.5625rem;
    bottom: -0.9375rem;
    right: -0.625rem;
  }
}

.p-cta-fixed.is-visible:hover::after {
  -webkit-transform: translate(-1px, 3px) rotate(-3deg);
          transform: translate(-1px, 3px) rotate(-3deg);
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
  -webkit-filter: none;
          filter: none;
}

.p-cta-fixed__text {
  position: relative;
  z-index: 1;
  font-weight: 700;
  color: #fff;
  line-height: 1.37;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

.p-cta-fixed__text--pc {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-cta-fixed__text--pc {
    display: none;
  }
}

.p-cta-fixed__text--sp {
  display: none;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-cta-fixed__text--sp {
    display: block;
  }
}

.p-wave-deco {
  position: relative;
  width: 100%;
  height: 6.875rem;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-wave-deco {
    height: 1.8125rem;
  }
}

.p-wave-deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 103%;
  height: auto;
  aspect-ratio: 1440/110;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-wave-deco::before {
    top: 0.125rem;
    aspect-ratio: 375/29;
  }
}

.p-workstyle .p-wave-deco {
  background: #0a6fcb;
}

.p-workstyle .p-wave-deco::before {
  background-image: url(../images/wave_deco_white.webp);
}

.p-access .p-wave-deco {
  background: #fff;
}

.p-access .p-wave-deco::before {
  background-image: url(../images/wave_deco_blue.webp);
}

.p-messages {
  padding-top: 10rem;
  padding-bottom: 12.5rem;
  padding-inline: 0;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-messages {
    padding-block: 3.75rem;
    padding-inline: 0;
  }
}

.p-messages__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5rem;
  -webkit-padding-end: 4rem;
          padding-inline-end: 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-messages__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}

.p-messages__body::after {
  content: "";
  position: absolute;
  width: 36.4375rem;
  height: 36.4375rem;
  border: 0.5rem solid #0a6fcb;
  border-radius: 100vh;
  top: 52.2%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-messages__body::after {
    width: 24.375rem;
    height: 24.375rem;
    top: 68.2%;
    left: 50%;
  }
}

.p-messages__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: right;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .p-messages__header {
    right: calc(50vw - 720px);
  }
}
@media screen and (max-width: 768px) {
  .p-messages__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.p-messages__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-messages__label {
    font-size: 1.25rem;
  }
}

.p-messages__title {
  margin-top: 1rem;
  font-size: 3.5rem;
  font-weight: 700;
  color: #0a6fcb;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-messages__title {
    font-size: 1.75rem;
  }
}

.p-messages__nav {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-messages__nav {
    position: static;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0.75rem;
    margin-left: auto;
    margin-right: 1rem;
  }
}

.p-messages__nav-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 100vh;
  border: 2px solid #f86944;
  background: #f86944;
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
          box-shadow: 0.25rem 0.25rem 1.25rem rgba(30, 58, 129, 0.2);
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .p-messages__nav-btn {
    width: 3rem;
    height: 3rem;
    -webkit-transition: ease-in-out, 0.1s;
    transition: ease-in-out, 0.1s;
  }
}

.p-messages__nav-btn:active {
  background: #fff;
}

@media (any-hover: hover) {
  .p-messages__nav-btn:hover {
    background: #fff;
  }
}
.p-messages__nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.375rem;
  height: 2.5625rem;
  mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../images/icon/arrow.svg") no-repeat center/contain;
  background-color: #fff;
  -webkit-transition: ease-in-out, 0.3s;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-messages__nav-btn::before {
    width: 1rem;
    height: 1.375rem;
  }
}

.p-messages__nav-btn:active::before {
  background: #f86944;
}

@media (any-hover: hover) {
  .p-messages__nav-btn:hover::before {
    background: #f86944;
  }
}
.p-messages__slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-messages__slider.js-message-slider {
  overflow: visible;
  clip-path: inset(-100px -100vw -100px 0);
}
@media screen and (max-width: 768px) {
  .p-messages__slider.js-message-slider {
    clip-path: inset(-100px -100vw -100px -100vw);
  }
}

.js-message-slider ~ .p-messages__header {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .js-message-slider ~ .p-messages__header {
    gap: 2.5rem;
  }
}

.js-message-slider ~ .p-messages__header::before {
  content: "";
  position: absolute;
  top: -6.25rem;
  bottom: -6.25rem;
  left: -2.1875rem;
  right: -100vw;
  background: #fff;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .js-message-slider ~ .p-messages__header::before {
    content: none;
  }
}

.js-message-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
}

.js-message-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .js-message-slide {
    padding-top: 2rem;
  }
}

.js-message-slide::before {
  content: "";
  position: absolute;
  top: 1.5625rem;
  left: 0.125rem;
  width: 4.4375rem;
  height: 3.9375rem;
  background: url("../images/icon/quote.svg") no-repeat center/contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .js-message-slide::before {
    width: 2.5rem;
    height: 2.25rem;
    top: 1.0625rem;
    left: 0;
  }
}

.p-messages__nav-btn.js-message-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.p-messages__nav-btn.js-message-next::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-messages__item {
  background: #fff;
  border: 0.625rem solid #eec2c3;
  border-radius: 2.375rem;
  padding-block: 3rem;
  padding-inline: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-messages__item {
    padding-block: 1.5rem;
    padding-inline: 1.25rem;
    border-radius: 1.25rem;
    border: 0.5rem solid #eec2c3;
  }
}

.p-messages__item::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.875rem;
  height: 2.6875rem;
  background: url("../images/icon/triangle.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-messages__item::after {
    width: 2.25rem;
    height: 1.625rem;
    bottom: -1.9375rem;
  }
}

.p-messages__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a6fcb;
  line-height: 2;
  letter-spacing: 0.03em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  .p-messages__text {
    font-size: 1.125rem;
  }
}

.p-messages__age {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a6fcb;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-messages__age {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}