@charset "UTF-8";
/* Adobe Fonts | Montserrat */
/* Adobe Fonts | 源ノ角ゴシック JP */
/* Adobe Fonts | せのびゴシック */
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: #372f29;
  line-height: 1;
}

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

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

main {
  flex: 1;
}

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

*,
*::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;
  }
}

/* ----------------------------------------------- */
/* クリップパスアニメーション（左から右） */
/* ----------------------------------------------- */
.js-mv__text-01,
.js-mv__text-02,
.js-mask-01 {
  clip-path: inset(0% 100% 0% 0%);
}

/* ----------------------------------------------- */
/* クリップパスアニメーション（上から下） */
/* ----------------------------------------------- */
.js-text-01 {
  clip-path: inset(0% 0% 100% 0%);
}

/* ----------------------------------------------- */
/* フェードイン */
/* ----------------------------------------------- */
.js-img-fade,
.js-fade-op,
.fadeIn-ups,
.js-fadein-up {
  opacity: 0;
}

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

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

@keyframes mask {
  0% {
    mask-position: 200% 0%;
  }
  100% {
    mask-position: 0% 0%;
  }
}
.body-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.body-bg__img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-color: #e6e5e0;
  width: 100%;
  height: 100%;
  z-index: -9;
}

.body-bg__img::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../../assets/images/common/body-bg-pc.jpg);
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.12;
  z-index: -8;
}
@media screen and (max-width: 768px) {
  .body-bg__img::after {
    background-image: url(../../assets/images/common/body-bg-sp.jpg);
  }
}

/* ----- ボタンタイプ共通設定 ここから ----- */
.btn {
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
}
/* ----- ボタンタイプ共通設定 ここまで ----- */
.btn.btn-contact {
  position: relative;
  width: 100%;
  max-width: 15.625rem;
  height: 100%;
  max-height: 3.125rem;
  border-radius: 100vh;
  background-color: #241e1a;
  border: 0.125rem solid #241e1a;
  transition: all 0.3s;
  box-sizing: content-box;
}

@media (any-hover: hover) {
  .btn.btn-contact:hover {
    background-color: #eeedeb;
  }
}
.btn.btn-contact::before {
  content: "";
  position: absolute;
  mask-image: url(../../assets/images/common/icon-arrow-corporate.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #241e1a;
  width: 0.8125rem;
  height: 0.8125rem;
  top: 50%;
  right: 16%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s;
  pointer-events: none;
}

.btn.btn-contact::after {
  position: absolute;
  content: "";
  mask-image: url(../../assets/images/common/icon-bg-black.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #eeedeb;
  width: 2.5rem;
  height: 1.875rem;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  pointer-events: none;
}

.btn-contact__submit {
  position: relative;
  font-size: 1.125rem;
  width: 100%;
  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;
  transition: all 0.3s;
  padding: 1rem 0;
}

@media (any-hover: hover) {
  .btn.btn-contact:hover::before {
    background-color: #eeedeb;
  }
  .btn.btn-contact:hover::after {
    background-color: #241e1a;
  }
  .btn-contact__submit:hover {
    color: #241e1a;
  }
}
.common-content {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .common-content__inner.inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
  }
}

.common-content__intro {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.common-content__intro iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.common-content__bg {
  position: relative;
  width: 100%;
}

.common-content__bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/common/deco-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 87.5rem;
  aspect-ratio: 1/1;
  opacity: 0.3;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .common-content__bg::before {
    width: 130%;
  }
}

.common-content__title {
  margin-top: 12.1875rem;
  max-width: 36.6875rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .common-content__title {
    max-width: 31.25rem;
    margin-top: 6.25rem;
  }
}

.common-content__bg-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: #372f29;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .common-content__bg-text {
    font-size: 1rem;
    text-align: left;
  }
}

.common-content__picture {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 2.5rem;
}
.common-content__picture img {
  width: 100%;
}

.common-content__container {
  position: relative;
  margin-top: 6.25rem;
  z-index: 1;
}

.common-content__map {
  position: relative;
  margin-top: 9.375rem;
}

.common-content__map-title {
  position: absolute;
  top: 0;
  left: 6.25rem;
  width: 6.5625rem;
}
@media screen and (max-width: 768px) {
  .common-content__map-title {
    left: 0;
    width: 5rem;
  }
}

.common-content__map-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-content__map-img {
    padding-top: 6.25rem;
    padding-bottom: 12.5rem;
  }
}

.common-content__map-text {
  position: absolute;
  right: 0;
  bottom: 8.375rem;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #372f29;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .common-content__map-text {
    bottom: 0;
    font-size: 1rem;
    text-align: left;
  }
}

.common-content__btn {
  margin-top: 4.375rem;
  padding-bottom: 0.3125rem;
}

.common-content__link-btn.common-content__link-btn--transport img {
  max-width: 19.125rem;
}
@media screen and (max-width: 768px) {
  .common-content__link-btn.common-content__link-btn--transport img {
    max-width: 11.25rem;
  }
}

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

.common-desc__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .common-desc__container {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.common-desc__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .common-desc__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 540px) {
  .common-desc__title {
    text-align: center;
  }
}

.common-desc__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.075em;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .common-desc__text {
    font-size: 1rem;
    margin-top: 3.125rem;
  }
}

.common-desc__img {
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-desc__img {
    margin-top: 3.125rem;
  }
}

.common-desc__img img {
  aspect-ratio: 500/379;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.common-desc__img-transport {
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .common-desc__img-transport {
    border-radius: 1.25rem;
  }
}

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

.common-mv__container {
  display: grid;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .common-mv__container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.common-mv__container.common-mv__container-01 {
  grid-template-columns: 1fr 42.5rem;
  gap: 7.5rem;
}
@media screen and (max-width: 768px) {
  .common-mv__container.common-mv__container-01 {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.125rem;
  }
}

.common-mv__container.common-mv__container-02 {
  grid-template-columns: 1fr 46.25rem;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .common-mv__container.common-mv__container-02 {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.125rem;
  }
}

.common-mv__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-mv__img {
    order: 2;
    width: 90%;
    margin-inline: auto;
  }
}

.common-mv__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 100vmax;
}

.common-mv__content {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-mv__content {
    order: 1;
  }
}

.common-mv__leading.common-mv__leading-ground,
.common-mv__leading.common-mv__leading-transport {
  max-width: 18.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-mv__leading.common-mv__leading-ground,
  .common-mv__leading.common-mv__leading-transport {
    transform: translateX(-0.9375rem);
  }
}

.common-mv__leading.common-mv__leading-work {
  max-width: 18.75rem;
  width: 100%;
  transform: translateX(-5rem);
}
@media screen and (max-width: 768px) {
  .common-mv__leading.common-mv__leading-work {
    transform: translateX(0);
  }
}

.common-mv__leading.common-mv__leading-company {
  max-width: 27.375rem;
  width: 100%;
  transform: translateX(-0.625rem);
}
@media screen and (max-width: 768px) {
  .common-mv__leading.common-mv__leading-company {
    max-width: 21.875rem;
    transform: translateX(0);
  }
}

.common-mv__title {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media screen and (max-width: 768px) {
  .common-mv__title.common-mv__title-01 {
    align-items: center;
  }
}

.common-mv__title.common-mv__title-02 {
  position: relative;
  align-items: center;
}

.common-mv__title-main.common-mv__title-main-ground,
.common-mv__title-main.common-mv__title-main-transport {
  max-width: 32.0625rem;
  width: 100%;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .common-mv__title-main.common-mv__title-main-ground,
  .common-mv__title-main.common-mv__title-main-transport {
    max-width: 18rem;
    padding-left: 0;
  }
}

.common-mv__title-main.common-mv__title-main-company {
  max-width: 25.6875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-mv__title-main.common-mv__title-main-company {
    max-width: 21.875rem;
  }
}

.common-mv__title-main.common-mv__title-main-work {
  max-width: 26.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-mv__title-main.common-mv__title-main-work {
    max-width: 15.625rem;
  }
}

.common-mv__item-ground {
  max-width: 18.375rem;
  width: 55%;
}

.common-mv__item-transport {
  max-width: 13.625rem;
  width: 45%;
}

.common-mv__item-transport.common-mv__item-transport--icon img {
  filter: grayscale(1);
  opacity: 0.4;
}

.common-mv__text {
  font-size: 1.875rem;
  font-weight: 700;
  color: #241e1a;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .common-mv__text {
    font-size: 1.25rem;
  }
}

.common-mv__text.common-mv__text-ground,
.common-mv__text.common-mv__text-transport {
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .common-mv__text.common-mv__text-ground,
  .common-mv__text.common-mv__text-transport {
    padding-left: 0;
    text-align: center;
  }
}

.common-mv__img.common-mv__img-company::before {
  box-shadow: none;
}

.common-mv__img.common-mv__img-transport::before {
  box-shadow: none;
}

.common-mv__item-transport img {
  filter: grayscale(0);
  opacity: 1;
}

.common-mv__item-ground.common-mv__item-ground--icon img {
  filter: grayscale(1);
  opacity: 0.4;
}

.common-mv__text.common-mv__text-02 {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  text-align: center;
}

.common-mv__text.common-mv__text-02::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #241e1a 0px, #241e1a 2px, transparent 2px, transparent 4px); /* 黒い線が4px、間隔が2pxの波線 */
  background-size: 4px 2px; /* グラデーションの幅（線と間隔の合計）と高さを指定 */
  background-position: left top; /* 背景の開始位置を指定 */
  background-repeat: repeat-x; /* 横向きにのみ繰り返す */
}

.common-mv__text.common-mv__text-02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #241e1a;
}

/* ---------- お問い合わせ・エントリー | ここから ---------- */
.common-mv__title.common-mv__title-03 {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .common-mv__title.common-mv__title-03 {
    padding-bottom: 1.875rem;
  }
}

.common-mv__title.common-mv__title-03.common-mv__title-entry {
  max-width: 28.875rem;
}
@media screen and (max-width: 768px) {
  .common-mv__title.common-mv__title-03.common-mv__title-entry {
    max-width: 15.625rem;
  }
}

.common-mv__title.common-mv__title-03.common-mv__title-contact {
  max-width: 32.1875rem;
}
@media screen and (max-width: 768px) {
  .common-mv__title.common-mv__title-03.common-mv__title-contact {
    max-width: 18.75rem;
  }
}

.common-mv__title.common-mv__title-03::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #241e1a 0px, #241e1a 2px, transparent 2px, transparent 4px); /* 黒い線が4px、間隔が2pxの波線 */
  background-size: 4px 2px; /* グラデーションの幅（線と間隔の合計）と高さを指定 */
  background-position: left top; /* 背景の開始位置を指定 */
  background-repeat: repeat-x; /* 横向きにのみ繰り返す */
}

.common-mv__title.common-mv__title-03::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #241e1a;
}

/* ---------- お問い合わせ・エントリー | ここまで ---------- */
@media screen and (max-width: 768px) {
  .common-work__inner {
    max-width: 33.75rem;
  }
}

.common-work__container {
  border: 0.125rem solid #241e1a;
  border-radius: 2.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .common-work__container {
    flex-direction: column;
  }
}

.common-work__title {
  max-width: 3.6875rem;
  width: 100%;
  padding: 1.875rem 1.5rem;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .common-work__title {
    max-width: none;
    width: auto;
    height: 4.0625rem;
  }
}

.common-work__title img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .common-work__title img {
    height: 100%;
  }
}

.common-work__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.8125rem;
  border-left: 0.125rem dashed #241e1a;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .common-work__steps {
    flex-direction: column;
    gap: 8.125rem;
    border-left: 0;
    border-top: 0.125rem dashed #241e1a;
    padding: 2.5rem 1.25rem;
  }
}

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

.common-work__img {
  position: relative;
  max-width: 18.75rem;
  width: 100%;
}

.common-work__img img {
  aspect-ratio: 300/300;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 100vmax;
}

.common-work__image img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.common-work__subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 768px) {
  .common-work__subtitle {
    margin-top: 0.3125rem;
  }
}

.common-work__text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .common-work__text {
    margin-top: 0.625rem;
  }
}

.common-work__steps .common-work__step:nth-of-type(2) {
  position: relative;
}

.common-work__steps .common-work__step:nth-of-type(2)::before,
.common-work__steps .common-work__step:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 30%;
  background: url("../../assets/images/common/logo-arrow.svg") no-repeat center center/cover;
  width: 4.6875rem;
  height: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .common-work__steps .common-work__step:nth-of-type(2)::before,
  .common-work__steps .common-work__step:nth-of-type(2)::after {
    transform: translateX(-50%) rotate(90deg);
  }
}

.common-work__steps .common-work__step:nth-of-type(2)::before {
  left: -17%;
}
@media screen and (max-width: 768px) {
  .common-work__steps .common-work__step:nth-of-type(2)::before {
    top: -5rem;
    left: 50%;
  }
}

.common-work__steps .common-work__step:nth-of-type(2)::after {
  right: -17%;
}
@media screen and (max-width: 768px) {
  .common-work__steps .common-work__step:nth-of-type(2)::after {
    top: auto;
    bottom: -5rem;
    left: 50%;
  }
}

.common-work__img {
  margin-inline: auto;
  position: relative;
}

.common-work__number {
  position: absolute;
  content: "";
  top: -5px;
  left: 4px;
  color: #eeedeb;
  font-size: 3.75rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 800;
  line-height: 1.5833333333;
}

.common-work__subtitle {
  margin-top: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.4166666667;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .common-work__subtitle {
    margin-top: 1.25rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .common-work__title.common-work__title--transport {
    max-width: 12.5rem;
  }
}

.common-work__steps.common-work__steps--transport {
  padding: 3.5625rem 2.3125rem;
}
@media screen and (max-width: 768px) {
  .common-work__steps.common-work__steps--transport {
    padding: 2.5rem 1.25rem;
  }
}

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

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

.company-message__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 81.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company-message__container {
    flex-direction: column;
  }
}

.company-message__title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 32%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company-message__title-wrap {
    width: 86%;
    max-width: 21.875rem;
  }
}

.company-message__title {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  max-width: 8.4375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company-message__title {
    max-width: 6.25rem;
  }
}

.company-message__title img {
  aspect-ratio: 135/595;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company-message__picture {
  position: relative;
  max-width: 18.875rem;
  width: 100%;
  margin-left: auto;
  padding-top: 4.125rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .company-message__picture {
    max-width: 12.5rem;
  }
}

.company-message__picture img {
  aspect-ratio: 302/610;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company-message__text-wrap {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .company-message__text-wrap {
    width: 90%;
    margin-top: 1.25rem;
  }
}

.company-message__text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #372f29;
  line-height: 2;
  letter-spacing: 0.097em;
}

.company-message__text:nth-of-type(n + 2) {
  margin-top: 2.5rem;
}

.company-message__signature {
  margin-top: 2.6875rem;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 700;
  color: #372f29;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.company-message__signature span {
  font-size: 1rem;
  font-weight: 700;
  color: #372f29;
  line-height: 1.875;
  letter-spacing: 0.15em;
  margin-right: 0.625rem;
}

.company-philosophy {
  position: relative;
  padding: 9.375rem;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .company-philosophy {
    padding: 6.25rem 0;
  }
}

.company-philosophy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eeedeb;
  mix-blend-mode: multiply;
  transform: translate3d(0, 0, 0);
  z-index: -1;
}

.company-philosophy__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company-philosophy__container {
    flex-direction: column-reverse;
  }
}

.company-philosophy__title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  color: #241e1a;
  line-height: 1.125;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .company-philosophy__title {
    text-align: center;
    order: 1;
  }
}

.company-philosophy__title::after {
  position: absolute;
  content: "";
  bottom: -1.5rem;
  left: 0;
  background-image: url(../../assets/images/company/company-philosophy-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 2.125rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.company-philosophy__lists {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy__lists {
    margin-top: 1.875rem;
  }
}

.company-philosophy__list {
  margin-top: 4.0625rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #372f29;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 4.6875rem;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .company-philosophy__list {
    margin-top: 3.75rem;
    font-size: 1.125rem;
  }
}

.company-philosophy__list::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/company/company-philosophy__number01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 5.375rem;
  width: 100%;
  height: 3.75rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .company-philosophy__list::before {
    max-width: 4.6875rem;
  }
}

.company-philosophy__list:nth-child(1)::before {
  background-image: url(../../assets/images/company/company-philosophy__number01.svg);
  width: 5rem;
}

.company-philosophy__list:nth-child(2)::before {
  background-image: url(../../assets/images/company/company-philosophy__number02.svg);
}

.company-philosophy__list:nth-child(3)::before {
  background-image: url(../../assets/images/company/company-philosophy__number03.svg);
}

.company-philosophy__list:nth-child(4)::before {
  background-image: url(../../assets/images/company/company-philosophy__number04.svg);
}

@media screen and (max-width: 768px) {
  .company-philosophy__content {
    margin-top: 5rem;
    display: contents;
  }
}

.company-philosophy__picture {
  width: 52%;
}
@media screen and (max-width: 768px) {
  .company-philosophy__picture {
    width: 100%;
    margin-top: 5rem;
  }
}

.company-philosophy__picture-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.375rem;
  z-index: 0;
}

.company-philosophy__picture-wrap:after {
  position: absolute;
  content: "";
  top: 9%;
  right: 0;
  background-image: url(../../assets/images/company/company-philosophy-back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 27.0625rem;
  height: 10.8125rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .company-philosophy__picture-wrap:after {
    top: 9%;
    right: 16%;
    width: 12.5rem;
  }
}

.company-philosophy__picture01 {
  max-width: 28.4375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company-philosophy__picture01 {
    max-width: 14.375rem;
  }
}

.company-philosophy__picture01 img {
  aspect-ratio: 455/514;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company-philosophy__leading {
  max-width: 6.1875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company-philosophy__leading {
    max-width: 5rem;
  }
}

.company-philosophy__leading img {
  width: 100%;
  height: auto;
}

.company-profile {
  padding: 11.25rem 0 0;
}
@media screen and (max-width: 768px) {
  .company-profile {
    padding: 7.5rem 0 0;
  }
}

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

.company-profile__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company-profile__container {
    gap: 1.25rem;
  }
}

.company-profile__title-wrap {
  position: sticky;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  top: 8.125rem;
}
@media screen and (max-width: 768px) {
  .company-profile__title-wrap {
    top: 5.625rem;
    gap: 0.625rem;
  }
}

.company-profile__title {
  max-width: 6.6875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company-profile__title {
    max-width: 4.6875rem;
  }
}

.company-profile__content {
  max-width: 71.9375rem;
  width: 100%;
}

.company-profile__content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #d5d2d0;
  padding: 2.5rem 1.875rem;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .company-profile__content-wrap {
    flex-direction: column;
    padding: 1.25rem 0;
  }
}

.company-profile__content-wrap:nth-of-type(1) {
  border-top: 1px solid #d5d2d0;
}

.company-profile__leading {
  width: 26%;
  font-size: 1.125rem;
  font-weight: 700;
  color: #372f29;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company-profile__leading {
    width: 100%;
  }
}

.company-profile__text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 400;
  color: #372f29;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company-profile__text {
    width: 100%;
    font-size: 1rem;
  }
}

.company-profile__items {
  display: grid;
  column-gap: 0.3125rem;
  grid-template-columns: repeat(2, 4fr);
}
@media screen and (max-width: 768px) {
  .company-profile__items {
    grid-template-columns: repeat(1, 7fr);
  }
}

.company-profile__item {
  position: relative;
}

.company-profile__map {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .company-profile__map {
    margin-top: 3.125rem;
  }
}

.company-profile__map iframe {
  border-radius: 3.125rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 1151/652;
}
@media screen and (max-width: 768px) {
  .company-profile__map iframe {
    border-radius: 1.25rem;
  }
}

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

.contact__form {
  margin-top: 6.25rem;
}

.contact__btn-wrapper {
  text-align: center;
  margin-top: 3.125rem;
}

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

.entry__container {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: column;
  max-width: 87.5rem;
  width: 100%;
  margin-inline: auto;
}

.entry__tab-menu {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 3.125rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .entry__tab-menu {
    gap: 0.625rem;
  }
}

.entry__tab-item {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 0.3125rem solid #241e1a;
  border-bottom: none;
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;
  max-width: 31.25rem;
  width: 100%;
  mix-blend-mode: multiply;
  background-color: #dbdad5;
}
@media screen and (max-width: 768px) {
  .entry__tab-item {
    max-width: 13.75rem;
    padding: 0.625rem;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    border: 0.125rem solid #241e1a;
    border-bottom: none;
  }
}
@media (max-width: 540px) {
  .entry__tab-item {
    border-top-left-radius: 0.625rem;
    border-top-right-radius: 0.625rem;
    max-width: 8.75rem;
    padding: 0.625rem 0.4375rem;
  }
}

.entry__tab-item.is-active {
  position: relative;
  mix-blend-mode: normal;
  background-color: transparent;
  pointer-events: none;
}

.entry__tab-item.is-active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 0.375rem;
  background-color: #e6e5e0;
  z-index: 1;
}
.entry__tab-item.is-active:after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  background-image: url(../../assets/images/common/body-bg-pc.jpg);
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 0.375rem;
  mix-blend-mode: multiply;
  opacity: 0.12;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .entry__tab-item.is-active:after {
    background-image: url(../../assets/images/common/body-bg-sp.jpg);
  }
}

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

.entry__tab-content {
  border: 0.3125rem solid #241e1a;
  border-radius: 1.875rem;
  padding-block: 5rem;
}
@media screen and (max-width: 768px) {
  .entry__tab-content {
    border: 0.125rem solid #241e1a;
    border-radius: 0.625rem;
    padding-block: 3.125rem;
  }
}

.entry__tab-panel {
  display: none;
}

.entry__tab-panel.is-show {
  display: block;
}

.entry__tab-panel-inner {
  padding-inline: 6.25rem;
}
@media screen and (max-width: 768px) {
  .entry__tab-panel-inner {
    padding-inline: 1.25rem;
  }
}

.entry__table-row {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 12.5rem 1fr;
}
@media screen and (max-width: 768px) {
  .entry__table-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.entry__table-row:nth-child(n+2) {
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .entry__table-row:nth-child(n+2) {
    margin-top: 0.9375rem;
  }
}

.entry__table-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: 700;
  color: #241e1a;
  line-height: 1.3;
  letter-spacing: 0.075em;
  background-color: #d5d2d0;
  padding: 1.5625rem 0.9375rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .entry__table-term {
    font-size: 1rem;
    padding: 1.25rem 0.9375rem;
  }
}

.entry__table-description {
  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: #241e1a;
  line-height: 1.3;
  letter-spacing: 0.075em;
  padding: 1.5625rem 0.5rem;
  border-bottom: 1px solid #514c48;
}
@media screen and (max-width: 768px) {
  .entry__table-description {
    font-size: 1rem;
    padding: 1.25rem 0.5rem;
    border-bottom: none;
  }
}

.entry__table-list {
  font-size: 0.875rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
}

.entry__form-inner {
  max-width: 62.5rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .entry__form-inner {
    max-width: none;
  }
}

.entry__form {
  margin-top: 6.25rem;
}

.entry__btn-wrapper {
  text-align: center;
  margin-top: 3.125rem;
}

.footer {
  position: relative;
  padding-bottom: 3.125rem;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 25%, #eeedeb 25%);
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .footer::before {
    background-image: linear-gradient(to bottom, transparent 6%, #eeedeb 6%);
  }
}

.footer__inner.inner {
  max-width: 115.625rem;
}

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

.footer__link-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.125rem;
  padding: 5.625rem 12.5rem;
  background-color: #3a332f;
  border-radius: 3.125rem;
  border: 0.1875rem solid #3a332f;
  transition: all 0.3s;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__link-entry {
    padding: 1.25rem 2.5rem;
    border-radius: 1.875rem;
  }
}

@media (any-hover: hover) {
  .footer__link-entry:hover {
    background-color: #eeedeb;
  }
}
@media (any-hover: hover) {
  .footer__link-entry:hover .footer__title,
  .footer__link-entry:hover .footer__message {
    color: #3a332f;
  }
}
.footer__wrap-entry {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .footer__wrap-entry {
    width: 100%;
  }
}

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

.footer__message {
  margin-top: 1.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #eeedeb;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__message {
    margin-top: 0.625rem;
    font-size: 0.6875rem;
    line-height: 1.5;
    text-align: center;
  }
}

.footer__icon {
  content: "";
  position: absolute;
  top: 50%;
  right: 11%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-entry.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 11.3125rem;
  aspect-ratio: 181/136;
}
@media screen and (max-width: 768px) {
  .footer__icon {
    right: 5%;
    width: 2.5rem;
  }
}

@media (any-hover: hover) {
  .footer__link-entry:hover .footer__icon {
    background-color: #3a332f;
  }
}
.footer__container {
  display: grid;
  gap: 3.125rem;
  row-gap: 3.75rem;
  column-gap: 1.875rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4.5rem;
  max-width: 87.5rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1440px) {
  .footer__container {
    grid-template-columns: 37.5rem 1fr;
  }
}
@media screen and (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3.125rem;
  }
}

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

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

.footer__logo-link {
  transition: all 0.3s;
  display: inline-block;
  mix-blend-mode: darken;
  transform: translate3d(0, 0, 0);
  display: block;
}

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.7;
  }
}
.footer__address {
  margin-top: 1.875rem;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  color: #372f29;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__address {
    text-align: center;
  }
}

.footer__sns {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    justify-content: center;
  }
}

.footer__sns-icon {
  max-width: 1.875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__sns-icon {
    max-width: 1.5625rem;
  }
}

.footer__sns-icon a {
  display: block;
  width: 100%;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__sns-icon a:hover {
    opacity: 0.6;
  }
}
.footer__btn {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .footer__btn {
    text-align: center;
  }
}

.footer__link {
  position: relative;
  display: inline-block;
  font-size: max(10px, 0.875rem);
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #372f29;
  letter-spacing: 0.1em;
  background-color: #eeedeb;
  padding: 1rem 5rem 1rem 1.875rem;
  text-align: center;
  border-radius: 1.875rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__link:hover {
    color: #eeedeb;
    background-color: #372f29;
  }
  .footer__link:hover::before {
    filter: brightness(0) saturate(100%) invert(9%) sepia(15%) saturate(739%) hue-rotate(341deg) brightness(95%) contrast(92%);
  }
  .footer__link:hover::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(136deg) brightness(104%) contrast(101%);
  }
}
.footer__link::before {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/common/icon-arrow-corporate.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.8125rem;
  height: 0.8125rem;
  top: 50%;
  right: 16%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s;
}

.footer__link::after {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/common/icon-bg-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.5rem;
  height: 1.875rem;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

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

.footer__contents {
  display: grid;
  gap: 0.3125rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .footer__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.125rem;
  }
}

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

@media screen and (max-width: 768px) {
  .footer__content-wrap {
    display: grid;
    row-gap: 1.875rem;
    column-gap: 1.25rem;
    grid-template-columns: 6.875rem 1fr;
  }
}

.footer__content-wrap:nth-of-type(2),
.footer__content-wrap:nth-of-type(5) {
  margin-top: 1.875rem;
}

.footer__leading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #372f29;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .footer__leading {
    font-size: 1rem;
    padding-top: 0.3em;
  }
}

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

.footer__link-item {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  color: #372f29;
  line-height: 2;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 1.25rem;
  transition: all 0.3s;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer__link-item {
    font-size: max(12px, 0.875rem);
  }
}

@media (any-hover: hover) {
  .footer__link-item:hover {
    opacity: 0.7;
  }
}
.footer__link-item::before {
  position: absolute;
  background: url(../../assets/images/common/footer-item-arrow.svg) no-repeat center center/cover;
  content: "";
  top: 0.7em;
  left: 0;
  width: 0.25rem;
  height: 0.5rem;
}

.footer__copyright {
  margin-top: 3.125rem;
  font-size: 0.75rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  color: #372f29;
  line-height: 1.25;
  letter-spacing: 0.1em;
  display: block;
  text-align: right;
  max-width: 87.5rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    text-align: center;
  }
}

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

.form__label {
  display: inline-block;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  letter-spacing: 0.075em;
}

.form__required {
  display: inline-block;
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: #fa5146;
  border-radius: 0.1875rem;
  padding: 0.25rem 0.1875rem;
  margin-left: 0.75rem;
}

.form__data {
  font-size: 1rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  line-height: 1.3;
  margin-top: 0.625rem;
  width: 100%;
}

.form__note {
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #1c238b;
  line-height: 1.4666666667;
  margin-top: 0.8125rem;
}

/* ---------- フォーム共通設定 | ここから ---------- */
[type=tel],
[type=text],
[type=email] {
  padding: 0.8125rem 1.25rem;
  width: 100%;
  border: 1px solid #1c238b;
  border-radius: 0.25rem;
}

.wpcf7-text {
  background-color: #ffffff;
}

textarea {
  height: 12.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid #1c238b;
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #241e1a;
  line-height: 1.75;
  border-radius: 0.25rem;
  width: 100%;
}

/* プレースホルダー */
::placeholder {
  color: #8a8a8a;
}

/* ---------- フォーム共通設定 | ここまで ---------- */
/* ---------- チェックボックス（共通） | ここから ---------- */
.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: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  padding-left: 2.5rem;
}

/* チェックボックス */
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border: solid 1px #241e1a;
  transition: 0.3s ease;
}

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

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

.wpcf7-file {
  width: 100%;
}

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

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: 1rem;
  font-weight: 500;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #1c238b;
  line-height: 1.75;
  text-align: center;
  border: none;
}

/* ---------- チェックボックス（共通） | ここまで ---------- */
/* ---------- プライバシーポリシー | ここから ---------- */
.form__privacy {
  width: max-content;
  margin-top: 3.125rem;
  margin-inline: auto;
}

/* プライバシーポリシー */
.form__privacy .wpcf7-list-item-label {
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  line-height: 1.3;
  padding-left: 2.375rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label {
    font-size: 1rem;
    padding-left: 1.875rem;
  }
}

/* プライバシーポリシーのチェックボックス */
.form__privacy .wpcf7-list-item-label::before {
  top: 0;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 0.125rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* プライバシーポリシーのチェックマーク */
.form__privacy .wpcf7-list-item-label::after {
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1rem;
  height: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label::after {
    top: 0.375rem;
    left: 0.1875rem;
    width: 0.75rem;
    height: 0.4375rem;
  }
}

.form__privacy .wpcf7-list-item-label a {
  display: inline-block;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  line-height: 1.3;
  transition: all 0.3s;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label a {
    font-size: 1rem;
  }
}

.form__privacy .wpcf7-list-item-label a:hover {
  opacity: 0.6;
}

/* ---------- プライバシーポリシー | ここまで ---------- */
/* ---------- エラー時のプレースフォルダー | ここから ---------- */
.wpcf7-not-valid:not(.form__radio) {
  font-size: 0.875rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #fa5146;
  background-color: rgba(201, 72, 0, 0.2);
  border: 1px solid #fa5146;
}

.wpcf7-not-valid:not(.form__radio)::placeholder {
  color: #ffffff;
}

.wpcf7-not-valid-tip {
  font-size: 0.875rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #fa5146;
  margin-top: 0.625rem;
}

/* ---------- エラー時のプレースフォルダー | ここまで ---------- */
.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: #000000;
    transition: all 0.3s;
    width: 1.875rem;
  }
}

@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:nth-child(3) {
    width: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:first-child {
    top: 50%;
    transform: translate(-50%, -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: translate(-50%, -50%) rotate(-45deg);
  }
}

@media screen and (max-width: 1440px) {
  .header-side {
    display: none;
  }
}

@media screen and (max-width: 1699px) {
  .header-side.header-side-subpage {
    display: none;
  }
}

.header-side.is-sticky-disabled {
  position: static;
  height: auto;
}

.sub-page__header-side-area {
  position: relative;
}

.header-side__logo {
  position: relative;
  max-width: 8.625rem;
  width: 100%;
  z-index: 10;
}

.header-side__logo-link {
  display: inline-block;
  transition: all 0.3s;
  width: 100%;
}

@media (any-hover: hover) {
  .header-side__logo-link:hover {
    opacity: 0.6;
  }
}
.header-side__container {
  position: absolute;
  top: 0;
  right: 0;
  height: 100dvh;
  padding-top: 2.25rem;
  padding-right: 1.875rem;
  z-index: 10;
}

.header-side__nav {
  max-width: 9rem;
  width: 100%;
}

.header-side__nav.header-side__nav-sub-page {
  margin-top: 27.5rem;
}
@media screen and (max-width: 1440px) {
  .header-side__nav.header-side__nav-sub-page {
    max-width: max-content;
  }
}

.header-side__items {
  width: 100%;
  text-align: right;
}
.header-side__item {
  display: block;
  width: 100%;
}

.header-side__link {
  display: block;
  width: 100%;
  padding-block: 1.09375rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .header-side__link:hover {
    opacity: 0.6;
  }
}
.header-side__link span {
  position: relative;
  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: #000000;
  letter-spacing: 0.075em;
  line-height: 1.45;
  transition: all 0.3s;
  width: 100%;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

@media (any-hover: hover) {
  .header-side__link:hover span::after {
    width: 100%;
  }
}
.header-side__entry {
  position: fixed;
  bottom: 3.125rem;
  right: 1.875rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1.25rem;
  border: 1px solid #d9d9d9;
  max-width: 13.125rem;
  width: 100%;
  padding: 1.5625rem 1.5625rem 1.875rem;
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-side__entry {
    display: none;
  }
}

.header-side__entry.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-side__entry-menu-title {
  font-size: 1.625rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #241e1a;
  line-height: 1.2307692308;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .header-side__entry-menu-title {
    font-size: 1.25rem;
  }
}

.header-side__entry-items {
  margin-top: 1rem;
}

.header-side__entry-item,
.header-side__entry-item-sub {
  display: block;
}

.header-side__entry-item-link {
  position: relative;
  display: block;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #372f29;
  line-height: 1.4444444444;
  letter-spacing: 0.075em;
  padding-left: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header-side__entry-item-link {
    font-size: max(12px, 0.875rem);
  }
}

@media (any-hover: hover) {
  .header-side__entry-item-link:hover {
    opacity: 0.7;
  }
}
.header-side__entry-item-link::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  background-image: url(../../assets/images/common/arrow-01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.5rem;
  aspect-ratio: 8/10;
}

.header-side__entry-item-link-sub {
  display: block;
  font-size: 1rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  line-height: 1.5;
  letter-spacing: 0.075em;
  padding-left: 1.25rem;
  padding-block: 0.15625rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .header-side__entry-item-link-sub:hover {
    opacity: 0.6;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 0.3s;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: #ffffff;
    filter: none;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  }
}

.header.change-header {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header.header-sub-page-02 {
  display: none;
}
@media screen and (max-width: 1699px) {
  .header.header-sub-page-02 {
    display: block;
  }
}

@media screen and (max-width: 1699px) {
  .header.header-sub-page-01.change-header {
    opacity: 1;
    visibility: visible;
  }
}

/* スクロールで表示される */
.header.change-header.is-visible {
  opacity: 1;
  visibility: visible;
}

.header__container {
  padding: 0.625rem 2.5rem;
  background-color: #e6e5e0;
  filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__container {
    padding: 0.3125rem 1.25rem;
    height: 100%;
  }
}

.header__logo {
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 5rem;
  }
}

.header__logo-link {
  display: block;
  transition: all 0.3s;
  mix-blend-mode: multiply;
  /*=== GPUレンダリング最適化 ===*/
  transform: translateZ(0); /* GPUによるレイヤー化のトリガー */
  backface-visibility: hidden; /* 裏面の描画を省略してパフォーマンス向上 */
  will-change: transform; /* 変形を事前通知しレンダリング最適化 */
}

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

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

.mv {
  position: relative;
  height: 100dvh;
}

.mv__img {
  position: absolute;
  top: 13svh;
  left: 50%;
  transform: translateX(-50%);
  width: 37.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1440px) {
  .mv__img {
    width: 31.25rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__img {
    width: 70%;
  }
}

.mv__title {
  position: absolute;
  left: 3.125rem;
  bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .mv__title {
    left: 1.5625rem;
    bottom: 1.5625rem;
  }
}

.mv__sub-title {
  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: 900;
  color: #241e1a;
  line-height: 1.6363636364;
}
@media screen and (max-width: 768px) {
  .mv__sub-title {
    font-size: 1.25rem;
  }
}

.mv__main-title {
  max-width: 45rem;
  width: 100%;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .mv__main-title {
    max-width: 18.75rem;
    margin-top: 1.875rem;
  }
}

.page-btn {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 2.5rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .page-btn {
    margin-top: 5rem;
  }
}

.page-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #d5d2d0 0px, #d5d2d0 4px, transparent 4px, transparent 8px); /* 黒い線が8px、間隔が4pxの波線 */
  background-size: 8px 2px; /* グラデーションの幅（線と間隔の合計）と高さを指定 */
  background-position: left top; /* 背景の開始位置を指定 */
  background-repeat: repeat-x; /* 横向きにのみ繰り返す */
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .page-btn::before {
    width: 90%;
  }
}

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

.page-btn__item {
  width: 100%;
  height: 100%;
}

.page-btn__item-link {
  position: relative;
  display: block;
  width: 100%;
  height: 6.25rem;
  transition: all 0.3s;
}
.page-btn__item-link.page-btn__item-link-02 {
  max-width: 31.25rem;
  aspect-ratio: 5/1;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .page-btn__item-link.page-btn__item-link-02 {
    max-width: 25rem;
  }
}

@media screen and (any-hover: hover) and (max-width: 768px) {
  .page-btn__item-link:hover {
    opacity: 0.6;
  }
}
.page-btn__item-link.page-btn__item-link-active {
  pointer-events: none;
}

.page-btn__item-link-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  filter: drop-shadow(0px 5px 0px rgba(0, 0, 0, 0.1));
}

.page-btn__item-link-img-hover {
  opacity: 0;
  pointer-events: none;
}

.page-btn__item-link-img.is-hover {
  opacity: 0;
}

.page-btn__item-link-img-hover.is-hover {
  opacity: 1;
}

/* ----------------------------------------------- */
/* PINの設定 */
/* ----------------------------------------------- */
.pin-section > *:not(.pin-target) {
  position: relative;
  z-index: 3;
}

.pin-section {
  width: 100%;
  height: 100dvh;
  height: 100lvh;
  position: sticky;
  top: 0;
  left: 0;
  display: block;
}

.pin-section:first-child:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../../assets/images/top/circle-shadow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 37.625rem;
  aspect-ratio: 1/1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .pin-section:first-child:before {
    width: 22.625rem;
  }
}

.pin-section__text {
  position: relative;
  font-size: 2rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #241e1a;
  line-height: 2.1875;
  letter-spacing: 0.075em;
  text-align: center;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .pin-section__text {
    font-size: 1.125rem;
  }
}

.pin-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.8);
  contain: layout paint;
  -webkit-mask-image: radial-gradient(circle at center, transparent 18.75rem, black 18.8125rem);
  mask-image: radial-gradient(circle at center, transparent 18.75rem, black 18.8125rem);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  /*=== GPUレンダリング最適化 ===*/
  transform: translateZ(0); /* GPUによるレイヤー化のトリガー */
  backface-visibility: hidden; /* 裏面の描画を省略してパフォーマンス向上 */
  will-change: transform; /* 変形を事前通知しレンダリング最適化 */
}
@media screen and (max-width: 768px) {
  .pin-target {
    -webkit-mask-image: radial-gradient(circle at center, transparent 11.25rem, black 11.3125rem);
    mask-image: radial-gradient(circle at center, transparent 11.25rem, black 11.3125rem);
  }
}

.pin-target-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*=== GPUレンダリング最適化 ===*/
  transform: translateZ(0); /* GPUによるレイヤー化のトリガー */
  backface-visibility: hidden; /* 裏面の描画を省略してパフォーマンス向上 */
  will-change: transform; /* 変形を事前通知しレンダリング最適化 */
}

.pin-section__text-wrapper {
  display: grid;
  place-items: center;
  height: 100dvh;
  height: 100lvh;
}

.pin-section__text-wrapper.pin-section__text-wrapper-last {
  height: 100dvh;
  height: 100lvh;
}

.pin-section__text-img {
  max-width: 27.125rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pin-section__text-img {
    max-width: 16.25rem;
  }
}

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

.pc-nav__link {
  display: inline-block;
  padding: 0.9375rem 0.5625rem;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .pc-nav__link {
    padding: 0.9375rem 0.5625rem;
  }
}

.pc-nav__link-text {
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.075em;
  transition: all 0.3s;
}

.pc-nav__link span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.625rem;
  transform: translateX(-50%);
  border-bottom: 1px solid #000000;
  display: block;
  transition: all 0.3s ease;
  width: 0;
}

@media (any-hover: hover) {
  .pc-nav__link:hover span::after {
    width: 100%;
  }
}
.pc-nav__link-ja {
  font-size: 8px;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
}

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

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

.slide-text__wrapper.slide-text__wrapper-top-about {
  height: 11.40625vw;
}
@media screen and (max-width: 768px) {
  .slide-text__wrapper.slide-text__wrapper-top-about {
    height: 21.3333333333vw;
  }
}

.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-about {
  width: 148.9583333333vw;
  margin-left: 2.0833333333vw;
  margin-right: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .slide-text__item.slide-text__item-top-about {
    width: 266.6666666667vw;
    margin-left: 10.6666666667vw;
    margin-right: 10.6666666667vw;
  }
}

.slide-text__item img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

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

.sp-nav.is-active {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp-nav__logo {
    width: 100%;
    max-width: 10rem;
    margin-inline: auto;
  }
}

.sp-nav__logo-link {
  display: block;
  transition: all 0.3s;
  mix-blend-mode: multiply;
  /*=== GPUレンダリング最適化 ===*/
  transform: translateZ(0); /* GPUによるレイヤー化のトリガー */
  backface-visibility: hidden; /* 裏面の描画を省略してパフォーマンス向上 */
  will-change: transform; /* 変形を事前通知しレンダリング最適化 */
}

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

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

@media screen and (max-width: 768px) {
  .sp-nav__item.sp-nav__item--contact {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__item a {
    display: block;
    font-size: 1.125rem;
    font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    padding: 0.9375rem 0;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__entry {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    border: 1px solid #d9d9d9;
    max-width: 21.25rem;
    width: 100%;
    padding: 1.5625rem 1.5625rem 1.875rem;
    margin-top: 3.125rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__entry-menu-title {
    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: #241e1a;
    line-height: 1.2307692308;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__entry-items {
    width: max-content;
    margin-inline: auto;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__entry-item,
  .sp-nav__entry-item-sub {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__entry-item-link {
    position: relative;
    display: block;
    font-size: 1.125rem;
    font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    color: #372f29;
    line-height: 1.4444444444;
    letter-spacing: 0.075em;
    padding-left: 1.25rem;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .sp-nav__entry-item-link:hover {
    opacity: 0.7;
  }
}
.sp-nav__entry-item-link::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  background-image: url(../../assets/images/common/arrow-01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.5rem;
  aspect-ratio: 8/10;
}

@media screen and (max-width: 768px) {
  .sp-nav__entry-item-link-sub {
    display: block;
    font-size: 1rem;
    font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    color: #241e1a;
    line-height: 1.5;
    letter-spacing: 0.075em;
    padding-left: 1.25rem;
    padding-block: 0.15625rem;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .sp-nav__entry-item-link-sub:hover {
    opacity: 0.6;
  }
}
.tab-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}
.tab-list {
  width: calc((100% - 5rem) / 3);
}
@media screen and (max-width: 768px) {
  .tab-list {
    width: 100%;
  }
}

.tab {
  display: flex;
  flex-direction: column;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.tab-menu {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 0.625rem;
}

.tab-item {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1.25rem;
  cursor: pointer;
  background-color: #8a8a8a;
  color: #ffffff;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .tab-item {
    font-size: 1rem;
    padding: 0.625rem 0.3125rem;
    border-top-left-radius: 0.625rem;
    border-top-right-radius: 0.625rem;
  }
}

.tab-item-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15em;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .tab-item-text {
    font-size: 1rem;
  }
}

.tab-item.is-active {
  background-color: #eeedeb;
  color: #241e1a;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  pointer-events: none;
}

@media (any-hover: hover) {
  .tab-item:hover {
    background-color: #eeedeb;
    color: #241e1a;
  }
}
.tab-icon {
  display: block;
  margin: 0 auto 0.3125rem;
  width: 2.5rem;
  height: auto;
}

.tab-content {
  padding: 2.9375rem 4.0625rem 3.125rem;
  background-color: #eeedeb;
  border-radius: 0 0 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .tab-content {
    padding: 2.1875rem 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .tab-content {
    padding: 2.1875rem 1.875rem;
  }
}

.tab-panel {
  display: none;
}

.tab-panel.is-show {
  display: block;
}

.tab-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 1.25rem;
}

.tab-img img {
  aspect-ratio: 330/220;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.tab-text {
  font-size: 1rem;
  font-weight: 400;
  color: #372f29;
  line-height: 1.5;
  letter-spacing: 0.075em;
  margin-top: 0.5rem;
}
.top-about__main {
  position: relative;
  overflow: hidden;
}

.top-about__main-img {
  position: absolute;
  top: 0;
  right: calc(50% - 4rem);
  width: 84.5625rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-about__main-img {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 31.25rem;
  }
}

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

.top-about__main-title-wrapper {
  width: max-content;
  margin-left: auto;
  margin-right: 0;
  margin-top: 24.375rem;
}
@media screen and (max-width: 768px) {
  .top-about__main-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin-top: 25rem;
  }
}

.top-about__main-title-leading {
  max-width: 18.75rem;
  width: 100%;
}

.top-about__main-title {
  font-size: 2.75rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #241e1a;
  line-height: 1.3181818182;
  letter-spacing: 0.075em;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .top-about__main-title {
    font-size: 1.3125rem;
    letter-spacing: 0;
    padding-left: 0;
  }
}

.top-about__main-title-intro {
  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: 500;
  color: #241e1a;
  line-height: 1.9;
  letter-spacing: 0.075em;
  padding-left: 1.5625rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-about__main-title-intro {
    font-size: 1rem;
    padding-left: 0;
    margin-top: 3.75rem;
  }
}

.top-about__main-container {
  margin-top: 17.5rem;
}
@media screen and (max-width: 768px) {
  .top-about__main-container {
    margin-top: 6.25rem;
  }
}

.top-about__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-about__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-about__item {
  width: 100%;
  border-radius: 2.5rem;
  border: 0.125rem solid #241e1a;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-about__item {
    border-radius: 1.25rem;
  }
}

.top-about__item-link {
  display: grid;
  grid-template-columns: 6.875rem 1fr;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top-about__item-link {
    grid-template-columns: 3.75rem 1fr;
  }
}

@media (any-hover: hover) {
  .top-about__item-link:hover {
    opacity: 0.8;
  }
  .top-about__item-link:hover .top-about__item-img img {
    transform: scale(1.1);
  }
}
.top-about__item-heading {
  max-width: 3.6875rem;
  width: 100%;
  padding: 1.875rem 1.5rem;
  border-right: 0.125rem dotted #241e1a;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .top-about__item-heading {
    padding: 1.875rem 0.5rem;
    max-width: none;
    width: auto;
  }
}

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

.top-about__item-img img {
  width: 100%;
  aspect-ratio: 560/260;
  object-fit: cover;
  transition: all 0.3s;
}

.top-about__item-link-text-wrapper {
  padding: 1.25rem 3.125rem 3.125rem 2.5rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-about__item-link-text-wrapper {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.top-about__item-link-text-01 {
  font-size: 1.25rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #241e1a;
  line-height: 1.6;
  letter-spacing: 0.075em;
  text-align: left;
}
.top-about__item-link-text-02 {
  font-size: 1rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: left;
  margin-top: 0.9375rem;
}

.top-about__item-detail {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  line-height: 1.875;
  letter-spacing: 0.075em;
  margin-top: 1.25rem;
  padding-right: 3.75rem;
  width: max-content;
  margin-left: auto;
  margin-right: 0;
}

.top-about__item-detail::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-arrow-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.5rem;
  aspect-ratio: 4/3;
}

.top-about__slide-text {
  margin-top: 14.375rem;
}
@media screen and (max-width: 768px) {
  .top-about__slide-text {
    margin-top: 6.25rem;
  }
}

.top-company {
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .top-company {
    margin-top: 4.375rem;
  }
}

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

.top-company__main-img {
  position: absolute;
  top: 0;
  left: calc(50% + 4.375rem);
  width: 68.75rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-company__main-img {
    left: 50%;
    transform: translateX(-50%);
    width: 25rem;
  }
}

.top-company__main-title-wrapper {
  width: max-content;
  margin-left: 0;
  margin-right: auto;
  margin-top: 11.8125rem;
}
@media screen and (max-width: 768px) {
  .top-company__main-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin-top: 28.125rem;
  }
}

.top-company__main-title-leading {
  max-width: 18.75rem;
  width: 100%;
}

.top-company__main-title {
  font-size: 2.75rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #241e1a;
  line-height: 1.3181818182;
  letter-spacing: 0.075em;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .top-company__main-title {
    font-size: 1.3125rem;
    letter-spacing: 0;
    padding-left: 0;
  }
}

.top-company__main-title-intro {
  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: 500;
  color: #241e1a;
  line-height: 1.9;
  letter-spacing: 0.075em;
  padding-left: 1.5625rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-company__main-title-intro {
    font-size: 1rem;
    padding-left: 0;
    margin-top: 3.75rem;
  }
}

.top-company__items {
  max-width: 43.75rem;
  width: 100%;
  margin-top: 2.5rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-company__items {
    padding-left: 0;
  }
}

.top-company__item {
  position: relative;
  width: 100%;
  border-top: 1px solid #d5d2d0;
}

.top-company__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #d5d2d0;
  mix-blend-mode: multiply;
}

.top-company__item:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #d5d2d0;
  mix-blend-mode: multiply;
}

.top-company__item-link {
  position: relative;
  display: block;
  padding: 1.875rem 1.875rem 1.5rem 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top-company__item-link {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}

.top-company__item-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  mix-blend-mode: soft-light;
  z-index: -1;
}

@media (any-hover: hover) {
  .top-company__item-link:hover {
    padding: 1.875rem 0 1.5rem 1.875rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 768px) {
  .top-company__item-link:hover {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media (any-hover: hover) {
  .top-company__item-link:hover::before {
    background-color: #ffffff;
  }
}
.top-company__item-label {
  position: relative;
  display: inline-flex;
  gap: 0.625rem;
  font-size: 1rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b7b3b0;
  letter-spacing: 0.075em;
  text-transform: capitalize;
  mix-blend-mode: multiply;
  padding-left: 3.625rem;
}
.top-company__item-number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b7b3b0;
  letter-spacing: 0.075em;
  background-image: url(../../assets/images/common/deco-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  aspect-ratio: 48/36;
}

.top-company__item-title {
  position: relative;
  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: 700;
  color: #241e1a;
  line-height: 1.5;
  letter-spacing: 0.075em;
  margin-top: 0.9375rem;
  padding-right: 1.75rem;
}
@media screen and (max-width: 768px) {
  .top-company__item-title {
    font-size: 1.125rem;
  }
}

.top-company__item-title::before {
  content: "";
  position: absolute;
  top: 0.5em;
  right: 0.625rem;
  mask-image: url(../../assets/images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #241e1a;
  width: 0.8125rem;
  aspect-ratio: 1/1;
  transition: all 0.3s;
}

.top-company__item-text {
  font-size: 1rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #372f29;
  line-height: 1.875;
  letter-spacing: 0.075em;
  margin-top: 0.625rem;
}

.top-company__carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 75rem;
  height: 57.5rem;
  margin-inline: auto;
  margin-top: 14.375rem;
}
@media screen and (max-width: 768px) {
  .top-company__carousel-wrapper {
    height: 46.875rem;
    margin-top: 9.375rem;
  }
}

.top-company__carousel {
  width: 100%;
  height: 100%;
}

.top-company__card {
  max-width: 22.5rem;
  width: 100%;
  filter: grayscale(1);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-company__card {
    max-width: 15.625rem;
    width: 90%;
  }
}

.top-company__card.is-active-card {
  filter: grayscale(0);
  pointer-events: all;
}

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

@media (any-hover: hover) {
  .top-company__card-link:hover {
    filter: brightness(1.3);
  }
}
.top-company__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6.25rem;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top-company__btn {
    top: auto;
    bottom: 1.25rem;
    transform: translateY(0);
    width: 3.75rem;
  }
}

@media (any-hover: hover) {
  .top-company__btn:hover {
    opacity: 0.6;
  }
}
.top-company__btn--prev {
  left: -3.125rem;
}
@media screen and (max-width: 768px) {
  .top-company__btn--prev {
    left: auto;
    right: calc(50% + 3.125rem);
  }
}

.top-company__btn--next {
  right: -3.125rem;
}
@media screen and (max-width: 768px) {
  .top-company__btn--next {
    right: auto;
    left: calc(50% + 3.125rem);
  }
}

.top-company__induction {
  max-width: 30.625rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 11.25rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-company__induction {
    margin-top: 7.5rem;
  }
}

.top-company__induction-link {
  display: block;
  text-align: center;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-company__induction-link:hover .top-company__induction-img-text {
    opacity: 0.6;
  }
  .top-company__induction-link:hover .top-company__induction-btn-text {
    opacity: 0.6;
  }
  .top-company__induction-link:hover .top-company__induction-deco-01 {
    filter: brightness(1.3);
  }
}
.top-company__induction-img-text {
  width: 100%;
  transition: all 0.3s;
}

.top-company__induction-btn-text {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #241e1a;
  line-height: 1.875;
  letter-spacing: 0.075em;
  margin-top: 1.25rem;
  padding-right: 3.75rem;
  margin-top: 3.125rem;
  transition: all 0.3s;
}

.top-company__induction-btn-text::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-arrow-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.5rem;
  aspect-ratio: 4/3;
}

.top-company__induction-deco {
  position: relative;
  max-width: 23.125rem;
  width: 100%;
  aspect-ratio: 370/348;
  margin-inline: auto;
  margin-top: 3.125rem;
}

.top-company__induction-deco-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 23.125rem;
  aspect-ratio: 370/197;
  z-index: 2;
  transition: all 0.3s;
}

.top-company__induction-deco-02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 23.125rem;
  aspect-ratio: 370/210;
  mix-blend-mode: multiply;
  z-index: 1;
}

.work-mv__container {
  margin-top: 10.625rem;
}
@media screen and (max-width: 768px) {
  .work-mv__container {
    margin-top: 8.75rem;
  }
}

.work-mv__items {
  display: grid;
  row-gap: 6.25rem;
  column-gap: 3.4375rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .work-mv__items {
    width: 90%;
    margin-inline: auto;
    grid-template-columns: repeat(1, 3fr);
  }
}
@media screen and (max-width: 375px) {
  .work-mv__items {
    width: 100%;
  }
}

.work-mv__item {
  padding: 0 2.5rem 3.125rem;
  position: relative;
  isolation: isolate;
}
@media screen and (max-width: 768px) {
  .work-mv__item {
    padding: 0 1.875rem 2.5rem;
  }
}

.work-mv__item::before {
  position: absolute;
  content: "";
  background-color: #eeedeb;
  mix-blend-mode: soft-light;
  border-radius: 50%;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16.25rem;
  height: 16.25rem;
  z-index: -9;
}

.work-mv__item::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #eeedeb;
  mix-blend-mode: normal;
  height: 100%;
  width: 100%;
  border-radius: 1.875rem;
  z-index: -8;
}

.work-mv__icon {
  max-width: 7.5rem;
  width: 100%;
  margin-inline: auto;
}

.work-mv__icon.work-mv__icon--training {
  max-width: 8.25rem;
}

.work-mv__number {
  margin-top: 1.875rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .work-mv__number {
    margin-inline: auto;
    justify-content: center;
  }
}

.work-mv__number-img {
  max-width: 3rem;
}

.work-mv__number-heading {
  font-size: 0.875rem;
  font-family: "montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b7b3b0;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.work-mv__subtitle {
  margin-top: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #241e1a;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .work-mv__subtitle {
    text-align: center;
    font-size: 1.125rem;
  }
}

.work-mv__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #372f29;
  line-height: 1.875;
  letter-spacing: 0.08em;
}

.layout-work-benefits {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .layout-work-benefits {
    margin-top: 6.25rem;
  }
}

.work-benefits__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .work-benefits__container {
    gap: 1.25rem;
  }
}

.work-benefits__wrap-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .work-benefits__wrap-title {
    gap: 0.625rem;
  }
}

.work-benefits__title {
  max-width: 6.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .work-benefits__title {
    max-width: 4.0625rem;
  }
}

.work-benefits__movie {
  max-width: 75rem;
  width: 100%;
}

.work-benefits__movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.layout-work-model {
  margin-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .layout-work-model {
    margin-top: 6.25rem;
  }
}

.work-model__wrap-title {
  max-width: 38.9375rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .work-model__wrap-title {
    width: 90%;
  }
}

.work-model__leading {
  max-width: 25rem;
  width: 100%;
}

.work-model__title {
  max-width: 38.9375rem;
  width: 100%;
}

.work-model__text {
  margin-top: 1.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #372f29;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .work-model__text {
    font-size: 1rem;
    width: 90%;
    margin-inline: auto;
  }
}

.work-model__container {
  margin-top: 3.9375rem;
  display: flex;
  flex-direction: column;
  max-width: 87.5rem;
  width: 100%;
  margin-inline: auto;
}

.work-model__tab-menu {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 3.125rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .work-model__tab-menu {
    gap: 0.625rem;
  }
}

.work-model__tab-item {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 0.3125rem solid #241e1a;
  border-bottom: none;
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;
  max-width: 31.25rem;
  width: 100%;
  mix-blend-mode: multiply;
  background-color: #dbdad5;
}
@media screen and (max-width: 768px) {
  .work-model__tab-item {
    max-width: 13.75rem;
    padding: 0.625rem;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    border: 0.125rem solid #241e1a;
    border-bottom: none;
  }
}
@media (max-width: 540px) {
  .work-model__tab-item {
    max-width: 9.375rem;
  }
}

.work-model__tab-item.is-active {
  position: relative;
  mix-blend-mode: normal;
  background-color: transparent;
  pointer-events: none;
}

.work-model__tab-item.is-active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 0.375rem;
  background-color: #e6e5e0;
  z-index: 1;
}
.work-model__tab-item.is-active:after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  background-image: url(../../assets/images/common/body-bg-pc.jpg);
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 0.375rem;
  mix-blend-mode: multiply;
  opacity: 0.12;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .work-model__tab-item.is-active:after {
    background-image: url(../../assets/images/common/body-bg-sp.jpg);
  }
}

.work-model__tab-item img {
  width: auto;
  height: 4.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .work-model__tab-item img {
    height: 2.1875rem;
  }
}
@media screen and (max-width: 540px) {
  .work-model__tab-item img {
    height: 1.875rem;
  }
}

.work-model__tab-content {
  border: 0.3125rem solid #241e1a;
  border-radius: 1.875rem;
  padding-bottom: 5.8125rem;
}
@media screen and (max-width: 768px) {
  .work-model__tab-content {
    padding-bottom: 5rem;
    border: 0.125rem solid #241e1a;
    border-radius: 0.625rem;
  }
}

.work-model__tab-panel {
  margin-top: 5.3125rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .work-model__tab-panel {
    margin-top: 3.75rem;
  }
}

.work-model__tab-panel.is-show {
  display: block;
}

.work-model__tab-panel-inner {
  padding-inline: 6.25rem;
}
@media screen and (max-width: 768px) {
  .work-model__tab-panel-inner {
    padding-inline: 1.25rem;
  }
}

.work-model__heading {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #eeedeb;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background-color: #241e1a;
  padding: 0.9375rem;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .work-model__heading {
    padding: 0.625rem 0.625rem;
    font-size: 1.125rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 375px) {
  .work-model__heading {
    font-size: 1rem;
  }
}

.work-model__heading:nth-of-type(2) {
  margin-top: 5.3125rem;
}

.work-model__tab-img {
  margin-top: 3.125rem;
  max-width: 73.75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .work-model__tab-img {
    width: 62.5rem;
  }
}

.work-model__tab-table {
  width: 100%;
  margin-top: 3.125rem;
  border-collapse: collapse;
  border-spacing: 0;
  border-collapse: separate;
  border-spacing: 0.3125rem 0px;
}
@media screen and (max-width: 768px) {
  .work-model__tab-table {
    width: 62.5rem;
  }
}

.work-model__thead,
.work-model__tbody {
  width: 100%;
}

.work-model__th {
  font-size: 2.25rem;
  font-family: "senobi-gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #241e1a;
  padding: 1.75rem 3.125rem;
}

.work-model__th span {
  display: block;
  font-size: 1rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #241e1a;
  letter-spacing: 0.075em;
  margin-top: 0.625rem;
}

.work-model__th-income,
.work-model__th-vonus,
.work-model__th-treatment {
  font-size: 1.25rem;
  font-weight: 700;
  color: #372f29;
  line-height: 1.8;
  letter-spacing: 0.15em;
  text-align: right;
  text-align: center;
}

.work-model__tr .work-model__th {
  position: relative;
}

.work-model__tr .work-model__th:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eeedeb;
  z-index: -1;
  mix-blend-mode: multiply;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.work-model__tr .work-model__th:nth-of-type(3) {
  position: relative;
}

.work-model__tr .work-model__th:nth-of-type(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dbdad5;
  mix-blend-mode: multiply;
  z-index: -1;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.work-model__tr .work-model__th:nth-of-type(4) {
  position: relative;
  color: #eeedeb;
}

.work-model__tr .work-model__th:nth-of-type(4)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #514c48;
  mix-blend-mode: multiply;
  z-index: -1;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.work-model__tr .work-model__th:nth-of-type(4) span {
  color: #eeedeb;
}

.work-model__tr .work-model__td,
.work-model__tr .work-model__td-text {
  position: relative;
}

.work-model__tr .work-model__td:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eeedeb;
  mix-blend-mode: multiply;
  z-index: -1;
}

.work-model__tr .work-model__td:nth-of-type(2),
.work-model__tr .work-model__td-text:nth-of-type(2) {
  position: relative;
}

.work-model__tr .work-model__td:nth-of-type(2)::before,
.work-model__tr .work-model__td-text:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dbdad5;
  mix-blend-mode: multiply;
  z-index: -1;
}

.work-model__tr .work-model__td:nth-of-type(3),
.work-model__tr .work-model__td-text:nth-of-type(3) {
  position: relative;
  color: #eeedeb;
}

.work-model__tr .work-model__td:nth-of-type(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #514c48;
  mix-blend-mode: multiply;
  z-index: -1;
}

.work-model__tr.work-model__tr-3-row .work-model__t.work-model__td-last {
  position: relative;
}

.work-model__tr .work-model__td:nth-of-type(3) span,
.work-model__tr .work-model__td-text:nth-of-type(3) span {
  color: #eeedeb;
}

.work-model__tr.work-model__tr-2-row,
.work-model__tr.work-model__tr-3-row {
  background-image: linear-gradient(to right, #ffffff 0px, #ffffff 4px, transparent 4px, transparent 8px); /* 黒い線が3px、間隔が2pxの波線 */
  background-size: 8px 2px; /* グラデーションの幅（線と間隔の合計）と高さを指定 */
  background-position: left top; /* 背景の開始位置を指定 */
  background-repeat: repeat-x; /* 横向きにのみ繰り返す */
}

.work-model__tr.work-model__tr-3-row .work-model__td.work-model__td-last::before {
  content: "";
  position: absolute;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.work-model__td {
  text-align: center;
  padding: 1.75rem 2.1875rem;
  font-size: 3.125rem;
  font-family: "senobi-gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #372f29;
  letter-spacing: -0.13em;
}

.work-model__td span {
  font-size: 1.625rem;
  font-family: "senobi-gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #372f29;
}

.work-model__work {
  margin-top: 5rem;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.work-model__work iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.work-model__content {
  margin-top: 9.375rem;
  max-width: 87.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .work-model__content {
    margin-top: 6.25rem;
    width: 90%;
    margin-inline: auto;
  }
}

.work-model__content img {
  aspect-ratio: 1400/675;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout-company-mv {
  margin-top: -5.5625rem;
}
@media screen and (max-width: 1699px) {
  .layout-company-mv {
    margin-top: 9.625rem;
  }
}
@media screen and (max-width: 768px) {
  .layout-company-mv {
    margin-top: 6.25rem;
  }
}

.layout-company-message {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .layout-company-message {
    margin-top: 5rem;
  }
}

.layout-common-mv {
  margin-top: -5.5625rem;
}
@media screen and (max-width: 1699px) {
  .layout-common-mv {
    margin-top: 9.625rem;
  }
}
@media screen and (max-width: 768px) {
  .layout-common-mv {
    margin-top: 6.25rem;
  }
}

.layout-work-mv {
  margin-top: -5.5625rem;
}
@media screen and (max-width: 1699px) {
  .layout-work-mv {
    margin-top: 9.625rem;
  }
}
@media screen and (max-width: 768px) {
  .layout-work-mv {
    margin-top: 6.25rem;
  }
}

.layout-common-desc {
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .layout-common-desc {
    margin-top: 2.5rem;
  }
}

.layout-common-work {
  margin-top: 6.625rem;
}
@media screen and (max-width: 768px) {
  .layout-common-work {
    margin-top: 5rem;
  }
}

.layout-common-content {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .layout-common-content {
    margin-top: 5rem;
  }
}

.layout-footer {
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  .layout-footer {
    margin-top: 6.25rem;
  }
}

.layout-entry,
.layout-contact {
  margin-top: 3.125rem;
}
@media screen and (max-width: 1699px) {
  .layout-entry,
  .layout-contact {
    margin-top: 11.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .layout-entry,
  .layout-contact {
    margin-top: 6.25rem;
  }
}

/* ------------------------ */
/* 固有のフォント設定 */
/* 共通パーツで設定すると不便な場合、こちらに設定する */
/* ------------------------ */
/* ---------- フォントカラーの設定 ここから ---------- */
/* 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の設定 | ここから ---------- */
.mt-pc-1 {
  margin-top: 0.0625rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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