@charset "UTF-8";
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: #000000;
}

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

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

main {
  flex: 1;
}

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

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

main {
  overflow: clip;
}

*,
*::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 {
    max-width: 33.75rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

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

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

@keyframes mask {
  0% {
    mask-position: 200% 0%;
  }
  100% {
    mask-position: 0% 0%;
  }
}
/* ---------- 各セクションのマスクアニメーション（X軸方向） ここまで ----------------- */
/* ---------- パララックスの指定 | ここから ---------- */
.js-parallax {
  overflow: hidden;
}
.js-parallax img {
  display: block;
  height: 110%;
  max-width: unset;
}

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

/* ---------- 読み込み時のチラつき防止 | ここまで ---------- */
/* -------------------- MVテキストのマスクエフェクト ------------------------- */
.js-fv-text-mask {
  position: relative;
  transform: translateY(1.25rem);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  --translateX: 0px;
}

.js-fv-text-mask::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(var(--translateX));
}

.js-fv-text-mask.js-text-mask-white::before {
  background-color: #ffffff;
}

/* -------------------- MVテキストのマスクエフェクト ここまで ------------------------- */
.breadcrumb__nav {
  width: 100%;
}

.breadcrumb__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

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

.breadcrumb__item:last-of-type {
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 表示する行数を1行に設定 */
  overflow: hidden;
}

.breadcrumb__item::after {
  content: "";
  transform: translateY(-30%);
  background-image: url(../../assets/images/common/logo-symbol-04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.4375rem;
  height: 0.375rem;
  display: inline-block;
  margin-inline: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item::after {
    margin-inline: 0.4375rem;
  }
}

.breadcrumb__item:last-of-type::after {
  content: none;
  margin: 0;
}

.breadcrumb__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.0625rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .breadcrumb__link:hover {
    color: #7db340;
  }
}
/* ----- ボタンタイプ共通設定 ここから ----- */
.btn {
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

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

/* ----- ボタンタイプ共通設定 ここまで ----- */
/* ---------- 半透明ボタン | ここから ---------- */
.btn.btn-01 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 17.0625rem;
  border-radius: 100vmax;
  border: 1px solid #cfcfcf;
  padding: 1.46875rem 0.625rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: inset 0 0 0.625rem #d8d8d8;
  overflow: hidden;
  mix-blend-mode: multiply;
  background-image: linear-gradient(to right, #eeeeee 0%, #ffffff 50%, #eeeeee 100%);
}
@media screen and (max-width: 768px) {
  .btn.btn-01 {
    max-width: 15.625rem;
    padding: 1.25rem 0.625rem;
  }
}

.btn.btn-01::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 100vmax;
  transition: all 0.3s;
  z-index: -1;
}

.btn.btn-01::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.375rem;
  transform: translateY(-50%);
  background-color: #5da71e;
  width: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn.btn-01::after {
    left: 3.125rem;
  }
}

.btn__text-01 {
  position: relative;
  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: 400;
  color: #000000;
  letter-spacing: 0.075em;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn__text-01 {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn.btn-01:hover {
    box-shadow: inset 0 0 0.9375rem #7db340, 0 0 0.9375rem #7db340;
  }
  .btn.btn-01:hover::before {
    background-color: #ffffff;
  }
  .btn.btn-01:hover .btn__text-01 {
    color: #5da71e;
  }
}
/* ---------- 半透明ボタン | ここまで ---------- */
/* ----- 一覧へボタン ここから ----- */
.btn.btn-02 {
  position: relative;
  text-align: center;
  transition: all 0.3s;
}

.btn.btn-02::before,
.btn.btn-02::after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s ease;
  width: 0;
}

.btn.btn-02::before {
  left: 0;
  bottom: -0.3125rem;
  border-bottom: 1px solid #5da71e;
}

.btn.btn-02::after {
  right: 0;
  top: -0.3125rem;
  border-bottom: 1px solid #ffc400;
}

.btn__text-02 {
  position: relative;
  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: #000000;
  letter-spacing: 0.075em;
  padding-right: 3.75rem;
  padding-block: 0.625rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn__text-02 {
    padding-right: 2.8125rem;
    font-size: max(1.125rem, 12px);
  }
}

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

@media (any-hover: hover) {
  .btn.btn-02:hover::before,
  .btn.btn-02:hover::after {
    width: 100%;
  }
}
/* ----- 一覧へボタン ここまで ----- */
/* ----- 『"サステナ"への取り組み』ボタン（横幅文字数で可変） ここから ----- */
.btn.btn-03 {
  position: relative;
  display: inline-block;
  width: 100%;
  width: max-content;
  border-radius: 100vmax;
  padding: 1.46875rem 5rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: inset 0 0 0.625rem #d8d8d8;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .btn.btn-03 {
    max-width: 18.75rem;
    padding: 1.25rem 2.5rem;
  }
}

.btn.btn-03::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 100vmax;
  mix-blend-mode: multiply;
  z-index: -2;
}

.btn.btn-03::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  border-radius: 100vmax;
  z-index: -1;
}

.btn__text-03 {
  position: relative;
  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: 400;
  color: #000000;
  letter-spacing: 0.075em;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .btn__text-03 {
    font-size: max(1rem, 12px);
  }
}

.btn__text-03::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.625rem;
  transform: translateY(-50%);
  background-color: #5da71e;
  width: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  transition: all 0.3s;
}

.btn.btn-03[data-theme=yellow] .btn__text-03::before {
  background-color: #d6b800;
}

@media (any-hover: hover) {
  .btn.btn-03:hover {
    background-color: #ffffff;
    box-shadow: inset 0 0 0.625rem #7db340;
  }
  .btn.btn-03:hover .btn__text-03 {
    color: #5da71e;
  }
  .btn.btn-03:hover[data-theme=yellow] {
    box-shadow: inset 0 0 0.625rem #d6b800;
  }
  .btn.btn-03:hover[data-theme=yellow] .btn__text-03 {
    color: #d6b800;
  }
}
/* ----- 『"サステナ"への取り組み』ボタン（横幅文字数で可変） ここまで ----- */
/* ---------- 『送信する』ボタン | ここから ---------- */
.btn.btn-contact {
  position: relative;
  display: block;
  width: 100%;
  max-width: 18.5625rem;
  height: 100%;
  max-height: 5.125rem;
  border-radius: 100vmax;
  border: 1px solid #cfcfcf;
  padding: 1.46875rem 0.625rem;
  margin-inline: auto;
  text-align: center;
  transition: all 0.3s;
  box-shadow: inset 0 0 0.625rem #d8d8d8;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .btn.btn-contact {
    max-width: 15.625rem;
  }
}

.btn.btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #eeeeee 0%, #ffffff 50%, #eeeeee 100%);
  border-radius: 100vmax;
  mix-blend-mode: multiply;
  z-index: -1;
}

.btn.btn-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.375rem;
  transform: translateY(-50%);
  background-color: #5da71e;
  width: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn.btn-contact::after {
    left: 3.125rem;
  }
}

.btn-contact__submit {
  position: relative;
  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: 400;
  color: #000000;
  letter-spacing: 0.075em;
  padding: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn-contact__submit {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn.btn-contact:hover {
    background-color: #ffffff;
  }
  .btn.btn-contact:hover .btn-contact__submit {
    color: #5da71e;
  }
}
/* ---------- 『送信する』ボタン | ここまで ---------- */
/* ---------- Contactボタン | ここから ---------- */
.btn-contact-02 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 8.125rem;
  min-width: 100px;
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 0.3125rem;
  padding-block: 0.65625rem;
  overflow: hidden;
  margin-inline: auto;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn-contact-02 {
    padding-block: 0.75rem;
  }
}

.btn-contact-text-02-en {
  font-size: max(1.125rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-contact-text-02-ja {
  position: relative;
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.075em;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-contact-text-02-ja::before {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 1px;
  background-color: #ffffff;
}

@media (any-hover: hover) {
  .btn.btn-contact-02:hover {
    background-color: #7db340;
  }
  .btn.btn-contact-02:hover .btn-contact-text-02-en,
  .btn.btn-contact-02:hover .btn-contact-text-02-ja {
    color: #ffc400;
  }
}
/* ---------- Contactボタン | ここまで ---------- */
.category-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.category-tab__item-link {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border-radius: 100vmax;
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .category-tab__item-link {
    padding: 0.3125rem 0.625rem;
  }
}

.category-tab__item-link.is-active {
  border: 1px solid #7db340;
  background-color: #7db340;
  pointer-events: none;
}

@media (any-hover: hover) {
  .category-tab__item-link:hover {
    border: 1px solid #7db340;
    background-color: #7db340;
  }
  .category-tab__item-link:hover .category-tab__item-text {
    color: #ffffff;
  }
}
.category-tab__item-text {
  position: relative;
  display: inline-block;
  font-size: max(1rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.075em;
  padding-left: 2.125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .category-tab__item-text {
    font-size: max(0.875rem, 12px);
    padding-left: 1.5625rem;
  }
}

.category-tab__item-link.is-active .category-tab__item-text {
  color: #ffffff;
}

.category-tab__item-link .category-tab__item-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/arrow-category-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .category-tab__item-link .category-tab__item-text::before {
    width: 0.9375rem;
  }
}

.category-tab__item-link.is-active .category-tab__item-text::before {
  background-image: url(../../assets/images/common/arrow-category-green.svg);
}

@media (any-hover: hover) {
  .category-tab__item-link:hover .category-tab__item-text::before {
    background-image: url(../../assets/images/common/arrow-category-green.svg);
  }
}
.company-history {
  position: relative;
  padding-top: 14.8125rem;
  padding-bottom: 15.9375rem;
}
@media screen and (max-width: 768px) {
  .company-history {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.company-history__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../../assets/images/company/bg-company-history-01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.company-history__inner {
  position: relative;
  z-index: 1;
}

.company-history__title {
  text-align: center;
}

.company-history__lists {
  margin-top: 10.375rem;
  margin-left: 6.25rem;
}
@media screen and (max-width: 768px) {
  .company-history__lists {
    margin-top: 3.75rem;
    margin-left: 0;
  }
}

.company-history__list {
  display: grid;
  grid-template-columns: 10.8125rem 1fr;
  gap: 11.6875rem;
}
@media screen and (max-width: 768px) {
  .company-history__list {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.company-history__list-year {
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4.375rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .company-history__list-year {
    font-size: 3rem;
  }
}

.company-history__list-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 58.75rem;
  width: 100%;
  padding: 1.775rem 0 3.125rem 3.125rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .company-history__list-detail {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1rem 0.625rem 3.625rem;
    margin-top: 0;
  }
}

.company-history__list-date {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.075em;
  line-height: 2.5;
  width: 10.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .company-history__list-date {
    font-size: max(1.125rem, 12px);
    line-height: 2.2222222222;
    width: 100%;
  }
}

.company-history__list-textBlock {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .company-history__list-textBlock {
    gap: 0.75rem;
  }
}

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

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

.company-message {
  padding-top: 9.0625rem;
  padding-bottom: 9.5rem;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .company-message {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.company-message__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .company-message__wrapper {
    flex-direction: column;
    gap: 2.5rem;
    margin-right: 0;
  }
}

.company-message__textBlock {
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 1919px) {
  .company-message__textBlock {
    flex: initial;
  }
}

.company-message__title {
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .company-message__title {
    padding-left: 1.25rem;
  }
}

.company-message__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/logo-symbol-02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 18/16;
  width: 1.125rem;
}
@media screen and (max-width: 768px) {
  .company-message__title::before {
    width: 0.875rem;
  }
}

.company-message__title-text {
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 2.5;
}

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

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

.company-message__signature {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.625rem;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .company-message__signature {
    margin-top: 1.25rem;
  }
}

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

.company-message__signature img {
  max-width: 10rem;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .company-message__signature img {
    max-width: 7.5rem;
  }
}

.company-message__image {
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  aspect-ratio: 960/700;
  max-width: 60rem;
  width: 100%;
  height: 100%;
  margin-top: 0.4375rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company-message__image {
    border-radius: 0.625rem;
    max-width: 100%;
    margin-top: 0;
  }
}

.company-message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-overview {
  padding-top: 12.5rem;
  padding-bottom: 15.4375rem;
}
@media screen and (max-width: 768px) {
  .company-overview {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

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

.company-overview__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.875rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
  border-top: 2px solid #cfcfcf;
  padding: 2.125rem 0 2rem 4.375rem;
}
@media screen and (max-width: 768px) {
  .company-overview__list {
    flex-direction: column;
    gap: 0.25rem;
    font-size: max(1rem, 12px);
    line-height: 1.875;
    padding: 1.25rem 0.625rem;
  }
}

.company-overview__list::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 1.25rem;
  height: 2px;
  background: linear-gradient(to right, #7db340 0, #7db340 50%, #d6b800 50%, #d6b800 100%);
}
@media screen and (max-width: 768px) {
  .company-overview__list::before {
    width: 1rem;
  }
}

.company-overview__list:last-child {
  border-bottom: 2px solid #cfcfcf;
}

.company-overview__list:last-child::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 1.25rem;
  height: 2px;
  background: linear-gradient(to right, #7db340 0, #7db340 50%, #d6b800 50%, #d6b800 100%);
}
@media screen and (max-width: 768px) {
  .company-overview__list:last-child::after {
    width: 1rem;
  }
}

.company-overview__list-head {
  width: 14.375rem;
}
@media screen and (max-width: 768px) {
  .company-overview__list-head {
    font-weight: 700;
    width: 100%;
  }
}

.company-overview__list-detail {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.company-overview__list-detail p {
  color: #000000;
  pointer-events: none;
}

.company-overview__list-link {
  color: #000000;
}

@media (any-hover: hover) {
  .company-overview__list-link:hover {
    opacity: 0.6;
  }
}
.company-overview__list-detail-indent {
  display: inline-block;
  text-indent: -3.2em;
  padding-left: 4.3em;
}
@media screen and (max-width: 768px) {
  .company-overview__list-detail-indent {
    text-indent: -2em;
    padding-left: 2.5em;
  }
}

.company-overview__map {
  aspect-ratio: 1400/700;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .company-overview__map {
    aspect-ratio: 3/1.5;
    margin-top: 2.5rem;
  }
}

.company-overview__map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.company-overview__license {
  margin-top: 5.9375rem;
}

.company-overview__license-title-eng {
  position: relative;
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 2.5;
  text-transform: capitalize;
  padding-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .company-overview__license-title-eng {
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .company-overview__license-title {
    display: flex;
    justify-content: center;
  }
}

.company-overview__license-title-eng::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/logo-symbol-02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 18/16;
  width: 1.125rem;
}
@media screen and (max-width: 768px) {
  .company-overview__license-title-eng::before {
    width: 0.875rem;
  }
}

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

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

.company-overview__table-container {
  margin-top: 6.25rem;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
@media screen and (max-width: 768px) {
  .company-overview__table-container {
    margin-top: 3.75rem;
  }
}

.company-overview__table-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}

.company-overview__table {
  width: 100%;
  min-width: 62.5rem;
  border-collapse: collapse;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .company-overview__table {
    min-width: 45.5rem;
  }
}

.company-overview__table::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}

/* ---------- スクロールヒントの位置調整 | ここから ---------- */
@media screen and (max-width: 768px) {
  .company-overview__table-container .scroll-hint-icon {
    top: 12.5rem;
  }
}

/* ---------- スクロールヒントの位置調整 | ここまで ---------- */
.company-overview__table-col--category {
  width: 22%;
}
@media screen and (max-width: 768px) {
  .company-overview__table-col--category {
    width: 24%;
  }
}

.company-overview__table-col--qualification {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .company-overview__table-col--qualification {
    width: 46%;
  }
}

.company-overview__table-col--type {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .company-overview__table-col--type {
    width: 16%;
  }
}

.company-overview__table-col--count {
  width: 16%;
}
@media screen and (max-width: 768px) {
  .company-overview__table-col--count {
    width: 14%;
  }
}

.company-overview__table-head-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.company-overview__table-head-cell {
  font-size: max(1.3125rem, 14px);
  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;
  padding: 0.875rem 0.625rem;
  text-align: center;
  background-color: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .company-overview__table-head-cell {
    font-size: max(1rem, 14px);
    letter-spacing: 0.07em;
  }
}

.company-overview__table-head-cell:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.company-overview__table-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.company-overview__table-row:nth-child(odd) {
  background-color: #ffffff;
}

.company-overview__table-cell {
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 1.25rem 1.25rem;
  background-color: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .company-overview__table-cell {
    font-size: max(1rem, 12px);
    letter-spacing: 0.07em;
    padding: 1.25rem 0.625rem;
  }
}

.company-overview__table-cell:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.company-overview__table-head-cell--count,
.company-overview__table-cell--count {
  text-align: center;
}

.company-overview__table-head-cell--type,
.company-overview__table-cell--type {
  text-align: center;
}

.company-overview__table-date {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.company-overview__note-wrapper {
  margin-top: 1.875rem;
}

.company-overview__note-text {
  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: 500;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 1em;
  text-indent: -1em;
}

.company-philosophy {
  background-image: url(../../assets/images/company/bg-company-philosophy-01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 17.4375rem;
  padding-bottom: 18.5rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

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

.company-philosophy__philosophy-title,
.company-philosophy__policy-title {
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy__philosophy-title,
  .company-philosophy__policy-title {
    padding-left: 1.25rem;
  }
}

.company-philosophy__philosophy-title::before,
.company-philosophy__policy-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/logo-symbol-02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 18/16;
  width: 1.125rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy__philosophy-title::before,
  .company-philosophy__policy-title::before {
    width: 0.875rem;
  }
}

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

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

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

.company-philosophy__policy-lists {
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy__policy-lists {
    margin-top: 0.75rem;
  }
}

.company-philosophy__policy-list {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy__policy-list {
    align-items: flex-start;
    gap: 1rem;
  }
}

.company-philosophy__policy-list:not(:first-child) {
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .company-philosophy__policy-list:not(:first-child) {
    margin-top: 0.75rem;
  }
}

.company-philosophy__policy-list-number {
  position: relative;
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.075em;
  line-height: 1.4;
  padding-inline: 0.9375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .company-philosophy__policy-list-number {
    padding-inline: 0.75rem;
    margin-top: 0.3lh;
  }
}

.company-philosophy__policy-list-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/angle-brackets-white-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.3125rem;
  aspect-ratio: 5/15;
}

.company-philosophy__policy-list-number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/angle-brackets-white-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.3125rem;
  aspect-ratio: 5/15;
}

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

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

.contact__container {
  display: grid;
  grid-template-columns: 550fr 700fr;
  gap: clamp(5rem, -8.497rem + 14.89vw, 9.375rem); /* 80 ~ 150 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}

.contact__logo {
  max-width: 18.125rem;
  width: 100%;
  margin-inline: auto;
}

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

.contact__text-link {
  display: inline;
  color: inherit;
  transition: all 0.3s;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

@media (any-hover: hover) {
  .contact__text-link:hover {
    opacity: 0.6;
  }
}
.contact__btn-wrapper {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .contact__btn-wrapper {
    margin-top: 3.125rem;
  }
}

.footer {
  position: relative;
  background-color: #5da71e;
  clip-path: polygon(5rem 0, calc(100% - 5rem) 0, 100% 5rem, 100% 100%, 0 100%, 0 5rem);
  padding-top: 9.375rem;
  padding-bottom: 11rem;
  margin-top: -5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    clip-path: polygon(2.5rem 0, calc(100% - 2.5rem) 0, 100% 2.5rem, 100% 100%, 0 100%, 0 2.5rem);
    padding-top: 5rem;
    padding-bottom: 3.125rem;
    margin-top: -2.5rem;
  }
}

.footer::before {
  content: "";
  position: absolute;
  top: -18.75rem;
  right: -18.75rem;
  background-image: url(../../assets/images/common/deco-gradation-01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 37.5rem;
}
@media screen and (max-width: 768px) {
  .footer::before {
    top: -9.375rem;
    right: -9.375rem;
    width: 18.75rem;
  }
}

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

.footer__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6.25rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 3.75rem;
  }
}

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

.footer__catchphrase {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__catchphrase {
    max-width: 23.75rem;
    width: 80%;
    margin-inline: auto;
  }
}

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

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

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

.footer__right {
  max-width: 50.8125rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__right {
    text-align: center;
    max-width: 100%;
  }
}

.footer__logo {
  display: inline-block;
  max-width: 18.75rem;
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 12.5rem;
  }
}

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

.footer__info {
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
  color: #ffffff;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .footer__info {
    margin-top: 1.75rem;
  }
}

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

@media (any-hover: hover) {
  .footer__tel-link:hover {
    opacity: 0.6;
  }
}
.footer__nav {
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    max-width: 23.125rem;
    width: 100%;
    margin-top: 2.625rem;
    margin-inline: auto;
  }
}

.footer__nav-items {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__nav-item {
  display: inline-block;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .footer__nav-item {
    margin-inline: auto;
  }
}

.footer__nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding-block: 0.5rem;
  transition: all 0.3s;
}

.footer__nav-link::before,
.footer__nav-link::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 2px solid #ffffff;
  transition: all 0.3s ease;
  width: 0;
}

.footer__nav-link::before {
  left: 0;
  bottom: 0;
}

.footer__nav-link::after {
  right: 0;
  top: 0;
}

@media (any-hover: hover) {
  .footer__nav-link:hover::before,
  .footer__nav-link:hover::after {
    width: 100%;
  }
}
.footer__nav-link-en {
  font-size: max(1.125rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 375px) {
  .footer__nav-link-en {
    font-size: max(1rem, 12px);
  }
}

.footer__nav-link-ja {
  position: relative;
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.075em;
  transition: all 0.3s;
  white-space: nowrap;
}

.footer__nav-link-ja::before {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

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

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

.form__required {
  display: inline-block;
  font-size: 12px;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
  background-color: #7db340;
  border-radius: 100vmax;
  padding: 0.34375rem 0.625rem;
  margin-left: 0.625rem;
}

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

/* ---------- フォーム共通設定 | ここから ---------- */
.form__input,
.form__textarea {
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #7db340;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
  padding: 0.625rem 1rem;
  width: 100%;
  border-radius: 0.3125rem;
  border: 1px solid #cfcfcf;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__textarea {
    font-size: max(1rem, 12px);
    padding: 0.3125rem 0.625rem;
  }
}

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

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

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

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

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

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

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

/* チェックマーク */
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 0.75rem;
  background-color: #5da71e;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100vmax;
  opacity: 0;
}

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

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

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

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

/* ---------- チェックボックス（共通） | ここまで ---------- */
/* ---------- プライバシーポリシー | ここから ---------- */
.form__privacy-text-link {
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.075em;
  line-height: 2.1111111111;
  text-decoration: underline;
  text-underline-offset: 0.0625rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .form__privacy-text-link {
    font-size: max(1rem, 12px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  position: relative;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1.3125rem 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0.625rem 0;
  }
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 17, 35, 0.2);
  mix-blend-mode: multiply;
  z-index: -1;
}

/* スクロールするとヘッダーの色が変化する */
.header.headerChange {
  background-color: rgba(207, 207, 207, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.625rem 0;
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  padding-inline: 3.125rem;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1440px) {
  .header__inner {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    align-items: center;
    padding-inline: 1.25rem;
  }
}

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

.header__logo-link {
  display: block;
  max-width: clamp(10.625rem, 6.118rem + 7.04vw, 12.5rem); /* 170 ~ 200 | 1024 ~ 1450 */
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    width: 11.25rem;
  }
}

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

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

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

.mv {
  position: relative;
  height: 100lvh;
  overflow: hidden;
}

.mv__pin {
  height: 100lvh;
  position: relative;
}

.mv__pin-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
  z-index: 0;
}

.mv__pin-section.is-active {
  opacity: 1;
}

.mv__pin-section-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100lvh;
  z-index: -5;
}

.mv__pin-section-img img {
  width: 100%;
  height: 100lvh;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .mv__pin-section-img img {
    object-position: 76.5% 50%;
    filter: blur(2px);
  }
}

.mv__inner-01 {
  position: relative;
  width: 100%;
  max-width: 91.6666666667vw;
  height: 100%;
  padding-inline: 4.1666666667vw;
  margin-inline: auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mv__inner-01 {
    padding-inline: 1.25rem;
  }
}

.mv__text-wrapper-01 {
  position: absolute;
  left: 0;
  top: 42.5%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .mv__text-wrapper-01 {
    top: 50%;
  }
}

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

.mv__title span {
  display: inline-block;
  font-size: 6.5rem;
}
@media screen and (max-width: 768px) {
  .mv__title span {
    font-size: 2.5rem;
  }
}

.mv__text-01 {
  display: inline-block;
  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: 400;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.088em;
  margin-top: 2.5rem;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .mv__text-01 {
    font-size: max(1.125rem, 12px);
  }
}

.mv__inner-02 {
  position: relative;
  width: 100%;
  max-width: 75.5208333333vw;
  height: 100%;
  padding-inline: 1.3020833333vw;
  margin-inline: auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mv__inner-02 {
    padding-inline: 1.25rem;
  }
}

.mv__text-wrapper-02 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .mv__text-wrapper-02 {
    top: 55%;
  }
}

.mv__sub-title {
  font-size: 3.375rem;
  font-family: "m-plus-1c", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4814814815;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .mv__sub-title {
    font-size: 1.5rem;
  }
}

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

.news-detail__inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 768px) {
  .news-detail__inner {
    max-width: 33.75rem;
  }
}

.news-detail__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .news-detail__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.news-detail__date {
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.news-detail__category {
  display: inline-block;
  padding: 0.5rem 0.9375rem;
  border-radius: 100vmax;
  background-color: #7db340;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-detail__category {
    padding: 0.3125rem 0.625rem;
  }
}

.news-detail__category-text {
  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;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

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

.news-detail__main-image {
  max-width: 63.75rem;
  width: 85%;
  margin-inline: auto;
  margin-top: 5rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .news-detail__main-image {
    margin-top: 3.125rem;
    margin-bottom: 3.75rem;
  }
}

.news-detail__main-image img {
  aspect-ratio: 1020/680;
  object-fit: cover;
}

.news-detail__body {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .news-detail__body {
    padding-bottom: 3.75rem;
  }
}

.news-detail__body h2 {
  font-size: 1.5625rem;
  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.5;
  letter-spacing: 0.075em;
  overflow-wrap: break-word;
  margin-top: 3.125rem;
  padding: 0.5rem 0.9375rem;
  border-top: 2px solid #7db340;
  border-bottom: 2px solid #7db340;
}
@media screen and (max-width: 768px) {
  .news-detail__body h2 {
    font-size: max(1.125rem, 12px);
    padding: 0.3125rem 0.3125rem;
    margin-top: 2.5rem;
  }
}

.news-detail__body h3 {
  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;
  line-height: 1.5;
  letter-spacing: 0.075em;
  margin-top: 3.125rem;
  padding-bottom: 0.3125rem;
  padding-inline: 0.9375rem;
  overflow-wrap: break-word;
  border-bottom: 2px solid #7db340;
}
@media screen and (max-width: 768px) {
  .news-detail__body h3 {
    font-size: max(1rem, 12px);
    padding-inline: 0.3125rem;
    margin-top: 2.5rem;
  }
}

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

.news-detail__body p:nth-child(n+2) {
  margin-top: 1em;
}

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

.news-detail__body p a {
  font-size: max(1.125rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.075em;
  overflow-wrap: break-word;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-detail__body p a {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .news-detail__body p a:hover {
    opacity: 0.6;
  }
}
.news-detail__body > ul {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .news-detail__body > ul {
    margin-top: 0.625rem;
  }
}

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

.news-detail__body > ul > li:first-child {
  margin-top: 0;
}

/* リストの「・」 */
.news-detail__body > ul > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.news-detail__body figure,
.news-detail__body iframe {
  display: block;
  max-width: 63.75rem;
  width: 85%;
  margin-inline: auto;
  margin-top: 5rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .news-detail__body figure,
  .news-detail__body iframe {
    margin-top: 3.125rem;
    margin-bottom: 3.75rem;
  }
}

.news-detail__body figure img {
  aspect-ratio: 1020/680;
  object-fit: cover;
}

.news-detail__body iframe {
  aspect-ratio: 16/9;
}

.news-detail__btn-contaner {
  display: flex;
  justify-content: space-between;
  padding-top: 1.875rem;
  border-top: 2px solid #7db340;
}
@media screen and (max-width: 768px) {
  .news-detail__btn-contaner {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.news-detail__postLinks-wrapper {
  display: contents;
}
@media screen and (max-width: 768px) {
  .news-detail__postLinks-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.news-detail__btn-back {
  text-align: center;
}
.news-detail__btn-back,
.postLink-prev,
.postLink-next {
  position: relative;
  transition: all 0.3s;
}

.news-detail__btn-back a,
.postLink-prev a,
.postLink-next a {
  position: relative;
  display: inline-block;
  font-size: max(1rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.075em;
  padding-block: 0.625rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-detail__btn-back a,
  .postLink-prev a,
  .postLink-next a {
    font-size: max(0.875rem, 12px);
  }
}

.postLink-prev a {
  padding-left: 2.8125rem;
}

.postLink-next a {
  padding-right: 2.8125rem;
}

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

.postLink-prev::before {
  transform: translateY(-50%) scale(-1, 1);
  left: 0;
}

.postLink-next::before {
  right: 0;
}

.news-detail__btn-back a::before,
.news-detail__btn-back a::after,
.postLink-prev a::before,
.postLink-prev a::after,
.postLink-next a::before,
.postLink-next a::after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s ease;
  width: 0;
}

.news-detail__btn-back a::before,
.postLink-prev a::before,
.postLink-next a::before {
  left: 0;
  bottom: -0.3125rem;
  border-bottom: 1px solid #5da71e;
}

.news-detail__btn-back a::after,
.postLink-prev a::after,
.postLink-next a::after {
  right: 0;
  top: -0.3125rem;
  border-bottom: 1px solid #ffc400;
}

@media (any-hover: hover) {
  .news-detail__btn-back a:hover::before,
  .news-detail__btn-back a:hover::after,
  .postLink-prev a:hover::before,
  .postLink-prev a:hover::after,
  .postLink-next a:hover::before,
  .postLink-next a:hover::after {
    width: 100%;
  }
}
.news-list__item {
  border-top: 1px solid #cfcfcf;
}

.news-list__item:last-child {
  border-bottom: 1px solid #cfcfcf;
}

.news-list__item-link {
  position: relative;
  display: grid;
  grid-template-columns: max(16.875rem, 210px) 1fr;
  gap: clamp(1.25rem, 4.1666666667vw, 5rem);
  padding-block: 2rem;
  padding-inline: clamp(1.25rem, 1.5625vw, 1.875rem);
  transition: all 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news-list__item-link {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-inline: 0.9375rem;
    padding-block: 1.25rem;
  }
}

.news-list__item-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(to right, #5da71e 0%, #ffc400 100%);
  width: 100%;
  height: 100%;
  transition: ease 0.3s;
  transform: translateX(-101%);
  opacity: 0.3;
  z-index: -1;
}

@media (any-hover: hover) {
  .news-list__item-link:hover::before {
    transform: translateX(0);
  }
}
.news-list__meta {
  display: grid;
  grid-template-columns: max(10rem, 125px) max(5.625rem, 75px);
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news-list__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.news-list__category {
  display: inline-block;
  padding: 0.5rem 0.9375rem;
  border-radius: 100vmax;
  background-color: #ffffff;
  text-align: center;
  margin-inline: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-list__category {
    padding: 0.3125rem 0.625rem;
    margin-inline: 0;
  }
}

@media (any-hover: hover) {
  .news-list__item-link:hover .news-list__category {
    background-color: rgba(93, 167, 30, 0.9);
  }
  .news-list__item-link:hover .news-list__category-text {
    color: rgba(255, 196, 0, 0.9);
  }
}
.news-list__category-text {
  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: #000000;
  line-height: 1.3;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.news-list__date {
  font-size: max(0.875rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: right;
}

.news-list__title {
  font-size: max(1.125rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2.3333333333;
  letter-spacing: 0.05em;
  white-space: normal; /* 文字を折り返す */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示する行数 */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news-list__title {
    font-size: max(1rem, 12px);
  }
}

.news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .news__pagination {
    margin-top: 3.125rem;
  }
}

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

.news__list-container {
  margin-top: 3.75rem;
}

.pagination,
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .pagination,
  .nav-links {
    justify-content: center;
  }
}

.pagination a {
  transition: all 0.3s;
}

.page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(1rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.075em;
  width: 3.125rem;
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .page-numbers {
    width: 2.5rem;
    border-radius: 0.3125rem;
  }
}

.page-numbers:not(.page-numbers.dots):not(.page-numbers.current) {
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
}

.page-numbers.dots {
  padding-inline: 0.625rem;
  width: auto;
}

/* 現在表示されているページ */
.page-numbers.current {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #ffffff;
  background-color: #7db340;
  border: 1px solid #7db340;
}

.page-numbers.dots {
  min-width: 0;
  padding: 0;
  border: none;
}

@media (any-hover: hover) {
  .page-numbers:not(.page-numbers.dots):not(.page-numbers.current):hover,
  .next.page-numbers:hover,
  .prev.page-numbers:hover {
    color: #ffffff;
    background-color: #7db340;
    border: 1px solid #7db340;
  }
}
.next.page-numbers,
.prev.page-numbers {
  position: relative;
  display: block;
  width: 3.125rem;
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .next.page-numbers,
  .prev.page-numbers {
    width: 2.5rem;
    border-radius: 0.3125rem;
  }
}

.next.page-numbers::after,
.prev.page-numbers::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: max(1rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s;
}

/* 前への矢印カスタマイズ */
.next.page-numbers::after {
  content: ">";
}

/* 次への矢印カスタマイズ */
.prev.page-numbers::after {
  content: "<";
}

@media (any-hover: hover) {
  .next.page-numbers:hover::after,
  .prev.page-numbers:hover::after {
    opacity: 1;
    color: #ffffff;
  }
}
.pc-nav__items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-nav__item {
  position: relative;
  display: block;
  transition: all 0.3s ease;
}

.pc-nav__item:not(.pc-nav__item-contact)::before,
.pc-nav__item:not(.pc-nav__item-contact)::after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s ease;
  height: 0;
}

.pc-nav__item::before {
  top: 0;
  left: 0;
  border-left: 2px solid #7db340;
}

.pc-nav__item::after {
  bottom: 0;
  right: 0;
  border-left: 2px solid #ffc400;
}

@media (any-hover: hover) {
  .pc-nav__item:hover::before {
    height: 100%;
  }
  .pc-nav__item:hover::after {
    height: 100%;
  }
}
.pc-nav__item.pc-nav__item-contact {
  min-width: 8.125rem;
  width: 100%;
  margin-left: 0.9375rem;
}

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

.pc-nav__dropdown-item-inner::before,
.pc-nav__dropdown-item-inner::after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s ease;
  width: 0;
}

.pc-nav__dropdown-item-inner::before {
  left: 0;
  bottom: 0;
  border-bottom: 2px solid #7db340;
}

.pc-nav__dropdown-item-inner::after {
  right: 0;
  top: 0;
  border-bottom: 2px solid #ffc400;
}

@media (any-hover: hover) {
  .pc-nav__dropdown-item-inner:hover::before,
  .pc-nav__dropdown-item-inner:hover::after {
    width: 100%;
  }
}
/* ドロップダウン表示中は、親hoverの間ずっとinnerのホバー線を維持 */
@media (any-hover: hover) {
  .pc-nav__item-dropdown:hover .pc-nav__dropdown-item-inner::before,
  .pc-nav__item-dropdown:hover .pc-nav__dropdown-item-inner::after {
    width: 100%;
  }
}
/* キーボード操作でも同様（フォーカスがメニュー内にある間は維持） */
.pc-nav__item-dropdown:focus-within .pc-nav__dropdown-item-inner::before,
.pc-nav__item-dropdown:focus-within .pc-nav__dropdown-item-inner::after {
  width: 100%;
}

.pc-nav__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4375rem 1.5625rem;
  padding: 0.4375rem clamp(0.938rem, -0.565rem + 2.35vw, 1.563rem); /* 15 ~ 25 | 1024 ~ 1450 */
  text-align: center;
  transition: all 0.3s ease;
}

.pc-nav__item-link-en {
  font-size: max(1.125rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  white-space: nowrap;
  transition: all 0.3s;
}

.pc-nav__item-link-ja {
  position: relative;
  font-size: max(0.875rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.075em;
  white-space: nowrap;
  transition: all 0.3s;
}

.pc-nav__item-link-ja::before {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 1px;
  background-color: #ffffff;
}

/* ---------- ドロップダウンメニュー | ここから ---------- */
.pc-nav__item-dropdown:hover .pc-nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.pc-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  transition: all 0.3s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  padding-top: 1.25rem;
}

.pc-nav__dropdown-items {
  background-color: #f6f6f6;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  overflow: hidden;
}

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

.pc-nav__dropdown-link {
  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: #4a4c4d;
  letter-spacing: 0.05em;
  padding: 0.625rem 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

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

@media (any-hover: hover) {
  .pc-nav__dropdown-link.pc-nav__dropdown-link--plant:hover {
    background-color: #83d743;
  }
  .pc-nav__dropdown-link.pc-nav__dropdown-link--waste:hover {
    background-color: #ffe72b;
  }
  .pc-nav__dropdown-link.pc-nav__dropdown-link--rotary:hover {
    background-color: #48cebc;
  }
  .pc-nav__dropdown-link.pc-nav__dropdown-link--food:hover {
    background-color: #ff8754;
  }
  .pc-nav__dropdown-link.pc-nav__dropdown-link--water:hover {
    background-color: #5a8ee8;
  }
  .pc-nav__dropdown-link.pc-nav__dropdown-link--fire:hover {
    background-color: #ff4848;
  }
}
/* ---------- ドロップダウンメニュー | ここまで ---------- */
.privacy {
  padding-bottom: 11.875rem;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding-bottom: 6.25rem;
  }
}

.privacy__intro-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: #000000;
  letter-spacing: 0.075em;
  line-height: 2;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .privacy__intro-text {
    font-size: max(1rem, 12px);
    line-height: 1.875;
    margin-top: 1rem;
  }
}

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

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

.privacy__rule-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: 900;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .privacy__rule-title {
    font-size: 1rem;
  }
}

.privacy__rule-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #7db340;
  width: 4px;
  height: 100%;
}

.privacy__rule-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffc400;
  width: 4px;
  height: 50%;
}

.privacy__rule-body {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .privacy__rule-body {
    margin-top: 1.25rem;
  }
}

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

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

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

.privacy__list-item--level2 {
  margin-top: 1em;
}

.privacy__list--level1 {
  padding-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .privacy__list--level1 {
    padding-left: 1em;
  }
}

.privacy__list--level2 {
  padding-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .privacy__list--level2 {
    padding-left: 1em;
  }
}

.privacy__list--level3 {
  padding-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .privacy__list--level3 {
    padding-left: 1em;
  }
}

/* ---------- 背景クリップパス | ここから ---------- */
.section-bg {
  position: relative;
}

/* 上辺左右 クリップパス */
.section-bg.section-bg-01 {
  clip-path: polygon(5rem 0, calc(100% - 5rem) 0, 100% 5rem, 100% 100%, 0 100%, 0 5rem);
  margin-top: -9.375rem;
}
@media screen and (max-width: 768px) {
  .section-bg.section-bg-01 {
    clip-path: polygon(2.5rem 0, calc(100% - 2.5rem) 0, 100% 2.5rem, 100% 100%, 0 100%, 0 2.5rem);
    margin-top: -2.5rem;
  }
}

/* 四方 クリップパス */
.section-bg.section-bg-02 {
  clip-path: polygon(5rem 0, calc(100% - 5rem) 0, 100% 5rem, 100% calc(100% - 5rem), calc(100% - 5rem) 100%, 5rem 100%, 0 calc(100% - 5rem), 0 5rem);
  margin-block: -5rem;
}
@media screen and (max-width: 768px) {
  .section-bg.section-bg-02 {
    clip-path: polygon(2.5rem 0, calc(100% - 2.5rem) 0, 100% 2.5rem, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 2.5rem 100%, 0 calc(100% - 2.5rem), 0 2.5rem);
    margin-block: -2.5rem;
  }
}

.section-bg.section-bg-02.section-bg-02--top {
  margin-top: -9.375rem;
  margin-bottom: -5rem;
}
@media screen and (max-width: 768px) {
  .section-bg.section-bg-02.section-bg-02--top {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f6f6f6;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-texture-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section-bg::after {
    background-image: url(../../assets/images/common/bg-texture-sp.png);
  }
}

/* ---------- 背景クリップパス | ここまで ---------- */
.section-title {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 1.5625rem;
  padding-inline: 3.875rem;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .section-title {
    display: flex;
    gap: 0.75rem;
    padding-inline: 2.5rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 520px) {
  .section-title {
    gap: 0;
    flex-direction: column;
    align-items: center;
    padding-inline: 2.1875rem;
  }
}

.section-title.top-news__section-title {
  padding-inline: 3.125rem;
}
@media screen and (max-width: 768px) {
  .section-title.top-news__section-title {
    padding-inline: 2.5rem;
  }
}

.section-title--column {
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 37/100;
  width: 2.3125rem;
}
@media screen and (max-width: 768px) {
  .section-title::before,
  .section-title::after {
    width: 1.5rem;
  }
}

.section-title::before {
  left: 0;
  background-image: url(../../assets/images/common/angle-brackets-color-left.svg);
}

.section-title::after {
  right: 0;
  background-image: url(../../assets/images/common/angle-brackets-color-right.svg);
}

.section-title.top-news__section-title::before,
.section-title.top-news__section-title::after {
  width: 1.5rem;
}
.section-title__en {
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.025em;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 2.75rem;
    letter-spacing: 0.015em;
  }
}

.section-title.top-news__section-title .section-title__en {
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .section-title.top-news__section-title .section-title__en {
    font-size: 2.75rem;
  }
}

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

.section-title.section-title-white .section-title__en,
.section-title.section-title-white .section-title__ja {
  color: #ffffff;
}

.section-title.section-title--column .section-title__ja {
  margin-bottom: 0;
}

.service-description {
  margin-top: 10.625rem;
}
@media screen and (max-width: 768px) {
  .service-description {
    margin-top: 5rem;
  }
}

.service-description__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 9.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service-description__wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.service-description__title {
  flex-shrink: 0;
}

.service-description__list {
  margin-top: 3rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .service-description__list {
    margin-top: 0;
    width: 100%;
  }
}

.service-description__list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.125rem;
  border-bottom: 1px solid #cfcfcf;
  padding: 1.75rem 1.0625rem;
}
@media screen and (max-width: 768px) {
  .service-description__list-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0;
  }
}

.service-description__list-item:first-child {
  border-top: 1px solid #cfcfcf;
}

.service-description__list-head {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  flex-shrink: 0;
  width: 17.5rem;
}
@media screen and (max-width: 768px) {
  .service-description__list-head {
    font-size: max(1.125rem, 12px);
    line-height: 1.5;
    width: 100%;
  }
}

.service-description__list-details {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  flex: 1;
}

.service-description__list-details--2column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 1280px) {
  .service-description__list-details--2column {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.service-description__list-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1875rem;
}

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

.service-description__list-detail::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 0.625rem;
}
@media screen and (max-width: 768px) {
  .service-description__list-detail::before {
    width: 0.5rem;
  }
}

.service-plant .service-description__list-detail::before {
  background-color: #5da71e;
}

.service-rotary .service-description__list-detail::before {
  background-color: #48cebc;
}

.service-food .service-description__list-detail::before {
  background-color: #ff8754;
}

.service-waste .service-description__list-detail::before {
  background-color: #ffc400;
}

.service-water .service-description__list-detail::before {
  background-color: #5a8ee8;
}

.service-fire .service-description__list-detail::before {
  background-color: #ff4848;
}

.service-gallery {
  position: relative;
  padding-top: 7.375rem;
  padding-bottom: 10.625rem;
  margin-top: 12.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-gallery {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
    margin-top: 5rem;
  }
}

.service-gallery:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1560px) {
  .service-gallery:before {
    width: 96%;
  }
}
@media screen and (max-width: 1500px) {
  .service-gallery:before {
    width: 100%;
  }
}

.service-plant .service-gallery:before {
  background-color: rgba(131, 215, 67, 0.1);
}

.service-rotary .service-gallery:before {
  background-color: rgba(72, 206, 188, 0.1);
}

.service-food .service-gallery:before {
  background-color: rgba(255, 135, 84, 0.1);
}

.service-waste .service-gallery:before {
  background-color: rgba(255, 196, 0, 0.1);
}

.service-water .service-gallery:before {
  background-color: rgba(90, 142, 232, 0.1);
}

.service-fire .service-gallery:before {
  background-color: rgba(255, 72, 72, 0.1);
}

.service-gallery__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .service-gallery__header {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.service-gallery__header::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 2.5rem;
  background-image: url(../../assets/images/common/logo-symbol-03.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 550/472;
  width: 34.375rem;
}
@media screen and (max-width: 768px) {
  .service-gallery__header::before {
    top: -3.125rem;
    left: 1.25rem;
    width: 17.5rem;
  }
}

.service-gallery__title {
  position: relative;
  width: 100%;
  z-index: 1;
}

.service-gallery__nav {
  display: flex;
  gap: 0.625rem;
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  .service-gallery__nav {
    position: relative;
    margin-top: 0;
    z-index: 1;
  }
}

.service-gallery__nav-button {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .service-gallery__nav-button {
    width: 2rem;
    height: 2rem;
  }
}

.service-gallery__nav-button::before,
.service-gallery__nav-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
}

.service-gallery__nav-button::before {
  background-image: url(../../assets/images/common/icon-arrow-01.svg);
  opacity: 1;
}

.service-gallery__nav-button::after {
  background-image: url(../../assets/images/common/icon-arrow-02.svg);
  opacity: 0;
}

.service-gallery__nav-button--prev {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  .service-gallery__nav-button:hover::before {
    opacity: 0;
  }
  .service-gallery__nav-button:hover::after {
    opacity: 1;
  }
}
.service-gallery__slider {
  margin-top: 3.5rem;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-gallery__slider {
    margin-top: 1.875rem;
  }
}

.service-gallery__slider-slide {
  width: auto;
  height: auto;
}

.service-gallery__slide-image {
  border-radius: 0.625rem;
  aspect-ratio: 810/540;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-gallery__slide-image {
    border-radius: 0.5rem;
  }
}

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

.service-intro__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service-intro__wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.service-intro__textBlock {
  width: 100%;
}

.service-intro--imageColumn .service-intro__textBlock {
  max-width: 57.5rem;
}
@media screen and (max-width: 768px) {
  .service-intro--imageColumn .service-intro__textBlock {
    max-width: 100%;
  }
}

.service-intro--imageRow .service-intro__textBlock {
  max-width: 45rem;
}
@media screen and (max-width: 768px) {
  .service-intro--imageRow .service-intro__textBlock {
    max-width: 100%;
  }
}

.service-intro__head {
  padding-left: 1.25rem;
  border-left: 7px solid;
}
@media screen and (max-width: 768px) {
  .service-intro__head {
    padding-left: 0.75rem;
    border-left: 4px solid;
  }
}

.service-plant .service-intro__head {
  border-color: #83d743;
}

.service-rotary .service-intro__head {
  border-color: #48cebc;
}

.service-food .service-intro__head {
  border-color: #ff8754;
}

.service-food .service-intro__head {
  border-color: #ff8754;
}

.service-waste .service-intro__head {
  border-color: #ffe72b;
}

.service-water .service-intro__head {
  border-color: #5a8ee8;
}

.service-fire .service-intro__head {
  border-color: #ff4848;
}

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

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

.service-intro__text p:not(:first-child) {
  margin-top: 1lh;
}

.service-intro__image {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-intro__image {
    border-radius: 0.625rem;
  }
}

.service-intro--imageColumn .service-intro__image {
  aspect-ratio: 400/550;
  max-width: 25rem;
}
@media screen and (max-width: 768px) {
  .service-intro--imageColumn .service-intro__image {
    aspect-ratio: 600/400;
    max-width: 100%;
  }
}

.service-intro--imageRow .service-intro__image {
  aspect-ratio: 600/400;
  max-width: 37.5rem;
}
@media screen and (max-width: 768px) {
  .service-intro--imageRow .service-intro__image {
    max-width: 100%;
  }
}

.service-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-section-title__en {
  position: relative;
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 2.5;
  text-transform: capitalize;
  padding-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .service-section-title__en {
    padding-left: 1.25rem;
  }
}

.service-section-title__en::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 18/16;
  width: 1.125rem;
}
@media screen and (max-width: 768px) {
  .service-section-title__en::before {
    width: 0.875rem;
  }
}

.service-plant .service-section-title__en::before {
  background-image: url(../../assets/images/common/logo-symbol-02.svg);
}

.service-rotary .service-section-title__en::before {
  background-image: url(../../assets/images/common/logo-symbol-rotary.svg);
}

.service-food .service-section-title__en::before {
  background-image: url(../../assets/images/common/logo-symbol-food.svg);
}

.service-waste .service-section-title__en::before {
  background-image: url(../../assets/images/common/logo-symbol-waste.svg);
}

.service-water .service-section-title__en::before {
  background-image: url(../../assets/images/common/logo-symbol-water.svg);
}

.service-fire .service-section-title__en::before {
  background-image: url(../../assets/images/common/logo-symbol-fire.svg);
}

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

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

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

.slide-text.footer__slide-text {
  top: auto;
  bottom: -6.875rem;
  height: 25.5625rem;
}
@media screen and (max-width: 768px) {
  .slide-text.footer__slide-text {
    bottom: -3.4375rem;
    height: 12.75rem;
  }
}

.slide-text.top-service__slide-text {
  top: 53.125rem;
  height: 17.1875rem;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .slide-text.top-service__slide-text {
    top: 31.25rem;
    height: 8.625rem;
  }
}

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

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

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

/* 右から左へ */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-text__item {
  position: relative;
  width: 100%;
}

.slide-text__item.slide-text__item-footer {
  width: 175.625rem;
  margin-left: 6.25rem;
}
@media screen and (max-width: 768px) {
  .slide-text__item.slide-text__item-footer {
    width: 87.8125rem;
    margin-left: 3.125rem;
  }
}

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

.slide-text__item.slide-text__item-top-service img {
  mix-blend-mode: soft-light;
}

.service-01__head {
  display: grid;
  grid-template-columns: 685fr 670fr;
  gap: clamp(1.875rem, 4.4270833333vw, 2.8125rem);
}
@media screen and (max-width: 768px) {
  .service-01__head {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}

.service-01__title {
  font-size: clamp(2.25rem, 1.9791666667vw, 2.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: #000000;
  line-height: 1.5789473684;
  letter-spacing: 0.075em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .service-01__title {
    font-size: 1.5rem;
  }
}

.service-01__title span {
  color: #7db340;
}

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

.service-01__container {
  display: grid;
  grid-template-columns: 700fr 620fr;
  gap: clamp(2.5rem, 4.1666666667vw, 5rem);
  align-items: start;
  width: 100%;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .service-01__container {
    display: contents;
    margin-top: 5rem;
  }
}

.service-01__diagram-area {
  position: sticky;
  top: 6.25rem;
  left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.5rem;
  width: 100%;
  min-height: 41.25rem;
}
@media screen and (max-width: 768px) {
  .service-01__diagram-area {
    display: none;
  }
}

.service-01__diagram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

/* 表示中 */
.service-01__diagram.is-active {
  opacity: 1;
  visibility: visible;
}

.service-01__diagram-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .service-01__diagram-sp {
    display: block;
    width: 90%;
    max-width: 25rem;
    margin-inline: auto;
    margin-top: 5rem;
  }
}

.service-01__diagram img {
  aspect-ratio: 700/660;
  object-fit: contain;
}

.service-01__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.25rem;
}
@media screen and (max-width: 768px) {
  .service-01__items {
    gap: 3.125rem;
    margin-top: 5rem;
  }
}

.service-01__item {
  padding: 3.125rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .service-01__item {
    padding: 2.5rem 1.25rem;
    border-radius: 0.625rem;
  }
}

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

.service-01-card__body {
  margin-top: 1.25rem;
}

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

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

.service-02 {
  padding-top: 15.9375rem;
}
@media screen and (max-width: 768px) {
  .service-02 {
    padding-top: 7.5rem;
  }
}

.service-02__container {
  position: relative;
  margin-top: 3.75rem;
}

.service-02__items {
  width: 100%;
}

.service-02__item + .service-02__item {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .service-02__item + .service-02__item {
    margin-top: 5.625rem;
  }
}

.service-02__item-wrapper {
  display: grid;
  grid-template-columns: 38.75rem 1fr;
  gap: 5rem;
  align-items: start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service-02__item-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.service-02__img {
  border-radius: 0.625rem;
  width: 100%;
  aspect-ratio: 620/400;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-02__img {
    border-radius: 0.3125rem;
    width: 90%;
    margin-inline: auto;
  }
}

.service-02__img img {
  height: 100%;
  object-fit: cover;
}

.service-02__content {
  width: 100%;
  max-width: 43.75rem;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .service-02__content {
    max-width: 100%;
    padding-top: 0;
  }
}

.service-02__number {
  position: relative;
  display: inline-block;
  font-size: max(0.875rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 800;
  color: #4a4c4d;
  padding-inline: 1.25rem;
}

.service-02__number::before,
.service-02__number::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.service-02__number::before {
  content: "〈";
  left: 0;
}

.service-02__number::after {
  content: "〉";
  right: 0;
}

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

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

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

.service-02__item--plant .service-02__name {
  color: #7db340;
}

.service-02__item--waste .service-02__name {
  color: #d4a700;
}

.service-02__item--rotary .service-02__name {
  color: #48cebc;
}

.service-02__item--food .service-02__name {
  color: #ff8754;
}

.service-02__item--water .service-02__name {
  color: #5a8ee8;
}

.service-02__item--fire .service-02__name {
  color: #ff4848;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 768px) {
  .sp-nav__item-link-ja::before {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 1px;
    background-color: #ffffff;
  }
}

.sp-nav__accordion-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}

/* ---------- アコーディオン | ここから ---------- */
.sp-nav__item-icon {
  position: relative;
  display: block;
  width: 1.25rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.sp-nav__item-icon::after,
.sp-nav__item-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0.125rem;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.sp-nav__item-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sp-nav__item-accordion.is-open .sp-nav__item-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sp-nav__item-accordion.is-open .sp-nav__item-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media screen and (max-width: 768px) {
  .sp-nav__accordion-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__accordion-item:first-child {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__accordion-link {
    display: block;
    font-size: max(1rem, 12px);
    font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    color: #ffffff;
    padding: 0.9375rem 0;
    text-decoration: none;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .sp-nav__accordion-link:hover {
    opacity: 0.6;
  }
}
/* ---------- アコーディオン | ここまで ---------- */
.sub-fv {
  position: relative;
  color: #ffffff;
  background-image: url(../../assets/images/fv/bg-sub-fv-01.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  aspect-ratio: 1920/810;
  width: 100%;
  padding-block: 15.625rem;
  min-height: 50rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sub-fv {
    background-image: url(../../assets/images/fv/bg-sub-fv-sp-01.webp);
    background-position: left;
    min-height: 25rem;
    padding-block: 15.625rem 6.25rem;
    aspect-ratio: auto;
  }
}

.sub-fv__image {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1/1;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sub-fv__image {
    top: -1.875rem;
    bottom: auto;
    right: -4.375rem;
    max-width: 21.875rem;
    max-width: clamp(21.875rem, 58.6701434159vw, 28.125rem);
    width: 100%;
    height: auto;
    z-index: 0;
  }
}

.sub-fv__title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}
@media screen and (max-width: 768px) {
  .sub-fv__title {
    padding-inline: 3.75rem;
  }
}
@media screen and (max-width: 580px) {
  .sub-fv__title {
    padding-inline: 2rem;
  }
}

.sub-fv__title::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/angle-brackets-white-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 56/170;
  width: 3.5rem;
}
@media screen and (max-width: 1580px) {
  .sub-fv__title::before {
    width: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__title::before {
    width: 2.125rem;
  }
}
@media screen and (max-width: 580px) {
  .sub-fv__title::before {
    width: 1.375rem;
  }
}

.sub-fv__title::after {
  content: "";
  position: absolute;
  top: 53%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/angle-brackets-white-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 56/170;
  width: 3.5rem;
}
@media screen and (max-width: 1580px) {
  .sub-fv__title::after {
    width: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__title::after {
    width: 2.125rem;
  }
}
@media screen and (max-width: 580px) {
  .sub-fv__title::after {
    width: 1.375rem;
  }
}

.sub-fv__title-en {
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(5rem, 5.7291666667vw, 6.875rem);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.34;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .sub-fv__title-en {
    font-size: clamp(2.5rem, 8.3441981747vw, 4rem);
  }
}

.sub-fv__title[data-theme=privacy] .sub-fv__title-en {
  font-size: clamp(4.375rem, 4.9479166667vw, 5.9375rem);
}
@media screen and (max-width: 768px) {
  .sub-fv__title[data-theme=privacy] .sub-fv__title-en {
    font-size: clamp(1.875rem, 7.0404172099vw, 3.375rem);
  }
}

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

.sub-fv__subService-title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.sub-fv__subService-title-en {
  position: relative;
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.62vw;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.9230769231;
  text-transform: capitalize;
  padding-inline: 2.4375rem;
}
@media screen and (max-width: 1920px) {
  .sub-fv__subService-title-en {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__subService-title-en {
    font-size: 1.375rem;
    padding-inline: 1.5rem;
  }
}

.sub-fv__subService-title-en::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/angle-brackets-white-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 14/45;
  width: 0.875rem;
}
@media screen and (max-width: 768px) {
  .sub-fv__subService-title-en::before {
    top: 48%;
    width: 0.5rem;
  }
}

.sub-fv__subService-title-en::after {
  content: "";
  position: absolute;
  top: 53%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/angle-brackets-white-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 14/45;
  width: 0.875rem;
}
@media screen and (max-width: 768px) {
  .sub-fv__subService-title-en::after {
    top: 48%;
    width: 0.5rem;
  }
}

.sub-fv__subService-title-en span {
  display: inline-block;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.75vw;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.5;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 1920px) {
  .sub-fv__subService-title-en span {
    font-size: max(0.875rem, 12px);
  }
}

.sub-fv__subService-title-ja {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.64vw;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.2;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 1440px) {
  .sub-fv__subService-title-ja {
    font-size: 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__subService-title-ja {
    font-size: 2.75rem;
    margin-top: 0;
  }
}

.sub-fv__subService-title-ja span {
  font-size: 2.6vw;
}
@media screen and (max-width: 1440px) {
  .sub-fv__subService-title-ja span {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__subService-title-ja span {
    font-size: 1.5rem;
  }
}

.sub-fv-plant .sub-fv__subService-title-ja {
  color: #83d743;
}

.sub-fv-rotary .sub-fv__subService-title-ja {
  color: #48cebc;
}

.sub-fv-food .sub-fv__subService-title-ja {
  color: #ff8754;
}

.sub-fv-waste .sub-fv__subService-title-ja {
  color: #ffe72b;
}

.sub-fv-water .sub-fv__subService-title-ja {
  color: #5a8ee8;
}

.sub-fv-fire .sub-fv__subService-title-ja {
  color: #ff4848;
}

.sub-fv__breadcrumb {
  position: relative;
  width: 100%;
  margin-inline: auto;
  margin-top: 11.875rem;
}
@media screen and (max-width: 768px) {
  .sub-fv__breadcrumb {
    margin-top: 5rem;
  }
}

.sustainable-activity {
  background-image: url(../../assets/images/sustainable/bg-sustainable-activity-01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 7.8125rem;
  padding-bottom: 10.0625rem;
  margin: 7rem 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .sustainable-activity {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
    margin: 3.75rem 0 0;
  }
}

.sustainable-activity__title {
  text-align: center;
}

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

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

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

.sustainable-activity__items {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .sustainable-activity__items {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.sustainable-activity__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 3.125rem 2.5rem 3rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .sustainable-activity__item {
    border-radius: 0.625rem;
    padding: 1.875rem 1.25rem 1.75rem;
  }
}

.sustainable-activity__item-icon {
  width: 100%;
  height: auto;
}

.sustainable-activity__item[data-number="01"] .sustainable-activity__item-icon {
  aspect-ratio: 90/100;
  max-width: 5.625rem;
}
@media screen and (max-width: 768px) {
  .sustainable-activity__item[data-number="01"] .sustainable-activity__item-icon {
    max-width: 4.375rem;
  }
}

.sustainable-activity__item[data-number="02"] .sustainable-activity__item-icon {
  aspect-ratio: 95/100;
  max-width: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .sustainable-activity__item[data-number="02"] .sustainable-activity__item-icon {
    max-width: 4.6875rem;
  }
}

.sustainable-activity__item[data-number="03"] .sustainable-activity__item-icon {
  aspect-ratio: 159/100;
  max-width: 9.9375rem;
}
@media screen and (max-width: 768px) {
  .sustainable-activity__item[data-number="03"] .sustainable-activity__item-icon {
    max-width: 7.5rem;
  }
}

.sustainable-activity__item-icon img {
  width: 100%;
  object-fit: contain;
}

.sustainable-activity__item-textBlock {
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .sustainable-activity__item-textBlock {
    margin-top: 1rem;
  }
}

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

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

.sustainable-intro__textBlock {
  text-align: center;
}

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

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

.sustainable-sdgs {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs {
    margin-top: 5rem;
  }
}

.sustainable-sdgs__title-wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
  }
}

.sustainable-sdgs__poster {
  position: absolute;
  top: -3.75rem;
  right: 0;
  width: 100%;
  max-width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__poster {
    position: static;
    max-width: 15.625rem;
  }
}

.sustainable-sdgs__textBlock {
  display: grid;
  grid-template-columns: 21.875rem 1fr;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .sustainable-sdgs__textBlock {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__textBlock {
    gap: 1.25rem;
    margin-top: 3.125rem;
  }
}

.sustainable-sdgs__mainText {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.375rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.5789473684;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__mainText {
    font-size: 1.75rem;
    line-height: 1.5714285714;
  }
}

.sustainable-sdgs__mainText span {
  color: #7db340;
}

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

.sustainable-sdgs__items {
  margin-top: 11.4375rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__items {
    margin-top: 5rem;
  }
}

.sustainable-sdgs__item:not(:first-child) {
  margin-top: 9.5625rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item:not(:first-child) {
    margin-top: 3.75rem;
  }
}

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

.sustainable-sdgs__item-head {
  display: flex;
  flex-direction: column;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  flex-shrink: 0;
  padding-left: 1.25rem;
  border-left: 7px solid transparent;
  border-image: linear-gradient(to bottom, #5da71e, #ffc400) 1;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-head {
    padding-left: 0.75rem;
    border-left: 4px solid transparent;
  }
}

.sustainable-sdgs__item-head-mainText {
  font-size: 2.375rem;
  line-height: 1.3684210526;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-head-mainText {
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}

.sustainable-sdgs__item-head-subText {
  font-size: 1.5rem;
  line-height: 2.1666666667;
  letter-spacing: 0.075em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-head-subText {
    font-size: max(1.125rem, 12px);
    line-height: 1.4444444444;
  }
}

.sustainable-sdgs__item-icon {
  display: flex;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-icon {
    gap: 0.25rem;
  }
}

.sustainable-sdgs__item-icon img {
  aspect-ratio: 1/1;
  max-width: 4.875rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-icon img {
    max-width: 3.25rem;
  }
}

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

.sustainable-sdgs__item-content {
  display: flex;
  gap: 3.125rem;
  background-color: #ffffff;
  border-radius: 1.875rem;
  padding: 4.2rem 4.375rem 4.25rem;
  margin-top: 1.8125rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-content {
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 0.625rem;
    max-width: 42.5rem;
    width: 100%;
    padding: 1.875rem 1.25rem 1.75rem;
    margin-top: 1.25rem;
    margin-inline: auto;
  }
}

.sustainable-sdgs__item-content-image {
  border-radius: 1.25rem;
  aspect-ratio: 480/320;
  max-width: 30rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-content-image {
    border-radius: 0.625rem;
    max-width: 100%;
  }
}

.sustainable-sdgs__item-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainable-sdgs__item-content-title {
  position: relative;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.75;
  padding-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-content-title {
    font-size: max(1.125rem, 12px);
    line-height: 1.7777777778;
    padding-left: 1.25rem;
  }
}

.sustainable-sdgs__item-content-title::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/logo-symbol-02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 18/16;
  width: 1.125rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-content-title::before {
    width: 0.875rem;
  }
}

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

.sustainable-sdgs__item-content-text-list-items {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sustainable-sdgs__item-content-text-list-items {
    margin-top: 0.5rem;
  }
}

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

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

.top-company__container {
  position: relative;
  display: grid;
  grid-template-columns: 540fr 570fr;
  gap: clamp(3.75rem, 6.25vw, 7.5rem);
  margin-top: 5rem;
  max-width: 87.5rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 6.25rem 4.375rem;
}
@media screen and (max-width: 768px) {
  .top-company__container {
    grid-template-columns: 1fr;
    gap: 7.5rem;
    padding-inline: 1.25rem;
    max-width: 33.75rem;
  }
}

.top-company__container::before {
  content: "";
  position: absolute;
  right: -20rem;
  bottom: -23.4375rem;
  background-image: url(../../assets/images/common/logo-symbol-01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40.625rem;
  aspect-ratio: 650/562;
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-company__container::before {
    right: -11.875rem;
    bottom: -7.5rem;
    width: 18.75rem;
  }
}

.top-company__img-wrapper {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-company__img-wrapper {
    padding-left: 3.125rem;
    max-width: 16.75rem;
    margin-inline: auto;
  }
}

.top-company__img-main {
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}

.top-company__img-main img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 540/720;
}

.top-company__img-sub {
  position: absolute;
  left: -16.25rem;
  bottom: -4.375rem;
  width: 100%;
  max-width: 22.5rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-company__img-sub {
    left: -1.875rem;
    bottom: -3.125rem;
    max-width: 6.25rem;
  }
}

.top-company__img-sub img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 360/480;
}

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

.top-company__nav-items {
  border-top: 1px solid #cfcfcf;
}

.top-company__nav-item {
  border-bottom: 1px solid #cfcfcf;
}

.top-company__nav-link {
  position: relative;
  display: block;
  padding-block: 2.0625rem;
  padding-inline: 0.9375rem;
  padding-right: 4.375rem;
  width: 100%;
  transition: all 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-company__nav-link {
    padding-block: 0.9375rem;
    padding-right: 3.125rem;
  }
}

.top-company__nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(to right, #5da71e 0%, #ffc400 100%);
  width: 100%;
  height: 100%;
  transition: ease 0.3s;
  transform: translateX(-101%);
  opacity: 0.3;
  z-index: -1;
}

.top-company__nav-link::after {
  content: "";
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-arrow-02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.125rem;
  aspect-ratio: 1/1;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top-company__nav-link::after {
    width: 2.1875rem;
  }
}

@media (any-hover: hover) {
  .top-company__nav-link:hover::before {
    transform: translateX(0);
  }
  .top-company__nav-link:hover::after {
    filter: brightness(1.2);
  }
}
.top-company__nav-text {
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-company__nav-text {
    font-size: 1.25rem;
  }
}

.top-company__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-company__btn {
    align-items: center;
  }
}

.top-company__banner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 20rem;
  padding-inline: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-company__banner {
    margin-top: 6.25rem;
    padding-inline: 1.25rem;
  }
}

.top-company__banner-link {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.top-company__banner-link img {
  aspect-ratio: 1800/750;
}

@media (any-hover: hover) {
  .top-company__banner-link:hover {
    filter: brightness(1.1);
  }
}
.top-news {
  padding-block: 9.375rem 22.5rem;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding-block: 6.25rem 10rem;
  }
}

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

.top-news__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-news__head {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .top-news__section-title {
    order: 1;
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .top-news__btn {
    order: 3;
    text-align: center;
  }
}

.top-news__news-list {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-news__news-list {
    order: 2;
    margin-top: 0;
  }
}

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

.top-service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../../assets/images/top/service-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 95.375rem;
  aspect-ratio: 1526/1440;
  filter: blur(7px);
  z-index: -1;
}

.top-service__img {
  position: absolute;
  top: 9.375rem;
  right: 0;
  max-width: 53.0625rem;
  max-width: clamp(48.75rem, 44.21875vw, 53.0625rem);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-service__img {
    position: static;
    margin-inline: auto;
    margin-top: 3.75rem;
  }
}

.top-service__img img {
  aspect-ratio: 849/767;
}
@media screen and (max-width: 768px) {
  .top-service__img img {
    mask-image: linear-gradient(135deg, #ffffff 0%, #ffffff 70%, transparent 95%);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
  }
}

.top-service__text-wrapper {
  max-width: clamp(37.5rem, 44.2708333333vw, 53.125rem);
  width: 100%;
  margin-top: 3.625rem;
}
.top-service__sub-title {
  position: relative;
  font-size: max(1rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.075em;
  padding-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .top-service__sub-title {
    padding-left: 1.25rem;
    margin-top: 3.75rem;
  }
}

.top-service__sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/logo-symbol-02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 18/16;
  width: 1.125rem;
}
@media screen and (max-width: 768px) {
  .top-service__sub-title::before {
    width: 0.875rem;
  }
}

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

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

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

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

.top-service__slide-title {
  font-size: 3.75rem;
  font-family: "m-plus-1c", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service__slide-title {
    font-size: 1.5625rem;
  }
}

.top-service-swiper {
  margin-top: 5.625rem;
  padding-block: 6.25rem;
}
@media screen and (max-width: 768px) {
  .top-service-swiper {
    margin-top: 3.75rem;
    padding-block: 3.125rem;
  }
}

.top-service-swiper .swiper-slide {
  width: 17.5rem;
}

.top-service__swiper-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 390/334;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .top-service__swiper-link:hover {
    filter: brightness(1.1);
  }
}
.top-service__swiper-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../../assets/images/top/slide-plant-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.top-service__swiper-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 77%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.top-service__swiper-img img {
  width: 100%;
  aspect-ratio: 300/255;
}

.top-service__swiper-text-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.top-service__swiper-number {
  position: relative;
  display: inline-block;
  font-size: max(0.875rem, 12px);
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 800;
  color: #4a4c4d;
  padding-inline: 1.25rem;
}

.top-service__swiper-number::before,
.top-service__swiper-number::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.top-service__swiper-number::before {
  content: "〈";
  left: 0;
}

.top-service__swiper-number::after {
  content: "〉";
  right: 0;
}

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

.top-service__swiper-title-en {
  font-size: 0.75rem;
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #4a4c4d;
  letter-spacing: 0.075em;
  text-transform: capitalize;
  margin-top: 0.375rem;
}

.top-service-swiper .swiper-slide-active .top-service__swiper-img {
  opacity: 1;
}

.top-service-swiper .swiper-slide-active .top-service__swiper-link {
  transform: scale(1.4);
}

.top-service-swiper .swiper-slide-active .top-service__swiper-link .top-service__swiper-img {
  opacity: 0.2;
}

.top-service__swiper-link--plant::before {
  background-image: url(../../assets/images/top/slide-plant-bg.webp);
}

.top-service__swiper-link--plant .top-service__swiper-title-ja,
.top-service__swiper-link--plant .top-service__swiper-title-en {
  color: #83d743;
}

.top-service__swiper-link--waste::before {
  background-image: url(../../assets/images/top/slide-waste-bg.webp);
}

.top-service__swiper-link--waste .top-service__swiper-title-ja,
.top-service__swiper-link--waste .top-service__swiper-title-en {
  color: #d6b800;
}

.top-service__swiper-link--rotary::before {
  background-image: url(../../assets/images/top/slide-rotary-bg.webp);
}

.top-service__swiper-link--rotary .top-service__swiper-title-ja,
.top-service__swiper-link--rotary .top-service__swiper-title-en {
  color: #48cebc;
}

.top-service__swiper-link--food::before {
  background-image: url(../../assets/images/top/slide-food-bg.webp);
}

.top-service__swiper-link--food .top-service__swiper-title-ja,
.top-service__swiper-link--food .top-service__swiper-title-en {
  color: #ff8754;
}

.top-service__swiper-link--water::before {
  background-image: url(../../assets/images/top/slide-water-bg.webp);
}

.top-service__swiper-link--water .top-service__swiper-title-ja,
.top-service__swiper-link--water .top-service__swiper-title-en {
  color: #5a8ee8;
}

.top-service__swiper-link--fire::before {
  background-image: url(../../assets/images/top/slide-fire-bg.webp);
}

.top-service__swiper-link--fire .top-service__swiper-title-ja,
.top-service__swiper-link--fire .top-service__swiper-title-en {
  color: #ff4848;
}

.slide-pagination-wrapper-top-service {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.625rem;
}

.slide-pagination-wrapper-top-service .swiper-button-prev,
.slide-pagination-wrapper-top-service .swiper-button-next {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  margin-top: 0;
  cursor: pointer;
}

.slide-pagination-wrapper-top-service .swiper-button-next {
  left: 0;
  right: auto;
}

.slide-pagination-wrapper-top-service .swiper-button-prev {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}

.slide-pagination-wrapper-top-service .swiper-button-prev::before,
.slide-pagination-wrapper-top-service .swiper-button-prev::after,
.slide-pagination-wrapper-top-service .swiper-button-next::before,
.slide-pagination-wrapper-top-service .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
}

.slide-pagination-wrapper-top-service .swiper-button-prev::before,
.slide-pagination-wrapper-top-service .swiper-button-next::before {
  background-image: url(../../assets/images/common/icon-arrow-01.svg);
  opacity: 1;
}

.slide-pagination-wrapper-top-service .swiper-button-prev::after,
.slide-pagination-wrapper-top-service .swiper-button-next::after {
  background-image: url(../../assets/images/common/icon-arrow-02.svg);
  opacity: 0;
}

@media (any-hover: hover) {
  .slide-pagination-wrapper-top-service .swiper-button-prev:hover::before,
  .slide-pagination-wrapper-top-service .swiper-button-next:hover::before {
    opacity: 0;
  }
  .slide-pagination-wrapper-top-service .swiper-button-prev:hover::after,
  .slide-pagination-wrapper-top-service .swiper-button-next:hover::after {
    opacity: 1;
  }
}
.top-sustainable {
  position: relative;
  padding-block: 20.3125rem;
}
@media screen and (max-width: 768px) {
  .top-sustainable {
    padding-block: 9.375rem;
  }
}

.top-sustainable::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/top/bg-sustainable.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-sustainable::before {
    background-position: 28% 50%;
    filter: blur(5px);
  }
}

.top-sustainable__inner.inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 79.375rem;
}
@media screen and (max-width: 768px) {
  .top-sustainable__inner.inner {
    align-items: center;
    max-width: 33.75rem;
  }
}

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

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

.top-sustainable__text-wrapper {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-sustainable__text-wrapper {
    margin-top: 1.875rem;
  }
}

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

.top-sustainable__btn {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .top-sustainable__btn {
    display: flex;
    justify-content: center;
  }
}

.works__category-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .works__category-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 414px) {
  .works__category-items {
    grid-template-columns: repeat(1, 1fr);
    max-width: 15.625rem;
    width: 100%;
    margin-inline: auto;
  }
}

.works__category-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  padding-block: 0.9375rem;
  color: #555555;
  border-radius: 0.625rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .works__category-item-link {
    padding-block: 0.625rem;
    border-radius: 0.3125rem;
  }
}

.works__category-ja {
  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;
  letter-spacing: 0.075em;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .works__category-ja {
    font-size: max(1rem, 12px);
  }
}

.works__category-en {
  position: relative;
  font-size: 1.125rem;
  font-family: "nunito-sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .works__category-en {
    font-size: max(0.875rem, 12px);
  }
}

/* ----------  | ここから ---------- */
.works__category-item-link.is-current {
  background-color: #ffffff;
  pointer-events: none;
}

/* ----------  | ここまで ---------- */
/* ---------- 全カテゴリー | ここから ---------- */
.works__category-item-link[data-theme=all] {
  background-color: #555555;
  color: #ffffff;
}
@media (any-hover: hover) {
  .works__category-item-link[data-theme=all]:hover {
    background-color: #ffffff;
    color: #555555;
  }
}

.works__category-item-link.is-current[data-theme=all] {
  background-color: #ffffff;
  color: #555555;
  pointer-events: none;
}

/* ---------- 全カテゴリー | ここまで ---------- */
/* ---------- プラント | ここから ---------- */
.works__category-item-link[data-theme=plant] {
  background-color: #83d743;
}
@media (any-hover: hover) {
  .works__category-item-link[data-theme=plant]:hover {
    background-color: #ffffff;
    color: #83d743;
  }
}

.works__category-item-link.is-current[data-theme=plant] {
  background-color: #ffffff;
  color: #83d743;
  pointer-events: none;
}

/* ---------- プラント | ここまで ---------- */
/* ---------- 廃棄物処理 | ここから ---------- */
.works__category-item-link[data-theme=waste-treatment] {
  background-color: #ffe72b;
}
@media (any-hover: hover) {
  .works__category-item-link[data-theme=waste-treatment]:hover {
    background-color: #ffffff;
    color: #ffe72b;
  }
}

.works__category-item-link.is-current[data-theme=waste-treatment] {
  background-color: #ffffff;
  color: #ffe72b;
  pointer-events: none;
}

/* ---------- 廃棄物処理 | ここまで ---------- */
/* ---------- 回転機 | ここから ---------- */
.works__category-item-link[data-theme=rotary-machine] {
  background-color: #48cebc;
}
@media (any-hover: hover) {
  .works__category-item-link[data-theme=rotary-machine]:hover {
    background-color: #ffffff;
    color: #48cebc;
  }
}

.works__category-item-link.is-current[data-theme=rotary-machine] {
  background-color: #ffffff;
  color: #48cebc;
  pointer-events: none;
}

/* ---------- 回転機 | ここまで ---------- */
/* ---------- フード（食肉工場） | ここから ---------- */
.works__category-item-link[data-theme=food] {
  background-color: #ff8754;
}
@media (any-hover: hover) {
  .works__category-item-link[data-theme=food]:hover {
    background-color: #ffffff;
    color: #ff8754;
  }
}

.works__category-item-link.is-current[data-theme=food] {
  background-color: #ffffff;
  color: #ff8754;
  pointer-events: none;
}

/* ---------- フード（食肉工場） | ここまで ---------- */
/* ---------- 水処理 | ここから ---------- */
.works__category-item-link[data-theme=water-treatment] {
  background-color: #5a8ee8;
}
@media (any-hover: hover) {
  .works__category-item-link[data-theme=water-treatment]:hover {
    background-color: #ffffff;
    color: #5a8ee8;
  }
}

.works__category-item-link.is-current[data-theme=water-treatment] {
  background-color: #ffffff;
  color: #5a8ee8;
  pointer-events: none;
}

/* ---------- 水処理 | ここまで ---------- */
/* ---------- 消防設備 | ここから ---------- */
.works__category-item-link[data-theme=fire-protection] {
  background-color: #ff4848;
}
@media (any-hover: hover) {
  .works__category-item-link[data-theme=fire-protection]:hover {
    background-color: #ffffff;
    color: #ff4848;
  }
}

.works__category-item-link.is-current[data-theme=fire-protection] {
  background-color: #ffffff;
  color: #ff4848;
  pointer-events: none;
}

/* ---------- 消防設備 | ここまで ---------- */
.works__container {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .works__container {
    margin-top: 5rem;
  }
}

.works__items {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.works__item {
  display: grid;
  grid-template-columns: 25rem 1fr;
  align-items: center;
  gap: 3.125rem;
  background-color: #ffffff;
  padding-inline: 1.875rem;
}
@media screen and (max-width: 768px) {
  .works__item {
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 1.25rem;
    gap: 0;
  }
}

.works__company {
  padding-block: 1.875rem;
}
@media screen and (max-width: 768px) {
  .works__company {
    padding-block: 1.25rem;
    border-bottom: 4px double #555555;
  }
}

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

.works__category[data-theme=plant] {
  background-color: #83d743;
}

.works__category[data-theme=waste-treatment] {
  background-color: #ffe72b;
}

.works__category[data-theme=rotary-machine] {
  background-color: #48cebc;
}

.works__category[data-theme=food] {
  background-color: #ff8754;
}

.works__category[data-theme=water-treatment] {
  background-color: #5a8ee8;
}

.works__category[data-theme=fire-protection] {
  background-color: #ff4848;
}

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

.works__table-row {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  align-items: center;
  padding-block: 1.875rem;
}
@media screen and (max-width: 768px) {
  .works__table-row {
    grid-template-columns: 1fr;
    padding-block: 0;
  }
}

.works__table-row:nth-child(n+2) {
  border-top: 1px solid #555555;
}

.works__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: #000000;
  line-height: 1.5;
  letter-spacing: 0.075em;
  padding: 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .works__table-term {
    font-size: max(1rem, 12px);
    padding: 0.9375rem 0.625rem;
  }
}

.works__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: #000000;
  line-height: 1.5;
  letter-spacing: 0.075em;
  padding: 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .works__table-description {
    font-size: max(1rem, 12px);
    border-top: 1px dashed #cfcfcf;
    padding: 0.9375rem 0.625rem;
  }
}

/* ------------------------ */
/* 固有のフォント設定 */
/* 共通パーツで設定すると不便な場合、こちらに設定する */
/* ------------------------ */
/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここから ---------- */
.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}

/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここまで ---------- */
/* ---------- テキストのインラインブロック化 | ここから ---------- */
.text-inlineBlock {
  display: inline-block;
}

/* ---------- テキストのインラインブロック化 | ここまで ---------- */
/* ---------- text-transformの解除 | ここから ---------- */
.u-text-transform-none {
  text-transform: none;
}

/* ---------- text-transformの解除 | ここまで ---------- */
.l-lower {
  padding-top: 9.375rem;
  padding-bottom: 17.5rem;
}
@media screen and (max-width: 768px) {
  .l-lower {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}

/* ------------------------ */
/* 改行用、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の設定 | ここまで ---------- */