@charset "UTF-8";
html {
  font-size: 16px;
}
@media (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* フォントカラーは、使用頻度が多いものを選択する */
body {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #171717;
  line-height: 1;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ---- */
.content-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ここまで ---- */
/* YouTubeのframeborder属性の変わり(HTML5の標準仕様で廃止されているため) */
iframe {
  border: none;
}

/* ジャギー対策 */
img {
  image-rendering: auto;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

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

article > * + * {
  margin-top: 1em;
}

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

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  padding: 0;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  max-width: 84.375rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/* ---------- 各セクションのマスクアニメーション（X軸方向） -------------------------- */
.js-mask {
  mask-image: linear-gradient(90deg, #ffffff 0% 50%, transparent 100%);
  mask-size: 200% 100%;
  mask-repeat: no-repeat;
  mask-position: 200% 0%;
}

.js-mask.is-open {
  animation: mask 0.3s linear forwards;
}

@keyframes mask {
  0% {
    mask-position: 200% 0%;
  }
  100% {
    mask-position: 0% 0%;
  }
}
/* ---------- 各セクションのマスクアニメーション（X軸方向） ここまで ----------------- */
/* ---------- 各セクションのマスクアニメーション（Y軸方向） -------------------------- */
.js-mask-mv-y {
  mask-image: linear-gradient(180deg, #ffffff 0% 50%, transparent 100%);
  mask-size: 100% 200%; /* 横幅100%、縦方向に2倍のサイズ */
  mask-repeat: no-repeat;
  mask-position: 0% 200%; /* マスクを最初は下の外側に配置 */
}

.js-mask-mv-y.is-open {
  animation: mask-y 0.3s linear forwards;
}

@keyframes mask-y {
  0% {
    mask-position: 0% 200%; /* 開始位置：下から */
  }
  100% {
    mask-position: 0% 0%; /* 終了位置：上までマスクを引き上げる */
  }
}
/* ---------- 各セクションのマスクアニメーション（Y軸方向） ここまで ----------------- */
/* ---------- パララックスの指定 | ここから ---------- */
.js-parallax {
  overflow: hidden;
}
.js-parallax img {
  display: block;
  height: 110%;
  max-width: unset;
}

/* ---------- パララックスの指定 | ここまで ---------- */
/* ---------- 読み込み時のチラつき防止 | ここから ---------- */
.js-fade-mv-op,
.js-pop-mv-ups,
.js-fade-op,
.js-pop-ups,
.js-pop-up,
.js-fadeIn-left,
.js-fadeIn-right,
.js-fv-fadeIn-rights {
  opacity: 0;
}

.js-fade-mv-op.is-show {
  opacity: 1;
  transition: opacity 1s ease;
}

/* ---------- 読み込み時のチラつき防止 | ここまで ---------- */
.body-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: clip;
}

.body-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -10;
}

.body-bg__img::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -9;
}

/* ----- ボタンタイプ共通設定 ここから ----- */
.btn {
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn__text {
  display: inline-block;
  transition: all 0.3s;
}

/* ----- ボタンタイプ共通設定 ここまで ----- */
/* ---------- 白いボタン | ここから ---------- */
.btn.btn-01 {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #498800;
  border-radius: 100vmax;
  padding-block: 1.4375rem;
  padding-inline: 3.125rem 1.875rem;
  margin-inline: auto;
  text-align: center;
  transition: all 0.3s;
  filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 768px) {
  .btn.btn-01 {
    width: 100%;
    max-width: 15.625rem;
    padding-inline: 0.625rem;
  }
}

.btn.btn-01.btn-01--more {
  max-width: 18.375rem;
}
@media screen and (max-width: 768px) {
  .btn.btn-01.btn-01--more {
    max-width: 15.625rem;
  }
}

@media screen and (max-width: 768px) {
  .btn.btn-01.btn-01--more.btn-01--inteview {
    padding-block: 0.9375rem;
    max-width: 12.5rem;
  }
}

.btn-text-01 {
  position: relative;
  display: inline-block;
  font-size: max(1.375rem, 12px);
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #498800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  padding-right: 4.125rem;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .btn-text-01 {
    padding-right: 1.875rem;
  }
}

.btn.btn-01[data-theme=btn-ja] .btn-text-01 {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .btn.btn-01[data-theme=btn-ja] .btn-text-01 {
    padding-right: 1.875rem;
  }
}

.btn-text-01::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  mask-image: url(../../assets/images/common/icon-arrow-04.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #498800;
  width: 1rem;
  aspect-ratio: 16/15;
  transition: all 0.3s;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .btn.btn-01.btn-01--more.btn-01--inteview .btn-text-01 {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn.btn-01:hover {
    background-color: #498800;
  }
  .btn.btn-01:hover .btn-text-01 {
    color: #ffffff;
  }
  .btn.btn-01:hover .btn-text-01::before {
    background-color: #ffffff;
  }
}
/* ---------- 白いボタン | ここまで ---------- */
/* ---------- 黒いボタン | ここから ---------- */
.btn.btn-02 {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 16.25rem;
  background-color: #1a1a1a;
  border: 1px solid #ffffff;
  border-radius: 100vmax;
  padding-block: 1.375rem;
  margin-inline: auto;
  text-align: center;
  transition: all 0.3s;
  filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 768px) {
  .btn.btn-02 {
    width: 100%;
    padding-block: 0.9375rem;
    max-width: 13.75rem;
  }
}

.btn.btn-02::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 100%;
  background-image: url(../../assets/images/common/icon-arrow-01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.5rem;
  aspect-ratio: 1/1;
  transition: all 0.3s;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .btn.btn-02::before {
    width: 1.875rem;
  }
}

.btn-text-02 {
  position: relative;
  transform: translateX(-1.875rem);
  display: inline-block;
  font-size: max(1.25rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.075em;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .btn-text-02 {
    font-size: max(1.125rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn.btn-02:hover {
    background-color: #ffffff;
  }
  .btn.btn-02:hover .btn-text-02 {
    color: #1a1a1a;
  }
}
/* ---------- 黒いボタン | ここまで ---------- */
/* ---------- 『ENTRY | 採用エントリー』送信ボタン | ここから ---------- */
.btn.btn-entry {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 40rem;
  height: 100%;
  max-height: 9.75rem;
  background-color: #005de8;
  border-radius: 100vmax;
  margin-inline: auto;
  text-align: center;
  border-radius: 1.25rem;
  filter: drop-shadow(0 0.625rem 0.9375rem rgba(0, 0, 0, 0.15));
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn.btn-entry {
    max-width: 18.75rem;
  }
}

.btn.btn-entry::before {
  content: "";
  position: absolute;
  left: 3.125rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-arrow-01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .btn.btn-entry::before {
    left: 1.25rem;
    width: 2.5rem;
  }
}

.btn-entry__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.btn-entry__wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -4.375rem;
  right: -2.1875rem;
  mask-image: url(../../assets/images/entry/entry-btn-text.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 3.125rem;
  height: 5.3125rem;
  aspect-ratio: 50/85;
  transition: all 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .btn-entry__wrapper::before {
    top: -3.125rem;
    right: -1.875rem;
  }
}

.btn-entry__wrapper::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0.9375rem;
  right: -4.25rem;
  background-image: url(../../assets/images/entry/entry-btn-deco.webp);
  width: 11.4375rem;
  aspect-ratio: 183/182;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .btn-entry__wrapper::after {
    top: 2.5rem;
    right: -4.25rem;
    width: 6.875rem;
  }
}

.btn-entry__submit {
  position: relative;
  transform: translateX(1.25rem);
  display: inline-block;
  font-size: 3rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
  transition: all 0.3s;
  padding: 0;
  padding: 2.6875rem 0.625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .btn-entry__submit {
    transform: translateX(0.9375rem);
    font-size: 1.5rem;
    padding: 1.875rem 0.625rem;
  }
}

@media (any-hover: hover) {
  .btn.btn-entry:hover {
    background-color: #ffffff;
  }
  .btn.btn-entry:hover .btn-entry__wrapper::after {
    transform: rotate(-10deg);
  }
  .btn.btn-entry:hover .btn-entry__wrapper::before {
    background-color: #005de8;
  }
  .btn.btn-entry:hover .btn-entry__submit {
    color: #005de8;
  }
}
/* ---------- 『ENTRY | 採用エントリー』送信ボタン | ここまで ---------- */
.contact-banner {
  background-color: #6db41c;
  padding-top: 14.375rem;
  padding-bottom: 19.0625rem;
}
@media screen and (max-width: 768px) {
  .contact-banner {
    padding-top: 9.375rem;
    padding-bottom: 13.125rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-banner__inner.inner {
    max-width: 33.75rem;
  }
}

.contact-banner__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-banner__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.125rem;
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

.contact-banner__item {
  display: block;
  width: 100%;
}

.contact-banner__link {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 19.375rem;
  text-align: center;
  border-radius: 1.25rem;
  filter: drop-shadow(0 0.625rem 0.9375rem rgba(0, 0, 0, 0.15));
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-banner__link {
    min-height: 8.125rem;
  }
}

.contact-banner__link-job {
  background-color: #f1cf00;
}

.contact-banner__link-join {
  background-color: #005de8;
}

.contact-banner__link::before {
  content: "";
  position: absolute;
  mask-size: contain;
  mask-repeat: no-repeat;
  pointer-events: none;
}

.contact-banner__link::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.contact-banner__link.contact-banner__link-job::before {
  top: 2.75rem;
  left: -2.0625rem;
  mask-image: url(../../assets/images/common/text-our-job-btn.svg);
  background-color: #000000;
  width: 4.0625rem;
  aspect-ratio: 65/103;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-banner__link.contact-banner__link-job::before {
    top: -1.875rem;
    width: 3.75rem;
  }
}

.contact-banner__link.contact-banner__link-job::after {
  top: 4.0625rem;
  left: -4.5rem;
  background-image: url(../../assets/images/common/deco-our-job.webp);
  width: 12.625rem;
  aspect-ratio: 202/394;
}
@media screen and (max-width: 768px) {
  .contact-banner__link.contact-banner__link-job::after {
    top: 1.875rem;
    width: 6.25rem;
  }
}

.contact-banner__link.contact-banner__link-join::before {
  top: 2.0625rem;
  right: 1.875rem;
  mask-image: url(../../assets/images/common/text-join-us-btn.svg);
  background-color: #ffffff;
  width: 4.1875rem;
  aspect-ratio: 67/159;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-banner__link.contact-banner__link-join::before {
    top: -1.25rem;
    right: -1.25rem;
    width: 3.75rem;
  }
}

.contact-banner__link.contact-banner__link-join::after {
  top: 10.4375rem;
  right: 0.625rem;
  background-image: url(../../assets/images/common/deco-join-us_02.webp);
  width: 16.3125rem;
  aspect-ratio: 261/277;
}
@media screen and (max-width: 768px) {
  .contact-banner__link.contact-banner__link-join::after {
    top: 8.125rem;
    right: -3.125rem;
    width: 6.875rem;
  }
}

.contact-banner__link-text {
  position: relative;
  font-size: 3.375rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-banner__link-text {
    font-size: 1.5rem;
  }
}

.contact-banner__link-text.contact-banner__link-text-job {
  color: #498800;
}

.contact-banner__link-text.contact-banner__link-text-join {
  color: #ffffff;
}

.contact-banner__link-text::before {
  content: "";
  position: absolute;
  left: -6.25rem;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.375rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .contact-banner__link-text::before {
    left: -3.125rem;
    width: 1.875rem;
  }
}

.contact-banner__link-text.contact-banner__link-text-job::before {
  background-image: url(../../assets/images/common/icon-arrow-02.svg);
}

.contact-banner__link-text.contact-banner__link-text-join::before {
  background-image: url(../../assets/images/common/icon-arrow-01.svg);
}

@media (any-hover: hover) {
  .contact-banner__link.contact-banner__link-job:hover {
    background-color: #ffffff;
  }
  .contact-banner__link.contact-banner__link-job:hover::after {
    transform: rotate(-10deg);
  }
  .contact-banner__link.contact-banner__link-join:hover {
    background-color: #ffffff;
  }
  .contact-banner__link.contact-banner__link-job:hover::before {
    background-color: #f1cf00;
  }
  .contact-banner__link.contact-banner__link-join:hover::before {
    background-color: #005de8;
  }
  .contact-banner__link.contact-banner__link-join:hover::after {
    transform: rotate(10deg);
  }
  .contact-banner__link.contact-banner__link-job:hover .contact-banner__link-text {
    color: #f1cf00;
  }
  .contact-banner__link.contact-banner__link-join:hover .contact-banner__link-text {
    color: #005de8;
  }
}
.entry {
  position: relative;
  padding-block: 16.5625rem 12.5rem;
}
@media screen and (max-width: 768px) {
  .entry {
    padding-block: 9.375rem;
  }
}

.entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #6db41c;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.entry__inner.inner {
  max-width: 75rem;
}
@media screen and (max-width: 768px) {
  .entry__inner.inner {
    max-width: 33.75rem;
  }
}

.entry__title {
  position: relative;
  max-width: 35rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .entry__title {
    max-width: 22.1875rem;
  }
}

.entry__title::before {
  content: "join us!";
  position: absolute;
  top: 75%;
  left: 36%;
  transform: translate(-50%, -50%);
  font-size: 18.75rem;
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .entry__title::before {
    font-size: 6.25rem;
  }
}

.entry__form-wrapper {
  margin-top: 3.75rem;
}

.entry__form {
  width: 100%;
}

.entry__btn-wrapper {
  margin-top: 4.6875rem;
}

.entry__deco {
  position: absolute;
  top: -11.3125rem;
  right: calc(50% + 26.9375rem);
  max-width: 12.375rem;
  width: 100%;
  aspect-ratio: 198/339;
}
@media screen and (max-width: 768px) {
  .entry__deco {
    top: -6.25rem;
    right: auto;
    left: 1.25rem;
    max-width: 7.5rem;
  }
}

.footer {
  padding-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__inner.inner {
    max-width: 33.75rem;
  }
}

.footer__layout {
  display: flex;
  flex-direction: row;
  gap: 3.125rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__layout {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.footer__logo {
  max-width: 21.875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

.footer__logo-link {
  display: inline-block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.6;
  }
}
.footer__content01 {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .footer__content01 {
    text-align: center;
  }
}

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

.footer__address-wrapper {
  display: flex;
  flex-direction: column;
}

.footer__contact {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.625rem;
  }
}

.footer__address,
.footer__tel,
.footer__fax {
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.7;
  color: #171717;
}
@media screen and (max-width: 768px) {
  .footer__address,
  .footer__tel,
  .footer__fax {
    font-size: max(1rem, 12px);
  }
}

.footer__tel-link {
  display: inline-block;
  color: #171717;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__tel-link:hover {
    opacity: 0.6;
  }
}
.footer__btn-items {
  display: grid;
  grid-template-columns: 18.625rem 16.4375rem;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__btn-items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.footer__btn-item {
  display: inline-block;
  width: 100%;
}

.footer__privacy-policy {
  margin-top: 2rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__privacy-policy {
    text-align: center;
  }
}

.footer__privacy-policy-link {
  display: inline-block;
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #171717;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__privacy-policy-link:hover {
    opacity: 0.6;
  }
}
.footer__copyright {
  margin-top: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer__copyright-text {
  display: inline-block;
  font-size: max(0.875rem, 12px);
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #171717;
}

.form__row {
  display: grid;
  grid-template-columns: 15.625rem 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.125rem 1.875rem;
  border-radius: 0.9375rem;
  background-color: #ffffff;
  min-height: 6rem;
}
@media screen and (max-width: 768px) {
  .form__row {
    display: block;
    padding: 0.9375rem 0.9375rem;
    border-radius: 0.625rem;
  }
}

.form__row.form__row--textarea {
  align-items: flex-start;
}

.form__row:nth-child(n+2) {
  margin-top: 0.625rem;
}

.form__head {
  width: 15rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form__head {
    width: 100%;
  }
}

.form__head.form__head--textarea {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form__head.form__head--textarea {
    margin-top: 0;
  }
}

.form__required {
  display: grid;
  place-items: center;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #005de8;
  letter-spacing: 0.075em;
  border-radius: 100vmax;
  padding: 0.5rem 0.9375rem;
  background-color: #f1cf00;
}
@media screen and (max-width: 768px) {
  .form__required {
    font-size: max(0.75rem, 12px);
    padding: 0.375rem 0.75rem;
  }
}

.form__required.form__required--optional {
  background-color: #6db41c;
  color: #ffffff;
}

.form__label {
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #171717;
  letter-spacing: 0.075em;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form__label {
    font-size: max(1rem, 12px);
  }
}

.form__body {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__body {
    margin-top: 0.9375rem;
  }
}

.form__input,
.form__select,
.form__textarea {
  font-size: 1.125rem;
  font-weight: 400;
  color: #171717;
  line-height: 2.2222222222;
  letter-spacing: 0.075em;
  width: 100%;
  background-color: #f2f2f2;
  border: 1px solid #d8d8d8;
  border-radius: 0.625rem;
  padding: 0.375rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__select,
  .form__textarea {
    border-radius: 0.3125rem;
    font-size: max(1rem, 12px);
    line-height: 1.5;
    padding: 0.375rem 0.5rem;
  }
}

.form__textarea {
  min-height: 12.5rem;
}
@media screen and (max-width: 768px) {
  .form__textarea {
    min-height: 15.625rem;
  }
}

.form__select-box {
  position: relative;
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__select-box {
    max-width: 7.5rem;
  }
}

.form__select-box::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 30%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  border-bottom: solid 2px #171717;
  border-right: solid 2px #171717;
  transform: rotate(45deg);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .form__select-box::before {
    right: 0.625rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.form__input--birthday {
  width: 100%;
}

.form__body--birthday {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.form__body--birthday .form__input--birthday-year {
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__body--birthday .form__input--birthday-year {
    max-width: 6.25rem;
  }
}

.form__body--birthday .form__input--birthday-month,
.form__body--birthday .form__input--birthday-day {
  max-width: 9.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__body--birthday .form__input--birthday-month,
  .form__body--birthday .form__input--birthday-day {
    max-width: 5rem;
  }
}

.form__body--birthday .form__unit {
  display: inline-block;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #171717;
  letter-spacing: 0.075em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .form__body--birthday .form__unit {
    font-size: max(0.875rem, 12px);
  }
}

.form__body--birthday .wpcf7-form-control-wrap {
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form__body--birthday .wpcf7-form-control-wrap {
    margin-left: 0.4375rem;
  }
}

.form__unit:not(:first-of-type) {
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form__unit:not(:first-of-type) {
    margin-left: 0.4375rem;
  }
}

.form__input.form__input--postcode {
  width: 100%;
  max-width: 12.5rem;
}
@media screen and (max-width: 768px) {
  .form__input.form__input--postcode {
    max-width: 6.25rem;
  }
}

.form__sep {
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #171717;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form__sep {
    font-size: max(0.875rem, 12px);
  }
}

.form__body--address {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.form__input--address {
  width: 100%;
}

.form__choice-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .form__choice-list {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form__choice-item {
  display: flex;
  align-items: center;
}

.form__choice-item:nth-child(n+2) {
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .form__choice-item:nth-child(n+2) {
    margin-left: 0;
  }
}

.form__choice-label {
  position: relative;
  display: inline-flex;
  padding-left: 1.875rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #171717;
  line-height: 2.2222222222;
  letter-spacing: 0.075em;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form__choice-label {
    font-size: max(1rem, 12px);
  }
}

.form__choice-label::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #cecece;
  border-radius: 100vmax;
  background-color: #ffffff;
}

.form__choice-label::after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.1875rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100vmax;
  background-color: #6db41c;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .form__choice-label::after {
    top: 0.8em;
  }
}

.form__choice-input:checked + .form__choice-label::after {
  opacity: 1;
}

/* ---------- Contact Form 7（radio / acceptance） | ここから ---------- */
.form__choice-list .wpcf7-form-control.wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .form__choice-list .wpcf7-form-control.wpcf7-radio {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form__choice-list .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.form__choice-list .wpcf7-list-item:nth-child(n+2) {
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .form__choice-list .wpcf7-list-item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.form__choice-list .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 1.875rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #171717;
  line-height: 2.2222222222;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .form__choice-list .wpcf7-list-item-label {
    font-size: max(1rem, 12px);
  }
}

.form__choice-list .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #cecece;
  border-radius: 100vmax;
  background-color: #ffffff;
}

.form__choice-list .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.1875rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100vmax;
  background-color: #6db41c;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .form__choice-list .wpcf7-list-item-label::after {
    top: 0.8em;
  }
}

.form__choice-list input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-weight: 400;
  color: #171717;
  line-height: 2.2222222222;
  letter-spacing: 0.075em;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label {
    font-size: max(1rem, 12px);
  }
}

.form__privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #cecece;
  border-radius: 100vmax;
  background-color: #ffffff;
}

.form__privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.1875rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100vmax;
  background-color: #6db41c;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label::after {
    top: 0.8em;
  }
}

.form__privacy input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* ---------- Contact Form 7（radio / acceptance） | ここまで ---------- */
.form__privacy {
  width: 100%;
}

.form__privacy-label {
  display: inline-block;
}

.form__agree-text {
  position: relative;
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-weight: 400;
  color: #171717;
  line-height: 2.2222222222;
  letter-spacing: 0.075em;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .form__agree-text {
    font-size: max(1rem, 12px);
  }
}

.form__agree-text::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #cecece;
  border-radius: 100vmax;
  background-color: #ffffff;
}

.form__agree-text::after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.1875rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100vmax;
  background-color: #6db41c;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .form__agree-text::after {
    top: 0.8em;
  }
}

.form__agree-input:checked + .form__agree-text::after {
  opacity: 1;
}

.form__privacy-text-link {
  display: inline-block;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #6db41c;
  line-height: 2.2222222222;
  letter-spacing: 0.075em;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .form__privacy-text-link {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .form__privacy-text-link:hover {
    opacity: 0.8;
  }
}
/* プレースホルダー */
::placeholder {
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.3);
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  ::placeholder {
    font-size: max(0.75rem, 12px);
  }
}

/* ---------- エラー時のプレースフォルダー | ここから ---------- */
.wpcf7-not-valid:not(.form__radio) {
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #be0000;
  letter-spacing: 0.1em;
  line-height: 2;
  background-color: rgba(201, 72, 0, 0.2);
  border: 1px solid #be0000;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid:not(.form__radio) {
    font-size: max(1rem, 12px);
  }
}

.wpcf7-not-valid:not(.form__radio)::placeholder {
  color: rgba(190, 0, 0, 0.6);
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #be0000;
  letter-spacing: 0.075em;
  line-height: 1.3;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: max(0.875rem, 12px);
  }
}

/* ---------- エラー時のプレースフォルダー | ここまで ---------- */
.wpcf7-spinner {
  display: none;
}

.hamburger {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #005de8;
  border-radius: 0.3125rem;
  transition: all 0.3s;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.hamburger span {
  position: absolute;
  left: 0.625rem;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 0.1875rem;
  background-color: #ffffff;
  border-radius: 100vmax;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    left: 0.4375rem;
    width: 1.625rem;
  }
}

@media (any-hover: hover) {
  .hamburger:hover {
    background-color: #ffffff;
  }
  .hamburger:hover span {
    background-color: #005de8;
  }
}
.hamburger span:first-child {
  top: 30%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 70%;
  opacity: 1;
}
.hamburger.is-active span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.hamburger__open-btn.is-active {
  display: none;
}

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 0.3s;
}
/* スクロールするとヘッダーの色が変化する */
.header.headerChange {
  background-color: #2e2e2e;
  backdrop-filter: blur(10px);
}
.header__inner {
  position: relative;
  display: grid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  padding-block: 2.5rem 0.625rem;
  padding-inline: 3.125rem;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1440px) {
  .header__inner {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    align-items: center;
    padding-block: 0.625rem;
    padding-inline: 1.25rem;
  }
}

.header.headerChange .header__inner {
  padding-block: 0.625rem;
}

.header__logo {
  max-width: 24.9375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 13.75rem;
  }
}

.header__logo-link {
  display: block;
  transition: all 0.3s;
}

.header__logo-link img {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
.header__pc-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .header__pc-nav-wrapper {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .header__pc-nav {
    height: inherit;
    display: none;
  }
}

.interview-character {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .interview-character {
    gap: 0.3125rem;
  }
}

.interview-character__text {
  font-size: max(1.25rem, 12px);
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0em;
  line-height: 2;
  color: #171717;
  text-align: center;
  text-transform: capitalize;
}

.interview-character__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.3125rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .interview-character__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.interview-character__item {
  width: 8.75rem;
  aspect-ratio: 1;
  display: block;
  border-radius: 100vmax;
  background-color: #f1cf00;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .interview-character__item {
    width: 5rem;
  }
}

.interview-character__item:not(.interview-character__is-current) {
  filter: grayscale(100%);
  background-color: #ffffff;
  cursor: pointer;
}

@media (any-hover: hover) {
  .interview-character__is-current:hover {
    background-color: #f1cf00;
    filter: none;
  }
  .interview-character__item:not(.interview-character__is-current):hover {
    background-color: #f1cf00;
    filter: none;
    cursor: pointer;
  }
}
.interview-fv {
  position: relative;
  padding-block: 15.25rem 3.125rem;
  min-height: 49.375rem;
}
@media screen and (max-width: 768px) {
  .interview-fv {
    padding-block: 8.75rem 23.625rem;
    min-height: 37.5rem;
  }
}

.interview-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #6db41c;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.interview-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/common/fv-circle.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 95rem;
  aspect-ratio: 1520/1200;
  z-index: -2;
}

.interview-fv__inner.inner {
  max-width: clamp(56.25rem, 60.9375vw, 73.125rem);
}
@media screen and (max-width: 768px) {
  .interview-fv__inner.inner {
    max-width: 33.75rem;
  }
}

.interview-fv__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.interview-fv__copy {
  font-size: clamp(5.125rem, 4.6875vw, 5.625rem);
  font-weight: 900;
  line-height: 1.0666666667;
  color: #171717;
}
@media screen and (max-width: 768px) {
  .interview-fv__copy {
    font-size: 2.5rem;
  }
}

.interview-fv__info {
  display: flex;
  align-items: center;
  gap: 1.1875rem;
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  letter-spacing: 0.075em;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .interview-fv__info {
    margin-top: 1.875rem;
  }
}

.interview-fv__name {
  display: inline-block;
  font-size: 2.5rem;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .interview-fv__name {
    font-size: 1.25rem;
  }
}

.interview-fv__img {
  position: absolute;
  width: 100%;
  max-width: clamp(43.75rem, 42.9166666667vw, 51.5rem);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .interview-fv__img {
    max-width: 23.4375rem;
  }
}

.interview-fv.interview-fv-01 .interview-fv__img {
  bottom: -4.25rem;
  left: calc(50% + clamp(-15rem, -11.25rem + (100vw - 1450px) * -0.375, -11.25rem)); /* -180 ~ -240 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .interview-fv.interview-fv-01 .interview-fv__img {
    bottom: -0.625rem;
    left: calc(50% - 15.625rem);
  }
}

.interview-fv.interview-fv-02 .interview-fv__img {
  bottom: -2.125rem;
  left: calc(50% + clamp(-8.3125rem, -5rem + (100vw - 1450px) * -0.1666666667, -5rem)); /* -80 ~ -133 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .interview-fv.interview-fv-02 .interview-fv__img {
    bottom: -0.625rem;
    left: calc(50% - 13.125rem);
  }
}

.interview-fv.interview-fv-03 .interview-fv__img {
  bottom: -2.125rem;
  left: calc(50% + clamp(-8.3125rem, -5rem + (100vw - 1450px) * -0.1666666667, -5rem)); /* -80 ~ -133 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .interview-fv.interview-fv-03 .interview-fv__img {
    bottom: -0.625rem;
    left: calc(50% - 15.625rem);
  }
}

.interview-fv.interview-fv-04 .interview-fv__img {
  bottom: -2.3125rem;
  left: calc(50% + clamp(-0.625rem, 1.25rem + (100vw - 1450px) * 0.0416666667, 1.25rem)); /* 20 ~ -10 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .interview-fv.interview-fv-04 .interview-fv__img {
    bottom: -0.625rem;
    left: calc(50% - 11.625rem);
  }
}

.interview-fv.interview-fv-05 .interview-fv__img {
  bottom: -5.75rem;
  left: calc(50% + clamp(-15rem, -7.5rem + (100vw - 1450px) * -0.25, -7.5rem)); /* -120 ~ -240 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .interview-fv.interview-fv-05 .interview-fv__img {
    bottom: -0.625rem;
    left: calc(50% - 15.625rem);
  }
}

.interview-fv.interview-fv-06 .interview-fv__img {
  bottom: -4.8125rem;
  left: calc(50% + clamp(-10.875rem, -7.5rem + (100vw - 1450px) * -0.25, -7.5rem)); /* -120 ~ -174 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .interview-fv.interview-fv-06 .interview-fv__img {
    bottom: -1.875rem;
    left: calc(50% - 14.375rem);
  }
}

.interview-fv__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 824/852;
}

.interview {
  position: relative;
  padding-block: 3.75rem 7.8125rem;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .interview {
    padding-block: 3.125rem;
  }
}

@media screen and (max-width: 768px) {
  .interview__inner.inner {
    max-width: 33.75rem;
  }
}

.interview__section-layout {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .interview__section-layout {
    flex-direction: column;
    gap: 3.125rem;
  }
}

.interview__section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .interview__section {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.interview__content {
  display: flex;
  flex-direction: column;
  gap: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .interview__content {
    display: contents;
    gap: 1.25rem;
  }
}

.interview__text {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .interview__text {
    order: 1;
    width: 100%;
    gap: 0.625rem;
  }
}

.interview__heading {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.6666666667;
  letter-spacing: 0.075em;
  color: #171717;
}
@media screen and (max-width: 768px) {
  .interview__heading {
    font-size: max(1.375rem, 12px);
  }
}

.interview__description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
  color: #171717;
}
@media screen and (max-width: 768px) {
  .interview__description {
    order: 3;
    font-size: max(1rem, 12px);
  }
}

/*-------------クエスチョン-------------*/
.interview__question {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  background-color: #6db41c;
  padding-block: 0.1875rem;
  padding-inline: 1.25rem;
  border-radius: 100vmax;
}
@media screen and (max-width: 768px) {
  .interview__question {
    padding-block: 0.3125rem;
    align-items: flex-start;
  }
}

.interview__question::before {
  content: "";
  position: absolute;
  bottom: -0.5625rem;
  left: 1.25rem;
  width: 0.6875rem;
  height: 0.6875rem;
  background-color: #6db41c;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.interview__question-number {
  font-size: max(1.125rem, 12px);
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #ffffff;
}

.interview__question-text {
  font-size: max(1rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #ffffff;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/*-------------クエスチョンここまで-------------*/
/*-------------画像共通-------------*/
.interview__image {
  width: calc(100% - 3.125rem);
  margin-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .interview__image {
    order: 2;
    width: 80%;
    margin-inline: auto;
  }
}

.interview__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 600/400;
  display: block;
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .interview__image img {
    border-radius: 1.25rem;
  }
}

/*-------------画像共通ここまで-------------*/
/*-------------画像個別-------------*/
.interview__image-01,
.interview__image-02 {
  margin-right: 3.125rem;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .interview__image-01,
  .interview__image-02 {
    margin-inline: auto;
  }
}

.interview__image-01 img {
  aspect-ratio: 600/600;
}

.interview__image-02 img {
  aspect-ratio: 600/400;
}

.interview__section-image {
  width: 100%;
}

.interview__section-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1300/600;
  display: block;
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .interview__section-image img {
    border-radius: 1.25rem;
  }
}

/*-------------画像個別ここまで-------------*/
/*-------------キャラクター-------------*/
.interview__character {
  width: 100%;
  margin-top: 7.1875rem;
}
@media screen and (max-width: 768px) {
  .interview__character {
    margin-top: 3.75rem;
  }
}

/*-------------キャラクターここまで-------------*/
.job {
  position: relative;
  padding-block: 6.25rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .job {
    padding-block: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .job__inner.inner {
    max-width: 33.75rem;
  }
}

.job__container {
  position: relative;
  padding: 6.25rem;
}
@media screen and (max-width: 768px) {
  .job__container {
    padding: 3.125rem 1.25rem;
  }
}

.job__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  border-radius: 1.875rem;
  filter: drop-shadow(0 0 1.875rem rgba(0, 0, 0, 0.16));
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .job__container::before {
    border-radius: 1.25rem;
    filter: drop-shadow(0 0 0.9375rem rgba(0, 0, 0, 0.16));
  }
}

.job__wrapper:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .job__wrapper:not(:first-child) {
    margin-top: 3.125rem;
  }
}

.job__title {
  font-size: 1.625rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.5384615385;
  padding: 0.8125rem 1.875rem;
  border-radius: 0.9375rem;
  background-color: #6db41c;
}
@media screen and (max-width: 768px) {
  .job__title {
    font-size: 1.125rem;
    padding: 0.625rem 0.625rem;
    border-radius: 0.5rem;
  }
}

.job__list {
  margin-top: 0.625rem;
}

.job__item {
  display: grid;
  grid-template-columns: 15.625rem 1fr;
  gap: 1.875rem;
  border-bottom: 1px dotted #e6e6e6;
  padding: 1.5625rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .job__item {
    gap: 0.625rem;
    grid-template-columns: 1fr;
    padding: 1.25rem 0;
  }
}

.job__item:last-child {
  border-bottom: none;
}

.job__term {
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
}
@media screen and (max-width: 768px) {
  .job__term {
    font-size: max(1rem, 12px);
    line-height: 1.3;
  }
}

.job__desc-text {
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #171717;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
}
@media screen and (max-width: 768px) {
  .job__desc-text {
    font-size: max(1rem, 12px);
    line-height: 1.875;
  }
}

.job__desc-text.job__desc-text-01 {
  font-size: max(1rem, 12px);
}
@media screen and (max-width: 768px) {
  .job__desc-text.job__desc-text-01 {
    font-size: max(0.875rem, 12px);
  }
}

.job__desc-item {
  position: relative;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #171717;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
}
@media screen and (max-width: 768px) {
  .job__desc-item {
    font-size: max(1rem, 12px);
  }
}

.lower-fv {
  position: relative;
  min-height: 49.375rem;
}
@media screen and (max-width: 768px) {
  .lower-fv {
    min-height: 25rem;
  }
}

.lower-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #6db41c;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.lower-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/common/fv-circle.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 95rem;
  aspect-ratio: 1520/1200;
  z-index: -2;
}

.lower-fv__outer {
  position: relative;
  width: 100%;
  height: 100%;
  padding-block: 16.25rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .lower-fv__outer {
    padding-block: 15rem 5rem;
  }
}

.lower-fv[data-theme=privacy] .lower-fv__outer {
  padding-block: 23.125rem 5rem;
}
@media screen and (max-width: 768px) {
  .lower-fv[data-theme=privacy] .lower-fv__outer {
    padding-block: 15rem 6.25rem;
  }
}

.lower-fv__outer::before {
  content: "";
  position: absolute;
  top: 6.4375rem;
  right: calc(50% + 25rem);
  background-image: url(../../assets/images/common/lower-deco-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13.75rem;
  aspect-ratio: 220/428;
  z-index: 1;
  animation: decoAnime003 1.5s steps(2, end) infinite;
}
@media screen and (max-width: 768px) {
  .lower-fv__outer::before {
    top: 3.75rem;
    right: calc(50% + 6.25rem);
    width: 6.25rem;
  }
}

@keyframes decoAnime003 {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.lower-fv__outer::after {
  content: "";
  position: absolute;
  top: 15.875rem;
  left: calc(50% + 28.875rem);
  background-image: url(../../assets/images/common/lower-deco-02_02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19.875rem;
  aspect-ratio: 318/471;
  z-index: 1;
  animation: decoAnime04 1.5s steps(2, end) infinite;
}
@media screen and (max-width: 768px) {
  .lower-fv__outer::after {
    top: 31.25rem;
    top: auto;
    bottom: -7.1875rem;
    left: calc(50% + 6.25rem);
    width: 8.125rem;
  }
}

@keyframes decoAnime04 {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.lower-fv__inner.inner {
  max-width: 81.25rem;
}
@media screen and (max-width: 768px) {
  .lower-fv__inner.inner {
    max-width: 33.75rem;
  }
}

.lower-fv__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5625rem;
}

.lower-fv__title-ja {
  max-width: 24.875rem;
  width: 100%;
  margin-inline: auto;
}

.lower-fv__title-en {
  font-size: 1.875rem;
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #f1cf00;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lower-fv__title-en {
    font-size: 1.25rem;
  }
}

.lower-fv__text-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.lower-fv__text {
  font-size: 1.75rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.7857142857;
  letter-spacing: 0.075em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .lower-fv__text {
    font-size: max(1rem, 12px);
  }
}

.mv {
  position: relative;
  height: 80rem;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 37.5rem;
  }
}

.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #6db41c;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/top/mv-bg-deco.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 95rem;
  aspect-ratio: 1520/1200;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .mv::after {
    width: 62.5rem;
  }
}

.mv__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__title-01 {
  position: absolute;
  top: 2.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 79.375rem;
  aspect-ratio: 1270/796;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .mv__title-01 {
    top: 3.75rem;
    max-width: 21.25rem;
  }
}

.mv__title-02 {
  position: absolute;
  top: 52rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 56.8125rem;
  aspect-ratio: 909/202;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv__title-02 {
    top: 32.1875rem;
    max-width: 18.75rem;
  }
}

.mv__employee {
  position: absolute;
  bottom: 8.125rem;
  left: calc(50% - 31.5625rem);
  max-width: 81.25rem;
  width: 100%;
  aspect-ratio: 1300/1162;
}
@media screen and (max-width: 768px) {
  .mv__employee {
    bottom: 4.6875rem;
    left: calc(50% - 9.375rem);
    max-width: 23.125rem;
  }
}

.mv__change-employee-items {
  position: absolute;
  top: 7.6875rem;
  left: 41%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv__change-employee-items {
    top: 2.4375rem;
    left: 40.8%;
  }
}

.mv__change-employee-item img {
  aspect-ratio: 1300/1162;
  object-fit: contain;
}

.mv__eye-parts-container {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: calc(50% + 53.75rem);
}
@media screen and (max-width: 1920px) {
  .mv__eye-parts-container {
    left: auto;
    right: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__eye-parts-container {
    top: auto;
    transform: translateY(0);
    right: 1.25rem;
    bottom: 10.625rem;
  }
}

.mv__eye-parts {
  width: 3.125rem;
  height: 10rem;
}
@media screen and (max-width: 768px) {
  .mv__eye-parts {
    width: 2.5rem;
    height: 8.125rem;
  }
}

.mv__eye-parts-item {
  opacity: 0.5;
  transition: all 0.3s;
  cursor: pointer;
}

.mv__eye-parts-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}

@media (any-hover: hover) {
  .mv__eye-parts-item:hover {
    opacity: 1;
  }
}
/* ---------- 目の切り替え | ここから ---------- */
/* 全アイテム共通 */
.mv__change-employee-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 表示中のアイテム */
.mv__change-employee-item.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* ---------- 目の切り替え | ここまで ---------- */
.pc-nav__btn {
  min-width: 16.25rem;
}

.sp-nav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 100svh;
  overflow: scroll;
  background-color: #0070f4;
  padding: 6.25rem 0;
}
.sp-nav.is-active {
  display: block;
}

/* スクロールバー非表示 | ここから -------------- */
.sp-nav {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

.sp-nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
  /* スクロールバー非表示 | ここまで -------------- */
}

.sp-nav__inner {
  max-width: 31.25rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sp-nav__inner {
    padding-inline: 1.25rem;
    max-width: 23.4375rem;
  }
}

.sp-nav__logo {
  max-width: 31.25rem;
  width: 100%;
  margin-inline: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sp-nav__logo {
    max-width: 15.625rem;
  }
}

.sp-nav__logo-link {
  display: block;
  width: 100%;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .sp-nav__logo-link:hover {
    opacity: 0.6;
  }
}
.sp-nav__items {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sp-nav__items {
    margin-top: 3.125rem;
  }
}

.sp-nav__item:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sp-nav__item:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}

.sp-nav__item-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: max(1.25rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-transform: uppercase;
  padding-left: 1.875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sp-nav__item-link {
    gap: 0.3125rem;
    font-size: max(1rem, 12px);
    padding-left: 1.5625rem;
  }
}

.sp-nav__item-link::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  mask-image: url(../../assets/images/common/icon-hexagon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 1rem;
  aspect-ratio: 12/10;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sp-nav__item-link::before {
    width: 0.75rem;
  }
}

@media (any-hover: hover) {
  .sp-nav__item-link:hover {
    opacity: 0.6;
  }
}
.top-sub-menu {
  position: absolute;
  left: 3.125rem;
  top: 42.5%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .top-sub-menu {
    display: none;
  }
}

.lower-fv-menu {
  position: absolute;
  left: 3.125rem;
  bottom: 7.75rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lower-fv-menu {
    display: none;
  }
}

.interview-fv-menu {
  position: absolute;
  left: 3.125rem;
  bottom: 7.75rem;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .interview-fv-menu {
    display: none;
  }
}

.sub-menu {
  width: fit-content;
}

.sub-menu__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}

.sub-menu__item {
  width: 100%;
}

.sub-menu__link {
  position: relative;
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.075em;
  padding-left: 1.375rem;
  transition: all 0.3s;
}

.sub-menu__link::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  mask-image: url(../../assets/images/common/icon-hexagon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 0.75rem;
  aspect-ratio: 12/10;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .sub-menu__link:hover {
    color: #707070;
  }
  .sub-menu__link:hover::before {
    background-color: #707070;
  }
}
.slide-pagination-wrapper-service-cases {
  display: flex;
  justify-content: center;
  gap: 6.25rem;
  max-width: 40.625rem;
  width: 100%;
  margin-top: 5rem;
}
@media screen and (max-width: 1440px) {
  .slide-pagination-wrapper-service-cases {
    max-width: 34.375rem;
  }
}
@media screen and (max-width: 768px) {
  .slide-pagination-wrapper-service-cases {
    margin-top: 3.125rem;
    margin-inline: auto;
  }
}

/* ---------- Swiperのページャーと『次へ・前へ』ボタンの上下中央を揃える | ここから ---------- */
/* PC時にページャーと『次へ・前へ』ボタンの上下中央を揃える */
/* 注目カード */
.swiper-button-wrapper.mv__eye-parts-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.swiper-button-prev.mv__eye-parts-prev,
.swiper-button-next.mv__eye-parts-next {
  position: absolute;
  margin-top: initial;
}

/* ---------- Swiperのページャーと『次へ・前へ』ボタンの上下中央を揃える | ここまで ---------- */
/* ===== 事業内容 - 法人のお客様　施工例｜ ここから ===== */
.mv__eye-parts-prev,
.mv__eye-parts-next {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.9375rem;
  height: 0.5rem;
  transition: all 0.3s;
}

.mv__eye-parts-prev {
  top: -1.25rem;
}

.mv__eye-parts-next {
  top: auto;
  bottom: -1.25rem;
}

.mv__eye-parts-prev::after,
.mv__eye-parts-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  mask-image: url(../../assets/images/common/icon-arrow-03.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 0.9375rem;
  height: 0.5rem;
  transition: all 0.3s;
}

.mv__eye-parts-prev::after {
  transform: translate(-55%, -50%);
}

.mv__eye-parts-next::after {
  transform: translate(-45%, -50%) rotate(-180deg);
}

@media (any-hover: hover) {
  .mv__eye-parts-prev:hover::after,
  .mv__eye-parts-next:hover::after {
    background-color: #005de8;
  }
}
/* ===== 事業内容 - 法人のお客様　施工例｜ ここまで ===== */
/* ------------- 前へ次への矢印カスタマイズ ここまで ------------- */
.swiper-slide-active.mv__eye-parts-item {
  opacity: 1;
  pointer-events: none;
}

.top-benefit {
  position: relative;
  padding-block: 20.625rem 20rem;
}
@media screen and (max-width: 768px) {
  .top-benefit {
    padding-block: 7.5rem;
  }
}

.top-benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: background-color 0.3s ease;
}

.top-benefit[data-theme=work]::before {
  background-color: #6db41c;
}

.top-benefit[data-theme=life]::before {
  background-color: #f1cf00;
}

.top-benefit__head-wrap {
  display: grid;
  max-width: 70.9375rem;
  width: 100%;
  margin-inline: auto;
}

.top-benefit__head {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.top-benefit[data-theme=work] .top-benefit__head[data-theme=work],
.top-benefit[data-theme=life] .top-benefit__head[data-theme=life] {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .top-benefit__head-wrap {
    max-width: 33.75rem;
  }
}
.top-benefit__head-text {
  font-size: 1.25rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 2.8125rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .top-benefit__head-text {
    font-size: max(1rem, 12px);
    margin-top: 1.875rem;
  }
}

.top-benefit__head-text--work {
  color: #ffffff;
}

.top-benefit__head-text--life {
  color: #498800;
}

.top-benefit__head-deco {
  position: absolute;
  top: 0;
  left: calc(50% + 27.8125rem);
  width: 25.25rem;
  aspect-ratio: 404/512;
}
@media screen and (max-width: 768px) {
  .top-benefit__head-deco {
    top: 6.25rem;
    left: calc(50% + 18.75rem);
    width: 12.5rem;
  }
}

/* ---------- トグルスイッチ | ここから ---------- */
.toggle-switch {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}

.toggle-switch__body {
  position: relative;
  display: flex;
  box-sizing: border-box;
  max-width: 15rem;
  width: 100%;
  min-height: 5rem;
  padding: 0.3125rem;
  border: 1px solid #498800;
  border-radius: 100vmax;
  box-shadow: inset 0 0.3125rem 0.375rem rgba(0, 0, 0, 0.2), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
  --toggle-pad: 0.3125rem;
  --toggle-thumb-size: 4.375rem;
}
@media screen and (max-width: 768px) {
  .toggle-switch__body {
    border-width: 0.1875rem;
    --toggle-thumb-size: 3.75rem;
  }
}

.toggle-switch__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f1cf00;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.top-benefit[data-theme=life] .toggle-switch__body {
  border: 1px solid #f1cf00;
}

.top-benefit[data-theme=life] .toggle-switch__body::before {
  background-color: #6db41c;
}

.toggle-switch__thumb {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: var(--toggle-pad);
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: var(--toggle-thumb-size);
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  background-color: #f2f2f2;
  border: 0.125rem solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0.1875rem 0.1875rem 0.375rem rgb(255, 255, 255), 0.625rem 0.625rem 0.3125rem rgba(0, 0, 0, 0.16);
  transition: left 0.3s ease;
  z-index: 2;
}

.top-benefit[data-theme=work] .toggle-switch__thumb {
  left: calc(100% - var(--toggle-pad) - var(--toggle-thumb-size));
}

.toggle-switch__thumb-text {
  font-size: 1.5rem;
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #cecece;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .toggle-switch__thumb-text {
    font-size: 1.125rem;
  }
}

.toggle-switch__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  appearance: none;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 1.625rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.075em;
  white-space: nowrap;
  color: transparent;
  transition: color 0.3s;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .toggle-switch__btn {
    font-size: 1.25rem;
  }
}

.toggle-switch__btn-work {
  left: 0;
  justify-content: flex-start;
  padding-left: 1.5625rem;
}

.toggle-switch__btn-life {
  right: 0;
  justify-content: flex-end;
  padding-right: 1.5625rem;
}

.top-benefit[data-theme=work] .toggle-switch__btn {
  color: #5da71e;
}

.top-benefit[data-theme=life] .toggle-switch__btn {
  color: #f1c103;
}

.top-benefit[data-theme=work] .toggle-switch__btn-life {
  color: transparent;
}

.top-benefit[data-theme=life] .toggle-switch__btn-work {
  color: transparent;
}

.top-benefit__cards {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.top-benefit__cards-wrap {
  display: grid;
}

.top-benefit__cards--work,
.top-benefit__cards--life {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.top-benefit[data-theme=work] .top-benefit__cards--work,
.top-benefit[data-theme=life] .top-benefit__cards--life {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ---------- トグルスイッチ | ここまで ---------- */
/* ---------- カードスライダー | ここから ---------- */
.top-benefit__slide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  margin-top: 3.75rem;
}

.top-benefit__slide-card-wrapper {
  display: flex;
  gap: 1.25rem;
  padding-block: 0.9375rem 1.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-benefit__slide-card-wrapper {
    gap: 0.625rem;
  }
}

.top-benefit__slide-card-items {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-benefit__slide-card-items {
    gap: 0.625rem;
  }
}

.top-benefit__slide-card-items--left {
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}

/* 右から左へ */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.top-benefit__slide-card-items--right {
  animation: infinity-scroll-right 100s infinite linear 0.5s both;
}

/* 右から左へ */
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.top-benefit__slide-card-item {
  position: relative;
  background-color: #f2f2f2;
  border-radius: 1.25rem;
  filter: drop-shadow(0.625rem 0.625rem 0.9375rem rgba(0, 0, 0, 0.15));
  padding: 1.875rem 2.5rem;
  width: 28.125rem;
}
@media screen and (max-width: 768px) {
  .top-benefit__slide-card-item {
    width: 18.75rem;
    padding: 1.5625rem 1.25rem;
    border-radius: 0.625rem;
  }
}

.top-benefit__slide-card-label {
  position: absolute;
  top: -0.9375rem;
  left: 2.5rem;
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #171717;
  letter-spacing: 0.075em;
  border: 1px solid #171717;
  padding: 0.4375rem 0.625rem;
  border-radius: 100vmax;
}
@media screen and (max-width: 768px) {
  .top-benefit__slide-card-label {
    left: 1.875rem;
    font-size: max(0.75rem, 12px);
    padding: 0.3125rem 0.5rem;
  }
}

.top-benefit__slide-card-label--yellow {
  background-color: #f1cf00;
}

.top-benefit__slide-card-label--green {
  background-color: #6db41c;
}

.top-benefit__slide-card-title {
  font-size: 1.625rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .top-benefit__slide-card-title {
    font-size: max(1.25rem, 12px);
  }
}

.top-benefit__slide-card-text {
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #171717;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .top-benefit__slide-card-text {
    font-size: max(1rem, 12px);
    margin-top: 1.25rem;
  }
}

/* ---------- カードスライダー | ここまで ---------- */
.top-interview {
  padding-block: 8.125rem;
}
@media screen and (max-width: 768px) {
  .top-interview {
    padding-block: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .top-interview__inner.inner {
    max-width: 33.75rem;
  }
}

.top-interview__title {
  max-width: 48.125rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-interview__title {
    max-width: 18.75rem;
  }
}

.top-interview__head-text {
  font-size: 1.625rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #171717;
  line-height: 1.9230769231;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .top-interview__head-text {
    font-size: max(1rem, 12px);
  }
}

.top-interview__container {
  display: grid;
  grid-template-columns: 430fr 800fr;
  gap: clamp(2.5rem, -1.941rem + 5.26vw, 4.375rem); /* 40 ~ 70 | 1350 ~ 1920 */
  margin-top: 5rem;
}
@media screen and (max-width: 1440px) {
  .top-interview__container {
    grid-template-columns: 450fr 780fr;
    padding-bottom: 18.75rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__container {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    margin-top: 3.125rem;
    padding-bottom: 0;
  }
}

.top-interview__list {
  width: 100%;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .top-interview__list {
    max-width: 12.5rem;
    width: 100%;
    margin-inline: auto;
    margin-top: 0;
  }
}

.top-interview__list-text {
  font-size: 1.25rem;
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .top-interview__list-text {
    font-size: max(1rem, 12px);
  }
}

.top-interview__list-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.625rem; /* 上下の余白 */
  column-gap: 0.3125rem; /* 左右の余白 */
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .top-interview__list-items {
    column-gap: 0.4375rem; /* 左右の余白 */
  }
}

.top-interview__list-item {
  display: inline-block;
  background-color: #ffffff;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.top-interview__list-item img {
  mix-blend-mode: luminosity;
  transition: all 0.3s;
}

.top-interview__btn {
  display: inline-flex;
  align-items: flex-start;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-interview__btn {
    display: flex;
    align-items: center;
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .top-interview__info-wrapper {
    max-width: 20.9375rem;
    width: 100%;
    margin-inline: auto;
  }
}

.top-interview__info-item {
  position: relative;
  background-color: #f1cf00;
  filter: drop-shadow(0.625rem 0.625rem 0.9375rem rgba(0, 0, 0, 0.15));
  border-radius: 3.125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top-interview__info-item {
    border-radius: 1.25rem;
    filter: drop-shadow(0.3125rem 0.3125rem 0.5rem rgba(0, 0, 0, 0.15));
  }
}

.top-interview__info-item-wrapper {
  padding: 5.625rem 5rem;
}
@media screen and (max-width: 1440px) {
  .top-interview__info-item-wrapper {
    padding: 5.625rem 5rem 5.625rem 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-item-wrapper {
    padding: 1.5625rem 1.25rem 1.875rem;
  }
}

.top-interview__info-img {
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-interview__info-img {
    left: 50%;
    transform: translateX(-50%);
  }
}

.top-interview__info-img-01 {
  top: -2.3125rem;
  right: -18.625rem;
  max-width: 39.375rem;
}
@media screen and (max-width: 1440px) {
  .top-interview__info-img-01 {
    right: -16.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-01 {
    top: 0.625rem;
    right: auto;
    max-width: 12.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-01 img {
    mask-image: linear-gradient(180deg, #ffffff 0% 60%, transparent 80%);
    mask-size: 100% 90%;
    mask-repeat: no-repeat;
  }
}

.top-interview__info-img-02 {
  top: -2.3125rem;
  right: -12.5rem;
  max-width: 36.0625rem;
}
@media screen and (max-width: 1440px) {
  .top-interview__info-img-02 {
    right: -13.125rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-02 {
    top: 0.625rem;
    right: auto;
    max-width: 12.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-02 img {
    mask-image: linear-gradient(180deg, #ffffff 0% 60%, transparent 80%);
    mask-size: 100% 80%;
    mask-repeat: no-repeat;
  }
}

.top-interview__info-img-03 {
  top: -2.3125rem;
  right: 0;
  max-width: 14.1875rem;
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-03 {
    top: 0.625rem;
    right: auto;
    max-width: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-03 img {
    mask-image: linear-gradient(180deg, #ffffff 0% 60%, transparent 80%);
    mask-size: 100% 65%;
    mask-repeat: no-repeat;
  }
}

.top-interview__info-img-04 {
  top: -2.3125rem;
  right: -2.5rem;
  max-width: 16.9375rem;
}
@media screen and (max-width: 1440px) {
  .top-interview__info-img-04 {
    right: -0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-04 {
    top: 0.625rem;
    right: auto;
    max-width: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-04 img {
    mask-image: linear-gradient(180deg, #ffffff 0% 60%, transparent 80%);
    mask-size: 100% 78%;
    mask-repeat: no-repeat;
  }
}

.top-interview__info-img-05 {
  top: -4.375rem;
  right: -4.375rem;
  max-width: 17.0625rem;
}
@media screen and (max-width: 1440px) {
  .top-interview__info-img-05 {
    right: -3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-05 {
    top: 0.625rem;
    right: auto;
    max-width: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-05 img {
    mask-image: linear-gradient(180deg, #ffffff 0% 60%, transparent 80%);
    mask-size: 100% 78%;
    mask-repeat: no-repeat;
  }
}

.top-interview__info-img-06 {
  top: -2.3125rem;
  right: -11.875rem;
  max-width: 24.75rem;
}
@media screen and (max-width: 1440px) {
  .top-interview__info-img-06 {
    right: -10.625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-06 {
    top: 0.625rem;
    right: auto;
    left: 55%;
    max-width: 8.75rem;
  }
}
@media screen and (max-width: 768px) {
  .top-interview__info-img-06 img {
    mask-image: linear-gradient(180deg, #ffffff 0% 60%, transparent 80%);
    mask-size: 100% 78%;
    mask-repeat: no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .top-interview__info-text-wrapper {
    max-width: 13.75rem;
    width: 100%;
    margin-inline: auto;
    margin-top: 8.75rem;
  }
}

.top-interview__info-message {
  font-size: 4.375rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  line-height: 1.1428571429;
}
@media screen and (max-width: 768px) {
  .top-interview__info-message {
    font-size: 1.5rem;
  }
}

.top-interview__profile {
  display: flex;
  align-items: center;
  gap: 1.4375rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-interview__profile {
    margin-top: 1.25rem;
  }
}

.top-interview__profile-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.top-interview__profile-label {
  font-size: 1.25rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .top-interview__profile-label {
    font-size: max(1rem, 12px);
  }
}

.top-interview__profile-name {
  font-size: 2.5rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .top-interview__profile-name {
    font-size: 1.5rem;
  }
}

.top-interview__profile-hire {
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .top-interview__profile-hire {
    font-size: max(0.875rem, 12px);
  }
}

/* ---------- キャラクターのタブ切り替え | ここから ---------- */
.top-interview__info-item,
.top-interview__info-item {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.top-interview__list-item,
.top-interview__info-item {
  transition: all 0.3s;
}

.top-interview__list-item:not(.top-interview__list-item.is-active):hover {
  opacity: 0.8;
}

/* アクティブ状態: 表示する要素 */
.top-interview__info-item.is-active,
.top-interview__info-item.is-active {
  visibility: visible;
  height: auto;
  opacity: 1;
  overflow: visible;
}

/* タブボタンのアクティブ状態 */
.top-interview__list-item.is-active {
  background-color: #f1cf00;
}

.top-interview__list-item.is-active img {
  mix-blend-mode: normal;
}

.top-interview__list-item.is-active {
  pointer-events: none;
  cursor: none;
}

/* ---------- キャラクターのタブ切り替え | ここまで ---------- */
.top-interview-bg {
  height: 67.5rem;
}
@media screen and (max-width: 768px) {
  .top-interview-bg {
    height: 25rem;
  }
}

.top-interview-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.top-intro {
  position: relative;
  padding-block: 7.3125rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-intro {
    padding-block: 1.875rem;
  }
}

.top-intro__inner.inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-intro__inner.inner {
    max-width: 33.75rem;
  }
}

.top-intro__title {
  position: relative;
  left: 55%;
  transform: translateX(-50%);
  max-width: 23.875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-intro__title {
    width: 70%;
  }
}

.top-intro__text {
  position: relative;
  left: 49%;
  transform: translateX(-50%);
  max-width: 46.8125rem;
  width: 100%;
  margin-top: 6.0625rem;
}

.top-intro__employee-01 {
  position: absolute;
  top: 10.375rem;
  right: calc(50% + 21.3125rem);
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-intro__employee-01 {
    right: calc(50% + clamp(6.875rem, -5.909rem + 54.55vw, 12.5rem)); /* 110 ~ 200 | 375 ~ 540 */
    max-width: 8.125rem;
  }
}

.top-intro__employee-01,
.top-intro__employee-03,
.top-intro__employee-05 {
  animation: decoAnime01 1.5s steps(2, end) infinite;
}

@keyframes decoAnime01 {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.top-intro__employee-02,
.top-intro__employee-04 {
  animation: decoAnime02 1.5s steps(2, end) infinite;
}

@keyframes decoAnime02 {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.top-intro__employee-02 {
  position: absolute;
  top: 26.5625rem;
  right: calc(50% + 30.625rem);
  max-width: 26.625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-intro__employee-02 {
    right: calc(50% + 12.5rem);
    max-width: 15.625rem;
  }
}

.top-intro__employee-03 {
  position: absolute;
  top: 50rem;
  right: calc(50% + 27.5rem);
  max-width: 11.125rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-intro__employee-03 {
    right: calc(50% + 15.625rem);
    max-width: 6.25rem;
  }
}

.top-intro__employee-04 {
  position: absolute;
  top: 12.1875rem;
  left: calc(50% + 32.0625rem);
  max-width: 21.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-intro__employee-04 {
    top: 15rem;
    left: calc(50% + clamp(4.375rem, -8.409rem + 54.55vw, 10rem)); /* 70 ~ 160 | 375 ~ 540 */
    max-width: 11.25rem;
  }
}

.top-intro__employee-05 {
  position: absolute;
  top: 40.125rem;
  left: calc(50% + 27.375rem);
  max-width: 13.4375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-intro__employee-05 {
    top: 39.375rem;
    left: calc(50% + 16.875rem);
    max-width: 8.125rem;
  }
}

.top-number {
  padding-block: 4.0625rem 6.5625rem;
}
@media screen and (max-width: 768px) {
  .top-number {
    padding-block: 3.75rem;
  }
}

.top-number__inner.inner {
  max-width: 88.75rem;
}
@media screen and (max-width: 768px) {
  .top-number__inner.inner {
    padding-inline: 0;
  }
}

.top-number__title {
  max-width: 57rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-number__title {
    max-width: 18.75rem;
  }
}

.top-number__head-text {
  font-size: 1.625rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #171717;
  line-height: 1.9230769231;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 2.1875rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .top-number__head-text {
    font-size: max(1rem, 12px);
  }
}

.top-number__card-wrapper {
  position: relative;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .top-number__card-wrapper {
    max-width: 21.875rem;
    width: 100%;
    margin-inline: auto;
    margin-top: 10rem;
  }
}

.top-number__card-deco {
  position: absolute;
  top: -22.125rem;
  right: -1.0625rem;
  width: 14.0625rem;
  aspect-ratio: 225/425;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-number__card-deco {
    top: -9.375rem;
    right: 0;
    width: 8.125rem;
  }
}

.top-number__cards-01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-number__cards-01 {
    gap: 0.9375rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.top-number__cards-01.top-number__cards-01-top {
  padding-inline: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .top-number__cards-01.top-number__cards-01-top {
    padding-inline: 0.9375rem;
  }
}

.top-number__cards-02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-bottom: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .top-number__cards-02 {
    gap: 0.9375rem;
    margin-top: 0.9375rem;
    padding-bottom: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-number__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  filter: drop-shadow(0.625rem 0.625rem 0.9375rem rgba(0, 0, 0, 0.15));
  padding: 2.5rem 1.25rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-number__card {
    border-radius: 1.25rem;
    filter: drop-shadow(0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, 0.15));
    padding: 1.875rem 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .top-number__card-01 {
    max-width: 15rem;
    margin-inline: auto;
  }
}

.top-number__cards-01 .top-number__card:nth-child(odd) {
  background-color: #ffffff;
}

.top-number__cards-01 .top-number__card:nth-child(even) {
  background-color: #f1cf00;
}

.top-number__cards-02 .top-number__card:nth-child(odd) {
  background-color: #f1cf00;
}

.top-number__cards-02 .top-number__card:nth-child(even) {
  background-color: #ffffff;
}

.top-number__card-title {
  font-size: 1.625rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-number__card-title {
    font-size: max(1.125rem, 12px);
  }
}

.top-number__card:nth-child(odd) .top-number__card-title {
  color: #171717;
}

.top-number__card:nth-child(even) .top-number__card-title {
  color: #498800;
}

.top-number__card-img-size-01 {
  max-width: 18.75rem;
}

.top-number__card-img-size-02 {
  max-width: 22.3125rem;
}

.top-number__card-img-size-03 {
  max-width: 34.25rem;
}

.top-number__more {
  margin-top: 1.25rem;
  padding-inline: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .top-number__more {
    margin-top: 0.9375rem;
    padding-inline: 0.9375rem;
  }
}

.top-number__btn {
  margin-top: 4.0625rem;
}

/* ---------- アコーディオン展開エリア | ここから ---------- */
.top-number__more {
  overflow: clip;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s;
}

/* 開いた状態 */
.top-number__card-wrapper.is-open .top-number__more {
  opacity: 1;
}

/* ---------- アコーディオン展開エリア | ここまで ---------- */
/* ---------- OPEN / CLOSE ボタン | ここから ---------- */
.btn.btn-acc {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 15.625rem;
  background-color: #ffffff;
  border: 1px solid #498800;
  border-radius: 100vmax;
  padding-block: 1.25rem;
  padding-inline: 3.125rem 1.875rem;
  margin-inline: auto;
  text-align: center;
  transition: all 0.3s;
  filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 768px) {
  .btn.btn-acc {
    padding-inline: 0.625rem;
  }
}

.btn-text-acc {
  position: relative;
  display: inline-block;
  font-size: max(1.375rem, 12px);
  font-family: "Nunito Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #498800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  padding-right: 4.125rem;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .btn-text-acc {
    padding-right: 1.875rem;
  }
}

.btn-text-acc::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  width: 100%;
  mask-image: url(../../assets/images/common/icon-arrow-04.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #498800;
  width: 1rem;
  aspect-ratio: 16/15;
  transition: all 0.3s;
  z-index: 1;
}

.top-number__card-wrapper.is-open .btn-text-acc::before {
  transform: translateY(-50%) rotate(-90deg);
}

@media (any-hover: hover) {
  .btn.btn-acc:hover {
    background-color: #498800;
  }
  .btn.btn-acc:hover .btn-text-acc {
    color: #ffffff;
  }
  .btn.btn-acc:hover .btn-text-acc::before {
    background-color: #ffffff;
  }
}
/* ---------- OPEN / CLOSE ボタン | ここまで ---------- */
/* ---------- なみなみ背景 | ここから ---------- */
.wave-bg {
  --_mask-height-pc: 6.25rem;
  position: relative;
  /* なみなみ背景の余白 */
  margin-block: calc(var(--_mask-height-pc) * -1);
  padding-block: var(--_mask-height-pc);
  /* デコレーション背景 */
  background-image: url(../../assets/images/common/bg-deco-pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  /* 上の波 + 中央 + 下の波 */
  mask-image: url(../../assets/images/common/bg-wave-1920-top.webp), linear-gradient(#fff 0 0), url(../../assets/images/common/bg-wave-1920-bottom.webp);
  mask-size: 100% var(--_mask-height-pc), 100% calc(100% - var(--_mask-height-pc) * 2), 100% var(--_mask-height-pc);
  mask-repeat: repeat-x, no-repeat, repeat-x;
  mask-position: top center, center, bottom center;
}
@media screen and (max-width: 1100px) {
  .wave-bg {
    mask-image: url(../../assets/images/common/bg-wave-1100-top.webp), linear-gradient(#fff 0 0), url(../../assets/images/common/bg-wave-1100-bottom.webp);
  }
}
@media screen and (max-width: 768px) {
  .wave-bg {
    --_mask-height-sp: 3.125rem;
    margin-block: calc(var(--_mask-height-sp) * -1);
    padding-block: var(--_mask-height-sp);
    mask-image: url(../../assets/images/common/bg-wave-500-top.webp), linear-gradient(#fff 0 0), url(../../assets/images/common/bg-wave-500-bottom.webp);
    mask-size: 100% var(--_mask-height-sp), 100% calc(100% - var(--_mask-height-sp) * 2), 100% var(--_mask-height-sp);
    background-image: url(../../assets/images/common/bg-deco-sp.png);
  }
}

.wave-bg-footer {
  --_mask-height-pc: 6.25rem;
  position: relative;
  /* なみなみ背景の余白 */
  margin-top: calc(var(--_mask-height-pc) * -1);
  padding-top: var(--_mask-height-pc);
  padding-bottom: 3.125rem;
  /* デコレーション背景 */
  background-image: url(../../assets/images/common/bg-deco-pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  /* 上の波 + 中央 */
  mask-image: url(../../assets/images/common/bg-wave-1920-top.webp), linear-gradient(to bottom, transparent var(--_mask-height-pc), #fff 0);
  mask-size: 100% var(--_mask-height-pc), 100% 100%;
  mask-repeat: repeat-x, no-repeat;
  mask-position: top center, top center;
}
@media screen and (max-width: 1100px) {
  .wave-bg-footer {
    mask-image: url(../../assets/images/common/bg-wave-1100-top.webp), linear-gradient(to bottom, transparent var(--_mask-height-pc), #fff 0);
  }
}
@media screen and (max-width: 768px) {
  .wave-bg-footer {
    --_mask-height-sp: 3.125rem;
    margin-top: calc(var(--_mask-height-sp) * -1);
    padding-top: var(--_mask-height-sp);
    mask-image: url(../../assets/images/common/bg-wave-500-top.webp), linear-gradient(to bottom, transparent var(--_mask-height-sp), #fff 0);
    background-image: url(../../assets/images/common/bg-deco-sp.png);
  }
}

/* ---------- なみなみ背景 | ここまで ---------- */
/* ---------- なみなみ背景『wave-bg』が付与された要素（セクション）の上下に余白を追加する | ここから ---------- */
.wave-bg-mt-top {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .wave-bg-mt-top {
    margin-top: 2.5rem;
  }
}

.wave-bg-mt-bottom {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .wave-bg-mt-bottom {
    margin-bottom: 2.5rem;
  }
}

.wave-bg-mt-block {
  margin-block: 5rem;
}
@media screen and (max-width: 768px) {
  .wave-bg-mt-block {
    margin-top: 2.5rem;
  }
}

/* ---------- なみなみ背景『wave-bg』が付与された要素（セクション）の上下に余白を追加する | ここまで ---------- */
/* ------------------------ */
/* 固有のフォント設定 */
/* 共通パーツで設定すると不便な場合、こちらに設定する */
/* ------------------------ */
/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここから ---------- */
.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}

/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここまで ---------- */
/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 768px以下で改行 */
.br-768-less {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-768-less {
    display: block;
  }
}

/* 768px以上で改行 */
@media screen and (max-width: 768px) {
  .br-768-more {
    display: none;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここから ---------- */
/* PCのとき非表示 */
.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

/* SPのとき非表示 */
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここまで ---------- */
/* ---------- margin-topの設定 | ここから ---------- */
.mt-pc-1 {
  margin-top: 0.0625rem;
}

.mt-pc-2 {
  margin-top: 0.125rem;
}

.mt-pc-3 {
  margin-top: 0.1875rem;
}

.mt-pc-4 {
  margin-top: 0.25rem;
}

.mt-pc-5 {
  margin-top: 0.3125rem;
}

.mt-pc-6 {
  margin-top: 0.375rem;
}

.mt-pc-7 {
  margin-top: 0.4375rem;
}

.mt-pc-8 {
  margin-top: 0.5rem;
}

.mt-pc-9 {
  margin-top: 0.5625rem;
}

.mt-pc-10 {
  margin-top: 0.625rem;
}

.mt-pc-11 {
  margin-top: 0.6875rem;
}

.mt-pc-12 {
  margin-top: 0.75rem;
}

.mt-pc-13 {
  margin-top: 0.8125rem;
}

.mt-pc-14 {
  margin-top: 0.875rem;
}

.mt-pc-15 {
  margin-top: 0.9375rem;
}

.mt-pc-16 {
  margin-top: 1rem;
}

.mt-pc-17 {
  margin-top: 1.0625rem;
}

.mt-pc-18 {
  margin-top: 1.125rem;
}

.mt-pc-19 {
  margin-top: 1.1875rem;
}

.mt-pc-20 {
  margin-top: 1.25rem;
}

.mt-pc-21 {
  margin-top: 1.3125rem;
}

.mt-pc-22 {
  margin-top: 1.375rem;
}

.mt-pc-23 {
  margin-top: 1.4375rem;
}

.mt-pc-24 {
  margin-top: 1.5rem;
}

.mt-pc-25 {
  margin-top: 1.5625rem;
}

.mt-pc-26 {
  margin-top: 1.625rem;
}

.mt-pc-27 {
  margin-top: 1.6875rem;
}

.mt-pc-28 {
  margin-top: 1.75rem;
}

.mt-pc-29 {
  margin-top: 1.8125rem;
}

.mt-pc-30 {
  margin-top: 1.875rem;
}

.mt-pc-31 {
  margin-top: 1.9375rem;
}

.mt-pc-32 {
  margin-top: 2rem;
}

.mt-pc-33 {
  margin-top: 2.0625rem;
}

.mt-pc-34 {
  margin-top: 2.125rem;
}

.mt-pc-35 {
  margin-top: 2.1875rem;
}

.mt-pc-36 {
  margin-top: 2.25rem;
}

.mt-pc-37 {
  margin-top: 2.3125rem;
}

.mt-pc-38 {
  margin-top: 2.375rem;
}

.mt-pc-39 {
  margin-top: 2.4375rem;
}

.mt-pc-40 {
  margin-top: 2.5rem;
}

.mt-pc-41 {
  margin-top: 2.5625rem;
}

.mt-pc-42 {
  margin-top: 2.625rem;
}

.mt-pc-43 {
  margin-top: 2.6875rem;
}

.mt-pc-44 {
  margin-top: 2.75rem;
}

.mt-pc-45 {
  margin-top: 2.8125rem;
}

.mt-pc-46 {
  margin-top: 2.875rem;
}

.mt-pc-47 {
  margin-top: 2.9375rem;
}

.mt-pc-48 {
  margin-top: 3rem;
}

.mt-pc-49 {
  margin-top: 3.0625rem;
}

.mt-pc-50 {
  margin-top: 3.125rem;
}

.mt-pc-51 {
  margin-top: 3.1875rem;
}

.mt-pc-52 {
  margin-top: 3.25rem;
}

.mt-pc-53 {
  margin-top: 3.3125rem;
}

.mt-pc-54 {
  margin-top: 3.375rem;
}

.mt-pc-55 {
  margin-top: 3.4375rem;
}

.mt-pc-56 {
  margin-top: 3.5rem;
}

.mt-pc-57 {
  margin-top: 3.5625rem;
}

.mt-pc-58 {
  margin-top: 3.625rem;
}

.mt-pc-59 {
  margin-top: 3.6875rem;
}

.mt-pc-60 {
  margin-top: 3.75rem;
}

.mt-pc-61 {
  margin-top: 3.8125rem;
}

.mt-pc-62 {
  margin-top: 3.875rem;
}

.mt-pc-63 {
  margin-top: 3.9375rem;
}

.mt-pc-64 {
  margin-top: 4rem;
}

.mt-pc-65 {
  margin-top: 4.0625rem;
}

.mt-pc-66 {
  margin-top: 4.125rem;
}

.mt-pc-67 {
  margin-top: 4.1875rem;
}

.mt-pc-68 {
  margin-top: 4.25rem;
}

.mt-pc-69 {
  margin-top: 4.3125rem;
}

.mt-pc-70 {
  margin-top: 4.375rem;
}

.mt-pc-71 {
  margin-top: 4.4375rem;
}

.mt-pc-72 {
  margin-top: 4.5rem;
}

.mt-pc-73 {
  margin-top: 4.5625rem;
}

.mt-pc-74 {
  margin-top: 4.625rem;
}

.mt-pc-75 {
  margin-top: 4.6875rem;
}

.mt-pc-76 {
  margin-top: 4.75rem;
}

.mt-pc-77 {
  margin-top: 4.8125rem;
}

.mt-pc-78 {
  margin-top: 4.875rem;
}

.mt-pc-79 {
  margin-top: 4.9375rem;
}

.mt-pc-80 {
  margin-top: 5rem;
}

.mt-pc-81 {
  margin-top: 5.0625rem;
}

.mt-pc-82 {
  margin-top: 5.125rem;
}

.mt-pc-83 {
  margin-top: 5.1875rem;
}

.mt-pc-84 {
  margin-top: 5.25rem;
}

.mt-pc-85 {
  margin-top: 5.3125rem;
}

.mt-pc-86 {
  margin-top: 5.375rem;
}

.mt-pc-87 {
  margin-top: 5.4375rem;
}

.mt-pc-88 {
  margin-top: 5.5rem;
}

.mt-pc-89 {
  margin-top: 5.5625rem;
}

.mt-pc-90 {
  margin-top: 5.625rem;
}

.mt-pc-91 {
  margin-top: 5.6875rem;
}

.mt-pc-92 {
  margin-top: 5.75rem;
}

.mt-pc-93 {
  margin-top: 5.8125rem;
}

.mt-pc-94 {
  margin-top: 5.875rem;
}

.mt-pc-95 {
  margin-top: 5.9375rem;
}

.mt-pc-96 {
  margin-top: 6rem;
}

.mt-pc-97 {
  margin-top: 6.0625rem;
}

.mt-pc-98 {
  margin-top: 6.125rem;
}

.mt-pc-99 {
  margin-top: 6.1875rem;
}

.mt-pc-100 {
  margin-top: 6.25rem;
}

.mt-pc-101 {
  margin-top: 6.3125rem;
}

.mt-pc-102 {
  margin-top: 6.375rem;
}

.mt-pc-103 {
  margin-top: 6.4375rem;
}

.mt-pc-104 {
  margin-top: 6.5rem;
}

.mt-pc-105 {
  margin-top: 6.5625rem;
}

.mt-pc-106 {
  margin-top: 6.625rem;
}

.mt-pc-107 {
  margin-top: 6.6875rem;
}

.mt-pc-108 {
  margin-top: 6.75rem;
}

.mt-pc-109 {
  margin-top: 6.8125rem;
}

.mt-pc-110 {
  margin-top: 6.875rem;
}

.mt-pc-111 {
  margin-top: 6.9375rem;
}

.mt-pc-112 {
  margin-top: 7rem;
}

.mt-pc-113 {
  margin-top: 7.0625rem;
}

.mt-pc-114 {
  margin-top: 7.125rem;
}

.mt-pc-115 {
  margin-top: 7.1875rem;
}

.mt-pc-116 {
  margin-top: 7.25rem;
}

.mt-pc-117 {
  margin-top: 7.3125rem;
}

.mt-pc-118 {
  margin-top: 7.375rem;
}

.mt-pc-119 {
  margin-top: 7.4375rem;
}

.mt-pc-120 {
  margin-top: 7.5rem;
}

.mt-pc-121 {
  margin-top: 7.5625rem;
}

.mt-pc-122 {
  margin-top: 7.625rem;
}

.mt-pc-123 {
  margin-top: 7.6875rem;
}

.mt-pc-124 {
  margin-top: 7.75rem;
}

.mt-pc-125 {
  margin-top: 7.8125rem;
}

.mt-pc-126 {
  margin-top: 7.875rem;
}

.mt-pc-127 {
  margin-top: 7.9375rem;
}

.mt-pc-128 {
  margin-top: 8rem;
}

.mt-pc-129 {
  margin-top: 8.0625rem;
}

.mt-pc-130 {
  margin-top: 8.125rem;
}

.mt-pc-131 {
  margin-top: 8.1875rem;
}

.mt-pc-132 {
  margin-top: 8.25rem;
}

.mt-pc-133 {
  margin-top: 8.3125rem;
}

.mt-pc-134 {
  margin-top: 8.375rem;
}

.mt-pc-135 {
  margin-top: 8.4375rem;
}

.mt-pc-136 {
  margin-top: 8.5rem;
}

.mt-pc-137 {
  margin-top: 8.5625rem;
}

.mt-pc-138 {
  margin-top: 8.625rem;
}

.mt-pc-139 {
  margin-top: 8.6875rem;
}

.mt-pc-140 {
  margin-top: 8.75rem;
}

.mt-pc-141 {
  margin-top: 8.8125rem;
}

.mt-pc-142 {
  margin-top: 8.875rem;
}

.mt-pc-143 {
  margin-top: 8.9375rem;
}

.mt-pc-144 {
  margin-top: 9rem;
}

.mt-pc-145 {
  margin-top: 9.0625rem;
}

.mt-pc-146 {
  margin-top: 9.125rem;
}

.mt-pc-147 {
  margin-top: 9.1875rem;
}

.mt-pc-148 {
  margin-top: 9.25rem;
}

.mt-pc-149 {
  margin-top: 9.3125rem;
}

.mt-pc-150 {
  margin-top: 9.375rem;
}

.mt-pc-151 {
  margin-top: 9.4375rem;
}

.mt-pc-152 {
  margin-top: 9.5rem;
}

.mt-pc-153 {
  margin-top: 9.5625rem;
}

.mt-pc-154 {
  margin-top: 9.625rem;
}

.mt-pc-155 {
  margin-top: 9.6875rem;
}

.mt-pc-156 {
  margin-top: 9.75rem;
}

.mt-pc-157 {
  margin-top: 9.8125rem;
}

.mt-pc-158 {
  margin-top: 9.875rem;
}

.mt-pc-159 {
  margin-top: 9.9375rem;
}

.mt-pc-160 {
  margin-top: 10rem;
}

.mt-pc-161 {
  margin-top: 10.0625rem;
}

.mt-pc-162 {
  margin-top: 10.125rem;
}

.mt-pc-163 {
  margin-top: 10.1875rem;
}

.mt-pc-164 {
  margin-top: 10.25rem;
}

.mt-pc-165 {
  margin-top: 10.3125rem;
}

.mt-pc-166 {
  margin-top: 10.375rem;
}

.mt-pc-167 {
  margin-top: 10.4375rem;
}

.mt-pc-168 {
  margin-top: 10.5rem;
}

.mt-pc-169 {
  margin-top: 10.5625rem;
}

.mt-pc-170 {
  margin-top: 10.625rem;
}

.mt-pc-171 {
  margin-top: 10.6875rem;
}

.mt-pc-172 {
  margin-top: 10.75rem;
}

.mt-pc-173 {
  margin-top: 10.8125rem;
}

.mt-pc-174 {
  margin-top: 10.875rem;
}

.mt-pc-175 {
  margin-top: 10.9375rem;
}

.mt-pc-176 {
  margin-top: 11rem;
}

.mt-pc-177 {
  margin-top: 11.0625rem;
}

.mt-pc-178 {
  margin-top: 11.125rem;
}

.mt-pc-179 {
  margin-top: 11.1875rem;
}

.mt-pc-180 {
  margin-top: 11.25rem;
}

.mt-pc-181 {
  margin-top: 11.3125rem;
}

.mt-pc-182 {
  margin-top: 11.375rem;
}

.mt-pc-183 {
  margin-top: 11.4375rem;
}

.mt-pc-184 {
  margin-top: 11.5rem;
}

.mt-pc-185 {
  margin-top: 11.5625rem;
}

.mt-pc-186 {
  margin-top: 11.625rem;
}

.mt-pc-187 {
  margin-top: 11.6875rem;
}

.mt-pc-188 {
  margin-top: 11.75rem;
}

.mt-pc-189 {
  margin-top: 11.8125rem;
}

.mt-pc-190 {
  margin-top: 11.875rem;
}

.mt-pc-191 {
  margin-top: 11.9375rem;
}

.mt-pc-192 {
  margin-top: 12rem;
}

.mt-pc-193 {
  margin-top: 12.0625rem;
}

.mt-pc-194 {
  margin-top: 12.125rem;
}

.mt-pc-195 {
  margin-top: 12.1875rem;
}

.mt-pc-196 {
  margin-top: 12.25rem;
}

.mt-pc-197 {
  margin-top: 12.3125rem;
}

.mt-pc-198 {
  margin-top: 12.375rem;
}

.mt-pc-199 {
  margin-top: 12.4375rem;
}

.mt-pc-200 {
  margin-top: 12.5rem;
}

@media screen and (max-width: 768px) {
  .mt-sp-1 {
    margin-top: 0.0625rem;
  }
  .mt-sp-2 {
    margin-top: 0.125rem;
  }
  .mt-sp-3 {
    margin-top: 0.1875rem;
  }
  .mt-sp-4 {
    margin-top: 0.25rem;
  }
  .mt-sp-5 {
    margin-top: 0.3125rem;
  }
  .mt-sp-6 {
    margin-top: 0.375rem;
  }
  .mt-sp-7 {
    margin-top: 0.4375rem;
  }
  .mt-sp-8 {
    margin-top: 0.5rem;
  }
  .mt-sp-9 {
    margin-top: 0.5625rem;
  }
  .mt-sp-10 {
    margin-top: 0.625rem;
  }
  .mt-sp-11 {
    margin-top: 0.6875rem;
  }
  .mt-sp-12 {
    margin-top: 0.75rem;
  }
  .mt-sp-13 {
    margin-top: 0.8125rem;
  }
  .mt-sp-14 {
    margin-top: 0.875rem;
  }
  .mt-sp-15 {
    margin-top: 0.9375rem;
  }
  .mt-sp-16 {
    margin-top: 1rem;
  }
  .mt-sp-17 {
    margin-top: 1.0625rem;
  }
  .mt-sp-18 {
    margin-top: 1.125rem;
  }
  .mt-sp-19 {
    margin-top: 1.1875rem;
  }
  .mt-sp-20 {
    margin-top: 1.25rem;
  }
  .mt-sp-21 {
    margin-top: 1.3125rem;
  }
  .mt-sp-22 {
    margin-top: 1.375rem;
  }
  .mt-sp-23 {
    margin-top: 1.4375rem;
  }
  .mt-sp-24 {
    margin-top: 1.5rem;
  }
  .mt-sp-25 {
    margin-top: 1.5625rem;
  }
  .mt-sp-26 {
    margin-top: 1.625rem;
  }
  .mt-sp-27 {
    margin-top: 1.6875rem;
  }
  .mt-sp-28 {
    margin-top: 1.75rem;
  }
  .mt-sp-29 {
    margin-top: 1.8125rem;
  }
  .mt-sp-30 {
    margin-top: 1.875rem;
  }
  .mt-sp-31 {
    margin-top: 1.9375rem;
  }
  .mt-sp-32 {
    margin-top: 2rem;
  }
  .mt-sp-33 {
    margin-top: 2.0625rem;
  }
  .mt-sp-34 {
    margin-top: 2.125rem;
  }
  .mt-sp-35 {
    margin-top: 2.1875rem;
  }
  .mt-sp-36 {
    margin-top: 2.25rem;
  }
  .mt-sp-37 {
    margin-top: 2.3125rem;
  }
  .mt-sp-38 {
    margin-top: 2.375rem;
  }
  .mt-sp-39 {
    margin-top: 2.4375rem;
  }
  .mt-sp-40 {
    margin-top: 2.5rem;
  }
  .mt-sp-41 {
    margin-top: 2.5625rem;
  }
  .mt-sp-42 {
    margin-top: 2.625rem;
  }
  .mt-sp-43 {
    margin-top: 2.6875rem;
  }
  .mt-sp-44 {
    margin-top: 2.75rem;
  }
  .mt-sp-45 {
    margin-top: 2.8125rem;
  }
  .mt-sp-46 {
    margin-top: 2.875rem;
  }
  .mt-sp-47 {
    margin-top: 2.9375rem;
  }
  .mt-sp-48 {
    margin-top: 3rem;
  }
  .mt-sp-49 {
    margin-top: 3.0625rem;
  }
  .mt-sp-50 {
    margin-top: 3.125rem;
  }
  .mt-sp-51 {
    margin-top: 3.1875rem;
  }
  .mt-sp-52 {
    margin-top: 3.25rem;
  }
  .mt-sp-53 {
    margin-top: 3.3125rem;
  }
  .mt-sp-54 {
    margin-top: 3.375rem;
  }
  .mt-sp-55 {
    margin-top: 3.4375rem;
  }
  .mt-sp-56 {
    margin-top: 3.5rem;
  }
  .mt-sp-57 {
    margin-top: 3.5625rem;
  }
  .mt-sp-58 {
    margin-top: 3.625rem;
  }
  .mt-sp-59 {
    margin-top: 3.6875rem;
  }
  .mt-sp-60 {
    margin-top: 3.75rem;
  }
  .mt-sp-61 {
    margin-top: 3.8125rem;
  }
  .mt-sp-62 {
    margin-top: 3.875rem;
  }
  .mt-sp-63 {
    margin-top: 3.9375rem;
  }
  .mt-sp-64 {
    margin-top: 4rem;
  }
  .mt-sp-65 {
    margin-top: 4.0625rem;
  }
  .mt-sp-66 {
    margin-top: 4.125rem;
  }
  .mt-sp-67 {
    margin-top: 4.1875rem;
  }
  .mt-sp-68 {
    margin-top: 4.25rem;
  }
  .mt-sp-69 {
    margin-top: 4.3125rem;
  }
  .mt-sp-70 {
    margin-top: 4.375rem;
  }
  .mt-sp-71 {
    margin-top: 4.4375rem;
  }
  .mt-sp-72 {
    margin-top: 4.5rem;
  }
  .mt-sp-73 {
    margin-top: 4.5625rem;
  }
  .mt-sp-74 {
    margin-top: 4.625rem;
  }
  .mt-sp-75 {
    margin-top: 4.6875rem;
  }
  .mt-sp-76 {
    margin-top: 4.75rem;
  }
  .mt-sp-77 {
    margin-top: 4.8125rem;
  }
  .mt-sp-78 {
    margin-top: 4.875rem;
  }
  .mt-sp-79 {
    margin-top: 4.9375rem;
  }
  .mt-sp-80 {
    margin-top: 5rem;
  }
  .mt-sp-81 {
    margin-top: 5.0625rem;
  }
  .mt-sp-82 {
    margin-top: 5.125rem;
  }
  .mt-sp-83 {
    margin-top: 5.1875rem;
  }
  .mt-sp-84 {
    margin-top: 5.25rem;
  }
  .mt-sp-85 {
    margin-top: 5.3125rem;
  }
  .mt-sp-86 {
    margin-top: 5.375rem;
  }
  .mt-sp-87 {
    margin-top: 5.4375rem;
  }
  .mt-sp-88 {
    margin-top: 5.5rem;
  }
  .mt-sp-89 {
    margin-top: 5.5625rem;
  }
  .mt-sp-90 {
    margin-top: 5.625rem;
  }
  .mt-sp-91 {
    margin-top: 5.6875rem;
  }
  .mt-sp-92 {
    margin-top: 5.75rem;
  }
  .mt-sp-93 {
    margin-top: 5.8125rem;
  }
  .mt-sp-94 {
    margin-top: 5.875rem;
  }
  .mt-sp-95 {
    margin-top: 5.9375rem;
  }
  .mt-sp-96 {
    margin-top: 6rem;
  }
  .mt-sp-97 {
    margin-top: 6.0625rem;
  }
  .mt-sp-98 {
    margin-top: 6.125rem;
  }
  .mt-sp-99 {
    margin-top: 6.1875rem;
  }
  .mt-sp-100 {
    margin-top: 6.25rem;
  }
  .mt-sp-101 {
    margin-top: 6.3125rem;
  }
  .mt-sp-102 {
    margin-top: 6.375rem;
  }
  .mt-sp-103 {
    margin-top: 6.4375rem;
  }
  .mt-sp-104 {
    margin-top: 6.5rem;
  }
  .mt-sp-105 {
    margin-top: 6.5625rem;
  }
  .mt-sp-106 {
    margin-top: 6.625rem;
  }
  .mt-sp-107 {
    margin-top: 6.6875rem;
  }
  .mt-sp-108 {
    margin-top: 6.75rem;
  }
  .mt-sp-109 {
    margin-top: 6.8125rem;
  }
  .mt-sp-110 {
    margin-top: 6.875rem;
  }
  .mt-sp-111 {
    margin-top: 6.9375rem;
  }
  .mt-sp-112 {
    margin-top: 7rem;
  }
  .mt-sp-113 {
    margin-top: 7.0625rem;
  }
  .mt-sp-114 {
    margin-top: 7.125rem;
  }
  .mt-sp-115 {
    margin-top: 7.1875rem;
  }
  .mt-sp-116 {
    margin-top: 7.25rem;
  }
  .mt-sp-117 {
    margin-top: 7.3125rem;
  }
  .mt-sp-118 {
    margin-top: 7.375rem;
  }
  .mt-sp-119 {
    margin-top: 7.4375rem;
  }
  .mt-sp-120 {
    margin-top: 7.5rem;
  }
  .mt-sp-121 {
    margin-top: 7.5625rem;
  }
  .mt-sp-122 {
    margin-top: 7.625rem;
  }
  .mt-sp-123 {
    margin-top: 7.6875rem;
  }
  .mt-sp-124 {
    margin-top: 7.75rem;
  }
  .mt-sp-125 {
    margin-top: 7.8125rem;
  }
  .mt-sp-126 {
    margin-top: 7.875rem;
  }
  .mt-sp-127 {
    margin-top: 7.9375rem;
  }
  .mt-sp-128 {
    margin-top: 8rem;
  }
  .mt-sp-129 {
    margin-top: 8.0625rem;
  }
  .mt-sp-130 {
    margin-top: 8.125rem;
  }
  .mt-sp-131 {
    margin-top: 8.1875rem;
  }
  .mt-sp-132 {
    margin-top: 8.25rem;
  }
  .mt-sp-133 {
    margin-top: 8.3125rem;
  }
  .mt-sp-134 {
    margin-top: 8.375rem;
  }
  .mt-sp-135 {
    margin-top: 8.4375rem;
  }
  .mt-sp-136 {
    margin-top: 8.5rem;
  }
  .mt-sp-137 {
    margin-top: 8.5625rem;
  }
  .mt-sp-138 {
    margin-top: 8.625rem;
  }
  .mt-sp-139 {
    margin-top: 8.6875rem;
  }
  .mt-sp-140 {
    margin-top: 8.75rem;
  }
  .mt-sp-141 {
    margin-top: 8.8125rem;
  }
  .mt-sp-142 {
    margin-top: 8.875rem;
  }
  .mt-sp-143 {
    margin-top: 8.9375rem;
  }
  .mt-sp-144 {
    margin-top: 9rem;
  }
  .mt-sp-145 {
    margin-top: 9.0625rem;
  }
  .mt-sp-146 {
    margin-top: 9.125rem;
  }
  .mt-sp-147 {
    margin-top: 9.1875rem;
  }
  .mt-sp-148 {
    margin-top: 9.25rem;
  }
  .mt-sp-149 {
    margin-top: 9.3125rem;
  }
  .mt-sp-150 {
    margin-top: 9.375rem;
  }
  .mt-sp-151 {
    margin-top: 9.4375rem;
  }
  .mt-sp-152 {
    margin-top: 9.5rem;
  }
  .mt-sp-153 {
    margin-top: 9.5625rem;
  }
  .mt-sp-154 {
    margin-top: 9.625rem;
  }
  .mt-sp-155 {
    margin-top: 9.6875rem;
  }
  .mt-sp-156 {
    margin-top: 9.75rem;
  }
  .mt-sp-157 {
    margin-top: 9.8125rem;
  }
  .mt-sp-158 {
    margin-top: 9.875rem;
  }
  .mt-sp-159 {
    margin-top: 9.9375rem;
  }
  .mt-sp-160 {
    margin-top: 10rem;
  }
  .mt-sp-161 {
    margin-top: 10.0625rem;
  }
  .mt-sp-162 {
    margin-top: 10.125rem;
  }
  .mt-sp-163 {
    margin-top: 10.1875rem;
  }
  .mt-sp-164 {
    margin-top: 10.25rem;
  }
  .mt-sp-165 {
    margin-top: 10.3125rem;
  }
  .mt-sp-166 {
    margin-top: 10.375rem;
  }
  .mt-sp-167 {
    margin-top: 10.4375rem;
  }
  .mt-sp-168 {
    margin-top: 10.5rem;
  }
  .mt-sp-169 {
    margin-top: 10.5625rem;
  }
  .mt-sp-170 {
    margin-top: 10.625rem;
  }
  .mt-sp-171 {
    margin-top: 10.6875rem;
  }
  .mt-sp-172 {
    margin-top: 10.75rem;
  }
  .mt-sp-173 {
    margin-top: 10.8125rem;
  }
  .mt-sp-174 {
    margin-top: 10.875rem;
  }
  .mt-sp-175 {
    margin-top: 10.9375rem;
  }
  .mt-sp-176 {
    margin-top: 11rem;
  }
  .mt-sp-177 {
    margin-top: 11.0625rem;
  }
  .mt-sp-178 {
    margin-top: 11.125rem;
  }
  .mt-sp-179 {
    margin-top: 11.1875rem;
  }
  .mt-sp-180 {
    margin-top: 11.25rem;
  }
  .mt-sp-181 {
    margin-top: 11.3125rem;
  }
  .mt-sp-182 {
    margin-top: 11.375rem;
  }
  .mt-sp-183 {
    margin-top: 11.4375rem;
  }
  .mt-sp-184 {
    margin-top: 11.5rem;
  }
  .mt-sp-185 {
    margin-top: 11.5625rem;
  }
  .mt-sp-186 {
    margin-top: 11.625rem;
  }
  .mt-sp-187 {
    margin-top: 11.6875rem;
  }
  .mt-sp-188 {
    margin-top: 11.75rem;
  }
  .mt-sp-189 {
    margin-top: 11.8125rem;
  }
  .mt-sp-190 {
    margin-top: 11.875rem;
  }
  .mt-sp-191 {
    margin-top: 11.9375rem;
  }
  .mt-sp-192 {
    margin-top: 12rem;
  }
  .mt-sp-193 {
    margin-top: 12.0625rem;
  }
  .mt-sp-194 {
    margin-top: 12.125rem;
  }
  .mt-sp-195 {
    margin-top: 12.1875rem;
  }
  .mt-sp-196 {
    margin-top: 12.25rem;
  }
  .mt-sp-197 {
    margin-top: 12.3125rem;
  }
  .mt-sp-198 {
    margin-top: 12.375rem;
  }
  .mt-sp-199 {
    margin-top: 12.4375rem;
  }
  .mt-sp-200 {
    margin-top: 12.5rem;
  }
}
/* ---------- margin-topの設定 | ここまで ---------- */
/* ---------- スクリーンリーダーオンリー用の記述 | ここから ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- スクリーンリーダーオンリー用の記述 | ここまで ---------- */