@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: 1em;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: middle;
}

video,
iframe {
  vertical-align: middle;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

input[type="radio"] {
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table th {
  text-align: inherit;
  font-weight: inherit;
}

/* ========================= /
/  初期設定
/* =========================*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  text-rendering: optimizeSpeed;
}
body.js-open {
  overflow: hidden !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.body-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: clip;
}

.l-container-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
}

.form-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ========================= /
/  フォント
/* =========================*/
.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ========================= /
/  カラー
/* =========================*/
.color-main {
  color: #003f98;
}

.color-white {
  color: #fff;
}

.color-txt {
  color: #333333;
}

.color-sub {
  color: #abced8;
}

.bg-main {
  background: #003f98;
}

.bg-txt {
  background: #333333;
}

.bg-white {
  background: #fff;
}

.bg-gradation {
  background: linear-gradient(135deg, #abced8, #ffffff);
}

.bg-gray {
  background: #dfdfdf;
}

/* スライドのサイズ調整 */
.splide__slide img {
  height: auto;
  width: 100%;
}

.splide__pagination {
  margin-left: 27.5px;
  padding-inline: 0 !important;
  gap: 17px !important;
  bottom: -51.1px !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 640px) {
  .splide__pagination {
    bottom: -35px !important;
    margin-left: 4.4392523364%;
    gap: 10px !important;
  }
}
.splide__pagination .splide__pagination__page {
  margin: 0;
  width: 80px;
  height: 5px;
  border-radius: initial;
  background: #e9e9e9;
  opacity: 1;
}
@media screen and (max-width: 1359px) {
  .splide__pagination .splide__pagination__page {
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .splide__pagination .splide__pagination__page {
    width: 32px;
  }
}
.splide__pagination .splide__pagination__page.is-active {
  background: #23acd4;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media screen and (min-width: 1360px) {
  .no-pc {
    display: none !important;
  }
}

@media screen and (max-width: 1360px) and (min-width: 1000px) {
  .no-minpc {
    display: none !important;
  }
}

@media screen and (max-width: 1359px) and (min-width: 640px) {
  .no-tab {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .no-sp {
    display: none !important;
  }
}

/* ========================= /
/  アニメーション
/* =========================*/
.js-fade {
  position: relative;
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
}
.js-fade.js-visible {
  opacity: 1;
}

.js-fadeList {
  position: relative;
}
.js-fadeList > * {
  opacity: 0;
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.js-fadeList > *:nth-of-type(1) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.js-fadeList > *:nth-of-type(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.js-fadeList > *:nth-of-type(3) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.js-fadeList > *:nth-of-type(4) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.js-fadeList > *:nth-of-type(5) {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.js-fadeList > *:nth-of-type(6) {
  -webkit-transition-delay: 2.1s;
  transition-delay: 2.1s;
}
.js-fadeList > *:nth-of-type(7) {
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}
.js-fadeList > *:nth-of-type(8) {
  -webkit-transition-delay: 2.7s;
  transition-delay: 2.7s;
}
.js-fadeList > *:nth-of-type(9) {
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
}
.js-fadeList > *:nth-of-type(10) {
  -webkit-transition-delay: 3.3s;
  transition-delay: 3.3s;
}
.js-fadeList > *:nth-of-type(11) {
  -webkit-transition-delay: 3.6s;
  transition-delay: 3.6s;
}
.js-fadeList > *:nth-of-type(12) {
  -webkit-transition-delay: 3.9s;
  transition-delay: 3.9s;
}
.js-fadeList > *:nth-of-type(13) {
  -webkit-transition-delay: 4.2s;
  transition-delay: 4.2s;
}
.js-fadeList > *:nth-of-type(14) {
  -webkit-transition-delay: 4.5s;
  transition-delay: 4.5s;
}
.js-fadeList > *:nth-of-type(15) {
  -webkit-transition-delay: 4.8s;
  transition-delay: 4.8s;
}
.js-fadeList.js-visible > * {
  opacity: 1;
}

.loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: visible;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.loading.js-active,
.loading.js-loaded {
  opacity: 0;
  pointer-events: none;
}
.loading__animation {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ========================= /
/  テキスト関連
/* =========================*/
.h2__ttl {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2rem;
  line-height: 1.625;
}
@media screen and (max-width: 1359px) {
  .h2__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .h2__ttl {
    font-size: 2rem;
  }
}

.h3__ttl {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  line-height: 1.4666666667;
}
@media screen and (max-width: 1359px) {
  .h3__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .h3__ttl {
    font-size: 2rem;
  }
}

.fs-italic {
  font-style: italic;
}

.fw-thin {
  font-weight: 200;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

@media screen and (max-width: 1359px) {
  .sp-fw-thin {
    font-weight: 200;
  }
  .sp-fw-light {
    font-weight: 300;
  }
  .sp-fw-normal {
    font-weight: 400;
  }
  .sp-fw-medium {
    font-weight: 500;
  }
  .sp-fw-semibold {
    font-weight: 600;
  }
  .sp-fw-bold {
    font-weight: 700;
  }
}
.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.txt-justify {
  text-align: justify;
}

@media screen and (max-width: 1359px) {
  .sp-txt-center {
    text-align: center;
  }
  .sp-txt-left {
    text-align: left;
  }
  .sp-txt-right {
    text-align: right;
  }
  .sp-txt-justify {
    text-align: justify;
  }
}
/* ========================= /
/  レイアウト系
/* =========================*/
.fullBlock {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* ========================= /
/  ボタン
/* =========================*/
.btn {
  padding: 30px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-height: 100px;
  font-size: 2.3rem;
  line-height: 1.4782608696;
  border: 2px solid #abced8;
  position: relative;
  -webkit-transition: color, background-color, border-color, 0.3s ease-out;
  transition: color, background-color, border-color, 0.3s ease-out;
}
@media screen and (max-width: 640px) {
  .btn {
    font-size: 2rem;
    line-height: 1.45;
  }
}
@media screen and (max-width: 480px) {
  .btn {
    padding-inline: 18px;
    min-height: 80px;
    font-size: 1.8rem;
  }
}
.btn:where(:-moz-any-link, :enabled, summary):hover {
  color: #fff;
  background: #abced8;
}
.btn:where(:any-link, :enabled, summary):hover {
  color: #fff;
  background: #abced8;
}
.btn.--center {
  margin-inline: auto;
}
.btn.--w630 {
  width: 630px;
}
@media screen and (max-width: 1359px) {
  .btn.--w630 {
    width: 100%;
  }
}
.btn.--txt-small {
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .btn.--txt-small {
    font-size: 1.6rem;
  }
}
.btn.--instagram {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 640px) {
  .btn.--instagram {
    gap: 16px;
  }
}
.btn.--instagram::before {
  content: "";
  display: block;
  width: 25px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../img/common/icon-instagram@2x.png) no-repeat center/contain;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .btn.--instagram::before {
    width: 32px;
  }
}
@media screen and (max-width: 480px) {
  .btn.--instagram::before {
    width: 25px;
  }
}
.btn.--external {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 17px;
}
@media screen and (max-width: 640px) {
  .btn.--external {
    gap: 16px;
  }
}
.btn.--external::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 18/16;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #333333;
  -webkit-mask: url(../img/common/icon-external.svg) no-repeat center/contain;
  mask: url(../img/common/icon-external.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 640px) {
  .btn.--external::before {
    width: 24px;
  }
}
@media screen and (max-width: 480px) {
  .btn.--external::before {
    width: 18px;
  }
}
.btn.--external:where(:-moz-any-link, :enabled, summary):hover::before {
  background: #fff;
}
.btn.--external:where(:any-link, :enabled, summary):hover::before {
  background: #fff;
}
.btn.--white {
  border-color: #fff;
  color: #fff;
}
.btn.--white:where(:-moz-any-link, :enabled, summary):hover {
  background: #fff;
  color: #abced8;
  border-color: #fff;
}
.btn.--white:where(:any-link, :enabled, summary):hover {
  background: #fff;
  color: #abced8;
  border-color: #fff;
}
.btn__subTtl {
  margin-bottom: -1em;
  display: block;
  margin-top: 3px;
  font-size: 1.1rem;
  line-height: 1.4545454545;
}

/* ========================= /
/  コンテナ
/* =========================*/
.inner {
  width: 93.75%;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 1359px) {
  .inner {
    width: 100%;
    padding-inline: 4.4392523364vw;
  }
}

/* ========================= /
/  カードリスト
/* =========================*/
.card__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
}
@media screen and (max-width: 640px) {
  .card__list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px 10px;
  }
}
.card__item {
  background: #333333;
}
.card__item-link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card__item-body {
  padding: 24px 20px 32px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1359px) {
  .card__item-body {
    padding: 20px 8px;
  }
}
.card__item-date {
  font-size: 1.4rem;
}
@media screen and (max-width: 1359px) {
  .card__item-date {
    font-size: 1rem;
  }
}
.card__item-ttl {
  margin-top: 20px;
  font-size: 2.2rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1359px) {
  .card__item-ttl {
    margin-top: 6px;
    font-size: 1rem;
  }
}
.card__item-tags {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 16px;
}
@media screen and (max-width: 1359px) {
  .card__item-tags {
    margin-top: 8px;
    gap: 4px 8px;
  }
}
.card__item-tag {
  background: #003f98;
  color: #333333;
  min-width: 90px;
  border-radius: 3px;
}
@media screen and (max-width: 1359px) {
  .card__item-tag {
    border-radius: 2px;
    min-width: 50px;
  }
}
.card__item-tag-link {
  font-size: 1.4rem;
  display: block;
  padding: 6px;
  text-align: center;
}
@media screen and (max-width: 1359px) {
  .card__item-tag-link {
    padding: 2px 6px;
    font-size: 0.8rem;
  }
}
.card__item-btn-wrap {
  margin-top: auto;
}
.card__item-btn {
  margin-top: 30px;
}
@media screen and (max-width: 1359px) {
  .card__item-btn {
    margin-top: 20px;
  }
}

/* ========================= /
/  下層MV
/* =========================*/
.lowerMv {
  min-height: 300px;
  padding-block: 100px;
  display: grid;
  place-items: center;
  background: #f8f8f8;
}
@media screen and (max-width: 640px) {
  .lowerMv {
    min-height: 230px;
    padding-block: 50px 20px;
  }
}
.lowerMv__ttl {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.lowerMv__ttl::after {
  content: "";
  display: block;
  width: 450.35px;
  aspect-ratio: 450.35/157.56;
  background: url(../img/common/icon-mv.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: -282px;
  z-index: -1;
}
@media screen and (max-width: 1359px) {
  .lowerMv__ttl::after {
    width: 200px;
    right: -131px;
    top: -20px;
  }
}
@media screen and (max-width: 640px) {
  .lowerMv__ttl::after {
    right: calc(50% - 56px);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.lowerMv__ttl-ja {
  font-size: 3rem;
  line-height: 1.4666666667;
}
@media screen and (max-width: 1359px) {
  .lowerMv__ttl-ja {
    font-size: 2rem;
  }
}
.lowerMv__ttl-en {
  margin-bottom: calc(-1em - 8px);
  padding-top: 8px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
}

/* ========================= /
/  下層KV
/* =========================*/
.kv__wrap {
  display: grid;
  grid-template: 1fr/1fr;
  position: relative;
}
.kv__wrap > * {
  grid-area: 1/1/-1/-1;
}
.kv__photo {
  min-height: 345px;
}
@media screen and (max-width: 640px) {
  .kv__photo {
    min-height: 220px;
  }
}
.kv__photo picture,
.kv__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.kv__txt {
  margin: auto min(26.34375vw, 421.5px) 29px auto;
}
@media screen and (max-width: 640px) {
  .kv__txt {
    margin: auto min(7.476635514vw, 32px) 16px auto;
  }
}
.kv.--interview .kv__txt {
  margin: 0;
  position: absolute;
  bottom: 75px;
  left: 50%;
  -webkit-transform: translateX(min(17.4375vw, 279px));
  transform: translateX(min(17.4375vw, 279px));
}
@media screen and (max-width: 1359px) {
  .kv.--interview .kv__txt {
    left: initial;
    right: 3.5046728972vw;
    -webkit-transform: none;
    transform: none;
    bottom: 35px;
  }
}
@media screen and (max-width: 640px) {
  .kv.--interview .kv__txt {
    bottom: 18px;
  }
}
.kv__position {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 10px 0 6px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .kv__position {
    font-size: 1.4rem;
  }
}
.kv__name-ja {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 10px;
  padding-inline: 6px 10.5px;
  font-size: 3.9rem;
  line-height: 1.358974359;
}
@media screen and (max-width: 640px) {
  .kv__name-ja {
    font-size: 2.4rem;
  }
}
.kv__name-en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 10px;
  padding: 4px 11px 2px 6px;
  line-height: 1.1875;
}
@media screen and (max-width: 640px) {
  .kv__name-en {
    font-size: 1.4rem;
  }
}
.kv__interview-name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4.5px 8.1px 4.5px 4.9px;
  font-size: 3rem;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .kv__interview-name {
    font-size: 2.4rem;
    display: block;
    margin-inline: auto 0;
  }
}
.kv__interview-position {
  margin-top: 6.1px;
  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: 8.6px;
}
@media screen and (max-width: 640px) {
  .kv__interview-position {
    gap: 6px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.kv__interview-position span {
  display: block;
  padding: 2px 9.1px 2px 4.9px;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .kv__interview-position span {
    font-size: 1.2rem;
  }
}

/* ========================= /
/  インタビュー
/* =========================*/
.interview {
  padding: 110.9px 0 121.3px;
}
@media screen and (max-width: 640px) {
  .interview {
    padding: 60px 0 119.3px;
  }
}
.interview.--archive {
  padding: 91px 0 157.5px;
}
@media screen and (max-width: 1359px) {
  .interview.--archive {
    padding: 45px 0 112px;
  }
}
.interview__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 20.5px;
}
@media screen and (max-width: 1359px) {
  .interview__ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .interview__ttl {
    gap: 12.2px;
  }
}
.interview__ttl-en {
  font-size: 10.4rem;
  line-height: 1.2019230769;
  position: relative;
}
@media screen and (max-width: 1359px) {
  .interview__ttl-en {
    font-size: 7.4rem;
  }
}
@media screen and (max-width: 480px) {
  .interview__ttl-en {
    font-size: 6.4rem;
  }
}
.interview__ttl-en::after {
  content: "";
  display: block;
  width: 356.7px;
  aspect-ratio: 356.7/124.8;
  background: url(../img/common/ttl-deco01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -202.2px;
}
@media screen and (max-width: 1359px) {
  .interview__ttl-en::after {
    top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .interview__ttl-en::after {
    width: 200px;
    top: 20px;
    right: -24px;
  }
}
.interview__wrap {
  margin-top: 61.7px;
}
.interview.--archive .interview__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px 35px;
}
@media screen and (max-width: 640px) {
  .interview.--archive .interview__list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.interview__item-link {
  display: grid;
  grid-template: 1fr/1fr;
  position: relative;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.interview__item-link > * {
  grid-area: 1/1/-1/-1;
}
.interview__item-link:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.interview__item-link:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.interview__item-txt {
  -ms-flex-item-align: self-end;
  align-self: self-end;
  margin-block: 20.5px;
}
.interview__item-txt.--small {
  margin-block: 35.3px;
}
.interview__item-name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4.5px 8.1px 4.5px 4.9px;
  font-size: 3rem;
  line-height: 1.2;
  white-space: nowrap;
}
.interview__item-position {
  margin-top: 6.1px;
  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: 8.6px;
}
@media screen and (max-width: 640px) {
  .interview__item-position {
    gap: 6px;
  }
}
.interview__item-position span {
  display: block;
  padding: 2px 9.1px 2px 4.9px;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .interview__item-position span {
    font-size: 1.2rem;
  }
}
.interview__btn {
  display: block;
  margin-top: 39.6px;
  margin-inline: auto 58.5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  line-height: 1.4;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 1359px) {
  .interview__btn {
    margin: 94px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .interview__btn {
    margin-top: 62px;
  }
}
.interview__btn:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.interview__btn:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}

/* ========================= /
/  クロストーク
/* =========================*/
.crossTalk {
  padding: 112.3px 0 148.3px;
}
@media screen and (max-width: 640px) {
  .crossTalk {
    padding: 80px 0 74px;
  }
}
.crossTalk.--top {
  background: linear-gradient(
    135deg,
    rgba(171, 206, 216, 0.8),
    rgba(255, 255, 255, 0.8)
  );
}
.crossTalk__ttl-en {
  font-size: 10.4rem;
  line-height: 0.832;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1359px) {
  .crossTalk__ttl-en {
    font-size: 7.4rem;
    line-height: 0.932;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.crossTalk__ttl-en span {
  margin-inline: 7.5px 6.2px;
  display: block;
  width: 39.11px;
  aspect-ratio: 39.11/26.85;
  background: url(../img/common/ttl-deco02.svg) no-repeat center/contain;
}
@media screen and (max-width: 1359px) {
  .crossTalk__ttl-en span {
    width: 62%;
    height: 26.85px;
    aspect-ratio: initial;
    background-size: 39.11px 26.85px;
    background-position: left center;
  }
}
@media screen and (max-width: 640px) {
  .crossTalk__ttl-en span {
    width: 32%;
  }
}
.crossTalk__para {
  margin-top: 22.2px;
}
@media screen and (max-width: 640px) {
  .crossTalk__para {
    margin-top: 27.2px;
  }
}
.crossTalk__list {
  margin-top: 65.1px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .crossTalk__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .crossTalk__list {
    margin-top: 50.5px;
    gap: 56px;
  }
}
.crossTalk__item {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24.1px;
}
@media screen and (max-width: 640px) {
  .crossTalk__item {
    gap: 11px;
  }
}
.crossTalk__item-movie {
  display: grid;
  grid-template: 1fr/1fr;
}
.crossTalk__item-movie > * {
  grid-area: 1/1/-1/-1;
}
.crossTalk__item-thumbnail {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  &:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .crossTalk__item-thumbnail {
    margin-inline: auto;
  }
}
.crossTalk__item-thumbnail picture,
.crossTalk__item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.crossTalk__item-ttl {
  font-size: 2.2rem;
  line-height: 1.4545454545;
}
@media screen and (max-width: 480px) {
  .crossTalk__item-ttl {
    font-size: 1.6rem;
  }
}
.crossTalk__item-play {
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.crossTalk__item-play:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.crossTalk__item-play:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}

/* ========================= /
/  下部ナビゲーション
/* =========================*/
.bottomNav {
  padding: 108px 0 656px;
  background: no-repeat center/cover;
}
@media screen and (max-width: 640px) {
  .bottomNav {
    padding: 99px 0 461px;
  }
}
.bottomNav.--bg01 {
  background-image: url(../img/common/pc/bottomNav-bg01.png);
}
@media screen and (max-width: 640px) {
  .bottomNav.--bg01 {
    background-image: url(../img/common/sp/bottomNav-bg01.png);
  }
}
.bottomNav.--bg02 {
  background-image: url(../img/common/bottomNav-bg02.png);
}
.bottomNav__list {
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  gap: 36px 38px;
}
@media screen and (max-width: 1000px) {
  .bottomNav__list {
    grid-template: 1fr / auto;
  }
}
@media screen and (max-width: 640px) {
  .bottomNav__list {
    gap: 40px;
  }
}

/* ========================= /
/  ページトップボタン
/* =========================*/
.pageTop {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 29px;
  bottom: 14px;
  z-index: 900;
}
.pageTop a {
  width: 100%;
  height: 100%;
}
.pageTop span {
  display: block;
  width: 4px;
  height: 30px;
  position: absolute;
  top: 5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.pageTop span:is(:where(:-moz-any-link, :enabled, summary):hover *) {
  width: 2px;
}
.pageTop span:is(:where(:any-link, :enabled, summary):hover *) {
  width: 2px;
}
.pageTop span:nth-of-type(1) {
  left: 10px;
}
.pageTop
  span:nth-of-type(1):is(:where(:-moz-any-link, :enabled, summary):hover *) {
  right: 18px;
  transform: rotate(-135deg);
}
.pageTop span:nth-of-type(1):is(:where(:any-link, :enabled, summary):hover *) {
  right: 18px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.pageTop span:nth-of-type(2) {
  right: 16px;
}
.pageTop
  span:nth-of-type(2):is(:where(:-moz-any-link, :enabled, summary):hover *) {
  right: 18px;
  top: 10px;
  transform: rotate(180deg);
}
.pageTop span:nth-of-type(2):is(:where(:any-link, :enabled, summary):hover *) {
  right: 18px;
  top: 10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pageTop span:nth-of-type(3) {
  left: 30px;
}
.pageTop
  span:nth-of-type(3):is(:where(:-moz-any-link, :enabled, summary):hover *) {
  right: 18px;
  transform: rotate(-45deg);
}
.pageTop span:nth-of-type(3):is(:where(:any-link, :enabled, summary):hover *) {
  right: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ========================= /
/  メッセージ記事
/* =========================*/
.message {
  padding-block: 170px 32px;
}
@media screen and (max-width: 1359px) {
  .message {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 640px) {
  .message {
    padding-block: 64px 0;
  }
}
.message.--interview {
  padding-top: 0;
  padding-bottom: 186px;
}
@media screen and (max-width: 1359px) {
  .message.--interview {
    padding-top: 32px;
    padding-bottom: 60px;
  }
}
.message__grid {
  padding-top: 116px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media screen and (max-width: 1359px) {
  .message__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .message__grid {
    padding-top: 60px;
  }
}
.message__txt {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: start;
  gap: 32px;
}
@media screen and (max-width: 640px) {
  .message__txt {
    gap: 16px;
  }
}
.message__txt.--single {
  margin-top: 112px;
}
@media screen and (max-width: 640px) {
  .message__txt.--single {
    margin-top: 54px;
  }
}
.message__heading {
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .message__heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .message__para {
    font-size: 1.4rem;
  }
}
.message__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 51px;
}
@media screen and (max-width: 640px) {
  .message__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.message__logo {
  width: min(30.9243697479%, 184px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.message__bg {
  padding-top: 80px;
}
@media screen and (max-width: 1359px) {
  .message__bg {
    height: 270px;
  }
}
@media screen and (max-width: 640px) {
  .message__bg {
    padding-top: 48px;
    height: 180px;
  }
}
.message__bg picture,
.message__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.message__list {
  margin-top: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 106.8px;
}
@media screen and (max-width: 640px) {
  .message__list {
    gap: 37.8px;
  }
}
.message__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1359px) {
  .message__item {
    gap: 32px;
  }
}
.message__item > * {
  width: 50%;
}
@media screen and (max-width: 1359px) {
  .message__item > * {
    width: 100%;
  }
}
.message__item:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 1000px) {
  .message__item:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.message__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .message__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.message__item:first-of-type .message__item-photo {
  margin-top: -139px;
}
@media screen and (max-width: 640px) {
  .message__item:first-of-type .message__item-photo {
    margin-top: -100px;
  }
}
.message__item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.message__item:nth-of-type(odd) .message__item-txt {
  padding-left: 54px;
  padding-right: 96px;
}
@media screen and (max-width: 1359px) {
  .message__item:nth-of-type(odd) .message__item-txt {
    margin-top: 0;
    padding: 0;
  }
}
.message__item:nth-of-type(even) .message__item-txt {
  padding-right: 150px;
}
@media screen and (max-width: 1359px) {
  .message__item:nth-of-type(even) .message__item-txt {
    padding-right: 0;
  }
}
.message__item-ttl {
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .message__item-ttl {
    font-size: 1.8rem;
  }
}
.message__item-para {
  margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .message__item-para {
    margin-top: 16px;
    font-size: 1.4rem;
  }
}

/* ========================= /
/  アンカーリンク
/* =========================*/
.anchor.--job {
  margin-block: 122px 159px;
}
@media screen and (max-width: 640px) {
  .anchor.--job {
    margin-block: 60px 72px;
  }
}
.anchor.--environment {
  margin-block: 101px 204px;
}
@media screen and (max-width: 640px) {
  .anchor.--environment {
    margin-block: 50px 100px;
  }
}
.anchor__list {
  display: grid;
}
.anchor__list:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
@media screen and (max-width: 640px) {
  .anchor__list:has(> :nth-child(2):last-child) {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.anchor__list:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media screen and (max-width: 1359px) {
  .anchor__list:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .anchor__list:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.anchor__list:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1359px) {
  .anchor__list:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .anchor__list:has(> :nth-child(4):last-child) {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.anchor__list:has(> :nth-child(5):last-child) {
  margin-inline: auto;
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 17px 20px;
}
@media screen and (max-width: 1359px) {
  .anchor__list:has(> :nth-child(5):last-child) {
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .anchor__list:has(> :nth-child(5):last-child) {
    flex-direction: column;
    gap: 18px;
  }
}
.anchor__item-link {
  display: block;
  min-height: 100px;
  padding: 36px 12px;
  font-size: 2rem;
  line-height: 1.45;
  border: 1px solid #abced8;
  -webkit-transition: color, background-color, 0.3s ease-out;
  transition: color, background-color, 0.3s ease-out;
}
.anchor__item-link:where(:-moz-any-link, :enabled, summary):hover {
  color: #fff;
  background: #abced8;
}
.anchor__item-link:where(:any-link, :enabled, summary):hover {
  color: #fff;
  background: #abced8;
}
@media screen and (max-width: 1359px) {
  .anchor__item-link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .anchor__item-link {
    padding: 24px;
    min-height: 50px;
    font-size: 1.6rem;
  }
}
.anchor__list:has(> :nth-child(5):last-child) .anchor__item-link {
  min-width: 310px;
}

/* ========================= /
/  モーダル
/* =========================*/
.modal {
  position: fixed !important;
  inset: 0;
  z-index: 9999;
  max-height: 100svh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.modal.js-open {
  opacity: 1;
  pointer-events: visible;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  inset: 0;
  z-index: 0;
}
.modal__inner {
  padding: 11.5%;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: -webkit-max-content 37.48px;
  grid-template-rows: max-content 37.48px;
  -ms-flex-line-pack: center;
  align-content: center;
  justify-items: center;
  gap: 25px;
}
@media screen and (max-width: 1359px) {
  .modal__inner {
    padding: 64px;
  }
}
@media screen and (max-width: 640px) {
  .modal__inner {
    padding-inline: 4.4392523364vw;
  }
}
.modal__movie {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
}
.modal__movie iframe {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.modal__close {
  display: block;
  width: 37.84px;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.modal__close::before,
.modal__close::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 640px) {
  .modal__close::before,
  .modal__close::after {
    width: 32px;
    height: 2px;
  }
}
.modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================= /
/  z-index
/* =========================*/
.header {
  z-index: 9000;
}

.header__main {
  z-index: 7000;
}

.header__logo {
  z-index: 8000;
}

.burgerBtn {
  z-index: 7000;
}

.burgerNav {
  z-index: 8000;
}

/* ========================= /
/  ヘッダー
/* =========================*/
.header {
  width: 100%;
  height: 84px;
  position: fixed;
  top: 0;
  left: 0;
}
.header__inner {
  height: 100%;
  padding-inline: min(1.75vw, 28rem) min(1.8125vw, 29rem);
}
@media screen and (max-width: 1359px) {
  .header__inner {
    padding-inline: 4.4392523364vw;
  }
}
.header__main {
  height: 100%;
  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;
}
.header__logo-link {
  padding-block: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  width: 195px;
}
.header__logo-link:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.header__logo-link:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
@media screen and (max-width: 1359px) {
  .header__logo-link {
    width: 204px;
  }
}
.header__logo-img {
  width: 266px;
  height: auto;
  aspect-ratio: 266/40;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center left;
  object-position: center left;
}
.header__logo-txt {
  font-size: 1.1rem;
  line-height: 1.6363636364;
  letter-spacing: 0.24em;
}

/* ========================= /
/  バーガーボタン
/* =========================*/
.burgerBtn {
  width: 40px;
  height: 40px;
  position: relative;
}
.burgerBtn button {
  width: 100%;
  height: 100%;
}
.burgerBtn span {
  display: block;
  width: 4px;
  height: 30px;
  position: absolute;
  top: 5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.burgerBtn span:is(:where(:-moz-any-link, :enabled, summary):hover *) {
  width: 2px;
}
.burgerBtn span:is(:where(:any-link, :enabled, summary):hover *) {
  width: 2px;
}
.burgerBtn span:nth-of-type(1) {
  left: 10px;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.burgerBtn
  span:nth-of-type(1):is(:where(:-moz-any-link, :enabled, summary):hover *) {
  left: 5px;
  top: 20px;
  transform: rotate(-135deg);
}
.burgerBtn
  span:nth-of-type(1):is(:where(:any-link, :enabled, summary):hover *) {
  left: 5px;
  top: 20px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.burgerBtn span:nth-of-type(2) {
  right: 16px;
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
.burgerBtn
  span:nth-of-type(2):is(:where(:-moz-any-link, :enabled, summary):hover *) {
  right: 3px;
  top: 21px;
  transform: rotate(90deg);
}
.burgerBtn
  span:nth-of-type(2):is(:where(:any-link, :enabled, summary):hover *) {
  right: 3px;
  top: 21px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.burgerBtn span:nth-of-type(3) {
  left: 30px;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.burgerBtn
  span:nth-of-type(3):is(:where(:-moz-any-link, :enabled, summary):hover *) {
  left: 5px;
  top: 20px;
  transform: rotate(-45deg);
}
.burgerBtn
  span:nth-of-type(3):is(:where(:any-link, :enabled, summary):hover *) {
  left: 5px;
  top: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ========================= /
/  バーガーナビ
/* =========================*/
.burgerNav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  background: linear-gradient(45deg, #c7d9de 10%, #fff 95%);
  overflow-y: auto;
  -webkit-transform: translate(100%);
  transform: translate(100%);
  -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: 640px) {
  .burgerNav {
    left: 0;
  }
}
.burgerNav.js-open {
  -webkit-transform: none;
  transform: none;
}
.burgerNav__close {
  width: 24.75px;
  aspect-ratio: 1;
  position: absolute;
  top: 36.6px;
  right: 36.6px;
}
@media screen and (max-width: 640px) {
  .burgerNav__close {
    top: 45.6px;
    right: 13.4929906542vw;
  }
}
.burgerNav__close::before,
.burgerNav__close::after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: #828282;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.burgerNav__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.burgerNav__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.burgerNav__inner {
  padding: 60px 74px 150px 63px;
}
@media screen and (max-width: 640px) {
  .burgerNav__inner {
    padding: 50px 52px 62px 33px;
  }
}
.burgerNav__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: 22px;
}
@media screen and (max-width: 640px) {
  .burgerNav__list {
    gap: 20px;
  }
}
.burgerNav__item-link {
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.burgerNav__item-link:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__item-link:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__recruit-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  grid-template-columns: repeat(4, max-content);
  gap: 13px;
}
@media screen and (max-width: 640px) {
  .burgerNav__recruit-list {
    margin-top: 37px;
    gap: 14px;
  }
}
.burgerNav__recruit-item-link {
  width: 68px;
  aspect-ratio: 1;
}
.burgerNav__recruit-item-link picture,
.burgerNav__recruit-item-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}
.burgerNav__instagram {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.burgerNav__instagram:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__instagram:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__instagram::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../img/common/icon-instagram@2x.png) no-repeat center/contain;
}
.burgerNav__company {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 640px) {
  .burgerNav__company {
    min-width: initial;
  }
}
.burgerNav__company:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__company:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__company::before {
  content: "";
  display: block;
  width: 22.53px;
  aspect-ratio: 22.53/20.03;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #003f98;
  -webkit-mask: url(../img/common/icon-external.svg) no-repeat center/contain;
  mask: url(../img/common/icon-external.svg) no-repeat center/contain;
}
.burgerNav__group {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.burgerNav__group:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__group:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.burgerNav__group::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../img/common/icon-plus.svg) no-repeat center/contain;
}

/* ========================= /
/  下部固定ナビ
/* =========================*/
.fixedNav {
  position: fixed;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, 80px);
  transform: translate(-50%, 80px);
  -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;
  z-index: 1100;
}
/* @media (hover: hover) {
  .fixedNav:where(:-moz-any-link, :enabled, summary):hover {
    transform: translate(-50%);
  }
  .fixedNav:where(:any-link, :enabled, summary):hover {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
} */
/* .fixedNav.js-open {
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.fixedNav__bg {
  width: 260px;
  height: 80px;
  background-color: rgba(212, 212, 212, 0.4);
  -webkit-backdrop-filter: blur(5px) brightness(1);
  backdrop-filter: blur(5px) brightness(1);
  border-radius: 10px 10px 0 0;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  z-index: 999;
  -webkit-transition: height, width, 0.3s ease-out, -webkit-transform;
  transition: height, width, 0.3s ease-out, -webkit-transform;
  transition: height, width, transform, 0.3s ease-out;
  transition: height, width, transform, 0.3s ease-out, -webkit-transform;
} */
/* @media (hover: hover) {
  .fixedNav:hover + .fixedNav__bg {
    width: 580px;
    height: 150px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
} */
/* .fixedNav.js-open + .fixedNav__bg {
  width: 90%;
  height: 90px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
} */
.fixedNav__ttl {
  display: block;
  margin-inline: auto;
  padding: 9px 43.5px;
  width: fit-content;
  min-width: 130px;
  min-height: 40px;
  font-size: 1.8rem;
  line-height: 1.2222222222;
  background: url(../img/common/fixedNav-ttl-bg.svg) no-repeat center/cover;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  transition: background-image, letter-spacing, 0.3s ease-out;
  &:hover {
    background-image: url(../img/common/fixedNav-ttl-bg_hover.svg);
    letter-spacing: 0.1em;
  }
}
/* @media (hover: hover) {
  .fixedNav__ttl:is(:where(:-moz-any-link, :enabled, summary):hover *) {
    background-image: url(../img/common/fixedNav-ttl-bg_hover.svg);
    letter-spacing: 0.31em;
  }
  .fixedNav__ttl:is(:where(:any-link, :enabled, summary):hover *) {
    background-image: url(../img/common/fixedNav-ttl-bg_hover.svg);
    letter-spacing: 0.31em;
  }
} */
.fixedNav.js-open .fixedNav__ttl {
  background-image: url(../img/common/fixedNav-ttl-bg_hover.svg);
  letter-spacing: 0.31em;
}

.fixedNav__list {
  max-width: 260px;
  height: 80px;
  border-radius: 10px 10px 0 0;
  padding: 15px 9px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  -webkit-transition: height, padding, gap, 0.3s ease-out;
  transition: height, padding, gap, 0.3s ease-out;
  /* hidden */
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
@media (hover: hover) {
  .fixedNav__list:is(:where(:-moz-any-link, :enabled, summary):hover *) {
    max-width: 580px;
    height: 150px;
    padding: 25px 30px;
    gap: 20px;
  }
  .fixedNav__list:is(:where(:any-link, :enabled, summary):hover *) {
    max-width: 580px;
    height: 150px;
    padding: 25px 30px;
    gap: 20px;
  }
}
.fixedNav.js-open .fixedNav__list {
  max-width: 580px;
  height: 150px;
  padding: 15px 30px;
  gap: 20px;
}
@media screen and (max-width: 1359px) {
  .fixedNav.js-open .fixedNav__list {
    height: 90px;
  }
}
.fixedNav__item-link {
  display: block;
  width: 50px;
  aspect-ratio: 1;
  -webkit-transition: opacity, width, 0.3s ease-out;
  transition: opacity, width, 0.3s ease-out;
}
.fixedNav__item-link:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.fixedNav__item-link:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
@media (hover: hover) {
  .fixedNav__item-link:is(:where(:-moz-any-link, :enabled, summary):hover *) {
    width: 100px;
  }
  .fixedNav__item-link:is(:where(:any-link, :enabled, summary):hover *) {
    width: 100px;
  }
}
.fixedNav.js-open .fixedNav__item-link {
  height: 60px;
}
.fixedNav__item-link picture,
.fixedNav__item-link img {
  margin-inline: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}

/* ========================= /
/  フッター
/* =========================*/
.footer {
  padding-top: 77.8px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .footer {
    padding-top: 0;
  }
}
.footer__logo {
  margin-inline: auto;
  width: 264.51px;
  padding: 166px 0 168.9px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 640px) {
  .footer__logo {
    width: 226px;
    padding: 0 0 141px;
  }
}
.footer__logo picture,
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__logo-link {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.footer__logo-link:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.footer__logo-link:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}
.footer__copyright {
  position: absolute;
  left: 28px;
  bottom: 14px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1359px) {
  .footer__copyright {
    padding-bottom: 164px;
    position: static;
  }
}

.footer-nav {
  padding-block: 126px;
}
@media screen and (max-width: 640px) {
  .footer-nav {
    padding-block: 70px 120px;
  }
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}
@media screen and (max-width: 1000px) {
  .footer-nav__list {
    grid-template: 1fr / auto;
  }
}
