@charset "UTF-8";
/* 装甲明朝 */
@font-face {
  font-display: swap;
  font-family: "Soukou Mincho";
  src: url("../../assets/fonts/SoukouMincho.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
html {
  font-size: 16px;
}
@media (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@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: #ffffff;
  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;
}

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: 90.625rem;
  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,
.js-mask--h {
  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,
.js-mask--h.is-open {
  animation: mask 0.5s linear forwards;
}

@keyframes mask {
  0% {
    mask-position: 200% 0%;
  }
  100% {
    mask-position: 0% 0%;
  }
}
/* ---------- 各セクションのマスクアニメーション（X軸方向） ここまで ----------------- */
/* ---------- 読み込み時のチラつき防止 | ここから ---------- */
.js-fade-op,
.js-pop-up,
.mv__anime-01,
.mv__anime-02,
.js-fadeIn-rights,
.js-fadeIn-right,
.js-fadeIn-ups-02 {
  opacity: 0;
}

/* ---------- 読み込み時のチラつき防止 | ここまで ---------- */
/* ---------- パララックスの指定 | ここから ---------- */
.js-parallax {
  overflow: hidden;
}
.js-parallax img {
  display: block;
  height: 110%;
  max-width: unset;
}

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

.js-mask-craftsman.is-open {
  animation: mask-y 1s linear forwards;
}

@keyframes mask-y {
  0% {
    mask-position: 0% 200%; /* 開始位置：下から */
  }
  100% {
    mask-position: 0% 0%; /* 終了位置：上までマスクを引き上げる */
  }
}
/* ---------- 各セクションのマスクアニメーション（Y軸方向） ここまで ----------------- */
.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: absolute;
  inset: 0;
  background-color: #1a1c1c;
  width: 100%;
  height: 100%;
  z-index: -10;
  --stripe-color: rgba(214, 223, 223, 0.12); /* 線の色 */
  --stripe-width: 1px; /* 線の太さ */
  --stripe-gap: 390px; /* 線の間隔 */
  --stripe-angle: -65deg; /* 傾き */
  background-image: repeating-linear-gradient(var(--stripe-angle), var(--stripe-color), var(--stripe-color) var(--stripe-width), transparent var(--stripe-width), transparent calc(var(--stripe-width) + var(--stripe-gap)));
  background-size: auto;
}

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

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

/* ----- ボタンタイプ共通設定 ここまで ----- */
/* ----- Back to List ボタン ここから ----- */
.btn.btn-01 {
  position: relative;
  width: fit-content;
  padding-block: 0.3125rem;
  text-align: center;
  border-bottom: 0.125rem solid #ffffff;
  transition: all 0.3s;
}

.btn__text-01 {
  position: relative;
  font-size: 1.25rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  padding-left: 2.5rem;
  transition: all 0.3s;
}

.btn__text-01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(-1, 1);
  width: 100%;
  mask-image: url(../../assets/images/common/icon-arrow-01.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 1.25rem;
  aspect-ratio: 20/14;
  transition: all 0.3s;
  z-index: 1;
}

@keyframes btn-01-arrow-move {
  0% {
    transform: translate(0, -50%) scale(-1, 1);
  }
  50% {
    transform: translate(-0.3125rem, -50%) scale(-1, 1);
  }
  100% {
    transform: translate(0, -50%) scale(-1, 1);
  }
}
@media (any-hover: hover) {
  .btn.btn-01:hover .btn__text-01 {
    letter-spacing: 0.05em;
  }
  .btn.btn-01:hover .btn__text-01::before {
    animation: btn-01-arrow-move 0.6s ease-in-out infinite;
  }
}
/* ----- Back to List ボタン ここまで ----- */
/* ----- View More ボタン ここから ----- */
.btn.btn-02 {
  position: relative;
  width: fit-content;
  padding-block: 0.3125rem;
  text-align: center;
  border-bottom: 0.125rem solid #ffffff;
  transition: all 0.3s;
  text-align: center;
}

.btn__text-02 {
  position: relative;
  font-size: 1.25rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  padding-right: 2.5rem;
  transition: all 0.3s;
}

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

@keyframes btn-02-arrow-move {
  0% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(0.3125rem, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@media (any-hover: hover) {
  .btn.btn-02:hover .btn__text-02 {
    letter-spacing: 0.05em;
  }
  .btn.btn-02:hover .btn__text-02::before {
    animation: btn-02-arrow-move 0.6s ease-in-out infinite;
  }
}
/* ----- View More ボタン ここまで ----- */
/* ---------- 『ENTRY』送信ボタン | ここから ---------- */
.btn.btn-entry {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 12.375rem;
  height: 100%;
  max-height: 3.125rem;
  background-color: #e5f31e;
  border: 1px solid #e5f31e;
  border-radius: 100vmax;
  padding: 0.9375rem 0.625rem;
  margin-inline: auto;
  text-align: center;
  transition: all 0.3s;
}

.btn-entry__submit {
  position: relative;
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #0f1010;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-style: italic;
  padding: 0;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .btn.btn-entry:hover {
    background-color: #0f1010;
  }
  .btn.btn-entry:hover .btn-entry__submit {
    color: #e5f31e;
  }
}
/* ---------- 『ENTRY』送信ボタン | ここまで ---------- */
/* ---------- 『ENTRY』aタグボタン | ここから ---------- */
.btn.btn-entry-02 {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 12.375rem;
  background-color: #e5f31e;
  border: 1px solid #e5f31e;
  border-radius: 100vmax;
  padding: 0.9375rem 0.625rem;
  margin-inline: auto;
  text-align: center;
  transition: all 0.3s;
}

.btn-entry-text-02 {
  position: relative;
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #0f1010;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-style: italic;
  padding: 0;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .btn.btn-entry-02:hover {
    background-color: #0f1010;
  }
  .btn.btn-entry-02:hover .btn-entry-text-02 {
    color: #e5f31e;
  }
}
/* ---------- 『ENTRY』aタグボタン | ここまで ---------- */
/* ----- マウスストーカーボタン ここから ----- */
/* ベース */
.js-mouse-stalker.btn-stalker {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 18.75rem;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}
@media (max-width: 1099px) {
  .js-mouse-stalker.btn-stalker .js-mouse-stalker.btn-stalker {
    display: none;
  }
}

/* active */
.js-mouse-stalker.btn-stalker.btn-stalker--active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: auto;
}

.btn-stalker-off {
  display: none;
}
@media screen and (max-width: 1099px) {
  .btn-stalker-off {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 18.75rem;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100vmax;
    backdrop-filter: blur(6px);
    border: 1px solid #707070;
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .btn-stalker-off {
    max-width: 12.5rem;
    margin-inline: auto;
  }
}

.btn-stalker-off.btn-stalker-off--shokunin {
  background-color: rgba(255, 255, 255, 0.3);
}

.btn-stalker__text,
.btn-stalker-off__text {
  position: relative;
  font-size: 1.875rem;
  color: #ffffff;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 2.125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn-stalker__text,
  .btn-stalker-off__text {
    font-size: 1.5rem;
    padding-bottom: 1.5625rem;
  }
}

.btn-stalker__text::before,
.btn-stalker-off__text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-01.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 1.25rem;
  aspect-ratio: 20/14;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .js-mouse-stalker.btn-stalker:hover,
  .btn-stalker-off:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
/* ----- マウスストーカーボタン ここまで ----- */
.entry {
  padding-block: 10.3125rem 12.5rem;
}
@media screen and (max-width: 768px) {
  .entry {
    padding-block: 0.625rem 6.25rem;
  }
}

.entry__inner.inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 768px) {
  .entry__inner.inner {
    max-width: 33.75rem;
    width: 100%;
    margin-inline: auto;
  }
}

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

.entry__form-wrapper {
  margin-top: 10.3125rem;
}
@media screen and (max-width: 768px) {
  .entry__form-wrapper {
    margin-top: 5rem;
  }
}

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

.entry-now {
  position: relative;
  aspect-ratio: 1920/1080;
  width: 100%;
  height: auto;
}

.entry-now__btn {
  display: none;
}
@media screen and (max-width: 1099px) {
  .entry-now__btn {
    display: block;
    position: absolute;
    top: 13.75rem; /* 20 ~ 140 | 375 ~ 768 */
    left: 50%;
    transform: translateX(-50%);
    max-width: 15.625rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .entry-now__btn {
    top: clamp(1.25rem, -5.906rem + 30.53vw, 8.75rem); /* 20 ~ 140 | 375 ~ 768 */
    max-width: 7.5rem;
  }
}

.entry-now__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.entry-now__bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.entry-now__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-entry.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.entry-now__title {
  position: absolute;
  bottom: 4.0625rem;
  left: 3.75rem;
  font-size: clamp(6.25rem, 1.239rem + 10.43vw, 13.75rem);
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #e5f31e;
  mix-blend-mode: screen;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .entry-now__title {
    font-size: clamp(2.188rem, -0.567rem + 11.6vw, 5rem);
    left: 0.625rem;
    bottom: 1.25rem;
  }
}

.footer {
  padding-block: 5.8125rem 2.8125rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-block: 3.75rem 2.5rem;
  }
}

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

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 3.75rem;
  }
}

.footer__left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3.125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__left {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}

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

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

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.6;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__info-box {
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer__info-box {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1.25rem, 12px);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .footer__info {
    text-align: left;
    font-size: max(0.75rem, 12px);
  }
}

.footer__contact-btn {
  width: 15.625rem;
  margin-inline: auto;
}

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

.footer__tel-link {
  display: inline-block;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1.25rem, 12px);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.075em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__tel-link {
    text-align: left;
    font-size: max(0.75rem, 12px);
  }
}

@media (any-hover: hover) {
  .footer__tel-link:hover {
    opacity: 0.6;
  }
}
.footer__right {
  padding-block-start: 0.375rem;
}
@media screen and (max-width: 768px) {
  .footer__right {
    padding-block-start: 0;
    width: 100%;
  }
}

.footer__image {
  width: min(100%, 34.375rem);
  margin-inline-start: auto;
}
@media screen and (max-width: 768px) {
  .footer__image {
    width: min(100%, 15.375rem);
    margin-inline: auto;
  }
}

.footer__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__nav-wrap {
  margin-block-start: 7.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.0625rem solid #202020;
}
@media screen and (max-width: 768px) {
  .footer__nav-wrap {
    margin-block-start: 3.125rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav {
    width: 100%;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: clamp(1.438rem, 0.473rem + 1.06vw, 1.75rem); /* 23 ~ 28 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 1.25rem;
    max-width: 14.375rem;
    margin-inline: auto;
  }
}

.footer__nav-item-link {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  width: max-content;
  margin-inline: auto;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__nav-item-link {
    text-align: center;
  }
}

@media (any-hover: hover) {
  .footer__nav-item-link:hover {
    opacity: 0.6;
  }
}
.footer__nav-item-link-en {
  font-size: max(0.875rem, 12px);
  font-weight: 600;
  font-style: italic;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  letter-spacing: 0.075em;
  text-transform: capitalize;
}

.footer__nav-item-link-en.footer__nav-item-link-en-co {
  position: relative;
  padding-right: 1.5625rem;
}

.footer__nav-item-link-en.footer__nav-item-link-en-co::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 1rem;
  aspect-ratio: 1/1;
}

.footer__nav-item-link-ja {
  display: block;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.075em;
}

.footer__copyright {
  font-size: max(0.75rem, 12px);
  font-weight: 300;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  letter-spacing: 0.075em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    text-align: center;
  }
}

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

.form__label-text {
  display: inline-block;
  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;
  color: #ffffff;
  letter-spacing: 0.075em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .form__label-text {
    font-size: max(1rem, 12px);
  }
}

.form__required {
  display: inline-block;
  font-size: 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: #1a1c1c;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  background-color: #e5f31e;
  border-radius: 100vmax;
  padding: 0.46875rem 0.9375rem;
  margin-left: 0.625rem;
}

.form__note {
  display: inline-block;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.075em;
  line-height: 1;
  margin-left: 0.625rem;
}

.form__data {
  width: 100%;
  margin-top: 1.25rem;
}

.form__data.form__data--privacy {
  position: relative;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .form__data.form__data--privacy {
    padding: 0.9375rem;
  }
}

.form__field {
  position: relative;
  padding: 0.9375rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .form__field {
    padding: 0.9375rem;
  }
}

.form__field.form__field--checkbox-list {
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .form__field.form__field--checkbox-list {
    padding: 0.9375rem;
  }
}

.form__field::before,
.form__data--privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 28, 28, 0.5);
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}

/* ---------- フォーム共通設定 | ここから ---------- */
.form__input,
.form__select,
.form__textarea {
  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: #1a1c1c;
  letter-spacing: 0.075em;
  line-height: 1.8888888889;
  padding: 0.375rem 1.25rem;
  width: 100%;
  border-radius: 0.1875rem;
  border: 1px solid #707070;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__select,
  .form__textarea {
    font-size: max(1rem, 12px);
    padding: 0.3125rem 0.5rem;
  }
}

.form__input:focus,
.form__textarea:focus {
  border: 1px solid #e5f31e;
}

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

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

.form__select-wrap {
  position: relative;
}

.form__select-wrap::before {
  content: "";
  position: absolute;
  right: 2.8125rem;
  top: 35%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: solid 2px #1a1c1c;
  border-right: solid 2px #1a1c1c;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .form__select-wrap::before {
    right: 2.1875rem;
  }
}

.form__select-wrap {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0.625rem;
}

.form__select-wrap--year {
  max-width: 11.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__select-wrap--year {
    max-width: 6.25rem;
  }
}

.form__select-wrap--month,
.form__select-wrap--day {
  max-width: 9.6875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__select-wrap--month,
  .form__select-wrap--day {
    max-width: 5.625rem;
  }
}

.form__birthday-unit {
  margin-left: 0.5rem;
  margin-top: 0.75rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8888888889;
  letter-spacing: 0.075em;
}

.form__checkbox-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.875rem; /* 左右の余白 */
  row-gap: 0.3125rem; /* 上下の余白 */
}
@media screen and (max-width: 768px) {
  .form__checkbox-list {
    column-gap: 1.25rem; /* 左右の余白 */
    row-gap: 1.25rem; /* 上下の余白 */
  }
}

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

.form__checkbox-label {
  position: relative;
  padding-left: 1.75rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8888888889;
  letter-spacing: 0.075em;
}

.form__checkbox-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  transform: translateY(-50%);
  border-radius: 0.1875rem;
  border: 1px solid #707070;
  background-color: #ffffff;
  transition: 0.3s ease;
}

.form__checkbox-input:checked + .form__checkbox-label::after {
  content: "";
  position: absolute;
  top: 0.8125rem;
  left: 0.25rem;
  transform: rotate(-45deg);
  width: 0.75rem;
  height: 0.5rem;
  border-left: 2px solid #1a1c1c;
  border-bottom: 2px solid #1a1c1c;
}

/* プレースホルダー */
::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(26, 28, 28, 0.3);
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  ::placeholder {
    font-size: max(1rem, 12px);
  }
}

/* ---------- フォーム共通設定 | ここまで ---------- */
/* ---------- チェックボックス（共通） | ここから ---------- */
.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
}

.wpcf7-list-item:nth-child(n+2) {
  margin-top: 0.1875rem;
}

.wpcf7-list-item-label {
  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: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-list-item-label {
    font-size: max(1rem, 12px);
  }
}

/* チェックボックス */
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: solid 1px #707070;
  background-color: #ffffff;
  border-radius: 0.1875rem;
  transition: 0.3s ease;
}

/* チェックマーク */
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.8125rem;
  left: 0.25rem;
  transform: rotate(-45deg);
  width: 0.75rem;
  height: 0.5rem;
  border-left: 2px solid #1a1c1c;
  border-bottom: 2px solid #1a1c1c;
  opacity: 0;
}

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

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.1875rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  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: #ffffff;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  border: none;
}
@media screen and (max-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: max(1rem, 12px);
  }
}

/* ---------- チェックボックス（共通） | ここまで ---------- */
/* ---------- プライバシーポリシー | ここから ---------- */
.form__privacy-text,
.form__checkbox-label {
  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: 400;
  color: #ffffff;
  letter-spacing: 0.075em;
  line-height: 1.8888888889;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .form__privacy-text,
  .form__checkbox-label {
    font-size: max(1rem, 12px);
  }
}

.form__privacy-text-link {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .form__privacy-text-link:hover {
    opacity: 0.6;
  }
}
/* ---------- プライバシーポリシー | ここまで ---------- */
/* ---------- エラー時のプレースフォルダー | ここから ---------- */
.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: #e5f31e;
  letter-spacing: 0.1em;
  line-height: 2;
  background-color: rgba(201, 72, 0, 0.2);
  border: 1px solid #cb1f2c;
}
@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(203, 31, 44, 0.6);
}

.wpcf7-not-valid-tip {
  display: block;
  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;
  color: #cb1f2c;
  letter-spacing: 0.1em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: max(0.875rem, 12px);
  }
}

/* ---------- エラー時のプレースフォルダー | ここまで ---------- */
@media screen and (max-width: 768px) {
  .hamburger {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e5f31e;
    border-radius: 0.3125rem;
    transition: all 0.3s;
    z-index: 10;
  }
}

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

@media (any-hover: hover) {
  .hamburger:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .hamburger span:first-child {
    top: 30%;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    top: 50%;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    top: 70%;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .hamburger__open-btn.is-active {
    display: none;
  }
}

.header {
  background-color: rgba(15, 16, 16, 0.8);
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1.875rem 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0.625rem 0;
  }
}

/* スクロールするとヘッダーの色が変化する */
.header.headerChange {
  background-color: #0f1010;
  box-shadow: 0px 3px 5px 0px rgba(15, 16, 16, 0.6);
  padding: 0.46875rem 0;
}
.header__inner {
  position: relative;
  display: grid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  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-inline: 1.25rem;
  }
}

.header__inner.headerChange {
  align-items: center;
}

.header__logo-link {
  display: block;
  max-width: 20.0625rem;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    width: 11.25rem;
  }
}

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

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
.header__drawer {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__drawer {
    display: block;
  }
}

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

.interview-detail {
  position: relative;
  padding-block: 11.875rem 12.5rem;
}
@media screen and (max-width: 768px) {
  .interview-detail {
    padding-block: 6.25rem 6.25rem;
  }
}

@media screen and (max-width: 768px) {
  .interview-detail__inner.inner {
    max-width: 31.25rem;
    width: 100%;
    margin-inline: auto;
  }
}

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

@media screen and (max-width: 768px) {
  .interview-detail__block.interview-detail__block--reverse {
    flex-direction: column-reverse;
  }
}

.interview-detail__block:not(:first-child) {
  margin-block-start: 9.375rem;
}
@media screen and (max-width: 768px) {
  .interview-detail__block:not(:first-child) {
    margin-block-start: 6.25rem;
  }
}

.interview-detail__text-area {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .interview-detail__text-area {
    width: 100%;
  }
}

.interview-detail__text-area.interview-detail__text-area--left {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .interview-detail__text-area.interview-detail__text-area--left {
    width: 100%;
  }
}

.interview-detail__text-container {
  margin-block-start: 10.9375rem;
}
@media screen and (max-width: 768px) {
  .interview-detail__text-container {
    margin-block-start: 5rem;
  }
}

.interview-detail__title {
  font-size: 2.25rem;
  font-family: "Soukou Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.3888888889;
  letter-spacing: 0.075em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .interview-detail__title {
    font-size: 1.25rem;
  }
}

.interview-detail__text {
  margin-block-start: 1.875rem;
  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: #ffffff;
  line-height: 1.8888888889;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .interview-detail__text {
    margin-block-start: 1.5rem;
    font-size: max(0.875rem, 12px);
  }
}

.interview-detail__image {
  width: 42.8571428571%;
}
@media screen and (max-width: 768px) {
  .interview-detail__image {
    width: 100%;
  }
}

.interview-detail__image.interview-detail__image--right {
  width: 27.8571428571%;
}
@media screen and (max-width: 768px) {
  .interview-detail__image.interview-detail__image--right {
    width: 70%;
  }
}

.interview-detail__image img {
  aspect-ratio: 600/400;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.interview-detail__image.interview-detail__image--right img {
  aspect-ratio: 390/520;
}

.interview-detail__image-outer-wrap {
  margin-block-start: 9.375rem;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .interview-detail__image-outer-wrap {
    margin-block-start: 6.25rem;
  }
}

.interview-detail__image-outer {
  position: relative;
  left: -0.9375rem;
  max-width: 109.375rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .interview-detail__image-outer {
    left: 0;
    padding-inline: 0;
  }
}

.interview-detail__image-outer::before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: 2.5rem;
  background: transparent linear-gradient(250deg, #1a1c1c 0%, #cb1f2c 66%, #cb1f2c 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
  width: calc(100% - 2.5rem);
  height: 100%;
  z-index: -1;
  clip-path: polygon(25.56% 0%, 100% 0%, 83.5% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .interview-detail__image-outer::before {
    bottom: -1.25rem;
    left: 1.875rem;
    width: calc(100% - 1.25rem);
    clip-path: polygon(25.56% 0%, 100% 0%, 83% 100%, 0% 100%);
  }
}

.interview-detail.interview-detail--metal .interview-detail__image-outer::before {
  background: transparent linear-gradient(246deg, #1a1c1c 0%, #cb1f2c 74%, #cb1f2c 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--wall .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #cb8f2b 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--equipment .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #3397c5 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--paint .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #c4275d 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--waterproof .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #cb2c84 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--exterior .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #923e8a 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--carpenter .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #93b844 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--light .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #299f9a 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--insulation .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #276697 100%) 0% 0% no-repeat padding-box;
}

.interview-detail.interview-detail--solar .interview-detail__image-outer::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #3e409f 100%) 0% 0% no-repeat padding-box;
}

.interview-detail__image-outer img {
  aspect-ratio: 1700/600;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.interview-detail__btn {
  margin-block-start: 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .interview-detail__btn {
    margin-block-start: 3.75rem;
  }
}

.interview {
  padding-block: 8.125rem 13.75rem;
}
@media screen and (max-width: 768px) {
  .interview {
    padding-block: 3rem 8.125rem;
  }
}

.interview__title {
  font-size: 3.75rem;
  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;
  letter-spacing: 0.075em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .interview__title {
    font-size: 1.25rem;
  }
}

.interview__title em {
  font-size: 5rem;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .interview__title em {
    font-size: max(2rem, 12px);
  }
}

.interview__text {
  margin-block-start: 2rem;
  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: 700;
  line-height: 2.3076923077;
  letter-spacing: 0.075em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .interview__text {
    font-size: max(0.875rem, 12px);
    line-height: 2.4285714286;
  }
}

.interview__card-list {
  margin-block-start: 9.0625rem;
  display: grid;
  gap: 7.3125rem;
}
@media screen and (max-width: 768px) {
  .interview__card-list {
    margin-block-start: 6.25rem;
    gap: 6.25rem;
  }
}

.interview__card {
  display: flex;
  align-items: center;
  gap: 1.4285714286%;
}
@media screen and (max-width: 768px) {
  .interview__card {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.interview__card:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .interview__card:nth-child(even) {
    flex-direction: column;
  }
}

.interview__card-image {
  position: relative;
  aspect-ratio: 785/350;
  width: 56.0714285714%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .interview__card-image {
    width: min(100%, 28.125rem);
    margin-block-start: -1.25rem;
  }
}

.interview__card-image::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 1.25rem;
  width: 100%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(22.9% 0%, 100% 0%, 79% 100%, 0% 100%);
  mix-blend-mode: soft-light;
}
@media screen and (max-width: 768px) {
  .interview__card-image::before {
    bottom: -0.9375rem;
    left: 0.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .interview__card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0, 0, 0), rgba(255, 255, 255, 0) 50%);
    mix-blend-mode: multiply;
    opacity: 0.5;
    z-index: 0;
    clip-path: polygon(20% 0%, 100% 0%, 79% 100%, 0% 100%);
  }
}

/* 板金 */
.interview__card-image.interview__card-image--metal::before {
  background: transparent linear-gradient(246deg, #1a1c1c 0%, #cb1f2c 74%, #cb1f2c 100%) 0% 0% no-repeat padding-box;
}

/* 外壁 */
.interview__card-image.interview__card-image--wall::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #cb8f2b 100%) 0% 0% no-repeat padding-box;
}

/* 住宅設備 */
.interview__card-image.interview__card-image--equipment::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #3397c5 100%) 0% 0% no-repeat padding-box;
}

.interview__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview__card-content {
  position: relative;
  z-index: 1;
  width: 41.7857142857%;
}
@media screen and (max-width: 768px) {
  .interview__card-content {
    width: min(100%, 18.75rem);
  }
}

.interview__card-label {
  position: relative;
  left: 0.75rem;
  display: inline-block;
  padding-block: 0.625rem;
  padding-inline: 1rem;
  font-family: "Soukou Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .interview__card-label {
    left: 0.375rem;
    font-size: max(0.875rem, 12px);
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
  }
}

.interview__card-label::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: skew(-25deg);
}

/* 板金 */
.interview__card-label.interview__card-label--metal::before {
  background: #cb1f2c;
}

/* 外壁 */
.interview__card-label.interview__card-label--wall::before {
  background: #cb8f2b;
}

/* 住宅設備 */
.interview__card-label.interview__card-label--equipment::before {
  background: #3397c5;
}

.interview__card-title {
  margin-block-start: 0.5rem;
  font-family: "Soukou Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .interview__card-title {
    margin-block-start: 0.75rem;
    font-size: max(1rem, 12px);
    line-height: 1.75;
  }
}

.interview__card-name-wrapper {
  margin-top: 1.875rem;
}

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

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

.interview__card-name-en {
  margin-block-start: 0.25rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #ffffff;
  text-transform: uppercase;
}

.interview__btn {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .interview__btn {
    margin-top: 1.875rem;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  min-height: 100lvh;
  z-index: 1000;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  background-color: #0f1010;
}

.loading__img {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.loading__img.is-active {
  opacity: 1;
}

.loading-fadeout {
  opacity: 0;
}

.loading-hidden {
  display: none;
}

.loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 26.625rem;
  width: 100%;
  aspect-ratio: 426/576;
}
@media screen and (max-width: 768px) {
  .loading__logo {
    width: 80%;
  }
}

.loading__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loading__img {
  width: 100%;
  height: 100lvh;
  min-height: 100lvh;
}

.loading__img img {
  width: 100%;
  height: 100%;
  height: 100lvh;
  min-height: 100lvh;
  object-fit: cover;
}

.loading__img-01 {
  opacity: 1;
}

.lower-fv {
  position: relative;
  --container-max: 1400px;
  --viewport-width: 100vw;
  --side-space: max(1.5625rem, calc((var(--viewport-width) - var(--container-max)) / 2));
}
@media screen and (max-width: 768px) {
  .lower-fv {
    padding-top: 5rem;
  }
}

.lower-fv__inner.lower-fv__inner--interview {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}

.lower-fv__content {
  --_title: 335px;
  --_diff: 366px;
  --_image: 700px;
  display: grid;
  grid-template-columns: var(--side-space) minmax(auto, var(--_title)) minmax(auto, var(--_diff)) minmax(auto, var(--_image)) var(--side-space);
  grid-template-rows: 1fr;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lower-fv__content {
    --_gutter: 20px;
    --_content-width: 500px;
    --_template-columns: minmax(var(--_gutter), 1fr) minmax(auto, var(--_content-width)) minmax(var(--_gutter), 1fr);
    grid-template: ". title . " ". image image "/var(--_template-columns);
    width: 100%;
  }
}

.lower-fv__content.lower-fv__content--interview {
  --_gutter: clamp(1.563rem, -37.981rem + 45.192vw, 16.25rem);
  --_title: 290px;
  --_diff: 410px;
  --_image: 700px;
  grid-template-columns: var(--_gutter) minmax(auto, var(--_title)) minmax(auto, var(--_diff)) minmax(auto, var(--_image)) var(--_gutter);
}
@media screen and (max-width: 768px) {
  .lower-fv__content.lower-fv__content--interview {
    grid-template: ". title . " ". image image "/var(--_template-columns);
    max-width: 30rem;
    margin-inline: auto;
  }
}

.lower-fv__content.lower-fv__content--detail {
  --_title: 290px;
  --_diff: 410px;
  --_image: 700px;
  --side-space: max(1.5625rem, calc((var(--viewport-width) - var(--container-max)) / 2));
  grid-template-columns: var(--side-space) minmax(auto, var(--_title)) minmax(auto, var(--_diff)) minmax(auto, var(--_image)) var(--side-space);
}
@media screen and (max-width: 768px) {
  .lower-fv__content.lower-fv__content--detail {
    grid-template: ". title . " ". image image "/var(--_template-columns);
    width: 100%;
  }
}

.lower-fv__text-area {
  padding-block-start: 6.25rem;
  position: relative;
  z-index: 1;
  grid-area: 1/2/2/4;
}
@media screen and (max-width: 768px) {
  .lower-fv__text-area {
    padding-block-start: 0;
    grid-area: title;
  }
}

.lower-fv__text-area.lower-fv__text-area--interview {
  padding-block-start: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .lower-fv__text-area.lower-fv__text-area--interview {
    padding-block-start: 0;
  }
}

.lower-fv__text-area.lower-fv__text-area--detail {
  padding-block-start: clamp(6.25rem, -2.163rem + 9.62vw, 9.375rem);
  padding-block-start: 9.375rem;
}
@media screen and (max-width: 768px) {
  .lower-fv__text-area.lower-fv__text-area--detail {
    padding-block-start: 0;
  }
}

.lower-fv__badge {
  position: relative;
  left: 0.9375rem;
  z-index: 1;
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 1rem;
  font-family: "Soukou Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .lower-fv__badge {
    left: 0.4375rem;
    font-size: 12px;
    padding-block: 0.375rem;
    padding-inline: 0.75rem;
  }
}

.lower-fv__badge::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skewX(-25deg);
  background-color: #cb1f2c;
}

.lower-fv.lower-fv--metal .lower-fv__badge::before {
  background-color: #cb1f2c;
}

.lower-fv.lower-fv--roof .lower-fv__badge::before {
  background-color: #c4ba0d;
}

.lower-fv.lower-fv--wall .lower-fv__badge::before {
  background-color: #cb8f2b;
}

.lower-fv.lower-fv--paint .lower-fv__badge::before {
  background-color: #c4275d;
}

.lower-fv.lower-fv--waterproof .lower-fv__badge::before {
  background-color: #cb2c84;
}

.lower-fv.lower-fv--exterior .lower-fv__badge::before {
  background-color: #923e8a;
}

.lower-fv.lower-fv--carpenter .lower-fv__badge::before {
  background-color: #93b844;
}

.lower-fv.lower-fv--mason .lower-fv__badge::before {
  background-color: #3b9262;
}

.lower-fv.lower-fv--light .lower-fv__badge::before {
  background-color: #299f9a;
}

.lower-fv.lower-fv--equipment .lower-fv__badge::before {
  background-color: #3397c5;
}

.lower-fv.lower-fv--insulation .lower-fv__badge::before {
  background-color: #276697;
}

.lower-fv.lower-fv--solar .lower-fv__badge::before {
  background-color: #3e409f;
}

.lower-fv__title {
  font-family: "Soukou Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #ffffff;
  font-size: 6.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .lower-fv__title {
    font-size: 2rem;
  }
}

.lower-fv__title-image {
  width: min(100%, 37.5rem);
}
@media screen and (max-width: 768px) {
  .lower-fv__title-image {
    width: min(100%, 18.75rem);
  }
}

.lower-fv__title-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lower-fv__subtitle {
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .lower-fv__subtitle {
    font-size: max(1rem, 12px);
  }
}

.lower-fv__title.lower-fv__title--detail {
  margin-block-start: 1.25rem;
  font-size: 5rem;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .lower-fv__title.lower-fv__title--detail {
    margin-block-start: 0.625rem;
    font-size: max(2rem, 12px);
  }
}

.lower-fv__title-text {
  display: block;
}

.lower-fv__name-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .lower-fv__name-wrap {
    gap: 0.375rem;
    margin-block-start: 1.25rem;
  }
}

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

.lower-fv__name.lower-fv__name--small {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .lower-fv__name.lower-fv__name--small {
    font-size: max(1rem, 12px);
  }
}

.lower-fv__name-en {
  font-size: 12px;
  font-weight: 700;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.lower-fv__image-area {
  position: relative;
  grid-area: 1/3/2/6;
}
@media screen and (max-width: 768px) {
  .lower-fv__image-area {
    grid-area: image;
    top: -4.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .lower-fv__image-area.lower-fv__image-area--interview {
    top: -0.625rem;
  }
}

.lower-fv__image {
  position: relative;
  aspect-ratio: 1325/650;
  width: 100%;
  height: auto;
}

.lower-fv__image.lower-fv__image--detail {
  aspect-ratio: 1370/750;
  max-width: unset;
  width: 100%;
}

.lower-fv__image.lower-fv__image-interview {
  aspect-ratio: 1117/750;
  max-width: 69.8125rem;
  width: 100%;
  margin-inline-start: auto;
  right: -5.625rem;
}
@media screen and (max-width: 768px) {
  .lower-fv__image.lower-fv__image-interview {
    right: -2.5rem;
  }
}

.lower-fv__image::before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: 2.5rem;
  background: transparent linear-gradient(234deg, #d6d6d6 0%, #000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
  width: calc(100% - 2.5rem);
  height: 100%;
  z-index: -1;
  clip-path: polygon(22.9% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .lower-fv__image::before {
    bottom: -1.25rem;
    left: 1.25rem;
    width: calc(100% - 1.25rem);
  }
}

.lower-fv__image::after {
  content: "";
  position: absolute;
  inset: 0 0 -1px -1px;
  background: linear-gradient(90deg, rgb(0, 0, 0), rgba(255, 255, 255, 0) 50%);
  opacity: 1;
  z-index: 0;
  clip-path: polygon(22.9% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.lower-fv__image.lower-fv__image-interview::before {
  bottom: -1.875rem;
  left: 1.875rem;
  width: calc(100% - 0rem);
  clip-path: polygon(38% 0%, 100% 0%, 68% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .lower-fv__image.lower-fv__image-interview::before {
    bottom: -0.9375rem;
    left: 0.9375rem;
  }
}

.lower-fv__image.lower-fv__image-interview::after {
  clip-path: polygon(31.4% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.lower-fv__image.lower-fv__image--detail::before {
  content: "";
  bottom: -2.5rem;
  left: 2.5rem;
  opacity: 1;
  width: calc(100% - 2.5rem);
  height: 100%;
  z-index: -1;
  clip-path: polygon(25.56% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .lower-fv__image.lower-fv__image--detail::before {
    bottom: -1.25rem;
    left: 1.25rem;
    width: calc(100% - 1.25rem);
  }
}

.lower-fv__image.lower-fv__image--detail::after {
  background: linear-gradient(90deg, rgb(0, 0, 0), rgba(255, 255, 255, 0) 50%);
  mix-blend-mode: multiply;
  opacity: 1;
  clip-path: polygon(25.56% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.lower-fv.lower-fv--metal .lower-fv__image::before {
  background: transparent linear-gradient(246deg, #1a1c1c 0%, #cb1f2c 74%, #cb1f2c 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--wall .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #cb8f2b 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--equipment .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #3397c5 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--paint .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #c4275d 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--waterproof .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #cb2c84 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--exterior .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #923e8a 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--carpenter .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #93b844 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--light .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #299f9a 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--insulation .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #276697 100%) 0% 0% no-repeat padding-box;
}

.lower-fv.lower-fv--solar .lower-fv__image::before {
  background: transparent linear-gradient(239deg, #1a1c1c 0%, #3e409f 100%) 0% 0% no-repeat padding-box;
}

.lower-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv {
  position: relative;
  height: 100svh;
  max-height: 67.5rem;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-block: 1.25rem;
  }
}

.mv__inner {
  position: relative;
  max-width: 115.9375rem;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.mv__title-wrapper {
  position: absolute;
  bottom: 5rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv__title-wrapper {
    bottom: auto;
    top: 60%;
    transform: translateY(-50%);
    left: 0.625rem;
  }
}

.mv__title {
  max-width: 41.25rem;
  width: 100%;
  filter: drop-shadow(0 0 10px #0f1010);
}
@media screen and (max-width: 768px) {
  .mv__title {
    max-width: 25rem;
    width: 80%;
    z-index: 1;
  }
}

.mv__title img {
  height: 46dvh;
  max-height: 31.25rem;
  object-fit: contain;
  object-position: left center;
}
@media screen and (max-width: 768px) {
  .mv__title img {
    height: auto;
    object-position: center;
  }
}

.mv__text {
  font-size: 1.375rem;
  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;
  line-height: 1.5454545455;
  letter-spacing: 0.075em;
  margin-top: 3.125rem;
  padding-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .mv__text {
    font-size: max(1rem, 12px);
    padding-left: 0.9375rem;
  }
}

.mv__img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv__img-sp {
    display: block;
    position: absolute;
    top: 7.5rem;
    right: 0;
    width: 125%;
  }
}

.mv__img-wrapper {
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  right: 0;
  max-width: 73.0208333333vw;
  width: 100%;
  height: calc(100% - 2.5rem);
  aspect-ratio: 1402/1040;
}
@media screen and (max-width: 1920px) {
  .mv__img-wrapper {
    max-width: 87.625rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__img-wrapper {
    display: none;
  }
}

.mv__img {
  height: 100%;
}

.mv__img-01 {
  position: absolute;
  top: 0;
  left: 0;
  mask-image: url("../../assets/images/top/mv-mask-01.webp");
  mask-size: cover;
  mask-repeat: no-repeat;
  max-width: 45.2083333333vw;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  .mv__img-01 {
    max-width: 54.25rem;
  }
}

.mv__img-02 {
  position: absolute;
  top: 0;
  left: 20.2083333333vw;
  mask-image: url("../../assets/images/top/mv-mask-01.webp");
  mask-size: cover;
  mask-repeat: no-repeat;
  max-width: 45.2083333333vw;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  .mv__img-02 {
    left: 24.25rem;
    max-width: 54.25rem;
  }
}

.mv__img-03 {
  position: absolute;
  top: 0;
  right: 0;
  mask-image: url("../../assets/images/top/mv-mask-02.webp");
  mask-size: cover;
  mask-repeat: no-repeat;
  max-width: 32.6041666667vw;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  .mv__img-03 {
    max-width: 39.125rem;
  }
}

.mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  opacity: 0;
}

.pc-nav__items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-nav__item {
  position: relative;
}

.pc-nav__item-dropdown:hover .pc-nav__dropdown {
  opacity: 1;
  visibility: visible;
}

@media (any-hover: hover) {
  .pc-nav__dropdown-link:hover {
    background-color: #707070;
  }
}
.pc-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #202020;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border: 1px solid #ffffff;
  width: max-content;
  transition: all 0.3s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.pc-nav__dropdown-item {
  transition: all 0.3s;
  width: 100%;
}

.pc-nav__dropdown-link {
  display: block;
  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: 400;
  color: #ffffff;
  padding: 0.625rem 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.pc-nav__item-dropdown:hover .pc-nav__dropdown {
  opacity: 1;
  visibility: visible;
}

@media (any-hover: hover) {
  .pc-nav__dropdown-link:hover {
    background-color: #707070;
  }
}
.pc-nav__item.pc-nav__item-entry {
  min-width: 12.375rem;
  width: 100%;
  margin-left: 1.5625rem;
}

.pc-nav__item-link {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  padding-inline: 1.5625rem;
  padding-block: 0.625rem;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 1440px) {
  .pc-nav__item-link {
    padding-inline: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .pc-nav__item-link:hover {
    opacity: 0.6;
  }
}
.pc-nav__item-link-en {
  font-size: max(1.125rem, 12px);
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.075em;
  text-transform: capitalize;
  font-style: italic;
  white-space: nowrap;
}

.pc-nav__item-link-en.pc-nav__item-link-en-co {
  position: relative;
  padding-right: 1.6875rem;
}

.pc-nav__item-link-en.pc-nav__item-link-en-co::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 1.125rem;
  aspect-ratio: 1/1;
}

.pc-nav__item-link-ja {
  font-size: 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: #ffffff;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.recruitinfo {
  padding-block: 11.25rem 12.5rem;
}
@media screen and (max-width: 768px) {
  .recruitinfo {
    padding-block: 0.625rem 6.25rem;
  }
}

@media screen and (max-width: 768px) {
  .recruitinfo__inner {
    width: min(100%, 31.25rem);
    margin-inline: auto;
  }
}

.recruitinfo__container {
  display: flex;
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .recruitinfo__container {
    flex-direction: column;
    gap: 3.75rem;
  }
}

.recruitinfo__sidebar {
  flex-shrink: 0;
  inline-size: min(100%, 16.25rem);
}
@media screen and (max-width: 768px) {
  .recruitinfo__sidebar {
    inline-size: 100%;
  }
}

.recruitinfo__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.125rem;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .recruitinfo__nav {
    border-top: none;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 0.625rem;
  }
}

.recruitinfo__tab {
  position: relative;
  padding-block: 1.1rem;
  padding-inline: 2.125rem 0.625rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.075em;
  text-align: start;
  cursor: pointer;
  border-bottom: 1px solid #707070;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .recruitinfo__tab {
    padding-block: 1rem;
    padding-inline: 1.25rem;
    font-size: max(0.875rem, 12px);
    text-align: center;
  }
}

.recruitinfo__tab::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skew(-25deg);
  left: 0.8125rem;
  width: 0.3125rem;
  height: 1.25rem;
  background-color: #c4ba0d;
}

.recruitinfo__tab.is-active {
  pointer-events: none;
}

/* 瓦屋根 */
.recruitinfo__tab.recruitinfo__tab--roof::before {
  background-color: #c4ba0d;
}

/* 外壁 */
.recruitinfo__tab.recruitinfo__tab--wall::before {
  background-color: #cb8f2b;
}

/* 板金 */
.recruitinfo__tab.recruitinfo__tab--metal::before {
  background-color: #cb1f2c;
}

/* 塗装 */
.recruitinfo__tab.recruitinfo__tab--paint::before {
  background-color: #c4275d;
}

/* 防水 */
.recruitinfo__tab.recruitinfo__tab--waterproof::before {
  background-color: #cb2c84;
}

/* エクステリア */
.recruitinfo__tab.recruitinfo__tab--exterior::before {
  background-color: #923e8a;
}

/* 大工 */
.recruitinfo__tab.recruitinfo__tab--carpenter::before {
  background-color: #93b844;
}

/* 左官 */
.recruitinfo__tab.recruitinfo__tab--mason::before {
  background-color: #3b9262;
}

/* 軽天 */
.recruitinfo__tab.recruitinfo__tab--light::before {
  background-color: #299f9a;
}

/* 住宅設備 */
.recruitinfo__tab.recruitinfo__tab--equipment::before {
  background-color: #3397c5;
}

/* 断熱施工 */
.recruitinfo__tab.recruitinfo__tab--insulation::before {
  background-color: #276697;
}

/* 太陽光 */
.recruitinfo__tab.recruitinfo__tab--solar::before {
  background-color: #3e409f;
}

@media (any-hover: hover) {
  .recruitinfo__tab:hover {
    opacity: 0.7;
  }
}
.recruitinfo__content-area {
  flex-grow: 1;
}

.recruitinfo__panel {
  display: none;
}

.recruitinfo__panel.is-active {
  display: block;
  height: 100%;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.recruitinfo__panel-title {
  position: relative;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #ffffff;
  padding-inline-start: 2.5rem;
}
@media screen and (max-width: 768px) {
  .recruitinfo__panel-title {
    font-size: max(1.375rem, 12px);
    padding-inline-start: 1.875rem;
  }
}

.recruitinfo__panel-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skew(-25deg);
  left: 0.5rem;
  width: 0.375rem;
  height: 2.5rem;
  background-color: #c4ba0d;
}
@media screen and (max-width: 768px) {
  .recruitinfo__panel-title::before {
    left: 0.5rem;
    width: 0.3125rem;
    height: 1.875rem;
  }
}

/* 瓦屋根 */
.recruitinfo__panel-title.recruitinfo__panel-title--roof::before {
  background-color: #c4ba0d;
}

/* 外壁 */
.recruitinfo__panel-title.recruitinfo__panel-title--wall::before {
  background-color: #cb8f2b;
}

/* 板金 */
.recruitinfo__panel-title.recruitinfo__panel-title--metal::before {
  background-color: #cb1f2c;
}

/* 塗装 */
.recruitinfo__panel-title.recruitinfo__panel-title--paint::before {
  background-color: #c4275d;
}

/* 防水 */
.recruitinfo__panel-title.recruitinfo__panel-title--waterproof::before {
  background-color: #cb2c84;
}

/* エクステリア */
.recruitinfo__panel-title.recruitinfo__panel-title--exterior::before {
  background-color: #923e8a;
}

/* 大工 */
.recruitinfo__panel-title.recruitinfo__panel-title--carpenter::before {
  background-color: #93b844;
}

/* 左官 */
.recruitinfo__panel-title.recruitinfo__panel-title--mason::before {
  background-color: #3b9262;
}

/* 軽天 */
.recruitinfo__panel-title.recruitinfo__panel-title--light::before {
  background-color: #299f9a;
}

/* 住宅設備 */
.recruitinfo__panel-title.recruitinfo__panel-title--equipment::before {
  background-color: #3397c5;
}

/* 断熱施工 */
.recruitinfo__panel-title.recruitinfo__panel-title--insulation::before {
  background-color: #276697;
}

/* 太陽光 */
.recruitinfo__panel-title.recruitinfo__panel-title--solar::before {
  background-color: #3e409f;
}

.recruitinfo__panel-content {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .recruitinfo__panel-content {
    margin-top: 1.25rem;
  }
}

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

.recruitinfo__list {
  margin-top: 0.625rem;
}

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

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

.recruitinfo__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: #ffffff;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
}
@media screen and (max-width: 768px) {
  .recruitinfo__term {
    font-size: max(1rem, 12px);
    line-height: 1.3;
  }
}

.recruitinfo__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: #ffffff;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
}
@media screen and (max-width: 768px) {
  .recruitinfo__desc-text {
    font-size: max(1rem, 12px);
    line-height: 1.875;
  }
}

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

.recruitinfo__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: #ffffff;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
}
@media screen and (max-width: 768px) {
  .recruitinfo__desc-item {
    font-size: max(1rem, 12px);
  }
}

.slide-img {
  width: 100%;
  overflow: hidden;
}

.slide-img.fv-top-interview__slide-img {
  height: 16.875rem;
}

/* 右から左へ */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-img__wrapper {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 0.3125rem;
  height: 100%;
}

.slide-img__items.slide-img__items-top-interview {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.slide-img__items-top-interview.slide-img__items--left {
  animation: infinity-scroll-left 90s infinite linear 0.5s both;
}

.slide-img__item.slide-img__item-top-interview {
  position: relative;
  width: 30rem;
  background-color: #1a1c1c;
}
@media screen and (max-width: 768px) {
  .slide-img__item.slide-img__item-top-interview {
    width: 12.5rem;
  }
}

.slide-img__item.slide-img__item-top-interview img {
  aspect-ratio: 480/270;
  object-fit: cover;
  opacity: 0.6;
  filter: blur(2px);
}

.slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.slide-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide-text.top-interview__slide-text {
  height: 17.5625rem;
}
@media screen and (max-width: 768px) {
  .slide-text.top-interview__slide-text {
    height: 8.1875rem;
  }
}

.slide-text.top-skill__slide-text {
  height: 13.5625rem;
}
@media screen and (max-width: 768px) {
  .slide-text.top-skill__slide-text {
    height: 4.8125rem;
  }
}

.slide-text__wrapper {
  display: flex;
  overflow: hidden;
  align-items: center;
}

.slide-text__items {
  display: flex;
  align-items: center;
}

.slide-text__items--left {
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}

/* 右から左へ */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-text__item {
  position: relative;
  width: 100%;
}
.slide-text__item.slide-text__item-top-interview,
.slide-text__item.slide-text__item-top-recruit {
  width: 201.375rem;
  margin-left: 6.25rem;
}
@media screen and (max-width: 768px) {
  .slide-text__item.slide-text__item-top-interview,
  .slide-text__item.slide-text__item-top-recruit {
    width: 93.75rem;
    margin-left: 3.125rem;
  }
}

.slide-text__item.slide-text__item-top-skill {
  width: 123.4375rem;
  margin-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .slide-text__item.slide-text__item-top-skill {
    width: 43.75rem;
    margin-left: 1.875rem;
  }
}

.slide-text.slide-text-top-mv .slide-text__item img {
  mix-blend-mode: color-burn;
}

.sp-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-nav {
    display: none;
    position: absolute;
    top: -0.625rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    overflow: scroll;
    background-color: #0f1010;
    padding: 6.25rem 0;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav.is-active {
    display: block;
  }
}

/* スクロールバー非表示 | ここから -------------- */
@media screen and (max-width: 768px) {
  .sp-nav {
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
}

@media screen and (max-width: 768px) {
  .sp-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari 対応 */
    /* スクロールバー非表示 | ここまで -------------- */
  }
}

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

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

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

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

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

@media screen and (max-width: 768px) {
  .sp-nav__item-link {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    width: max-content;
    margin-inline: auto;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .sp-nav__item-link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .sp-nav__item-link-en {
    font-size: max(1rem, 12px);
    font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.075em;
    text-transform: capitalize;
    font-style: italic;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__item-link-en.sp-nav__item-link-en-co {
    position: relative;
    padding-right: 1.5625rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__item-link-en.sp-nav__item-link-en-co::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    mask-image: url(../../assets/images/common/icon-arrow-02.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: #ffffff;
    width: 1rem;
    aspect-ratio: 1/1;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__item-link-ja {
    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: 400;
    color: #ffffff;
    letter-spacing: 0.075em;
  }
}

.top-concept {
  position: relative;
  height: 100lvh;
  min-height: 100lvh;
  overflow: hidden;
  background-color: #1a1c1c;
}

.top-concept__pin {
  height: 100lvh;
  min-height: 100lvh;
  position: relative;
}

.top-concept__pin-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100lvh;
  min-height: 100lvh;
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

.top-concept__pin-section.is-active {
  opacity: 1;
}

.top-concept__pin-section-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100lvh;
  min-height: 100lvh;
  z-index: -5;
}
@media screen and (max-width: 768px) {
  .top-concept__pin-section-img {
    opacity: 0.8;
  }
}

.top-concept__pin-section-img img {
  width: max-content;
  height: 100lvh;
  object-fit: cover;
}

.top-concept__inner {
  position: relative;
  width: 100%;
  max-width: 93.75vw;
  height: 100%;
  padding-inline: 1.3020833333vw;
  margin-inline: auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top-concept__inner {
    padding-inline: 0;
  }
}

.top-concept__text-wrapper {
  margin-top: 11.9375rem;
}
@media screen and (max-width: 768px) {
  .top-concept__text-wrapper {
    margin-top: 6.25rem;
  }
}

.top-concept__title {
  width: 100%;
  max-width: 52.125rem;
}
@media screen and (max-width: 768px) {
  .top-concept__title {
    max-width: 21.875rem;
  }
}

.top-concept__title img {
  height: 23dvh;
  max-height: 15.625rem;
  object-fit: contain;
  object-position: left center;
}
@media screen and (max-width: 768px) {
  .top-concept__title img {
    height: auto;
    object-position: center;
  }
}

.top-concept__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: 400;
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.075em;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .top-concept__text {
    font-size: max(1rem, 12px);
    margin-top: 2.5rem;
  }
}

.top-concept__btn {
  display: none;
}
@media screen and (max-width: 1099px) {
  .top-concept__btn {
    display: block;
    position: absolute;
    bottom: 3.125rem;
    right: 3.125rem;
    max-width: 15.625rem;
    width: 100%;
    z-index: 11;
  }
}
@media screen and (max-width: 768px) {
  .top-concept__btn {
    right: auto;
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 11.25rem;
    text-align: center;
  }
}

.top-interview {
  position: relative;
  margin-top: 8.75rem;
  padding-block: 16.375rem 26.875rem;
}
@media screen and (max-width: 768px) {
  .top-interview {
    margin-top: 0;
    padding-block: 9.375rem 23.75rem;
  }
}

.top-interview__inner.inner {
  position: relative;
  max-width: 83.125rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-interview__inner.inner {
    max-width: 33.75rem;
  }
}

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

.top-interview__btn {
  margin-top: 4.375rem;
  text-align: center;
}

.top-interview__main-img {
  position: absolute;
  top: 1.875rem;
  right: -9.375rem;
  width: 67.5rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-interview__main-img {
    top: 20rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 23.75rem;
  }
}

.top-interview__slide-text.slide-text {
  top: -3.75rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-interview__slide-text.slide-text {
    top: 0;
  }
}

.top-interview__slide-img {
  position: absolute;
  top: 28.4375rem;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .top-interview__slide-img {
    top: 31.25rem;
  }
}

.top-recruit__btn-wrapper {
  position: relative;
  padding-block: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn-wrapper {
    padding-block: 1.875rem;
  }
}

.top-recruit__btn-wrapper::before,
.top-recruit__btn-wrapper::after {
  content: "";
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 55.7%;
  height: 20rem;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn-wrapper::before,
  .top-recruit__btn-wrapper::after {
    height: 7.5rem;
  }
}

.top-recruit__btn-wrapper::before {
  background-image: url(../../assets/images/top/deco-green.webp);
  top: 0;
  left: -2.125rem;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn-wrapper::before {
    left: -1.25rem;
  }
}

.top-recruit__btn-wrapper::after {
  background-image: url(../../assets/images/top/deco-blue.webp);
  bottom: 0;
  right: 2.125rem;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn-wrapper::after {
    right: 1.25rem;
  }
}

.top-recruit__btn {
  position: relative;
  max-width: 57.5rem;
  width: 100%;
  aspect-ratio: 920/320;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn {
    max-width: 25rem;
    width: 89.3%;
  }
}

.top-recruit__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/top/btn-recruitment.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  will-change: filter, opacity;
  z-index: -1;
}

@media (any-hover: hover) {
  .top-recruit__btn:hover::before {
    filter: brightness(1.1) drop-shadow(0 0 0.5rem #ffffff);
  }
}
.top-recruit__btn-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  will-change: filter, opacity;
}

@media (any-hover: hover) {
  .top-recruit__btn-link:hover {
    filter: brightness(1.1) drop-shadow(0 0 0.5rem #ffffff);
  }
}
.top-recruit__btn-link-text-ja {
  display: inline-block;
  font-size: 3.75rem;
  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;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn-link-text-ja {
    font-size: 2.25rem;
  }
}

.top-recruit__btn-link-text-en {
  display: inline-block;
  font-size: 1.5rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn-link-text-en {
    font-size: 1.125rem;
  }
}

.top-recruit__main-img-wrapper {
  position: relative;
  padding-inline: 1.25rem;
  padding-block: 14.8125rem 21.0625rem;
}
@media screen and (max-width: 768px) {
  .top-recruit__main-img-wrapper {
    padding-block: 6.25rem;
  }
}

.top-recruit__main-img {
  max-width: 90.3125rem;
  width: 100%;
  margin-inline: auto;
}

.top-recruit__slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.top-skill-weapon {
  margin-top: 17.5rem;
}
@media screen and (max-width: 768px) {
  .top-skill-weapon {
    margin-top: 7.5rem;
  }
}

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

.top-skill-weapon__title {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.top-skill-weapon__text-wrapper {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .top-skill-weapon__text-wrapper {
    width: 90%;
    margin-top: 3.125rem;
    margin-inline: auto;
  }
}

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

.top-skill {
  position: relative;
  padding-bottom: 20.1875rem;
}
@media screen and (max-width: 768px) {
  .top-skill {
    padding-bottom: 7.5rem;
  }
}

.top-skill__inner.inner {
  position: relative;
  max-width: 90.625rem;
}
@media screen and (max-width: 768px) {
  .top-skill__inner.inner {
    max-width: 32.5rem;
    padding-inline: 0.625rem;
  }
}

.top-skill__title-wrapper {
  max-width: 35.4375rem;
  width: 100%;
  padding-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-skill__title-wrapper {
    margin-inline: auto;
    padding-top: 0;
  }
}

.top-skill__title {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-skill__title {
    max-width: 25rem;
    width: 90%;
    margin-inline: auto;
  }
}

.top-skill__text {
  font-size: 1.875rem;
  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;
  line-height: 1.6666666667;
  letter-spacing: 0.075em;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-skill__text {
    font-size: 1.125rem;
    text-align: center;
  }
}

.top-skill__craftsman-wrapper {
  position: absolute;
  top: 0;
  right: 1.375rem;
  max-width: 54.75rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-wrapper {
    position: static;
    max-width: 22.1875rem;
    margin-top: 3.125rem;
    margin-inline: auto;
  }
}

.top-skill__craftsman-info-items {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-info-items {
    min-height: 23.0625rem;
  }
}

.top-skill__craftsman-info-item {
  display: grid;
  grid-template-columns: 300fr 576fr;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-info-item {
    grid-template-columns: 120fr 235fr;
  }
}

.top-skill__craftsman-img {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-img {
    max-width: 7.5rem;
  }
}

.top-skill__glitch {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

.glitch__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateZ(0);
}

.glitch__img picture,
.glitch__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.glitch__img:nth-child(1) {
  opacity: 1;
  animation: none;
}

.glitch__img:nth-child(2) {
  animation: glitch-anim-1 5s infinite linear 0.5s;
}

.glitch__img:nth-child(3) {
  animation: glitch-anim-2 5s infinite linear 0.5s;
}

.glitch__img:nth-child(4) {
  animation: glitch-anim-3 5s infinite linear 0.5s;
}

.glitch__img:nth-child(5) {
  animation: glitch-anim-flash 5s infinite linear 0.5s;
  mix-blend-mode: overlay;
}

.glitch__img:nth-child(6) {
  animation: glitch-anim-colors 1.5s 0.6s infinite;
  mix-blend-mode: hard-light;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
  }
  2% {
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  4% {
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  6% {
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  8% {
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  10% {
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  12% {
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  14% {
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  16% {
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  18% {
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  20% {
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
  }
  22%, to {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    opacity: 0;
    transform: translateZ(0);
  }
}
@keyframes glitch-anim-2 {
  0% {
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    opacity: 1;
    transform: translate3d(calc(var(--gap-horizontal) * -1), 0, 0);
  }
  3% {
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }
  5% {
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }
  7% {
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  9% {
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }
  11% {
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }
  13% {
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  15% {
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }
  17% {
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }
  19% {
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }
  20% {
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(calc(var(--gap-horizontal) * -1), 0, 0);
  }
  22%, to {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    opacity: 0;
    transform: translateZ(0);
  }
}
@keyframes glitch-anim-3 {
  0% {
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    opacity: 1;
    transform: translate3d(0, calc(var(--gap-vertical) * -1), 0) scale3d(-1, -1, 1);
  }
  1.5% {
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }
  2% {
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }
  2.5% {
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  3% {
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }
  5% {
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }
  5.5% {
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  7% {
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }
  8% {
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  9% {
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }
  10.5% {
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }
  11% {
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }
  13% {
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }
  14% {
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }
  14.5% {
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  15% {
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }
  16% {
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  18% {
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }
  20% {
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(0, calc(var(--gap-vertical) * -1), 0) scale3d(-1, -1, 1);
  }
  22%, to {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    opacity: 0;
    transform: translateZ(0);
  }
}
@keyframes glitch-anim-flash {
  0%, 5% {
    opacity: 0.2;
    transform: translate3d(var(--gap-horizontal), var(--gap-vertical), 0);
  }
  5.5%, to {
    opacity: 0;
  }
}
@keyframes glitch-anim-colors {
  0%, 90% {
    opacity: 0;
    translate: 0 0;
    filter: hue-rotate(0deg);
  }
  0.5%, 90.5% {
    opacity: 0.5;
    translate: 0.3125rem 0;
  }
  1%, 91% {
    translate: -0.3125rem 0;
  }
  1.5%, 91.5% {
    translate: 0.9375rem 0;
  }
  2.5%, 92.5% {
    opacity: 0.5;
    translate: 0.3125rem 0;
  }
  5%, 95% {
    translate: -1.25rem 0;
  }
  6%, 96% {
    translate: -1.875rem 0;
  }
  7%, 97% {
    translate: 0 -1.25rem;
  }
  8%, 98% {
    translate: -2.1875rem -1.25rem;
  }
  8.1%, 98.1% {
    translate: 0 0;
  }
  10%, 100% {
    opacity: 0;
    translate: 0 0;
    filter: hue-rotate(360deg);
  }
}
.top-skill__craftsman-items {
  width: 100%;
  margin-left: -1.4375rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-items {
    margin-top: 0;
  }
}

.top-skill__craftsman-item {
  position: relative;
}

.top-skill__craftsman-item-01 {
  min-height: 8.125rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-01 {
    min-height: 4.8125rem;
  }
}

.top-skill__craftsman-item-02 {
  min-height: 10.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-02 {
    min-height: 5.9375rem;
    margin-top: 3.125rem;
  }
}

.top-skill__craftsman-item-03 {
  --gaugeMask: 0;
  min-height: 14.5625rem;
  margin-top: 3.625rem;
  margin-left: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-03 {
    margin-left: 1.875rem;
    margin-top: 2.5rem;
    min-height: 5rem;
  }
}

.top-skill__craftsman-item::before {
  content: "";
  position: absolute;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.top-skill__craftsman-item-01::before {
  top: 0;
  max-width: 18rem;
  width: 100%;
  aspect-ratio: 288/130;
  background-image: url(../../assets/images/top/indicator-01.webp);
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-01::before {
    max-width: 10.625rem;
  }
}

.top-skill__craftsman-item-02::before {
  top: 0;
  max-width: 12.5625rem;
  width: 100%;
  aspect-ratio: 201/169;
  background-image: url(../../assets/images/top/indicator-02.webp);
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-02::before {
    max-width: 6.875rem;
  }
}

.top-skill__craftsman-item-03:before {
  bottom: 0;
  max-width: 27.125rem;
  width: 100%;
  aspect-ratio: 434/87;
  background-image: url(../../assets/images/top/indicator-03-b.webp);
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-03:before {
    max-width: 11.875rem;
  }
}

.top-skill__craftsman-item-03::after {
  content: "";
  position: absolute;
  left: 4.375rem;
  bottom: 1.5625rem;
  max-width: 21.5625rem;
  width: 100%;
  aspect-ratio: 345/38;
  background-image: url(../../assets/images/top/indicator-03-a.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  mask-image: linear-gradient(to right, #000 0%, #000 var(--gaugeMask), transparent var(--gaugeMask), transparent 100%);
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-03::after {
    left: 1.75rem;
    bottom: 0.75rem;
    max-width: 9.5625rem;
  }
}

.top-skill__craftsman-item-title {
  position: absolute;
  font-size: 1.5rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #00ffea;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-title {
    font-size: 1.125rem;
  }
}

.top-skill__craftsman-item-title-01 {
  top: 5.25rem;
  left: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-title-01 {
    top: 3.125rem;
    left: 1.875rem;
  }
}

.top-skill__craftsman-item-title-02 {
  top: 0.625rem;
  left: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-title-02 {
    top: -0.1875rem;
    left: 1.75rem;
  }
}

.top-skill__craftsman-item-title-03 {
  top: 3.75rem;
  left: 2.875rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-title-03 {
    top: 0.625rem;
    left: 2rem;
  }
}

.top-skill__craftsman-item-title-04 {
  top: 3.875rem;
  left: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-title-04 {
    top: 1.25rem;
    left: 0.625rem;
  }
}

.top-skill__craftsman-item-figure-number {
  position: absolute;
  font-size: 4.375rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #00ffea;
  font-style: italic;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-figure-number {
    font-size: 1.875rem;
  }
}

.top-skill__craftsman-item-figure-number span {
  font-size: 1.875rem;
  font-style: normal;
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-figure-number span {
    font-size: max(0.875rem, 12px);
    padding-left: 0.3125rem;
  }
}

.top-skill__craftsman-item-text {
  position: absolute;
  top: 4.8125rem;
  left: 12.5rem;
  font-size: 3.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: #00ffea;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-text {
    top: 2.9375rem;
    left: 6rem;
    font-size: 1.25rem;
  }
}

.top-skill__craftsman-item-figure-number.top-skill__craftsman-item-figure-number-03 {
  font-size: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-figure-number.top-skill__craftsman-item-figure-number-03 {
    font-size: 3.125rem;
  }
}

.top-skill__craftsman-item-figure-number.top-skill__craftsman-item-figure-number-03 span {
  font-size: 4.375rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-figure-number.top-skill__craftsman-item-figure-number-03 span {
    font-size: 1.5rem;
  }
}

.top-skill__craftsman-item-figure-number-01 {
  top: 1.5625rem;
  left: 18rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-figure-number-01 {
    top: 1.25rem;
    left: 10.3125rem;
  }
}

.top-skill__craftsman-item-figure-number-03 {
  top: 0.5rem;
  right: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-item-figure-number-03 {
    top: -0.625rem;
    left: 6.25rem;
  }
}

.top-skill__slide-text {
  top: 35.3125rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-skill__slide-text {
    top: 58.125rem;
  }
}

.top-skill__tab-wrapper {
  max-width: 20.625rem;
  width: 100%;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .top-skill__tab-wrapper {
    width: 70%;
    max-width: 15.625rem;
    margin-inline: auto;
    margin-top: 3.125rem;
  }
}

.top-skill__tab-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0.9375rem;
  width: 100%;
}
.top-skill__tab-item {
  display: inline-block;
  filter: grayscale(1);
  cursor: pointer;
  transition: all 0.3s;
  will-change: transform, filter;
}

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

.top-skill__tab-item,
.top-skill__craftsman-info-item {
  transition: all 0.3s;
}

.top-skill__tab-item:not(.top-skill__tab-item.is-active):hover {
  filter: grayscale(0);
}

/* アクティブ状態: 表示する要素 */
.top-skill__craftsman-info-item.is-active {
  visibility: visible;
  height: auto;
  min-height: 100%;
  opacity: 1;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .top-skill__craftsman-info-item.is-active {
    min-height: 23.0625rem;
  }
}

/* タブボタンのアクティブ状態 */
.top-skill__tab-item.is-active {
  filter: grayscale(0) drop-shadow(0 0 0.5rem #ffffff);
  scale: 1.1;
  pointer-events: none;
  cursor: none;
}

/* ---------- キャラクターのタブ切り替え | ここまで ---------- */
/* ------------------------ */
/* 固有のフォント設定 */
/* 共通パーツで設定すると不便な場合、こちらに設定する */
/* ------------------------ */
/* ---------- フォントカラーの設定 ここから ---------- */
/* 16進数カラーコードも命名する。text-light-blue、text-dark-blueで管理すると、色の判別がしにくいため。 */
/* ---------- フォントカラーの設定 ここまで ---------- */
/* ---------- フォントの大文字・小文字の設定 ここから ---------- */
/* capitalize はspanタグで囲って使用する。「:first-letter」は使用しない。 */
/* 各単語の最初のテキストを大文字に変換 */
.text-capitalize {
  text-transform: capitalize;
}

/* 全てのテキストを大文字に変換 */
.text-uppercase {
  text-transform: uppercase;
}

/* ---------- フォントの大文字・小文字の設定 ここまで ---------- */
/* ---------- フォントウェイトの設定 ここから ---------- */
/* ---------- フォントウェイトの設定 ここまで ---------- */
/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここから ---------- */
.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}

/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここまで ---------- */
/* ------------ */
/* テキストの下線 */
/* ------------ */
.underline-red {
  padding-bottom: 0.125rem;
}

/* ------------------------ */
/* 改行用、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の設定 | ここから ---------- */
/* PC用 */
.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;
}

/* SP用 */
@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;
  }
}
/* PC・SP共通用 */
.mt-1 {
  margin-top: 0.0625rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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