@charset "UTF-8";
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

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

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  line-height: 2;
}

body {
  color: #011F60;
  background-color: #EBECED;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: clamp(0.8125rem, 0.31vw + 0.7375rem, 1.125rem);
  font-weight: 500;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  text-decoration: none;
  cursor: pointer;
}

a:active {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    color: inherit;
    text-decoration: none;
  }
}
ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

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

/*
header
-----------------------------------------------------*/
.p-vision .l-header__nav-list .l-header__nav-item:nth-of-type(1) a {
  opacity: 0.5;
}

.p-job-people .l-header__nav-list .l-header__nav-item:nth-of-type(2) .l-header__nav-link {
  opacity: 0.5;
}

.p-faq .l-header__nav-list .l-header__nav-item:nth-of-type(3) a {
  opacity: 0.5;
}

.p-policy .l-header__nav-footer .l-header__nav-footer-link:nth-of-type(1) {
  opacity: 0.5;
}

.l-header {
  position: relative;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em 1em;
  padding: 4vw 4vw 0 4vw;
  position: relative;
  z-index: 200;
}
@media screen and (min-width: 960px) {
  .l-header__inner {
    padding: 2vw 2vw 0 2vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: inherit;
}

body.is-menu-open .l-header .l-header__inner .l-header__logo {
  opacity: 0;
}

.l-header__logo-img {
  width: clamp(6.25rem, 4vw + 5.25rem, 10.25rem);
  height: auto;
  display: block;
}

.l-header__logo-caption {
  font-size: clamp(0.625rem, 0.38vw + 0.53125rem, 1rem);
  line-height: 1.2;
}

.l-header__menu-btn {
  position: relative;
  width: clamp(2.75rem, 0.75vw + 2.5625rem, 3.5rem);
  height: clamp(2.75rem, 0.75vw + 2.5625rem, 3.5rem);
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #011F60;
  color: #8CC0DC;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 500;
}
.l-header__menu-btn:focus-visible {
  outline: 2px solid #8CC0DC;
  outline-offset: 2px;
}

.l-header__inner .l-header__menu-btn {
  position: fixed;
  right: 4vw;
}

.l-header__menu-icon {
  width: 60%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-header__menu-icon > span {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #8CC0DC;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header__menu-icon span:first-of-type {
  position: absolute;
  left: 0;
}

.l-header__menu-icon span:last-of-type {
  position: absolute;
  right: 0;
}

.is-menu-open .l-header__menu-icon span:first-of-type {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-menu-open .l-header__menu-icon span:last-of-type {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-menu-open .l-header__menu-icon span:nth-child(2) {
  -webkit-transform: scale(2);
          transform: scale(2);
}

@media screen and (min-width: 960px) {
  .l-header__inner > .l-header__menu-btn {
    display: none;
  }
  .l-header__pc-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: auto;
    min-width: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .l-header__pc-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .l-header__pc-link {
    font-weight: 700;
    font-size: clamp(1rem, 0.19vw + 0.8875rem, 1.125rem);
    line-height: 1.6;
    color: #011F60;
    text-decoration: none;
    padding: 0;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
    gap: 0.4em;
  }
  .l-header__pc-link:focus-visible {
    outline: 2px solid #011F60;
    outline-offset: 2px;
  }
  .l-header__pc-link:hover {
    opacity: 0.5;
  }
  .l-header__pc-link:hover .c-button__icon {
    opacity: 0.5;
  }
  .l-header__pc-link--has-menu .l-header__pc-link-icon {
    width: 0.5em;
    height: 0.5em;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }
  .l-header__pc-cta {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.l-header__megamenu {
  display: none;
  z-index: 10;
}

@media screen and (min-width: 960px) {
  .l-header__megamenu {
    display: block;
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.2s ease, opacity 0.2s ease;
    transition: visibility 0.2s ease, opacity 0.2s ease;
    z-index: 10;
  }
  body.is-megamenu-open {
    overflow: hidden;
  }
  body.is-megamenu-open .l-header__megamenu {
    visibility: visible;
    opacity: 1;
  }
  .l-header__megamenu[aria-hidden=true] {
    pointer-events: none;
  }
  .l-header__megamenu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .l-header__megamenu-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    top: 0;
  }
  .l-header__megamenu-inner {
    padding: 9.5rem 4vw 4vw 4vw;
    background-color: #fff;
  }
  .l-header__megamenu-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .l-header__megamenu-head {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    min-width: 0;
    width: 40%;
  }
  .l-header__megamenu-title {
    margin: 0 0 0.5em 0;
    font-weight: 700;
    font-size: 25px;
  }
  .l-header__megamenu-lead {
    margin: 0;
    color: #011F60;
  }
  .l-header__megamenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    min-width: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .l-header__megamenu-item {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .l-header__megamenu-visual {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3/2;
    width: 55%;
  }
  .l-header__megamenu-visual img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .l-header__megamenu-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;
    min-width: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .l-header__megamenu-category {
    margin: 0;
    color: #011F60;
  }
  .l-header__megamenu-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: 0.25rem;
  }
  .l-header__megamenu-link {
    color: #011F60;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .l-header__megamenu-link:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0.4em;
    height: 0.4em;
    margin: 0 0.3em 0.2em 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    pointer-events: none;
  }
  .l-header__megamenu-link:focus-visible {
    outline: 2px solid #011F60;
    outline-offset: 2px;
  }
}
@media screen and (min-width: 960px) and (hover: hover) {
  .l-header__megamenu-link:hover {
    text-decoration: underline;
  }
}
.l-header__nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #EBECED;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.2s, opacity 0.2s;
  transition: visibility 0.2s, opacity 0.2s;
}

body.is-menu-open .l-header__nav-overlay {
  visibility: visible;
  opacity: 1;
}

.l-header__nav-panel {
  position: absolute;
  inset: 0;
  background: #fff;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-header__nav-head {
  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;
  padding: 4vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.l-header__nav-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 6vw;
  margin-top: 35px;
}

.l-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__nav-item {
  border-bottom: 1px solid #A5AEC3;
}
.l-header__nav-item:first-child {
  border-top: 1px solid #A5AEC3;
}

.l-header__nav-link {
  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;
  padding: 0.7rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  color: #011F60;
  text-decoration: none;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media (hover: hover) {
  .l-header__nav-link:hover {
    color: #011F60;
    outline: 2px solid #011F60;
    outline-offset: 2px;
  }
}
.l-header__nav-link:focus-visible {
  color: #011F60;
  outline: 2px solid #011F60;
  outline-offset: 2px;
}

.l-header__nav-link-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid #011F60;
  border-right: 2px solid #011F60;
  color: #011F60;
  font-size: 1.5rem;
  line-height: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 0.8rem;
}

.l-header__nav-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-sub {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .l-header__nav-sub .l-header__nav-sub > li + li {
    margin-top: initial;
  }
}

.l-header__nav-sub > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1.6rem;
}
.l-header__nav-sub > li + li {
  margin-top: 1rem;
}

.l-header__nav-sub-visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  max-width: 12rem;
  border-radius: 4px;
  overflow: hidden;
}
.l-header__nav-sub-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__nav-sub-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.l-header__nav-sub-category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.3em;
}

.l-header__nav-sub-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}

.l-header__nav-sub-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 0.8em;
  line-height: 1.6;
  color: #011F60;
  text-decoration: none;
}
.l-header__nav-sub-link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.4em;
  height: 0.4em;
  margin: 0 0.3em 0.2em 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  pointer-events: none;
}
@media (hover: hover) {
  .l-header__nav-sub-link:hover {
    color: #011F60;
    outline: 2px solid #011F60;
    outline-offset: 2px;
  }
}
.l-header__nav-sub-link:focus-visible {
  color: #011F60;
  outline: 2px solid #011F60;
  outline-offset: 2px;
}

.l-header__nav-footer {
  margin-top: auto;
  padding: 2rem 0;
}
.l-header__nav-footer .l-header__nav-footer-link {
  display: block;
}
.l-header__nav-footer .l-header__nav-footer-link + .l-header__nav-footer-link {
  margin-top: 0.2em;
}

.l-header__nav-footer-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 2;
  color: #011F60;
  text-decoration: none;
}
@media (hover: hover) {
  .l-header__nav-footer-link:hover {
    color: #011F60;
    outline: 2px solid #011F60;
    outline-offset: 2px;
  }
}
.l-header__nav-footer-link:focus-visible {
  color: #011F60;
  outline: 2px solid #011F60;
  outline-offset: 2px;
}

.l-header__nav-sns-label {
  font-weight: 500;
  font-size: 11px;
  line-height: 2;
  opacity: 0.5;
  margin-bottom: 0.8em;
  margin-top: 3rem;
}

.l-header__nav-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav-sns-list li {
  border-radius: 15vw;
}

.l-header__nav-sns-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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
}
.l-header__nav-sns-link:focus-visible {
  outline: 2px solid #011F60;
  outline-offset: 2px;
}
.l-header__nav-sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__nav-sns-link--bordered {
  border: 1px solid #011F60;
  background-color: #fff;
}
.l-header__nav-sns-link--bordered img {
  width: 40%;
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  margin-top: clamp(5rem, 8.75vw + 2.8125rem, 13.75rem);
}

.l-footer__top {
  position: relative;
  padding-bottom: clamp(2.5rem, 3.75vw + 1.5625rem, 6.25rem);
}
.l-footer__top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - clamp(6.25rem, 6.25vw + 4.6875rem, 12.5rem));
  background: #011F60;
  z-index: 0;
  pointer-events: none;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.l-footer__top-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0;
}

.l-footer__recruit {
  background: #fff;
  padding: 6vw 6vw;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .l-footer__recruit {
    padding: 4vw 6vw;
    margin: 0 4vw;
  }
}

.l-footer__recruit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #011F60;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.l-footer__recruit-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  line-height: 1.5;
  color: #011F60;
  margin: 0 0 1rem 0;
}

.l-footer__recruit-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 2;
  margin: 0 0 1.5rem 0;
  margin-bottom: clamp(2rem, 3vw + 1.25rem, 5rem);
}
@media screen and (min-width: 960px) {
  .l-footer__recruit-lead {
    margin-bottom: initial;
  }
}

.l-footer__recruit-buttons {
  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;
}
@media screen and (min-width: 960px) {
  .l-footer__recruit-buttons .l-footer__recruit-btn {
    width: 50%;
  }
  .l-footer__recruit-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__recruit-btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-footer__flex .l-footer__flex-head {
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 960px) {
  .l-footer__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 4.4rem;
  }
  .l-footer__flex .l-footer__flex-head, .l-footer__flex l-footer__recruit-lead {
    margin-bottom: initial;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__flex-head {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 40%;
  }
}

.l-footer__tagline {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: clamp(2.25rem, 2.5vw + 1.625rem, 4.75rem);
  line-height: 1.1;
  color: #fff;
  opacity: 0.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 960px) {
  .l-footer__tagline {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    padding: 0 2rem;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column-align: end;
        justify-self: end;
    position: relative;
    padding: initial;
    margin: initial;
    margin-right: auto;
  }
}

@media screen and (min-width: 960px) {
  .l-footer__bottom-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-footer__bottom-flex .l-footer__bottom-flex__nav-area {
    width: 20rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 4vw;
  }
}

.l-footer__bottom {
  background: #011F60;
  color: #fff;
  padding-bottom: 6vw;
}
@media screen and (min-width: 960px) {
  .l-footer__bottom {
    padding-bottom: 4vw;
  }
}

.l-footer__bottom-inner {
  position: relative;
  position: relative;
}

.l-footer__nav-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  text-decoration: none;
}
.l-footer__nav-link:focus-visible {
  outline: 2px solid #8CC0DC;
  outline-offset: 2px;
}
@media (hover: hover) {
  .l-footer__nav-link:hover {
    text-decoration: underline;
  }
}

.l-footer__official {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 2;
  color: #fff;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer__official .c-button__icon {
  color: #8CC0DC;
}
.l-footer__official:focus-visible {
  outline: 2px solid #8CC0DC;
  outline-offset: 2px;
}
@media (hover: hover) {
  .l-footer__official:hover {
    text-decoration: underline;
  }
}

.l-footer__nav-list-sub {
  margin-top: 1.3rem;
}
.l-footer__nav-list-sub li {
  font-size: clamp(0.75rem, 0.25vw + 0.6875rem, 1rem);
}

.l-footer__sns__wrapper {
  margin-top: 4.5rem;
}

.l-footer__sns-heading {
  font-size: clamp(0.75rem, 0.38vw + 0.65625rem, 1.125rem);
  color: #fff;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.l-footer__sns-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.l-footer__sns-list .icon-bg {
  background-color: #fff;
  border-radius: 15vw;
}
.l-footer__sns-list .icon-bg img {
  width: 40%;
}

.l-footer__sns-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;
  width: clamp(2.5rem, 0.5vw + 2.375rem, 3rem);
  height: clamp(2.5rem, 0.5vw + 2.375rem, 3rem);
  border-radius: 50%;
}
.l-footer__sns-link:focus-visible {
  outline: 2px solid #8CC0DC;
  outline-offset: 2px;
}
.l-footer__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__catchphrase {
  margin-top: 6.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(1rem, 0.56vw + 0.8625rem, 1.5625rem);
}
@media screen and (min-width: 960px) {
  .l-footer__catchphrase {
    margin-top: 1.5rem;
  }
}

.l-footer__org {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 960px) {
  .l-footer__org {
    padding: initial;
    border: initial;
    margin-top: 6rem;
  }
}

.l-footer__logo-wrapper {
  width: clamp(15.625rem, 9.38vw + 13.28125rem, 25rem);
}
.l-footer__logo-wrapper img {
  width: 100%;
}

.l-footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  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;
}

.l-footer__link-wrapper {
  margin-top: 1rem;
}
.l-footer__link-wrapper li {
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .l-footer__link-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.l-footer__link-wrapper-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: clamp(0.625rem, 0.31vw + 0.55rem, 0.9375rem);
  line-height: 2;
  color: #fff;
  text-decoration: none;
}
.l-footer__link-wrapper-item .c-button__icon svg {
  fill: #fff;
}
.l-footer__link-wrapper-item:focus-visible {
  outline: 2px solid #8CC0DC;
  outline-offset: 2px;
}
@media (hover: hover) {
  .l-footer__link-wrapper-item:hover {
    text-decoration: underline;
  }
}

.l-footer__copy {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #fff;
  opacity: 0.5;
  margin-top: clamp(2.125rem, 0.38vw + 2.03125rem, 2.5rem);
  font-size: clamp(0.625rem, 0.25vw + 0.5625rem, 0.875rem);
}

/*
 container
-----------------------------------------------------*/
.l-container {
  margin: 0 auto;
  width: 87vw;
}
@media screen and (min-width: 960px) {
  .l-container {
    width: 84vw;
  }
}
.l-container--full {
  width: 100vw;
}
.l-container--wider {
  width: 91vw;
}
@media screen and (min-width: 768px) {
  .l-container--tab-wide {
    width: 91vw;
  }
}
@media screen and (min-width: 960px) {
  .l-container--lap-space {
    padding-left: 28vw;
  }
}
@media screen and (min-width: 960px) {
  .l-container--lap-base {
    width: 84vw;
  }
}
@media screen and (min-width: 960px) {
  .l-container--lap-wide {
    width: 92vw;
  }
}
@media screen and (min-width: 960px) {
  .l-container--lap-x-wide {
    width: 96vw;
  }
}
@media screen and (min-width: 960px) {
  .l-container--lap-full {
    width: 100vw;
  }
}

@media screen and (min-width: 960px) {
  .l-inset--lap-m {
    inset: 0 6vw;
  }
}

/*
  spacer … 余白調整用ユーティリティ
  方向: 上(top) / 下(bottom) / 上下(both)
  サイズ: 小(s) / 中(m) / 大(l)
-----------------------------------------------------*/
.l-spacer--top--s {
  margin-top: 0.5rem;
}
.l-spacer--top--m {
  margin-top: clamp(4rem, 5.38vw + 2.65625rem, 9.375rem);
}
.l-spacer--top--l {
  margin-top: clamp(5rem, 4.38vw + 3.90625rem, 9.375rem);
}
.l-spacer--bottom--s {
  margin-bottom: 0.5rem;
}
.l-spacer--bottom--m {
  margin-bottom: clamp(4rem, 5.38vw + 2.65625rem, 9.375rem);
}
.l-spacer--bottom--l {
  margin-bottom: clamp(5rem, 4.38vw + 3.90625rem, 9.375rem);
}
.l-spacer--both--s {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.l-spacer--both--m {
  margin-top: clamp(4rem, 5.38vw + 2.65625rem, 9.375rem);
  margin-bottom: clamp(4rem, 5.38vw + 2.65625rem, 9.375rem);
}
.l-spacer--both--l {
  margin-top: clamp(5rem, 4.38vw + 3.90625rem, 9.375rem);
  margin-bottom: clamp(5rem, 4.38vw + 3.90625rem, 9.375rem);
}

/*
  bg … 複数セクションをまたぐ背景用ラッパー（汎用）
  l-bg__inner で高さを調整可能。擬似要素（波）は inner に付与。
-----------------------------------------------------*/
.l-bg {
  position: relative;
}

@media screen and (min-width: 960px) {
  .l-bg--home .l-bg__inner {
    height: calc(100% - 10vw);
    -webkit-transform: translateY(5vw);
            transform: translateY(5vw);
  }
}

.l-bg--page {
  margin-top: clamp(12.5rem, 7.14vw + 10.7125rem, 15rem);
}
@media screen and (min-width: 768px) {
  .l-bg--page {
    margin-top: 10vw;
  }
}
@media screen and (min-width: 960px) {
  .l-bg--page {
    margin-top: 0;
  }
  .l-bg--page .l-bg__inner {
    height: calc(100% - 10vw);
    -webkit-transform: translateY(5vw);
            transform: translateY(5vw);
  }
}

.l-bg--job-people {
  height: calc(100% - 20vw);
}
@media screen and (min-width: 768px) {
  .l-bg--job-people {
    margin-top: 0;
  }
  .l-bg--job-people .l-bg__inner {
    height: calc(100% - 16vw);
  }
}

.l-bg--interview {
  margin-top: -35vw;
}
@media screen and (min-width: 768px) {
  .l-bg--interview {
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-bg--interview .l-bg__inner {
    height: calc(100% - 14vw);
  }
}

.l-bg--faq {
  margin-bottom: 48vw;
}
@media screen and (min-width: 960px) {
  .l-bg--faq {
    margin-bottom: 30vw;
  }
}

.l-bg__inner {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.l-bg--white .l-bg__inner {
  background-color: #fff;
}
.l-bg--white .l-bg__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: auto;
  aspect-ratio: 1568/383;
  background: url("../img/common/bg-white_above.svg") no-repeat top center;
  background-size: 100% 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  pointer-events: none;
  z-index: -1;
}
.l-bg--white .l-bg__inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: auto;
  aspect-ratio: 1568/382;
  background: url("../img/common/bg-white_below.svg") no-repeat bottom center;
  background-size: 100% 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  pointer-events: none;
  z-index: -1;
}

.l-bg--particle {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-size: cover;
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}
.l-bg--particle canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}

/*
 page
-----------------------------------------------------*/
/*
 section
-----------------------------------------------------*/
.l-section--top.--medium {
  padding-top: 17vw;
}
.l-section--top.--large {
  padding-top: 40vw;
}
@media screen and (min-width: 768px) {
  .l-section--top.--medium {
    padding-top: 14vw;
  }
  .l-section--top.--large {
    padding-top: 36vw;
  }
}
@media screen and (min-width: 960px) {
  .l-section--top.--medium {
    padding-top: 10vw;
  }
  .l-section--top.--large {
    padding-top: 25vw;
  }
}

/*
 section
-----------------------------------------------------*/
.l-section--top.--medium {
  padding-top: 17vw;
}
.l-section--top.--large {
  padding-top: 40vw;
}
@media screen and (min-width: 768px) {
  .l-section--top.--medium {
    padding-top: 14vw;
  }
  .l-section--top.--large {
    padding-top: 36vw;
  }
}
@media screen and (min-width: 960px) {
  .l-section--top.--medium {
    padding-top: 10vw;
  }
  .l-section--top.--large {
    padding-top: 25vw;
  }
}

/*
  title … 欧文＋日本語のセクションタイトル（汎用）
  例）Our Vision + QSTが目指す未来
-----------------------------------------------------*/
.c-title {
  display: block;
  margin: 0;
}
.c-title__en {
  display: block;
  font-family: "Roboto", sans-serif, sans-serif;
  font-size: clamp(0.75rem, 0.38vw + 0.65625rem, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #011F60;
  margin-bottom: 0.25em;
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
}
.c-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: currentColor;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-title--h2 {
  position: relative;
  font-size: clamp(1.5625rem, 2.44vw + 0.95rem, 4rem);
  font-weight: bold;
  line-height: 1.5;
}
.c-title--h3 {
  position: relative;
  font-size: clamp(1.1875rem, 1.31vw + 0.8625rem, 2.5rem);
  font-weight: bold;
  line-height: 1.5;
}
.c-title--h4 {
  font-size: clamp(1.25rem, 0.94vw + 1.0125rem, 2.1875rem);
  font-weight: bold;
  line-height: 1.5;
}

/*button
-----------------------------------------------------*/
.c-button {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
  padding: 0.75rem 1.2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 15vw;
  cursor: pointer;
  color: inherit;
  min-width: clamp(10.3125rem, 5.31vw + 8.9875rem, 15.625rem);
  -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.c-button--s {
  min-width: clamp(15.875rem, 7.25vw + 14.0625rem, 23.125rem);
  font-size: clamp(0.75rem, 0.31vw + 0.675rem, 1.0625rem);
  padding: 0.5rem 1em;
}
.c-button:focus-visible {
  outline: 2px solid #011F60;
  outline-offset: 2px;
}

.c-button__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: inherit;
  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;
}
.c-button__icon--side {
  margin-left: 0.4em;
}
.c-button__icon svg {
  width: 0.8em;
  height: 0.8em;
  fill: currentColor;
}

.c-button__arrow {
  display: inline-block;
  vertical-align: middle;
  width: 0.4em;
  height: 0.4em;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  pointer-events: none;
}

.c-button--fill {
  background: #011F60;
  color: #fff;
  border: 1px solid #011F60;
}
.c-button--fill .c-button__icon svg {
  fill: #8CC0DC;
  -webkit-transition: fill 0.25s ease;
  transition: fill 0.25s ease;
}
@media (hover: hover) {
  .c-button--fill:hover {
    background-color: #fff;
    color: #011F60;
  }
  .c-button--fill:hover svg {
    fill: #011F60;
  }
}
.c-button--fill:focus-visible {
  outline-color: #8CC0DC;
}

.c-button--line {
  background-color: #fff;
  color: #011F60;
  border: 1px solid #011F60;
}
.c-button--line .c-button__icon svg {
  fill: #011F60;
}
@media (hover: hover) {
  .c-button--line:hover {
    background: #011F60;
    color: #fff;
  }
  .c-button--line:hover svg {
    fill: #fff;
  }
}
.c-button--line:focus-visible {
  outline-color: #8CC0DC;
}

.c-button-wrapper--m {
  margin-top: clamp(1.125rem, 0.88vw + 0.90625rem, 2rem);
}
.c-button-wrapper--l {
  margin-top: clamp(1.5rem, 1vw + 1.25rem, 2.5rem);
}

/*
  next-content … 次のコンテンツ（画像＋テキスト、lap以降横並び・楕円ボーダー）
-----------------------------------------------------*/
.c-next-content {
  padding-top: 70vw;
}
@media screen and (min-width: 768px) {
  .c-next-content {
    padding-top: 45vw;
  }
}
@media screen and (min-width: 960px) {
  .c-next-content {
    padding-top: 32vw;
  }
}
.c-next-content--job-people {
  padding-top: 50vw;
}
@media screen and (min-width: 768px) {
  .c-next-content--job-people {
    padding-top: 26vw;
  }
}
@media screen and (min-width: 960px) {
  .c-next-content--job-people {
    padding-top: 24vw;
  }
}

.c-next-content__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-family: "Roboto", sans-serif, sans-serif;
  font-size: clamp(0.75rem, 0.38vw + 0.65625rem, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #011F60;
  padding: 0 10vw;
  margin-bottom: -1vw;
}
@media screen and (min-width: 768px) {
  .c-next-content__label {
    margin-bottom: 0rem;
    padding: 0 5vw;
  }
}
@media screen and (min-width: 960px) {
  .c-next-content__label {
    padding: initial;
    margin: initial;
  }
}

.c-next-content__label-dot {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-next-content__frame {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.c-next-content__inner {
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-next-content__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}

.c-next-content__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-next-content__visual {
    width: 54%;
  }
}

.c-next-content__lead {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.31vw + 0.8rem, 1.1875rem);
}

.c-next-content__body {
  aspect-ratio: 5/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -11vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: justify;
  padding: 0 10vw 0 10vw;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-next-content__body {
    width: 54%;
    margin-left: -8%;
    margin-top: initial;
    padding: 0 7% 0 12%;
  }
}

.c-next-content__title {
  margin-bottom: 0.3em;
  font-size: clamp(1.125rem, 1.06vw + 0.8625rem, 2.1875rem);
  font-weight: bold;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .c-next-content__title {
    margin-top: 1rem;
  }
}

/*list
-----------------------------------------------------*/
.c-list--dot .c-list__item {
  padding-left: 0.6em;
  position: relative;
}
.c-list--dot .c-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background: #011F60;
  display: inline-block;
}

.dl-list__item .term {
  margin: 0 0 0.4rem 0;
  color: #011F60;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.31vw + 0.8rem, 1.1875rem);
}
.dl-list__item .term--margin-ini {
  margin: initial;
}

a {
  text-decoration: underline;
  color: currentColor;
}

.dl-list__item .desc {
  margin: 0;
}

.l-list--border .dl-list__item + .dl-list__item {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #A5AEC3;
}

.l-list--regular .dl-list__item + .dl-list__item {
  margin-top: clamp(2rem, 2vw + 1.5rem, 4rem);
}

@media screen and (min-width: 960px) {
  .dl-list__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 12em 2rem 1fr;
    grid-template-columns: 12em 1fr;
    gap: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .dl-list__item .term {
    margin: 0;
  }
}
/*article
-----------------------------------------------------*/
.c-article > :first-child {
  margin-top: 0;
}
.c-article > :last-child {
  margin-bottom: 0;
}
.c-article h1, .c-article h2, .c-article h3, .c-article h4, .c-article h5, .c-article h6 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.c-article h2 {
  font-size: clamp(1rem, 0.38vw + 0.9rem, 1.375rem);
  line-height: 1.8;
}
.c-article h3 {
  font-size: clamp(0.9375rem, 0.31vw + 0.8625rem, 1.25rem);
  line-height: 1.8;
}
.c-article > .wp-block-image {
  margin: 2em 0;
}
.c-article .wp-block-columns {
  gap: 0.5rem;
}
.c-article .wp-block-columns img {
  margin: initial;
  width: 100%;
}
.c-article .wp-block-image + .wp-block-image {
  margin-top: -1.5em;
}
.c-article .wp-block-image + .wp-block-columns {
  margin-top: -1.5em;
}
.c-article .wp-block-columns + .wp-block-columns {
  margin-top: 0.5em;
}

/*drawer
-----------------------------------------------------*/
/*
  Z-index
-----------------------------------------------------*/
/*
使用例

.modal {
  z-index: z('modal');
}

*/
/*
  page-component … パンくず・ページヘッダー・ページ内ナビ（下層ページ共通）
-----------------------------------------------------*/
.p-page-head {
  margin-top: clamp(2rem, 3vw + 1.25rem, 5rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-page-head {
    height: 44vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-page-head .c-breadcrumb {
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-page-head {
    height: 30vw;
  }
}

.c-breadcrumb {
  overflow: scroll;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .c-breadcrumb__list {
    margin-left: 2vw;
  }
}

.c-breadcrumb__item {
  font-size: clamp(0.75rem, 0.19vw + 0.7rem, 0.9375rem);
  white-space: nowrap;
}

.c-breadcrumb__link {
  color: #011F60;
  text-decoration: none;
  opacity: 0.5;
}
@media (hover: hover) {
  .c-breadcrumb__link:hover {
    text-decoration: underline;
  }
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
  color: #011F60;
  opacity: 0.5;
}

.c-breadcrumb__item:last-child::before {
  opacity: 1;
}

.c-breadcrumb__current {
  color: #011F60;
}

.c-page-header {
  margin-top: clamp(2.8125rem, 4.09vw + 1.7875rem, 5.625rem);
}
@media screen and (min-width: 960px) {
  .c-page-header {
    margin-left: 4vw;
    margin-top: initial;
  }
}

.c-page-header__title {
  font-size: clamp(1.625rem, 2.63vw + 0.96875rem, 4.25rem);
  font-weight: 600;
  line-height: 1.5;
}

.c-page-header__lead {
  margin-top: clamp(0.875rem, 0.88vw + 0.65625rem, 1.75rem);
}
.c-page-header__lead p {
  margin: 0;
}

.c-page-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  margin-top: 2rem;
  row-gap: 0;
}
@media screen and (min-width: 960px) {
  .c-page-nav__list {
    margin-top: initial;
    position: absolute;
    bottom: 0;
  }
}

.c-page-nav__item {
  margin: 0;
}

.c-page-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #011F60;
  text-decoration: none;
}
.c-page-nav__link .c-page-nav__icon {
  width: 0.4em;
  height: 0.4em;
  display: inline-block;
  vertical-align: middle;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-top: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (hover: hover) {
  .c-page-nav__link:hover {
    text-decoration: underline;
  }
}
.c-page-nav__link:focus-visible {
  outline: 2px solid #011F60;
  outline-offset: 2px;
}

.c-comment-hukidashi {
  padding: 0.8em 1em;
  border: 1px solid #A5AEC3;
  border-radius: 0.5rem 0.5rem 0.5rem 0;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: clamp(0.75rem, 0.38vw + 0.65625rem, 1.125rem);
  line-height: 1.8;
}
.c-comment-hukidashi--s {
  font-size: clamp(0.6875rem, 0.38vw + 0.59375rem, 1.0625rem);
  line-height: 1.6;
}
.c-comment-hukidashi.is-top-right {
  border-radius: 0.5rem 0 0.5rem 0.5rem;
}
.c-comment-hukidashi.is-top-left {
  border-radius: 0 0.5rem 0.5rem 0.5rem;
}
.c-comment-hukidashi.is-bottom-right {
  border-radius: 0.5rem 0.5rem 0 0.5rem;
}

@media screen and (min-width: 768px) {
  .c-job-people__interview-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2vw;
       -moz-column-gap: 2vw;
            column-gap: 2vw;
  }
}
@media screen and (min-width: 960px) {
  .c-job-people__interview-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-job-people__interview-item .interview-item__visual {
  width: 59%;
  margin: 0 auto;
  max-width: 350px;
}
.c-job-people__interview-item .interview-item__visual img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-job-people__interview-item .interview-item__visual {
    margin: -2% 0 0 0;
  }
}
.c-job-people__interview-item .interview-item__text-area {
  margin-top: 1.2rem;
  padding: 0 9%;
}
@media screen and (min-width: 768px) {
  .c-job-people__interview-item .interview-item__text-area {
    padding: initial;
    margin-top: 0.2em;
  }
}
.c-job-people__interview-item .interview-item-title {
  font-weight: 700;
  font-size: clamp(1rem, 0.69vw + 0.825rem, 1.6875rem);
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-job-people__interview-item .interview-item-title {
    white-space: nowrap;
  }
}
.c-job-people__interview-item .interview-item-desc {
  margin-top: clamp(0.25rem, 0.25vw + 0.1875rem, 0.5rem);
  font-size: clamp(0.8125rem, 0.19vw + 0.7625rem, 1rem);
}
.c-job-people__interview-item .interview-item-desc .strong {
  font-size: 1.15em;
  font-weight: 600;
  margin-right: 0.5em;
}

.c-schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #A5AEC3;
}

.c-schedule__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #A5AEC3;
}

.c-schedule__time {
  font-weight: 700;
  border-right: 1px dashed #A5AEC3;
  padding: 0.5rem 1rem;
  width: 15%;
  max-width: 100px;
}

.c-schedule__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 0.5rem 1rem;
}

.c-schedule__label {
  margin: 0;
  color: #011F60;
}

.c-schedule__detail {
  margin: 0.25em 0 0;
  color: #011F60;
}

.c-schedule__detail + .c-schedule__detail {
  margin-top: 0.15em;
}

.c-schedule__note {
  margin: 0.25em 0 0;
  color: #011F60;
}

.c-other-interview {
  margin-top: 40vw;
}
.c-other-interview .c-job-people__interview-item + .c-job-people__interview-item {
  padding-top: clamp(1.5rem, 1.5vw + 1.125rem, 3rem);
  margin-top: clamp(1.5rem, 1.5vw + 1.125rem, 3rem);
  border-top: 1px solid #A5AEC3;
}
@media screen and (min-width: 960px) {
  .c-other-interview {
    padding: 0 12vw;
    margin-top: 26vw;
  }
}

/*
  text … テキストブロック・リード・本文（汎用）
  例）c-text__lead（リード文）、c-text__body（本文）
-----------------------------------------------------*/
.c-text__lead {
  font-size: clamp(0.875rem, 0.38vw + 0.78125rem, 1.25rem);
}
.c-text__lead p + p {
  margin-top: 0.6em;
}

.c-text__small {
  font-size: clamp(0.75rem, 0.25vw + 0.6875rem, 1rem);
}

/*
  Responsive
-----------------------------------------------------*/
.u-tab-visible {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-tab-visible {
    display: block !important;
  }
}

@media screen and (min-width: 768px) {
  .u-tab-hidden {
    display: none !important;
  }
}

.u-lap-visible {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .u-lap-visible {
    display: block !important;
  }
}

@media screen and (min-width: 960px) {
  .u-lap-hidden {
    display: none !important;
  }
}

/*
  Screen Reader Text
-----------------------------------------------------*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

/*
  Z-index
-----------------------------------------------------*/
/*
使用例

.modal {
  z-index: z('modal');
}

*/
/*
  Utility
-----------------------------------------------------*/
.u-mt-1e {
  margin-top: 1em !important;
}

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

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

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

.u-en {
  font-family: "Roboto", sans-serif;
}

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

.u-tar {
  text-align: right !important;
}

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

.u-uppercase {
  text-transform: uppercase !important;
}

.u-ls-small {
  letter-spacing: 0.04em !important;
}

.u-ls-large {
  letter-spacing: 0.2em !important;
}

.u-border {
  text-decoration: underline !important;
}

.u-mb-title--ss {
  margin-bottom: clamp(1rem, 1vw + 0.75rem, 2rem);
}
.u-mb-title--s {
  margin-bottom: clamp(1.5rem, 1.5vw + 1.125rem, 3rem);
}
.u-mb-title--m {
  margin-bottom: clamp(2rem, 2vw + 1.5rem, 4rem);
}

/*
  Animation
-----------------------------------------------------*/
body:not(.home) .l-header .js-ani {
  opacity: 1;
}

.js-ani {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, clip-path 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, clip-path 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, clip-path 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, clip-path 0.8s ease, -webkit-transform 0.8s ease;
}

/* アニメ種類 */
.js-ani[data-ani=fade-up] {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.js-ani[data-ani=fade-up--fast] {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.js-ani[data-ani=reveal-x] {
  clip-path: inset(0 100% 0 0);
}

/* 発火後 */
/* fade: 単純なフェードイン */
.js-ani.is-animated[data-ani=fade] {
  opacity: 1;
}

/* fade-up: 下からフェードイン */
.js-ani.is-animated[data-ani=fade-up] {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* fade-up: 下からフェードイン */
.js-ani.is-animated[data-ani=fade-up--fast] {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* reveal-x: 横からクリップでスライドイン */
.js-ani.is-animated[data-ani=reveal-x] {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/*home
-----------------------------------------------------*/
/* hero
-----------------------------------------------------*/
.p-home-hero {
  margin-bottom: 40vw;
}

.p-home-hero__content {
  margin-top: clamp(2.5rem, 3.5vw + 1.625rem, 6rem);
  margin-left: 5vw;
  margin-right: 5vw;
}

.p-home-hero__visual {
  margin-top: 4rem;
  width: 93vw;
  margin-left: auto;
  max-width: 42rem;
}
.p-home-hero__visual img {
  width: 100%;
}

.p-home-hero__cta {
  margin-top: clamp(1.5rem, 1.63vw + 1.09375rem, 3.125rem);
}

.p-home-hero__title {
  width: clamp(17.5rem, 40.76vw + 7.3125rem, 26.875rem);
  margin-bottom: clamp(1.1875rem, 2.44vw + 0.575rem, 3.625rem);
  margin-left: -0.3rem;
}
@media screen and (min-width: 768px) {
  .p-home-hero__title {
    width: clamp(26.25rem, 10.15vw + 21.375rem, 34.0625rem);
  }
}

.p-home-hero__lead {
  font-size: clamp(0.875rem, 0.31vw + 0.8rem, 1.1875rem);
}
.p-home-hero__lead p + p {
  margin-top: 0.6em;
}

/* hero marquee: Innovative Futures ループ */
.p-home-hero__marquee {
  overflow: hidden;
  margin-top: -8vw;
  z-index: -1;
  padding: initial;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-home-hero__marquee {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-home-hero__marquee {
    margin-top: -8vw;
  }
}

.p-home-hero__marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: p-home-hero-marquee 40s linear infinite;
          animation: p-home-hero-marquee 40s linear infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .p-home-hero__marquee-inner {
    -webkit-animation: none;
            animation: none;
  }
}
@-webkit-keyframes p-home-hero-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes p-home-hero-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-home-hero__marquee-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(3.4375rem, 4.31vw + 2.3625rem, 7.75rem);
  font-weight: 100;
  line-height: 1.2;
  color: #A5AEC3;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 960px) {
  .p-home-hero__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 5rem;
  }
  .p-home-hero__content {
    width: 34vw;
    margin-left: 4vw;
    margin-right: 0;
    margin-top: 1.7rem;
  }
  .p-home-hero__visual {
    width: 58vw;
    margin-top: 0;
    margin-left: 0;
    max-width: none;
  }
}
/* vision: QSTが目指す未来 */
.p-home-vision {
  padding-top: 3rem;
}
@media screen and (min-width: 960px) {
  .p-home-vision {
    padding: 0;
  }
}

@media screen and (min-width: 960px) {
  .p-home-vision__title_wrapper {
    position: absolute;
    top: -27vw;
    width: 47vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-home-vision__title_wrapper {
    top: -23vw;
  }
}

.p-home-vision .c-title {
  margin-bottom: clamp(1.0625rem, 1.44vw + 0.7rem, 2.5rem);
}

.p-home-vision__lead {
  margin: 0;
  font-size: clamp(0.875rem, 0.31vw + 0.8rem, 1.1875rem);
  line-height: 1.8;
}

.p-home-vision_intro {
  position: absolute;
  right: 6vw;
  top: -30vw;
  width: 44vw;
  max-width: clamp(18.75rem, 4.38vw + 17.65625rem, 23.125rem);
}
.p-home-vision_intro img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 960px) {
  .p-home-vision_intro {
    width: 27vw;
    top: -26vw;
    right: 7vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-home-vision_intro {
    top: -25vw;
  }
}

/* vision list: 画像＋ナンバリング＋縦組みリード（リンク付き） */
.p-home-vision__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 1px;
  margin-top: clamp(2rem, 2vw + 1.5rem, 4rem);
}
@media screen and (min-width: 768px) {
  .p-home-vision__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.p-home-vision__item {
  margin: 0;
}

.p-home-vision__link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}
@media (hover: hover) {
  .p-home-vision__link:hover .p-home-vision__img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.p-home-vision__link:focus-visible {
  outline: 2px solid #011F60;
  outline-offset: 4px;
}

.p-home-vision__img-wrap {
  display: block;
  aspect-ratio: 6/4;
}
.p-home-vision__img-wrap .p-home-vision__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-home-vision__img-wrap .p-home-vision__img {
    -webkit-transition: none;
    transition: none;
  }
}

.p-home-vision__num {
  position: absolute;
  top: 4vw;
  left: 4vw;
  font-size: clamp(2.375rem, 1.63vw + 1.96875rem, 4rem);
  font-weight: 100;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-home-vision__num {
    top: 2vw;
    left: 2vw;
  }
}

.p-home-vision__lead {
  position: absolute;
  top: 4vw;
  right: 4vw;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0.1em;
}
.p-home-vision__lead span {
  padding: 0.3em 0;
  background: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 0.9rem;
  font-weight: bold;
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .p-home-vision__lead {
    top: 2vw;
    right: 2vw;
  }
  .p-home-vision__lead span {
    font-size: clamp(0.9375rem, 0.73vw + 0.5875rem, 1.5rem);
  }
}

/* job-people: 仕事と人を知る（画像＋見出し＋説明＋CTAブロック） */
.p-home-job-people__title-wrapper .c-title__inner {
  margin-bottom: clamp(1.0625rem, 1.44vw + 0.7rem, 2.5rem);
}
@media screen and (min-width: 960px) {
  .p-home-job-people__title-wrapper .c-title__inner {
    width: 55vw;
    margin-bottom: initial;
  }
}

.p-home-job-people__title-wrapper {
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 960px) {
  .p-home-job-people__title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 4.4rem;
  }
}

.p-home-job-people__lead {
  margin-top: 0.5em;
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .p-home-job-people__lead {
    margin-top: initial;
  }
}

.p-home-job-people__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-home-job-people__item {
  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;
}
.p-home-job-people__item + .p-home-job-people__item {
  margin-top: clamp(2.5rem, 2.5vw + 1.875rem, 5rem);
}
@media screen and (min-width: 960px) {
  .p-home-job-people__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    min-height: 28rem;
  }
}
@media screen and (min-width: 960px) {
  .p-home-job-people__list .p-home-job-people__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 960px) {
  .p-home-job-people__list .p-home-job-people__item:nth-child(even) .p-home-job-people__body {
    margin-left: initial;
    -webkit-transform: translateX(6vw);
            transform: translateX(6vw);
  }
}

.p-home-job-people__visual {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px) {
  .p-home-job-people__visual {
    aspect-ratio: 16/9;
  }
}
@media screen and (min-width: 960px) {
  .p-home-job-people__visual {
    width: 66%;
    aspect-ratio: auto;
  }
}

.p-home-job-people__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 960px) {
  .p-home-job-people__img {
    min-height: 100%;
  }
}

.p-home-job-people__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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: clamp(0.875rem, 2.72vw + 0.19375rem, 1.5rem);
}
@media screen and (min-width: 960px) {
  .p-home-job-people__body {
    width: 34vw;
    -webkit-transform: translateX(-4vw);
            transform: translateX(-4vw);
    padding: initial;
  }
}

.p-home-job-people__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 1rem;
}
@media screen and (min-width: 960px) {
  .p-home-job-people__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1.1rem;
  }
}

.p-home-job-people__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: -0.2rem;
}
.p-home-job-people__copy img {
  height: clamp(4.0625rem, 6.19vw + 2.5125rem, 10.25rem);
  width: auto;
}
@media screen and (min-width: 960px) {
  .p-home-job-people__copy {
    margin-top: initial;
    margin-bottom: 2.7rem;
    margin-left: -0.2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-home-job-people__body .p-home-job-people__desc, .p-home-job-people__body .c-button-wrapper--m {
    margin-left: 31vw;
  }
}
@media screen and (min-width: 960px) {
  .p-home-job-people__body .p-home-job-people__desc, .p-home-job-people__body .c-button-wrapper--m {
    margin-left: initial;
  }
}

.p-home-job-people__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 35%;
}
@media screen and (min-width: 960px) {
  .p-home-job-people__category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0.5rem;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-home-job-people__category-ja {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.06vw + 0.8625rem, 2.1875rem);
  line-height: 1.5;
}

.p-home-job-people__category-en {
  font-family: "Roboto", sans-serif, sans-serif;
  font-weight: 400;
  font-size: clamp(0.625rem, 0.38vw + 0.53125rem, 1rem);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 960px) {
  .p-home-job-people__category-en {
    margin: initial;
  }
}

/* qa: 採用Q&A */
.p-home-qa {
  margin-top: 32vw;
}

.p-home-qa__title {
  margin-bottom: clamp(1.5rem, 1.5vw + 1.125rem, 3rem);
}
@media screen and (min-width: 960px) {
  .p-home-qa__title {
    margin-bottom: 3rem;
  }
}

.p-home-qa__visual {
  margin-bottom: clamp(1.5rem, 1vw + 1.25rem, 2.5rem);
  aspect-ratio: 2/1;
}
.p-home-qa__visual img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .p-home-qa__visual {
    margin-bottom: 0;
    aspect-ratio: 3/2;
    width: 46vw;
  }
}

.p-home-qa__cta {
  margin: 0;
}

@media screen and (min-width: 960px) {
  .p-home-qa__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6vw;
  }
}

@media screen and (min-width: 960px) {
  .p-home-qa__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 28vw;
  }
}

@media screen and (min-width: 960px) {
  .p-home-qa__sub-visual {
    position: absolute;
    width: 13vw;
    top: -16vw;
    right: 4vw;
    z-index: -1;
  }
  .p-home-qa__sub-visual img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*
 page（共通レイアウト）
-----------------------------------------------------*/
.p-page-flex {
  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.6rem;
}
@media screen and (min-width: 768px) {
  .p-page-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: initial;
  }
}
@media screen and (min-width: 960px) {
  .p-page-flex {
    padding-left: 2vw;
  }
}

.p-page-flex_head {
  margin: 0 auto;
  width: 87vw;
}
@media screen and (min-width: 768px) {
  .p-page-flex_head {
    width: 18%;
  }
}
@media screen and (min-width: 768px) {
  .p-page-flex_head {
    width: 20%;
  }
}

.p-page-flex_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-page-flex_body .body-inset--m {
  padding: 0 6vw;
}
@media screen and (min-width: 768px) {
  .p-page-flex_body .body-inset--m {
    padding: 0 4vw;
  }
}
.p-page-flex_body .body-inset--l {
  padding: 0 4vw;
}
@media screen and (min-width: 768px) {
  .p-page-flex_body .body-inset--tab-ini {
    padding: 0;
  }
}

/*
 vision: QSTが目指す未来
-----------------------------------------------------*/
.p-vision-deco {
  position: absolute;
  top: clamp(-9.375rem, -10.87vw - 4.15625rem, -6.875rem);
  padding: initial;
  right: 6vw;
}
@media screen and (min-width: 960px) {
  .p-vision-deco {
    top: -320px;
  }
}

.p-vision-deco .p-vision-project__card-text {
  margin-bottom: 1.5rem;
  -webkit-transform: translateX(5vw);
          transform: translateX(5vw);
}

.p-vision-deco .img {
  width: clamp(14.375rem, 19.02vw + 9.61875rem, 18.75rem);
}
.p-vision-deco .img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .p-vision-deco .img {
    width: clamp(18.75rem, 17.86vw + 10.175rem, 32.5rem);
  }
}

.p-vision-project {
  padding-top: 130px;
}
@media screen and (min-width: 960px) {
  .p-vision-project {
    padding-top: 5vw;
  }
}

.p-vision-project__item + .p-vision-project__item {
  margin-top: clamp(3.75rem, 3.25vw + 2.9375rem, 7rem);
}

.p-vision-project__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-vision-project__head-num {
  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;
  margin-bottom: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.6875rem, 1.13vw + 0.40625rem, 1.8125rem);
  color: #011F60;
}
.p-vision-project__head-num .label {
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 400;
}
.p-vision-project__head-num .num {
  line-height: 1;
  font-size: 4em;
  font-weight: 100;
}

.p-vision-project__head-text {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10vw;
}

.p-vision-project__title {
  line-height: 1.5;
  font-weight: 600;
  margin-left: auto;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .p-vision-project__title {
    font-size: clamp(1.0625rem, 1.54vw + 0.325rem, 2.25rem);
  }
}

.p-vision-project__visual {
  position: relative;
  overflow: hidden;
}

.p-vision-project__visual .p-vision-project__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.p-vision-project__visual .p-vision-project__title {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-vision-project__visual .p-vision-project__title {
    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;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    gap: 0.2em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    top: 2vw;
    right: 2vw;
  }
  .p-vision-project__visual .p-vision-project__title span {
    background: #fff;
    color: #011F60;
    padding: 0.3em 0;
  }
}

.p-vision-project__comment {
  margin-top: -3rem;
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5vw;
     -moz-column-gap: 5vw;
          column-gap: 5vw;
}
.p-vision-project__comment.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-vision-project__comment .img {
  width: 28%;
  max-width: 12rem;
}
@media screen and (min-width: 960px) {
  .p-vision-project__comment .img {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
}
.p-vision-project__comment .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 960px) {
  .p-vision-project__comment {
    margin-top: -4rem;
    -webkit-column-gap: 3vw;
       -moz-column-gap: 3vw;
            column-gap: 3vw;
  }
}

.p-vision-project__content {
  margin-top: clamp(1.5rem, 2.5vw + 0.875rem, 4rem);
}

.p-vision__message {
  padding-bottom: 5rem;
}
@media screen and (min-width: 960px) {
  .p-vision__message {
    padding-bottom: 5vw;
  }
}

.p-vision__title-wrapper {
  margin-bottom: clamp(1.5rem, 1.5vw + 1.125rem, 3rem);
}

.p-vision-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #A5AEC3;
}
@media screen and (min-width: 960px) {
  .p-vision-message__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-vision-message__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .p-vision-message__visual {
    width: 46%;
    position: sticky;
    top: 0;
    height: 100vh;
  }
}

.p-vision-message__img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .p-vision-message__img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.p-vision-message__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4vw;
}

.p-vision-message__quote {
  margin: 0 0 0.6em;
  font-size: clamp(0.9375rem, 0.81vw + 0.7375rem, 1.75rem);
  font-weight: 600;
}

.p-vision-message__text {
  margin: 0 0 1.5rem;
}
.p-vision-message__text:last-of-type {
  margin-bottom: 0;
}

.p-vision-message__signature {
  margin: 1.5rem 0 0;
  padding: 0;
  font-size: clamp(0.8125rem, 0.31vw + 0.7375rem, 1.125rem);
  text-align: end;
  line-height: 1.8;
}
.p-vision-message__signature span {
  display: block;
}
.p-vision-message__signature .role {
  font-size: 0.9em;
}

.p-vision-deco-end {
  position: absolute;
  margin-top: 0vw;
  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: anchor-center;
      -ms-flex-align: anchor-center;
          align-items: anchor-center;
  gap: 1rem;
  width: 64%;
  right: 7%;
  max-width: 380px;
}
.p-vision-deco-end .c-comment-hukidashi {
  margin-left: 9vw;
}
@media screen and (min-width: 960px) {
  .p-vision-deco-end {
    width: 30%;
    right: 10vw;
    -webkit-transform: none;
            transform: none;
    max-width: 590px;
  }
  .p-vision-deco-end .c-comment-hukidashi {
    margin-left: 6vw;
  }
}

/* job-and-people
-----------------------------------------------------*/
.p-job-people__body {
  -webkit-transform: translateY(-15vw);
          transform: translateY(-15vw);
}
@media screen and (min-width: 768px) {
  .p-job-people__body {
    -webkit-transform: translateY(-3vw);
            transform: translateY(-3vw);
  }
}
@media screen and (min-width: 768px) {
  .p-job-people__body {
    -webkit-transform: translateY(5vw);
            transform: translateY(5vw);
  }
}
.p-job-people__item .item-title {
  font-size: clamp(1.5625rem, 0.94vw + 1.325rem, 2.5rem);
  font-weight: bold;
  line-height: 1.5;
}
.p-job-people__item .item-copy {
  -webkit-transform: translateX(-0.5rem);
          transform: translateX(-0.5rem);
}
.p-job-people__item .item-copy--l {
  display: none;
}
.p-job-people__item .item-copy--s {
  margin: 1.8rem 0 1rem 0;
  margin-top: clamp(1.5625rem, 1.7vw + 1.1375rem, 2.5rem);
  margin-bottom: clamp(1.0625rem, 2.05vw + 0.55rem, 2.1875rem);
}
.p-job-people__item .item-copy--s img {
  height: clamp(5rem, 6.25vw + 3.4375rem, 8.4375rem);
  width: auto;
}
.p-job-people__item .item-visual img {
  width: 100%;
}
.p-job-people__item .item-content {
  margin-top: clamp(1.5625rem, 2.19vw + 1.0125rem, 3.75rem);
}

/* interview
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-interview__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .p-interview__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 5vw;
  }
}
.p-interview__head .head-title {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: clamp(0.625rem, 0.88vw + 0.40625rem, 1.5rem);
}
.p-interview__head .head-title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-interview__head .head-title {
    font-size: clamp(1.3125rem, 1.54vw + 0.575rem, 2.5rem);
  }
  .p-interview__head .head-title br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-interview__head .head-text-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: -3rem;
  }
}
@media screen and (min-width: 960px) {
  .p-interview__head .head-text-area {
    margin-left: 2vw;
    margin-top: initial;
  }
}
.p-interview__head .head-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-interview__head .head-img {
    width: 45%;
  }
}
@media screen and (min-width: 960px) {
  .p-interview__head .head-img {
    width: 48%;
    max-width: 750px;
    margin-top: 5vw;
    margin-right: 2vw;
  }
}
.p-interview__head .head-profile {
  font-size: clamp(0.875rem, 0.38vw + 0.78125rem, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-interview__head .head-profile .strong {
  font-size: 1.28em;
  font-weight: bold;
  margin-right: 0.5em;
}
@media screen and (min-width: 960px) {
  .p-interview__head .head-profile .strong {
    font-size: 1.4em;
  }
}
.p-interview__interview {
  padding-top: 44vw;
}
@media screen and (min-width: 768px) {
  .p-interview__interview {
    padding-top: 8vw;
  }
}
@media screen and (min-width: 960px) {
  .p-interview__interview {
    padding-top: 16vw;
  }
  .p-interview__interview .interview-item {
    margin-left: 29%;
  }
}
.p-interview__interview .interview-item + .interview-item {
  margin-top: clamp(2.5rem, 1.5vw + 2.125rem, 4rem);
}
.p-interview__interview .interview-question {
  margin-bottom: 1em;
  font-size: clamp(0.875rem, 0.44vw + 0.7625rem, 1.3125rem);
  font-weight: bold;
  padding: 0.6em 0.8em;
  border: 1px solid #A5AEC3;
  border-radius: 0 clamp(0.625rem, 0.63vw + 0.46875rem, 1.25rem) clamp(0.625rem, 0.63vw + 0.46875rem, 1.25rem) clamp(0.625rem, 0.63vw + 0.46875rem, 1.25rem);
}
.p-interview__interview .interview-answer p + p {
  margin-top: 0.5em;
}
.p-interview__interview .interview-img {
  margin-top: clamp(1rem, 1vw + 0.75rem, 2rem);
}
.p-interview__interview .interview-img img {
  width: 100%;
}
.p-interview__interview .interview-img--l {
  margin-top: clamp(3.125rem, 3.13vw + 2.34375rem, 6.25rem);
}
.p-interview__interview .interview-img--l img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-interview__schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 960px) {
  .p-interview__schedule .c-title_wrapper {
    width: 32vw;
  }
}
.p-interview__schedule .c-title_wrapper .c-text__lead {
  margin-top: clamp(0.6875rem, 1.81vw + 0.2375rem, 2.5rem);
}
.p-interview__schedule .c-schedule {
  margin-top: 2.3rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 960px) {
  .p-interview__schedule .c-schedule {
    margin-top: initial;
  }
}
.p-interview__message .message-flex {
  border: 1px solid #A5AEC3;
}
@media screen and (min-width: 768px) {
  .p-interview__message .message-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .p-interview__message .message-flex .message-img {
    width: 32%;
    aspect-ratio: auto;
  }
  .p-interview__message .message-flex .message-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 3.5vw 5vw;
  }
}
.p-interview__message .message-img {
  aspect-ratio: 3/2;
}
.p-interview__message .message-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-interview__message .message-body {
  padding: 4vw;
}
.p-interview__message .message-body p + p {
  margin-top: 0.5em;
}

/* faq
-----------------------------------------------------*/
.p-faq__body {
  -webkit-transform: translateY(-15vw);
          transform: translateY(-15vw);
}
@media screen and (min-width: 768px) {
  .p-faq__body {
    -webkit-transform: translateY(-3vw);
            transform: translateY(-3vw);
  }
}
@media screen and (min-width: 960px) {
  .p-faq__body {
    -webkit-transform: translateY(5vw);
            transform: translateY(5vw);
  }
}
.p-faq__main-img {
  display: block;
  margin-bottom: 2rem;
}
.p-faq__main-img .p-faq__main-img-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-faq__section:not(:last-child) {
  margin-bottom: clamp(2.5rem, 2.5vw + 1.875rem, 5rem);
}
.p-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: clamp(1.125rem, 0.63vw + 0.96875rem, 1.75rem) 0;
  border-bottom: 1px solid #A5AEC3;
  cursor: pointer;
}
.p-faq__item:first-child {
  border-top: 1px solid #A5AEC3;
}
.p-faq__item .item-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1.3em;
  width: clamp(1.625rem, 2.13vw + 1.09375rem, 3.75rem);
  height: clamp(1.625rem, 2.13vw + 1.09375rem, 3.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #011F60;
  border-radius: 50%;
}
.p-faq__item .item-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  cursor: pointer;
}
.p-faq__item .item-body:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.p-faq__item .item-question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-right: clamp(2rem, 2vw + 1.5rem, 4rem);
  font-size: clamp(0.875rem, 0.44vw + 0.7625rem, 1.3125rem);
}
@media screen and (min-width: 960px) {
  .p-faq__item .item-question {
    margin-top: 0.3rem;
  }
}
.p-faq__item .item-toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  padding-left: 1rem;
  position: relative;
  width: clamp(0.5625rem, 0.56vw + 0.425rem, 1.125rem);
  height: auto;
  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;
}
.p-faq__item .item-toggle::before, .p-faq__item .item-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #011F60;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.p-faq__item .item-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq__item .item-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__item .item-answer {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding-top: 0;
  padding-left: 0;
  -webkit-transition: max-height 0.4s ease, padding-top 0.4s ease;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .p-faq__item .item-answer {
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
  }
}
.p-faq__item .item-answer p {
  margin: 0;
}
.p-faq__item.is-open .item-head {
  background-color: #011F60;
  color: #fff;
}
.p-faq__item.is-open .item-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq__item.is-open .item-answer {
  max-height: 100rem;
  padding-top: 0.75em;
}
.p-faq .item-q-icon {
  font-size: clamp(0.75rem, 0.63vw + 0.59375rem, 1.375rem);
  font-weight: 500;
}
.p-faq .item-toggle {
  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;
  position: absolute;
  right: 0.5em;
  top: 1.2em;
}

/* policy（サイトポリシー）
-----------------------------------------------------*/
.l-bg--privacy .l-bg__inner {
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .l-bg--privacy .l-bg__inner {
    height: calc(100% - 10vw);
    -webkit-transform: translateY(5vw);
            transform: translateY(5vw);
  }
}

.p-page-privacy {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-page-privacy {
    margin-top: initial;
  }
}

.p-privacy__section:not(:last-child) {
  margin-bottom: clamp(2.5rem, 2.5vw + 1.875rem, 5rem);
}
.p-privacy__section .body-lead:not(:last-child) {
  margin-bottom: clamp(1.5rem, 1vw + 1.25rem, 2.5rem);
}
.p-privacy__section .body-num-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.75rem, 0.5vw + 0.625rem, 1.25rem);
}
.p-privacy__section .body-num-item:not(:last-child) {
  margin-bottom: clamp(1.25rem, 0.75vw + 1.0625rem, 2rem);
}
.p-privacy__section .body-num-item.c-text__lead {
  margin-bottom: clamp(2.5rem, 2.5vw + 1.875rem, 5rem);
}
.p-privacy__section .body-num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #011F60;
}
.p-privacy__section .body-text .lead {
  font-size: clamp(1rem, 0.25vw + 0.9375rem, 1.25rem);
  margin-bottom: 0.2em;
}

.p-privacy__head {
  margin-bottom: clamp(2rem, 2vw + 1.5rem, 4rem);
}
.p-privacy__head p {
  margin: 0;
}

/* 404
-----------------------------------------------------*/
.p-404__body {
  padding: 14vw 0 0 0;
}
@media screen and (min-width: 960px) {
  .p-404__body {
    padding: 10vw 0 0 0;
  }
}
.p-404 .p-404-item {
  aspect-ratio: 5/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-404 .p-404-item {
    width: 54%;
  }
}
.p-404 .p-404-item--head .c-title_wrapper {
  text-align: justify;
}
.p-404 .p-404-item--body {
  margin-top: -14vw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: justify;
  padding: 0 10vw;
}
.p-404 .p-404-item--body .p-404__lead {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-404 .p-404-item--body {
    margin-left: -8%;
    margin-top: initial;
  }
}
.p-404__wrapper {
  position: relative;
  z-index: 1;
  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;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.p-404__frame {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
/*# sourceMappingURL=common.css.map */