@charset "UTF-8";
/* ---------- ベースファイル | ここから ---------- */
html {
  font-size: 16px;
}
@media (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

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

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
  /*
  - :where() は詳細度（CSSの強さ）が 0 になるので、上書きしやすくするため指定
  - :any-link は a と area のリンクをまとめて指せる
  - label[for] はクリックで入力にフォーカスするので pointer は分かりやすい
  */
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

:where(input, select, textarea) {
  font-size: 1rem; /* = 16px */
}

/* ~~~~~ コンテンツ量が少なく短いページ（404、サンクスページなど）でもフッターを最下部に表示する ここから ~~~~~  */
/* HTMLの階層構造で適宜クラス名は変更する */
.content-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: clip;
}

main {
  flex: 1;
}

/* ~~~~~ コンテンツ量が少なく短いページ（404、サンクスページなど）でもフッターを最下部に表示する ここまで ~~~~~ */
iframe {
  border: none;
}

img {
  image-rendering: auto;
}

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

/* ---------- ベースファイル | ここまで ---------- */
main {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 4.375rem;
  }
}

/* ---------- リセットCSS | ここから ---------- */
html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- リセットCSS | ここまで ---------- */
.inner {
  width: 100%;
  max-width: 84.375rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 33.75rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.accordion::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .accordion::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
.accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}
.accordion[open]::details-content {
  grid-template-rows: 1fr;
}

summary {
  list-style: none;
}

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

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

@keyframes mask {
  0% {
    mask-position: 200% 0%;
  }
  100% {
    mask-position: 0% 0%;
  }
}
.js-mask.js-mask--sharp-right {
  mask-image: linear-gradient(90deg, #ffffff 50%, transparent 50%);
}

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

/* ---------- 各セクションのマスクアニメーション（X軸方向） ここまで ----------------- */
/* ---------- 各セクションのマスクアニメーション（Y軸方向） - パキッとマスクする ここから  -------------------------- */
.js-deco-mask {
  position: relative;
}

.js-deco-mask--to-bottom::before,
.js-deco-mask--to-bottom-02::before {
  -webkit-mask-image: linear-gradient(180deg, #fff 50%, transparent 50%);
  mask-image: linear-gradient(180deg, #fff 50%, transparent 50%);
  -webkit-mask-size: 100% 200%;
  mask-size: 100% 200%;
  -webkit-mask-position: 0% 200%;
  mask-position: 0% 200%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.js-deco-mask.is-active.js-deco-mask--to-bottom::before {
  animation: deco-mask-to-bottom 1s forwards;
}

.js-deco-mask.is-active.js-deco-mask--to-bottom-02::before {
  animation: deco-mask-to-bottom 2s forwards;
}

@keyframes deco-mask-to-bottom {
  from {
    -webkit-mask-position: 0% 200%;
    mask-position: 0% 200%;
  }
  to {
    -webkit-mask-position: 0% 0%;
    mask-position: 0% 0%;
  }
}
/* ---------- 各セクションのマスクアニメーション（Y軸方向） - パキッとマスクする ここまで ----------------- */
/* ---------- 読み込み時のチラつき防止 | ここから ---------- */
.js-fade-op,
.js-pop-ups {
  opacity: 0;
}

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

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

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

.js-text-mask.js-text-mask-black::before,
.js-fv-text-mask.js-text-mask-black::before {
  background-color: #000000;
}

.js-text-mask.js-text-mask-green::before,
.js-fv-text-mask.js-text-mask-green::before {
  background-color: #008c3c;
}

/* -------------------- MVテキストのマスクエフェクト ここまで ------------------------- */
/* ----- ボタンタイプ共通設定 ここから ----- */
.btn {
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

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

/* ----- ボタンタイプ共通設定 ここまで ----- */
/* ---------- ヘッダー『ENTRY』ボタン | ここから ---------- */
.btn.btn-entry {
  display: grid;
  place-items: center;
  gap: 0.25rem;
  width: 100%;
  background-color: #000000;
  border: 1px solid #000000;
  padding-block: 0.6875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn.btn-entry {
    border-radius: 100vmax;
  }
}

.btn-entry__text-ja {
  display: inline-block;
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  color: #ffffff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-entry__text-ja {
    font-size: max(0.875rem, 12px);
  }
}

.btn-entry__text-en {
  display: inline-block;
  font-size: max(2.3125rem, 12px);
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-entry__text-en {
    font-size: max(1.125rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn.btn-entry:hover {
    background-color: #ffffff;
  }
  .btn.btn-entry:hover .btn-entry__text-en,
  .btn.btn-entry:hover .btn-entry__text-ja {
    color: #000000;
  }
}
/* ---------- ヘッダー『ENTRY』ボタン | ここまで ---------- */
/* ---------- ノーマル『ENTRY』ボタン | ここから ---------- */
.btn.btn-01 {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 21.875rem;
  background-color: #97c619;
  border-radius: 100vmax;
  padding-block: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn.btn-01 {
    max-width: 15.625rem;
  }
}

.btn.btn-01[data-theme=top-news] {
  max-width: 18.75rem;
  padding-block: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .btn.btn-01[data-theme=top-news] {
    max-width: 15.625rem;
  }
}

.btn.btn-01::before {
  content: "";
  position: absolute;
  right: 2.8125rem;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 2.625rem;
  aspect-ratio: 42/43;
}
@media screen and (max-width: 767px) {
  .btn.btn-01::before {
    right: 1.875rem;
    width: 1.875rem;
  }
}

.btn.btn-01[data-theme=top-news]::before {
  right: 1.5625rem;
  width: 1.875rem;
}
@media screen and (max-width: 767px) {
  .btn.btn-01[data-theme=top-news]::before {
    right: 1.25rem;
    width: 1.25rem;
  }
}

.btn.btn-01.btn-back::before {
  right: auto;
  left: 1.875rem;
  transform: translateY(-50%) rotate(180deg);
}

.btn__text-01 {
  position: relative;
  display: inline-block;
  font-size: max(1.625rem, 12px);
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .btn__text-01 {
    font-size: max(1.25rem, 12px);
  }
}

.btn.btn-01[data-theme=top-news] .btn__text-01 {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .btn.btn-01[data-theme=top-news] .btn__text-01 {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn.btn-01:hover {
    background-color: #008c3c;
  }
}
/* ---------- ノーマル『ENTRY』ボタン | ここまで ---------- */
/* ---------- お問い合わせ送信ボタン | ここから ---------- */
.btn.btn-contact {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 21.875rem;
  background-color: #97c619;
  border-radius: 100vmax;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn.btn-contact {
    max-width: 18.75rem;
  }
}

.btn.btn-contact::before {
  content: "";
  position: absolute;
  right: 2.8125rem;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 2.625rem;
  aspect-ratio: 42/43;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .btn.btn-contact::before {
    right: 1.875rem;
    width: 1.875rem;
  }
}

.btn.btn-contact input[type=submit] {
  display: block;
  width: 100%;
  padding: 1.25rem 3.75rem;
  background-color: transparent;
  border: none;
  border-radius: 100vmax;
  font-size: max(1.625rem, 12px);
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn.btn-contact input[type=submit] {
    font-size: max(1.25rem, 12px);
  }
}

.btn.btn-contact .wpcf7-spinner {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .btn.btn-contact:hover {
    background-color: #008c3c;
  }
}
/* ---------- お問い合わせ送信ボタン | ここまで ---------- */
.contact__inner {
  width: 100%;
  max-width: 50rem;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding-inline: 1.25rem;
  }
}

.contact__desc {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  line-height: 1.8;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .contact__desc {
    font-size: max(0.875rem, 12px);
  }
}

.contact__form {
  margin-top: 3.125rem;
}

.entry-contact {
  width: 100%;
  padding: 1.875rem 1.875rem;
  border: 1px solid #000000;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entry-contact {
    padding: 1.25rem 1.25rem;
  }
}

.entry-contact__lead-01 {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

.entry-contact__lead-02 {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px dashed #000000;
}

.entry-contact__box {
  width: max-content;
  margin-inline: auto;
  margin-top: 1rem;
}

.entry-contact__text {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

.entry-contact__name {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

.entry-contact__list {
  margin-top: 0.625rem;
}

.entry-contact__item:nth-child(n+2) {
  margin-top: 0.3125rem;
}

.entry-contact__item-text {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

.entry-contact__link {
  display: inline-block;
  color: #008c3c;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .entry-contact__link:hover {
    opacity: 0.6;
  }
}
.information__entry {
  display: flex;
  justify-content: center;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .information__entry {
    margin-top: 5rem;
  }
}

.environment {
  position: relative;
  overflow: clip;
}

.environment__outer {
  margin-top: 5.9375rem;
}

.environment__inner {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-left: 4.375rem;
}
@media screen and (max-width: 1280px) {
  .environment__inner {
    padding-inline: 1.5625rem 0;
  }
}
@media screen and (max-width: 767px) {
  .environment__inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
  }
}

.environment__container-inner {
  max-width: 46.875rem;
  width: 100%;
}

.environment__content {
  position: relative;
}

.environment__content:nth-child(n+2) {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .environment__content:nth-child(n+2) {
    margin-top: 5rem;
  }
}

.environment-benefits {
  margin-top: 1.875rem;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .environment-benefits {
    margin-top: 1.5625rem;
    padding-left: 0;
  }
}

.environment-benefits__lead {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .environment-benefits__lead {
    font-size: max(1rem, 12px);
  }
}

.environment-benefits__tag {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .environment-benefits__tag {
    margin-top: 2.5rem;
  }
}

.environment-benefits__tag-text-wrapper:nth-child(n+2) {
  margin-top: 1.25rem;
}

.environment-benefits__tag-text {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .environment-benefits__tag-text {
    font-size: max(1rem, 12px);
  }
}

.environment-benefits__tag-img-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .environment-benefits__tag-img-wrapper {
    max-width: 20.9375rem;
    width: 100%;
    margin-inline: auto;
  }
}

.environment-benefits__tag-img-01,
.environment-benefits__tag-img-02 {
  height: 100%;
  aspect-ratio: 746/560;
  object-fit: cover;
}

.environment-benefits__tag-img img {
  object-fit: cover;
  height: 100%;
}

.environment-benefits__tag-img-01 img {
  aspect-ratio: 853/640;
}

.environment-benefits__tag-img-02 img,
.environment-benefits__tag-img-03 img {
  aspect-ratio: 480/640;
}

.environment-system {
  display: grid;
  grid-template-columns: 25.3125rem 1fr;
  gap: 2.8125rem;
  margin-top: 1.875rem;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .environment-system {
    grid-template-columns: 1fr;
    gap: 2.1875rem;
    margin-top: 1.5625rem;
    padding-left: 0;
  }
}

.environment-system.environment-system--01 {
  display: block;
}

.environment-system--training {
  min-height: 21.6875rem;
}
@media screen and (max-width: 767px) {
  .environment-system--training {
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .environment-system__text-wrapper {
    order: 2;
  }
}

.environment-system__text-wrapper--02 {
  margin-top: 3.125rem;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .environment-system__text-wrapper--02 {
    padding-left: 0;
    margin-top: 2.5rem;
  }
}

.environment-system__text-wrapper--03 {
  margin-top: 3.125rem;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .environment-system__text-wrapper--03 {
    padding-left: 0;
    margin-top: 2.5rem;
  }
}

.environment-system__img {
  position: relative;
  width: 100%;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .environment-system__img {
    order: 1;
    margin-top: 0;
    margin-inline: auto;
    width: 90%;
  }
}

.environment-system__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 28.125rem;
  object-fit: cover;
  aspect-ratio: 450/327;
}
@media screen and (max-width: 767px) {
  .environment-system__img img {
    position: static;
    min-width: auto;
    height: 100%;
  }
}

.environment-system__item:nth-child(n+2) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .environment-system__item:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.environment-system__item-title {
  font-size: max(1.5rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .environment-system__item-title {
    font-size: max(1.25rem, 12px);
  }
}

.environment-system__item-text {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .environment-system__item-text {
    font-size: max(1rem, 12px);
  }
}

.environment-system__list-item {
  position: relative;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .environment-system__list-item {
    font-size: max(1rem, 12px);
    padding-left: 1rem;
  }
}

.environment-system__list-item::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .environment-system__list-item::before {
    font-size: max(1rem, 12px);
  }
}

.environment-system__list-item:nth-child(n+2) {
  margin-top: 0.125rem;
}

.environment__entry {
  display: flex;
  justify-content: center;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .environment__entry {
    margin-top: 5rem;
  }
}

.environment-certification {
  margin-top: 1.875rem;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .environment-certification {
    margin-top: 1.5625rem;
    padding-left: 0;
  }
}

.environment-certification__lead {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .environment-certification__lead {
    font-size: max(1rem, 12px);
  }
}

.footer {
  position: relative;
  background-color: #d3d3d3;
  padding-block: 6.25rem 6.25rem;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

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

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

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.6;
  }
}
.footer__corporate {
  text-align: center;
}

.footer__corporate-link {
  position: relative;
  display: inline-block;
  font-size: max(0.8125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  padding-right: 2.5rem;
  padding-block: 0.75rem;
  transition: all 0.3s;
}

.footer__corporate-link::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-link.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #000000;
  width: 1.5625rem;
  aspect-ratio: 25/26;
  z-index: 1;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__corporate-link:hover {
    color: #008c3c;
  }
  .footer__corporate-link:hover::before {
    background-color: #008c3c;
  }
}
.footer__copyright {
  text-align: right;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    margin-top: 1.875rem;
  }
}

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

.contact__form-body {
  width: 100%;
}

.contact__row {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 1rem 2rem;
  align-items: start;
  padding-block: 1.5rem;
  border-bottom: 1px solid #d3d3d3;
}
.contact__row:first-child {
  border-top: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .contact__row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding-block: 1.25rem;
  }
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.6875rem;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .contact__label {
    padding-top: 0;
  }
}

.contact__label-text {
  display: inline-block;
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #231815;
  line-height: 1.5;
}

.contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0.375rem;
  background-color: #be0000;
  color: #ffffff;
  font-size: max(0.6875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0.125rem;
}

.contact__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0.375rem;
  background-color: #808080;
  color: #ffffff;
  font-size: max(0.6875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0.125rem;
}

.contact__field {
  width: 100%;
}

.contact__field input[type=text],
.contact__field input[type=email],
.contact__field input[type=tel],
.contact__field textarea,
.contact__field select {
  display: block;
  width: 100%;
  padding: 0.6875rem 1rem;
  background-color: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 0.25rem;
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  line-height: 1.6;
  transition: border-color 0.3s;
}
.contact__field input[type=text]::placeholder,
.contact__field input[type=email]::placeholder,
.contact__field input[type=tel]::placeholder,
.contact__field textarea::placeholder,
.contact__field select::placeholder {
  color: #898989;
}
.contact__field input[type=text]:focus,
.contact__field input[type=email]:focus,
.contact__field input[type=tel]:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  border-color: #008c3c;
  outline: none;
}
@media screen and (max-width: 767px) {
  .contact__field input[type=text],
  .contact__field input[type=email],
  .contact__field input[type=tel],
  .contact__field textarea,
  .contact__field select {
    font-size: max(1rem, 12px);
  }
}

.contact__field select {
  appearance: none;
  padding-right: 2.75rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'%3E%3Cpath d='M1 1L8 9L15 1' stroke='%23008c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 0.875rem center;
  background-size: 1rem 0.625rem;
}

.contact__field textarea {
  resize: vertical;
  min-height: 10rem;
}
@media screen and (max-width: 767px) {
  .contact__field textarea {
    min-height: 7.5rem;
  }
}

.contact__field .wpcf7-not-valid {
  border-color: #be0000;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.375rem;
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #be0000;
  line-height: 1.4;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid {
  border-color: #d3d3d3;
}

.contact__row--privacy {
  grid-template-columns: 1fr;
  text-align: center;
}
.contact__row--privacy:last-child {
  border-bottom: 1px solid #d3d3d3;
}

.contact__field .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.contact__field .wpcf7-acceptance input[type=checkbox] {
  display: block;
  flex-shrink: 0;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 0.1875rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8125rem 0.625rem;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.contact__field .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #008c3c;
  border-color: #008c3c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L12 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact__field .wpcf7-not-valid input[type=checkbox] {
  border-color: #be0000;
}

.contact__field .wpcf7-list-item-label {
  display: inline-block;
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  line-height: 1.6;
}

.contact__field .wpcf7-acceptance a {
  color: #008c3c;
  text-decoration: underline;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .contact__field .wpcf7-acceptance a:hover {
    opacity: 0.7;
  }
}
.contact__submit-wrapper {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__submit-wrapper {
    margin-top: 3.125rem;
  }
}

.wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 0.875rem 1rem;
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  border-radius: 0.25rem;
  border: 1px solid;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #008c3c;
  color: #008c3c;
  background-color: #f2f7e3;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
  border-color: #be0000;
  color: #be0000;
}

.hamburger {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 5rem;
  background-color: #008c3c;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .hamburger {
    height: 100%;
  }
}
@media (any-hover: hover) {
  .hamburger:hover {
    background-color: #97c619;
  }
}

.hamburger__box {
  position: relative;
  width: 3.125rem;
  aspect-ratio: 50/33;
}
@media screen and (max-width: 767px) {
  .hamburger__box {
    aspect-ratio: 50/25;
  }
}

.hamburger__box span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .hamburger__box span {
    width: 2.1875rem;
  }
}

.hamburger__box span:nth-child(1) {
  top: 0;
}

.hamburger__box span:nth-child(2) {
  top: 50%;
}

.hamburger__box span:nth-child(3) {
  top: 100%;
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-nav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 31.25rem;
  height: 100svh;
  overflow: scroll;
  background-color: #f2f7e3;
  border-left: 0.3125rem solid #008c3c;
  padding-block: 9.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .header-nav {
    inset: 0;
    max-width: none;
    border-left: 0.1875rem solid #008c3c;
    border-right: 0.1875rem solid #008c3c;
    padding-block: 6.25rem;
  }
}

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

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

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

.header-nav__inner {
  max-width: 23.4375rem;
  width: 100%;
  margin-inline: auto;
  padding: 0 0.9375rem;
}

.header-nav__logo {
  width: 100%;
  transition: all 0.3s;
}

.header-nav__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.3s;
}

.header-nav__logo-main {
  max-width: 18.875rem;
  transition: all 0.3s;
}

.header-nav__logo-sub {
  max-width: 14.125rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .header-nav__logo-link:hover {
    opacity: 0.6;
  }
}
.header-nav__items {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.875rem;
}

.header-nav__item-link {
  display: inline-block;
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__item-link {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .header-nav__item-link:hover {
    color: #008c3c;
  }
}
.header-nav__item-btn {
  display: grid;
  place-items: center;
  gap: 0.3125rem;
  width: 100%;
  max-width: 18.75rem;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 100vmax;
  padding-block: 0.6875rem;
  text-align: center;
  margin-inline: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__item-btn {
    max-width: 12.5rem;
    padding-block: 0.375rem;
  }
}

.header-nav__item-link-ja {
  display: inline-block;
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  color: #ffffff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__item-link-ja {
    font-size: max(0.875rem, 12px);
  }
}

.header-nav__item-link-en {
  display: inline-block;
  font-size: max(2.3125rem, 12px);
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__item-link-en {
    font-size: max(1.25rem, 12px);
  }
}

@media (any-hover: hover) {
  .header-nav__item-btn:hover {
    background-color: #ffffff;
  }
  .header-nav__item-btn:hover .header-nav__item-link-en,
  .header-nav__item-btn:hover .header-nav__item-link-ja {
    color: #000000;
  }
}
.header-nav__accordion-summary {
  position: relative;
  display: inline-block;
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  padding-right: 1.875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__accordion-summary {
    font-size: max(1rem, 12px);
  }
}

.header-nav__accordion-summary::after,
.header-nav__accordion-summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: 2px;
  background-color: #000000;
  border-radius: 100vmax;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.header-nav__accordion-summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.header-nav__accordion[open] .header-nav__accordion-summary::before {
  transform: translateY(-50%) rotate(0deg);
}

.header-nav__accordion-summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background-color: #f2f7e3;
  padding: 0.625rem;
}

.header-nav__accordion-summary-item-link {
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  padding-right: 1.875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__accordion-summary-item-link {
    font-size: max(0.875rem, 12px);
  }
}

@media (any-hover: hover) {
  .header-nav__accordion-summary:hover {
    color: #008c3c;
  }
  .header-nav__accordion-summary:hover::after,
  .header-nav__accordion-summary:hover::before {
    background-color: #008c3c;
  }
  .header-nav__accordion-summary-item-link:hover {
    color: #008c3c;
  }
}
.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background-color: #ffffff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.375rem;
  }
}

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

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header__logo-link {
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
  }
}

.header__logo-main {
  max-width: 18.875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header__logo-main {
    max-width: 15.625rem;
  }
}

.header__logo-sub {
  max-width: 14.125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header__logo-sub {
    max-width: 11.6875rem;
  }
}

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
.header__hamburger-wrapper {
  width: max(10rem, 110px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__hamburger-wrapper {
    width: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger-entry {
    display: none;
  }
}

.heading-01 {
  position: relative;
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  padding-bottom: 1rem;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .heading-01 {
    font-size: max(1.25rem, 12px);
    padding-bottom: 0.625rem;
  }
}

.heading-01::before,
.heading-01::after {
  content: "";
  position: absolute;
  left: 0;
}

.heading-01::before {
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
}

.heading-01::after {
  bottom: 0;
  height: 2px;
  width: 12.5rem;
  background-color: #008c3c;
}
@media screen and (max-width: 767px) {
  .heading-01::after {
    width: 6.25rem;
  }
}

.information {
  position: relative;
  overflow: clip;
}

.information__outer {
  margin-top: 5.9375rem;
}

.information__inner {
  position: relative;
  width: 100%;
  max-width: 56.25rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .information__inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
  }
}

.information__container {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .information__container {
    margin-top: 3.75rem;
  }
}

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

.information__content {
  margin-top: 1.875rem;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .information__content {
    padding-left: 0;
    margin-top: 1.5625rem;
  }
}

.information__text-wrapper {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .information__text-wrapper {
    margin-top: 1.25rem;
  }
}

.information__text-wrapper-02 {
  margin-top: 0.3125rem;
}

.information__text-wrapper:first-child,
.information__text-wrapper-02:first-child {
  margin-top: 0;
}

.information__text-01 {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .information__text-01 {
    font-size: max(1.125rem, 12px);
  }
}

.information__text-02 {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .information__text-02 {
    font-size: max(1rem, 12px);
  }
}

.information__text-02--indent {
  text-indent: 3em;
}
@media screen and (max-width: 1280px) {
  .information__text-02--indent {
    padding-left: 2em;
    text-indent: 2em;
  }
}
@media screen and (max-width: 767px) {
  .information__text-02--indent {
    text-indent: 0;
  }
}

.information__link {
  display: inline-block;
  color: #008c3c;
  transition: all 0.3s;
}

.information__link.information__link--line {
  position: relative;
}

.information__link.information__link--line::before {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #008c3c;
}

@media (any-hover: hover) {
  .information__link:hover {
    opacity: 0.6;
  }
}
.information__item {
  position: relative;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .information__item {
    font-size: max(1rem, 12px);
    padding-left: 1rem;
  }
}

.information__item::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .information__item::before {
    font-size: max(1rem, 12px);
  }
}

.information__entry-contact {
  max-width: 31.25rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .information__entry-contact {
    margin-top: 3.75rem;
    padding-left: 0;
  }
}

.interview__outer {
  margin-top: 3.125rem;
}

.interview__inner {
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .interview__inner {
    max-width: 33.75rem;
    width: 100%;
    padding-inline: 1.25rem;
  }
}

.interview__text-01 {
  font-size: max(1.5rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 2;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .interview__text-01 {
    font-size: max(1.25rem, 12px);
  }
}

.interview__btn-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 60.8125rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .interview__btn-items {
    grid-template-columns: repeat(1, 1fr);
    max-width: 18.75rem;
  }
}

.interview__btn-item-link {
  display: grid;
  place-items: center;
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #808080;
  line-height: 1.5;
  border: 2px solid #808080;
  background-color: #ffffff;
  padding: 0.75rem 0.625rem;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .interview__btn-item-link {
    padding: 0.625rem 0.625rem;
    font-size: max(1.25rem, 12px);
  }
}

.interview__btn-item-link.is-current {
  color: #ffffff;
  background-color: #008c3c;
  border: 2px solid #008c3c;
  pointer-events: none;
}

@media (any-hover: hover) {
  .interview__btn-item-link:hover {
    color: #ffffff;
    background-color: #008c3c;
    border: 2px solid #008c3c;
  }
}
.interview__hero {
  position: relative;
  max-width: 75rem;
  width: 100%;
  min-height: 25rem;
  margin-inline: auto;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__hero {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 3.4375rem;
    min-height: auto;
  }
}

.interview__hero-wrapper {
  position: absolute;
  top: 50%;
  left: 3.4375rem;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .interview__hero-wrapper {
    position: static;
    transform: none;
    order: 2;
    background-color: #008c3c;
    padding: 1.25rem 1.25rem;
  }
}

.interview__hero-title span {
  font-size: max(2rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.4);
  padding-inline: 0.625rem;
}
@media screen and (max-width: 767px) {
  .interview__hero-title span {
    font-size: clamp(1.25rem, 0.5rem + 3.2vw, 1.5rem); /* 20 ~ 24 | 375 ~ 500 */
    padding-inline: 0.3125rem;
  }
}

.interview__hero-meta {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview__hero-meta {
    margin-top: 1.25rem;
  }
}

.interview__hero-meta-label span {
  font-size: max(1.5rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  padding-inline: 0.625rem;
  background-color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 767px) {
  .interview__hero-meta-label span {
    font-size: max(1rem, 12px);
    padding-inline: 0.3125rem;
  }
}

.interview__hero-img-aria {
  width: 100%;
  background-color: #008c3c;
}
@media screen and (max-width: 767px) {
  .interview__hero-img-aria {
    display: contents;
  }
}

.interview__hero-img {
  position: relative;
  max-width: 50rem;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .interview__hero-img {
    order: 1;
    margin-inline: auto;
  }
}

.interview__hero-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to right, #231815 0%, #ffffff 100%);
  mix-blend-mode: multiply;
  width: 50%;
  height: 100%;
  opacity: 0.5;
}

.interview__hero-img img {
  aspect-ratio: 800/400;
  object-fit: cover;
  height: 100%;
}

.interview__chapter-container {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter-container {
    margin-top: 4.375rem;
  }
}

.interview__chapter {
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
}

.interview__chapter.interview__chapter--cp1,
.interview__chapter.interview__chapter--cp2 {
  max-width: 81.25rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter.interview__chapter--cp1,
  .interview__chapter.interview__chapter--cp2 {
    max-width: 33.75rem;
    padding-inline: 0;
  }
}

.interview__chapter.interview__chapter--cp2 {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter.interview__chapter--cp2 {
    margin-top: 3.125rem;
  }
}

.interview__chapter.interview__chapter--cp3 {
  padding-left: clamp(3.75rem, -26.25rem + 37.5vw, 7.5rem); /* 60 ~ 120 | 1280 ~ 1440 */
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter.interview__chapter--cp3 {
    padding-left: 0;
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .interview__chapter-media {
    order: 2;
  }
}

.interview__chapter-img {
  aspect-ratio: 600/400;
  object-fit: cover;
  height: 100%;
}

.interview__chapter-img.interview__chapter-img--interview-02 {
  aspect-ratio: 750/500;
}

.interview__chapter-img.interview__chapter-img--interview-03 {
  aspect-ratio: 750/530;
}
@media screen and (max-width: 767px) {
  .interview__chapter-img.interview__chapter-img--interview-03 {
    order: 2;
  }
}

.interview__chapter-label {
  display: inline-block;
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-transform: capitalize;
  padding: 0.5rem 1.25rem;
  background-color: #008c3c;
}
@media screen and (max-width: 767px) {
  .interview__chapter-label {
    font-size: max(1rem, 12px);
    padding: 0.375rem 0.9375rem;
  }
}

.interview__heading-01 {
  margin-left: 1.875rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .interview__heading-01 {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .interview__chapter-body {
    display: contents;
  }
}

.interview__chapter-body--cp1 {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter-body--cp1 {
    margin-top: 0;
  }
}

.interview__chapter-body--cp2 {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter-body--cp2 {
    margin-top: 0;
  }
}

.interview__chapter-body.interview__chapter-body--cp3 {
  max-width: 58.0625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview__chapter-heading {
    order: 1;
  }
}

.interview__chapter-heading.interview__chapter-heading--cp4 {
  max-width: 58.0625rem;
  width: 100%;
}

.interview__chapter-heading.interview__chapter-heading--cp4.interview__chapter-heading--cp4--interview-02 {
  max-width: 36.5625rem;
  width: 100%;
}

.interview__chapter-heading.interview__chapter-heading--cp4.interview__chapter-heading--cp4--interview-03 {
  max-width: 75rem;
  width: 100%;
}

.interview__qa-wrapper {
  margin-top: 0.9375rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .interview__qa-wrapper {
    order: 3;
    padding-left: 0;
    margin-top: 0;
  }
}

.interview__qa-wrapper.interview__qa-wrapper--cp4-interview-03 {
  padding-left: 0;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .interview__qa-wrapper.interview__qa-wrapper--cp4-interview-03 {
    order: 1;
  }
}

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

.interview__qa.interview__qa-mt0 {
  margin-top: 0;
}

.interview__qa-question {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #008c3c;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .interview__qa-question {
    font-size: max(1.125rem, 12px);
  }
}

@media screen and (max-width: 767px) {
  .interview__qa-question--cp3 {
    margin-top: 1.875rem;
  }
}

.interview__qa-answer {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin-top: 0.3125rem;
}

.interview__scene-cp3 {
  position: relative;
  max-width: 82.5rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .interview__scene-cp3 {
    margin-top: 3.125rem;
  }
}

.interview__scene-cp3::before {
  content: "";
  position: absolute;
  top: 10.3125rem;
  right: 0;
  background-color: #1fbea9;
  width: 37.5rem;
  aspect-ratio: 600/400;
  opacity: 0.15;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .interview__scene-cp3::before {
    top: 8.125rem;
    right: -1.25rem;
    width: 70%;
  }
}

.interview__scene-cp3-img {
  width: 100%;
  max-width: 58.0625rem;
}

.interview__scene-cp3-img img {
  aspect-ratio: 929/400;
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .interview__scene-cp3-img img {
    aspect-ratio: 16/9;
  }
}

.interview__text-wrapper-03 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 12.125rem;
  left: 46.0625rem;
}
@media screen and (max-width: 767px) {
  .interview__text-wrapper-03 {
    top: 10.625rem;
    top: auto;
    bottom: -5.625rem;
    left: 0.625rem;
  }
}

.interview__text-03 {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  padding: 0.5625rem 1.125rem;
  background-color: #008c3c;
}
@media screen and (max-width: 767px) {
  .interview__text-03 {
    font-size: max(0.875rem, 12px);
    white-space: nowrap;
    padding: 0.375rem 0.375rem;
  }
}

.interview__text-03:nth-child(n+2) {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .interview__text-03:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.interview__chapter.interview__chapter--cp4 {
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 5.625rem;
  padding-left: clamp(3.75rem, -26.25rem + 37.5vw, 7.5rem); /* 60 ~ 120 | 1280 ~ 1440 */
}
@media screen and (max-width: 767px) {
  .interview__chapter.interview__chapter--cp4 {
    padding-left: 0;
    margin-top: 9.375rem;
  }
}

.interview__chapter.interview__chapter--cp4-02 {
  display: grid;
  gap: clamp(3.75rem, -11.25rem + 18.75vw, 5.625rem); /* 60 ~ 90 | 1280 ~ 1440 */
  grid-template-columns: 750fr 480fr;
  padding-right: clamp(3.75rem, -26.25rem + 37.5vw, 7.5rem); /* 60 ~ 120 | 1280 ~ 1440 */
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter.interview__chapter--cp4-02 {
    gap: 2.5rem;
    grid-template-columns: 1fr;
    padding-right: 0;
    margin-top: 2.5rem;
  }
}

.interview__chapter-body-cp4 {
  display: grid;
  grid-template-columns: 510fr 750fr;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter-body-cp4 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.interview__chapter-body-cp4.interview__chapter-body-cp4--interview-02 {
  display: block;
}

.interview__chapter.interview__chapter--cp4-03 {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter.interview__chapter--cp4-03 {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .interview__qa-wrapper.interview__qa-wrapper--cp4 {
    order: 2;
    padding-right: 0;
  }
}

.interview__qa-wrapper.interview__qa-wrapper--cp4-a {
  padding-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .interview__qa-wrapper.interview__qa-wrapper--cp4-a {
    padding-right: 0;
  }
}

.interview__chapter-img-cp4 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .interview__chapter-img-cp4 {
    order: 1;
    margin-top: 2.5rem;
  }
}

.interview__chapter-img-cp4 img {
  aspect-ratio: 750/530;
  object-fit: cover;
  height: 100%;
}

.interview__chapter-img-cp4--interview-05 img {
  aspect-ratio: 600/400;
}

.interview__qa-wrapper-cp4 {
  max-width: 82.5rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 3.125rem;
  padding-left: 1.875rem;
  padding-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .interview__qa-wrapper-cp4 {
    max-width: 33.75rem;
    width: 100%;
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .interview__qa-wrapper-cp4--interview-02 {
    padding-inline: 0;
  }
}

.interview__entry {
  display: flex;
  justify-content: center;
  margin-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .interview__entry {
    margin-top: 5rem;
  }
}

.lower-fv {
  position: relative;
  height: 17.5rem;
}

.lower-fv__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55.5555555556vw;
  z-index: -1;
}
@media screen and (max-width: 1439px) {
  .lower-fv__img {
    max-width: 50rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img {
    width: 100%;
  }
}

.lower-fv__img img {
  object-fit: cover;
  height: 100%;
  aspect-ratio: 931/500;
}

.lower-fv[data-theme=interview] .lower-fv__img {
  width: 64.6527777778vw;
}
@media screen and (max-width: 1439px) {
  .lower-fv[data-theme=interview] .lower-fv__img {
    max-width: 58.1875rem;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .lower-fv[data-theme=interview] .lower-fv__img {
    padding-left: 3.125rem;
  }
}
@media screen and (max-width: 500px) {
  .lower-fv[data-theme=interview] .lower-fv__img {
    padding-left: 0;
  }
}

.lower-fv[data-theme=environment]::before {
  background-image: url("../../assets/images/environment/fv-img.webp");
}

.lower-fv[data-theme=information]::before {
  background-image: url("../../assets/images/information/fv-img.webp");
}

.lower-fv[data-theme=interview]::before {
  background-image: url("../../assets/images/interview/fv-img-pc.webp");
  background-position: 50% 10%;
}
@media screen and (max-width: 1439px) {
  .lower-fv[data-theme=interview]::before {
    background-position: 60% 10%;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=interview]::before {
    background-image: url("../../assets/images/interview/fv-img-sp.webp");
    max-width: 37.5rem;
  }
}

.lower-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #008c3c 45%, rgba(0, 140, 60, 0) 85%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lower-fv::after {
    background-image: linear-gradient(90deg, #008c3c 0%, rgba(0, 140, 60, 0) 40%);
  }
}

.lower-fv__inner {
  position: relative;
  max-width: 90rem;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}

.lower-fv__section-title-wrapper {
  position: absolute;
  left: 4.5rem;
  bottom: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__section-title-wrapper {
    left: 1.25rem;
    gap: 0.3125rem;
  }
}

.lower-fv__section-title-ja {
  font-size: max(2.1875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .lower-fv__section-title-ja {
    font-size: 1.5rem;
  }
}

.lower-fv__section-title-en {
  font-size: max(4.625rem, 12px);
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: capitalize;
  padding-block: 0.5rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .lower-fv__section-title-en {
    font-size: 3rem;
    padding-block: 0.3125rem;
  }
}

.lower-fv[data-theme=contact] {
  background-color: #008c3c;
}

.lower-fv[data-theme="404"] {
  background-color: #008c3c;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme="404"] .lower-fv__section-title-en {
    font-size: clamp(2.625rem, 0.068rem + 10.91vw, 3.75rem); /* 42 ~ 60 | 375 ~ 540 */
  }
}

.lower-fv[data-theme=news] {
  background-color: #008c3c;
}

.lower-main {
  display: grid;
  grid-template-columns: clamp(16.25rem, -12.25rem + 35.63vw, 19.813rem) 1fr; /* 260 ~ 317 | 1280 ~ 1440 */
  gap: clamp(3.75rem, -21.25rem + 31.25vw, 6.875rem); /* 60 ~ 110 | 1280 ~ 1440 */
}
@media screen and (max-width: 767px) {
  .lower-main {
    display: block;
  }
}

.lower-main__side {
  position: relative;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .lower-main__side {
    display: none;
  }
}

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

.mv__title {
  position: absolute;
  bottom: 7.5rem;
  right: calc(50% - 21.25rem);
  z-index: 2;
  max-width: 64.6875rem;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .mv__title {
    left: 0.625rem;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .mv__title {
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: 15.625rem;
    filter: drop-shadow(0 0 0.3125rem rgba(0, 0, 0, 0.5));
  }
}

.mv__swiper,
.mv__swiper .swiper-img,
.mv__swiper .swiper-img img {
  height: 100%;
}

.mv__swiper .swiper-img img {
  height: 100%;
  object-fit: cover;
}

.mv__swiper-slide.swiper-slide.swiper-slide-active .swiper-img,
.mv__swiper-slide.swiper-slide.swiper-slide-duplicate-active .swiper-img,
.mv__swiper-slide.swiper-slide.swiper-slide-prev .swiper-img {
  animation: scale 8s linear 0s normal both;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.mv__swiper .swiper-slide {
  overflow: hidden;
}

.mv__scroll-down {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #008c3c;
  width: clamp(9.375rem, -75.625rem + 106.25vw, 20rem); /* 150 ~ 320 | 1280 ~ 1440 */
  height: clamp(28.125rem, -61.875rem + 112.5vw, 39.375rem); /* 450 ~ 630 | 1280 ~ 1440 */
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  opacity: 0.74;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__scroll-down {
    width: 4.375rem;
    aspect-ratio: 70/200;
    height: 50%;
  }
}

.mv__scroll-down-wrapper {
  position: absolute;
  right: 1.875rem;
  bottom: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__scroll-down-wrapper {
    right: 0.625rem;
    bottom: 0.625rem;
  }
}

.mv__scroll-down-text {
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-weight: 400;
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  text-transform: capitalize;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .mv__scroll-down-text {
    font-size: max(0.875rem, 12px);
  }
}

/* 線を包含する要素のスタイル */
.mv__scroll-down-line {
  position: relative;
  width: 1px;
  height: 12rem;
}
@media screen and (max-width: 767px) {
  .mv__scroll-down-line {
    height: 3.75rem;
  }
}

/* 共通の線のスタイル */
.mv__scroll-down-line span {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 12rem;
}
@media screen and (max-width: 767px) {
  .mv__scroll-down-line span {
    height: 3.75rem;
  }
}

@keyframes scroll-line {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  39% {
    transform-origin: top;
    transform: scaleY(1);
  }
  40% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.mv__scroll-down-line span:first-of-type {
  background-color: #ffffff;
}

.mv__scroll-down-line span:first-of-type::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.25rem;
  rotate: -30deg;
  width: 1px;
  height: 0.9375rem;
  background-color: #ffffff;
  animation: scroll-line-02 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media screen and (max-width: 767px) {
  .mv__scroll-down-line span:first-of-type::before {
    left: -0.125rem;
    height: 0.625rem;
  }
}

/*
    2s → 1サイクルの再生時間（6秒）
    infinite → 無限に繰り返す
    linear → 一定の速度で変化
    0.5s → 再生を開始するまでの待機時間
    both → アニメーションの前後の状態も保持
    alternate → アニメーションを往復（正方向→逆方向）で再生
  */
@keyframes scroll-line-02 {
  0% {
    filter: brightness(1);
  }
  39% {
    filter: brightness(0.5);
  }
  40% {
    filter: brightness(0.5);
  }
  100% {
    filter: brightness(1);
  }
}
.mv__scroll-down-line span:last-of-type {
  background-color: #808080;
  animation: scroll-line 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.mv__swiper-slide {
  position: relative;
  padding-left: 12.5rem;
}
@media screen and (max-width: 1439px) {
  .mv__swiper-slide {
    padding-left: 0;
  }
}

.mv__swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  width: max(50.4166666667vw, 45.375rem);
  width: clamp(18.75rem, -194.25rem + 266.25vw, 45.375rem); /* 300 ~ 726 | 1280 ~ 1440 */
  height: 100svh;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 0, 73% 0, 34.4% 100%, 0% 100%);
}
@media screen and (max-width: 1439px) {
  .mv__swiper-slide::before {
    width: 20rem;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
  }
}
@media screen and (max-width: 767px) {
  .mv__swiper-slide::before {
    width: 4.375rem;
    height: 50%;
    aspect-ratio: 70/200;
    clip-path: polygon(0 0, 0 100%, 100% 0);
  }
}

.mv__swiper-slide.mv__swiper-slide-01::before {
  background-image: url(../../assets/images/top/mv-deco-01.webp);
}

.mv__swiper-slide.mv__swiper-slide-02::before {
  background-image: url(../../assets/images/top/mv-deco-02.webp);
}

.mv__swiper-slide.mv__swiper-slide-03::before {
  background-image: url(../../assets/images/top/mv-deco-03.webp);
}

.modal {
  position: fixed;
  inset: auto;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 1000;
  inline-size: min(100% - 2.5rem, 61.25rem);
  max-inline-size: none;
  block-size: auto;
  max-block-size: calc(100svh - 2.5rem);
  max-height: calc(100vh - 2.5rem);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 1.875rem;
  color: #ffffff;
  background-color: #e6e6e6;
  box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.98);
  transition: opacity 0.3s, transform 0.3s;
}
@media screen and (max-width: 767px) {
  .modal {
    inline-size: calc(100% - 1.5rem);
    max-block-size: calc(100svh - 1.5rem);
    max-height: calc(100vh - 1.5rem);
    border-radius: 1.25rem;
  }
}

.modal[data-active=true] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.top-products-modal {
  /* PC：カード位置を起点に展開→画面中央へ */
  top: var(--tp-modal-top, 50%);
  left: var(--tp-modal-left, 50%);
  right: var(--tp-modal-right, auto);
  bottom: auto;
  inline-size: auto;
  width: min(100% - 2.5rem, 81.25rem);
  max-width: 0;
  transform: translate(0, 0);
  transition: opacity 0.3s, max-width 0.5s, top 0.5s, left 0.5s, right 0.5s, transform 0.5s;
}
@media screen and (max-width: 767px) {
  .top-products-modal {
    top: 50%;
    left: 50%;
    right: auto;
    width: auto;
    max-width: none;
    inline-size: calc(100% - 1.5rem);
    transform: translate(-50%, -50%) scale(0.98);
    transition: opacity 0.3s, transform 0.3s;
  }
}

.top-products-modal[data-active=true] {
  opacity: 1;
  max-width: 50rem;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top-products-modal[data-active=true] {
    max-width: 31.25rem;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* 右側カードからの展開：right基準で中央へ */
@media screen and (min-width: 768px) {
  .top-products-modal[data-active=true][data-anchor=right] {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%);
  }
}
@media screen and (min-width: 768px) {
  .top-products-modal__header,
  .top-products-modal__layout,
  .top-products-modal__actions {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.5rem);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, margin-top 0.2s ease, max-height 0.2s ease, visibility 0s linear 0.2s;
  }
  .top-products-modal__layout {
    margin-top: 0;
  }
  .top-products-modal__actions {
    margin-top: 0;
  }
  .top-products-modal__close {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.375rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }
  .top-products-modal[data-active=true] .top-products-modal__header,
  .top-products-modal[data-active=true] .top-products-modal__layout,
  .top-products-modal[data-active=true] .top-products-modal__actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    max-height: 2000px;
    transition-delay: 0.2s, 0.2s, 0.2s, 0.2s, 0s;
  }
  .top-products-modal[data-active=true] .top-products-modal__layout {
    margin-top: 1.375rem;
  }
  .top-products-modal[data-active=true] .top-products-modal__actions {
    margin-top: 1.25rem;
  }
  .top-products-modal[data-active=true] .top-products-modal__close {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0.2s, 0.2s, 0s;
  }
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  opacity: 0;
  transition: opacity 0.3s;
}

.modal[data-active=true]::backdrop {
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
}

.top-products-modal__inner {
  padding-inline: 3.75rem;
  padding-block: 2.5rem;
  overflow-y: auto;
  max-block-size: calc(100svh - 2.5rem);
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .top-products-modal__inner {
    padding-inline: 1.25rem;
    padding-block: 3.75rem 1.875rem;
    max-block-size: calc(100svh - 1.5rem);
  }
}

.top-products-modal__header {
  display: flex;
  align-items: center;
}

.top-products-modal__title {
  font-size: max(1.75rem, 12px);
  font-family: "BIZ UDGothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #898989;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-products-modal__title {
    font-size: max(1.25rem, 12px);
  }
}

.top-products-modal__number {
  font-size: 4.375rem;
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #898989;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-products-modal__number {
    font-size: 2.75rem;
  }
}

.top-products-modal__layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1.875rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .top-products-modal__layout {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1.125rem;
  }
}

.top-products-modal__figure {
  width: 100%;
}

.top-products-modal__figure img {
  max-width: 100%;
  height: auto;
}

.top-products-modal__content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-products-modal__content {
    width: 100%;
    order: 2;
  }
}

.top-products-modal__text {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  letter-spacing: 0.02em;
  line-height: 2;
}

.top-products-modal__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-products-modal__actions {
    justify-content: center;
    margin-top: 3.125rem;
  }
}

.top-products-modal__more {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 0.3125rem;
  padding: 0.625rem 1.125rem;
  max-width: 13.1875rem;
  width: 100%;
  background-color: transparent;
  border: 1px solid #231815;
  background-color: #231815;
  transition: all 0.3s;
}

.top-products-modal__more::before {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 1rem;
  aspect-ratio: 42/43;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-products-modal__more:hover::before {
    background-color: #231815;
  }
}
.top-products-modal__more-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-products-modal__more:hover {
    background-color: #ffffff;
  }
  .top-products-modal__more:hover .top-products-modal__more::before {
    background-color: #231815;
  }
  .top-products-modal__more:hover .top-products-modal__more-text {
    color: #231815;
  }
}
.top-products-modal__media {
  width: 100%;
  border-radius: 0.3125rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-products-modal__media {
    width: 90%;
    margin-inline: auto;
    order: 1;
  }
}

.top-products-modal__media img {
  height: 100%;
  aspect-ratio: 728/546;
  object-fit: cover;
}

.top-products-modal__close {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-products-modal__close {
    top: 0.625rem;
    right: 0.625rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.top-products-modal__close::before,
.top-products-modal__close::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.5625rem;
  height: 2px;
  background-color: #231815;
}

.top-products-modal__close::before {
  transform: rotate(45deg);
}

.top-products-modal__close::after {
  transform: rotate(-45deg);
}

.news-archive__outer {
  max-width: 81.25rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .news-archive__outer {
    padding-inline: 1.25rem;
  }
}

.news-archive__inner {
  max-width: 62.5rem;
  width: 100%;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .news-archive__inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
  }
}

.news-archive__empty {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  text-align: center;
  padding: 3.75rem 0;
}

.news-detail__inner {
  max-width: 62.5rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .news-detail__inner {
    padding-inline: 1.25rem;
  }
}

.news-detail__container {
  position: relative;
  padding-block: 3.75rem;
  padding-inline: clamp(2.5rem, -17.642rem + 18.87vw, 5rem); /* 40 ~ 80 */
  border-radius: 1.25rem;
  border: 1px solid #007a55;
}
@media screen and (max-width: 767px) {
  .news-detail__container {
    padding-inline: 0.9375rem;
    border-radius: 0.625rem;
  }
}

.news-detail__meta {
  display: inline-flex;
  align-items: center;
}

.news-detail__date {
  display: inline-block;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news-detail__date {
    font-size: max(0.875rem, 12px);
  }
}

.news-detail__title {
  font-size: max(1.5rem, 18px);
  font-family: "Noto Sans JP", "游ゴシック", 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.07em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-detail__title {
    font-size: max(1.125rem, 12px);
  }
}

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

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

.news-detail__body {
  margin-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .news-detail__body {
    margin-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.news-detail__body h2 {
  font-size: max(1.25rem, 16px);
  font-family: "Noto Sans JP", "游ゴシック", 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.07em;
  overflow-wrap: break-word;
  margin-top: 3.125rem;
  padding: 0.5rem 0.9375rem;
  border-top: 1px solid #898989;
  border-bottom: 1px solid #898989;
}
@media screen and (max-width: 767px) {
  .news-detail__body h2 {
    font-size: max(1.125rem, 12px);
    padding: 0.3125rem;
    margin-top: 2.5rem;
  }
}

.news-detail__body h3 {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", 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.07em;
  margin-top: 3.125rem;
  padding-bottom: 0.3125rem;
  padding-inline: 0.9375rem;
  overflow-wrap: break-word;
  border-bottom: 1px solid #898989;
}
@media screen and (max-width: 767px) {
  .news-detail__body h3 {
    font-size: max(1rem, 12px);
    padding-inline: 0.3125rem;
    margin-top: 2.5rem;
  }
}

.news-detail__body h4 {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", 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.07em;
  margin-top: 2.5rem;
  padding-left: 0.75rem;
  overflow-wrap: break-word;
  border-left: 3px solid #008c3c;
}
@media screen and (max-width: 767px) {
  .news-detail__body h4 {
    font-size: max(0.9375rem, 12px);
    padding-left: 0.625rem;
    margin-top: 1.875rem;
  }
}

.news-detail__body p {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", 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.07em;
}
@media screen and (max-width: 767px) {
  .news-detail__body p {
    font-size: max(0.9375rem, 12px);
  }
}

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

.news-detail__body p strong {
  font-weight: 700;
}

.news-detail__body p a {
  color: #008c3c;
  overflow-wrap: break-word;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity 0.3s;
}

@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: 767px) {
  .news-detail__body > ul {
    margin-top: 0.625rem;
  }
}

.news-detail__body > ul > li {
  position: relative;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", 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.07em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .news-detail__body > ul > li {
    font-size: max(0.9375rem, 12px);
  }
}

.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: 3.75rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 414px) {
  .news-detail__body figure,
  .news-detail__body iframe {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__body figure,
  .news-detail__body iframe {
    margin-top: 2.5rem;
    margin-bottom: 3.125rem;
  }
}

.news-detail__body figure img {
  height: 100%;
  object-fit: cover;
}

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

.news-detail__body figure iframe {
  width: 100%;
  max-width: none;
  margin: 0;
}

.news-detail__body blockquote {
  margin-top: 1.875rem;
  padding: 1.25rem 1.5625rem;
  border-left: 4px solid #008c3c;
  background-color: rgba(0, 140, 60, 0.05);
}
@media screen and (max-width: 767px) {
  .news-detail__body blockquote {
    padding: 0.9375rem 1.25rem;
  }
}

.news-detail__body blockquote p {
  margin-top: 0;
}

.news-detail__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding-top: 1.875rem;
  border-top: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .news-detail__nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
  }
}

.news-detail__nav-links {
  display: contents;
}

.news-detail__nav-next {
  text-align: right;
}

.news-detail__nav-back {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news-detail__nav-back {
    grid-column: 1/-1;
  }
}

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

.news-detail__nav-prev a {
  padding-left: 2.1875rem;
}

.news-detail__nav-next a {
  padding-right: 2.1875rem;
}

.news-detail__nav-prev a::before,
.news-detail__nav-next a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #000000;
  width: 0.9375rem;
  aspect-ratio: 42/43;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .news-detail__nav-prev a::before,
  .news-detail__nav-next a::before {
    width: 0.9375rem;
  }
}

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

.news-detail__nav-next a::before {
  right: 0;
}

@media (any-hover: hover) {
  .news-detail__nav-back a:hover,
  .news-detail__nav-prev a:hover,
  .news-detail__nav-next a:hover {
    color: #007a55;
  }
  .news-detail__nav-prev a:hover::before,
  .news-detail__nav-next a:hover::before {
    background-color: #007a55;
  }
}
.news-list__item-link {
  display: grid;
  grid-template-columns: max(5.625rem, 65px) 1fr;
  gap: 1.25rem;
  padding-block: 0.625rem;
  padding-inline: 0.1875rem;
  background-image: repeating-linear-gradient(90deg, #008c3c, #008c3c 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .news-list__item-link {
    gap: 0.625rem;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

.news-list__item[data-theme=news-archive] .news-list__item-link {
  grid-template-columns: max(6.875rem, 80px) 1fr;
  padding-block: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news-list__item[data-theme=news-archive] .news-list__item-link {
    grid-template-columns: 1fr;
    padding-block: 0.625rem;
  }
}

.news-list__item-link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.news-list__item-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #dfecb9;
  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__date {
  display: inline-block;
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  white-space: nowrap;
  transition: all 0.3s;
}

.news-list__item[data-theme=news-archive] .news-list__date {
  font-size: max(1.125rem, 12px);
}
@media screen and (max-width: 767px) {
  .news-list__item[data-theme=news-archive] .news-list__date {
    font-size: max(0.9375rem, 12px);
  }
}

.news-list__title {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  word-break: break-all;
  white-space: normal; /* 文字を折り返す */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示する行数 */
  overflow: hidden;
}

.news-list__item[data-theme=news-archive] .news-list__title {
  font-size: max(1.125rem, 12px);
}
@media screen and (max-width: 767px) {
  .news-list__item[data-theme=news-archive] .news-list__title {
    font-size: max(0.9375rem, 12px);
  }
}

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

.not-found {
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .not-found {
    padding-bottom: 10.625rem;
  }
}

.not-found__text {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .not-found__text {
    font-size: clamp(0.875rem, 0.733rem + 0.61vw, 0.938rem); /* 14 ~ 15 | 375 ~ 540 */
  }
}

/* Safariのみの指定 */
@media screen and (max-width: 767px) {
  _::-webkit-full-page-media,
  _:future,
  :root .not-found__text {
    font-size: clamp(0.813rem, 0.528rem + 1.21vw, 0.938rem); /* 13 ~ 15 | 375 ~ 540 */
  }
}

.not-found__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}

.pageup-btn {
  position: absolute;
  top: -3.75rem;
  right: 0;
  z-index: 1;
  width: 3.75rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pageup-btn {
    top: -2.5rem;
    width: 2.5rem;
  }
}

.pageup-btn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000000;
  border: 1px solid #000000;
  transition: all 0.3s;
}

.pageup-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mask-image: url(../../assets/images/common/icon-arrow-01.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 2.75rem;
  aspect-ratio: 44/23;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .pageup-btn a::before {
    width: 1.875rem;
  }
}

@media (any-hover: hover) {
  .pageup-btn a:hover {
    background-color: #ffffff;
  }
  .pageup-btn a:hover::before {
    background-color: #000000;
  }
}
.pagination,
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .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(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  min-width: 2.0625rem;
  aspect-ratio: 1/1;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    font-size: max(0.875rem, 12px);
    min-width: 1.875rem;
  }
}

.page-numbers:not(.dots) {
  background-color: transparent;
}

.pagination[data-theme=news] .page-numbers {
  color: #007a55;
}
.pagination[data-theme=news] .page-numbers:not(.dots) {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

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

.pagination[data-theme=news] .page-numbers:not(.page-numbers.dots):not(.page-numbers.current) {
  background-color: transparent;
  border: 1px solid #007a55;
}

.page-numbers.dots {
  padding-inline: 0.625rem;
  width: auto;
  min-width: 0;
  padding: 0;
  border: none;
}

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

.pagination[data-theme=news] .page-numbers.current {
  color: #ffffff;
  background-color: #007a55;
  border: 1px solid #007a55;
}

@media (any-hover: hover) {
  .page-numbers:not(.page-numbers.dots):not(.page-numbers.current):hover,
  .next.page-numbers:hover,
  .prev.page-numbers:hover {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #ffffff;
  }
}
@media (any-hover: hover) {
  .pagination[data-theme=news] .page-numbers:not(.page-numbers.dots):not(.page-numbers.current):hover,
  .pagination[data-theme=news] .next.page-numbers:hover,
  .pagination[data-theme=news] .prev.page-numbers:hover {
    color: #ffffff;
    background-color: #007a55;
    border: 1px solid #007a55;
  }
}

.next.page-numbers,
.prev.page-numbers {
  position: relative;
  display: block;
  min-width: 2.0625rem;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .next.page-numbers,
  .prev.page-numbers {
    font-size: max(1rem, 12px);
    min-width: 1.875rem;
  }
}

.pagination[data-theme=news] .next.page-numbers,
.pagination[data-theme=news] .prev.page-numbers {
  background-color: #007a55;
  border: 1px solid #007a55;
}

.next.page-numbers::after,
.prev.page-numbers::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mask-image: url(../../assets/images/common/icon-arrow-01.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 0.9375rem;
  aspect-ratio: 44/23;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .next.page-numbers::after,
  .prev.page-numbers::after {
    width: 0.9375rem;
  }
}

.pagination[data-theme=news] .next.page-numbers::after,
.pagination[data-theme=news] .prev.page-numbers::after {
  background-color: #007a55;
}

.next.page-numbers::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.prev.page-numbers::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@media (any-hover: hover) {
  .next.page-numbers:hover::after,
  .prev.page-numbers:hover::after {
    opacity: 1;
    background-color: #000000;
  }
}
@media (any-hover: hover) {
  .pagination[data-theme=news] .next.page-numbers:hover::after,
  .pagination[data-theme=news] .prev.page-numbers:hover::after {
    background-color: #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .section-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
}

.section-title[data-theme=en-ja] {
  display: inline-flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .section-title[data-theme=en-ja] {
    gap: 0.9375rem;
  }
}

.section-title.section-title--top-products {
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--top-products {
    gap: 1.25rem;
  }
}

.section-title.section-title--top-works-people {
  gap: 1.25rem;
  align-items: center;
}

.section-title.section-title--top-date {
  gap: 1.875rem;
  align-items: center;
}

.section-title.section-title--top-faq {
  gap: 0.9375rem;
  align-items: center;
}

.section-title__en {
  display: inline-block;
  font-size: 6.5625rem;
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #008c3c;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title__en.section-title__en--top-works-people,
  .section-title__en.section-title__en--top-date {
    font-size: 2.5rem;
  }
}

.section-title__ja {
  display: inline-block;
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    font-size: max(1.5rem, 12px);
  }
}

.side-menu {
  position: sticky;
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .side-menu {
    display: none;
  }
}

.side-menu__items {
  position: relative;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}

.side-menu__item {
  position: relative;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #808080;
}

.side-menu__item-link {
  position: relative;
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.7777777778;
  padding-block: 1.9375rem 1rem;
  padding-left: 2.3125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .side-menu__item-link {
    font-size: max(1rem, 12px);
  }
}

.side-menu__item-link::before {
  content: "＞";
  position: absolute;
  top: 57%;
  left: 0;
  transform: translateY(-50%);
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.7777777778;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .side-menu__item-link::before {
    font-size: max(1rem, 12px);
  }
}

/* ---------- 現在地のスタイル | ここから ---------- */
.side-menu__item.is-current .side-menu__item-link {
  color: #008c3c;
}

.side-menu__item.is-current .side-menu__item-link::before {
  color: #008c3c;
}

/* ---------- 現在地のスタイル | ここまで ---------- */
@media (any-hover: hover) {
  .side-menu__item-link:hover {
    color: #008c3c;
  }
  .side-menu__item-link:hover::before {
    color: #008c3c;
  }
}
/* ---------- 初期設定クリア | ここから ---------- */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

/* ---------- 初期設定クリア | ここまで ---------- */
.tab__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 46.125rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .tab__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 18.75rem;
  }
}

.tab__list-btn {
  display: grid;
  place-items: center;
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #808080;
  line-height: 1.5;
  border: 2px solid #808080;
  background-color: #ffffff;
  padding: 0.75rem 0.625rem;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .tab__list-btn {
    padding: 0.625rem 0.625rem;
    font-size: max(1.25rem, 12px);
  }
}

.tab__list-btn[aria-selected=true] {
  color: #ffffff;
  background-color: #008c3c;
  border: 2px solid #008c3c;
  pointer-events: none;
}

@media (any-hover: hover) {
  .tab__list-btn:not([aria-selected=true]):hover {
    color: #ffffff;
    background-color: #008c3c;
    border: 2px solid #008c3c;
  }
}
.top-about {
  position: relative;
  padding-block: 4.0625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-block: 5rem;
  }
}

.top-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/top/about-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.top-about__inner.inner {
  max-width: 85.625rem;
}
@media screen and (max-width: 767px) {
  .top-about__inner.inner {
    max-width: 33.75rem;
  }
}

/* Safariのみの指定 */
@media screen and (max-width: 767px) {
  _::-webkit-full-page-media,
  _:future,
  :root .top-about__inner.inner {
    padding-inline: 0.625rem;
  }
}

.top-about__content {
  margin-top: 3.4375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-about__content {
    margin-top: 3.125rem;
  }
}

.top-about__text-01 {
  font-size: max(1.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top-about__text-01 {
    font-size: max(1.5rem, 12px);
  }
}

.top-about__text-wrapper {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .top-about__text-wrapper {
    margin-top: 1.875rem;
  }
}

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

.top-about__text-02 {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #007a55;
  line-height: 1.8333333333;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.top-about__text-03 {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .top-about__text-03 {
    font-size: max(0.875rem, 12px);
  }
}

.top-date {
  position: relative;
  padding-top: 17.1875rem;
  padding-bottom: 6.25rem;
  margin-top: -4.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-date {
    padding-top: 9.375rem;
    padding-bottom: 5rem;
  }
}

.top-date__outer {
  position: relative;
}

.top-date::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #dfecb9;
  z-index: -2;
}

.top-date::before {
  content: "";
  position: absolute;
  top: 13.25rem;
  left: calc(50% + 3.125rem);
  background-image: url(../../assets/images/top/date-deco-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 105.1875rem;
  aspect-ratio: 1683/3019;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-date::before {
    left: calc(50% - 23.75rem);
    width: 62.5rem;
  }
}

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

.top-date__section-title-wrapper {
  text-align: center;
}

.top-date__lead {
  margin-top: 1.25rem;
}

.top-date__lead-text {
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #231815;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-date__lead-text {
    text-align: left;
  }
}

.top-date__container {
  position: relative;
  margin-top: 0.3125rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-date__container {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .top-date__container-inner {
    max-width: 21.875rem;
    width: 90%;
    margin-inline: auto;
  }
}

.top-date__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .top-date__items {
    gap: 1.875rem;
  }
}

.top-date__item {
  position: relative;
  display: grid;
  place-items: center;
  width: calc((100% - 1.25rem) / 3);
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .top-date__item {
    width: 100%;
  }
}

.top-date__item--01 {
  aspect-ratio: 388/390;
}

.top-date__item--02 {
  aspect-ratio: 376/387;
}

.top-date__item--03 {
  aspect-ratio: 382/399;
}

.top-date__item:nth-child(2) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .top-date__item:nth-child(2) {
    margin-top: 0;
  }
}

.top-date__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  width: 100%;
  z-index: -1;
}
.top-date__item--01::before {
  background-image: url("../images/top/date-bg-01.svg");
  aspect-ratio: 388/390;
}

.top-date__item--02::before {
  background-image: url("../images/top/date-bg-02.svg");
  aspect-ratio: 376/387;
}

.top-date__item--03::before {
  background-image: url("../images/top/date-bg-03.svg");
  aspect-ratio: 382/399;
}

.top-date__item-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  width: 100%;
  height: 100%;
}

.top-date__item-wrapper--01 {
  top: 40%;
  left: 47%;
}

.top-date__item-wrapper--02 {
  top: 50%;
  left: 48%;
}

.top-date__item-wrapper--03 {
  top: 43%;
  left: 47%;
}

.top-date__item-wrapper--04 {
  top: 50%;
  left: 48%;
}

.top-date__item-wrapper--05 {
  top: 45%;
  left: 47%;
}

.top-date__item-icon {
  max-width: 14.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-date__item-icon {
    max-width: 12.5rem;
  }
}

.top-date__item-icon img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 233/173;
}

.top-date__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
  text-align: center;
}

.top-date__text-01 {
  font-size: max(1.5rem, 12px);
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #008c3c;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .top-date__text-01 {
    font-size: max(1rem, 12px);
  }
}

.top-date__text-02-a {
  font-size: 4.0625rem;
  font-size: 3.125rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #008c3c;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .top-date__text-02-a {
    font-size: 2.1875rem;
  }
}

.top-date__text-02-b {
  font-size: 1.875rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #008c3c;
}
@media screen and (max-width: 767px) {
  .top-date__text-02-b {
    font-size: max(1.25rem, 12px);
  }
}

.top-date__text-03 {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #008c3c;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .top-date__text-03 {
    font-size: max(1rem, 12px);
  }
}

.top-date__text-sub {
  display: flex;
  gap: 0.625rem;
}

.top-date__text-sub-item {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #008c3c;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .top-date__text-sub-item {
    font-size: max(1rem, 12px);
  }
}

@media screen and (max-width: 767px) {
  .top-date__items .top-date__item:nth-child(3n+2) {
    grid-column: 1/-1;
    justify-self: center;
  }
}
.top-faq {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .top-faq {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.top-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 2.8125rem solid transparent;
  border-left: 2.8125rem solid transparent;
  border-top: 3.125rem solid #dfecb9;
  border-bottom: 0;
}

.top-faq__inner.inner {
  max-width: 55.625rem;
}
@media screen and (max-width: 767px) {
  .top-faq__inner.inner {
    max-width: 33.75rem;
  }
}

.top-faq__section-title-wrapper {
  text-align: center;
}

.top-faq__list {
  margin-top: 0.75rem;
}

.top-faq__item {
  position: relative;
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-faq__item {
    padding-block: 0.9375rem;
  }
}

.top-faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, #008c3c 0.1875rem, transparent 0.1875rem);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 1.125rem 0.375rem;
  width: 100vw;
  max-width: 90rem;
  height: 0.375rem;
}
@media screen and (max-width: 767px) {
  .top-faq__item::before {
    background-image: radial-gradient(circle, #008c3c 1.5px, transparent 1.5px);
    background-size: 9px 3px;
    height: 0.1875rem;
  }
}

.top-faq__item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, #008c3c 0.1875rem, transparent 0.1875rem);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 1.125rem 0.375rem;
  width: 100vw;
  max-width: 90rem;
  height: 0.375rem;
}
@media screen and (max-width: 767px) {
  .top-faq__item:last-child::after {
    background-image: radial-gradient(circle, #008c3c 1.5px, transparent 1.5px);
    background-size: 9px 3px;
    height: 0.1875rem;
  }
}

.top-faq__summary {
  display: grid;
  grid-template-columns: 1fr 2.5rem;
  gap: 1.875rem;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top-faq__summary {
    grid-template-columns: 1fr 1.875rem;
    gap: 0.9375rem;
  }
}

.top-faq__question {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  line-height: 2;
}

.top-faq__icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #008c3c;
  background-color: #ffffff;
  border-radius: 100vmax;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-faq__icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.top-faq__icon::before,
.top-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #008c3c;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-faq__summary:hover .top-faq__icon {
    background-color: #008c3c;
  }
  .top-faq__summary:hover .top-faq__icon::before,
  .top-faq__summary:hover .top-faq__icon::after {
    background-color: #ffffff;
  }
}
.top-faq__icon::before {
  width: 1.875rem;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .top-faq__icon::before {
    width: 1.25rem;
  }
}

.top-faq__icon::after {
  width: 1px;
  height: 1.875rem;
  transition: 0.3s ease opacity;
}
@media screen and (max-width: 767px) {
  .top-faq__icon::after {
    height: 1.25rem;
  }
}

.top-faq__item[open] .top-faq__icon::after {
  opacity: 0;
}

.top-faq__content {
  overflow: hidden;
}

.top-faq__answer {
  padding: 1.25rem;
  background-color: #dfecb9;
  max-width: calc(100% - 4.375rem);
}
@media screen and (max-width: 767px) {
  .top-faq__answer {
    max-width: calc(100% - 2.8125rem);
    padding: 0.9375rem;
  }
}

.top-faq__answer-text {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  line-height: 2;
}

.top-faq__answer-text:nth-child(n+2) {
  margin-top: 1em;
}

.top-faq__answer-text-link {
  position: relative;
  display: inline;
  color: #008c3c;
  transition: all 0.3s;
}

.top-faq__answer-text-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #008c3c;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-faq__answer-text-link:hover {
    opacity: 0.6;
  }
}
.top-news {
  padding-block: 3.125rem;
}

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

.top-news__container {
  display: grid;
  grid-template-columns: 1fr 58.4375rem;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-news__container {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

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

.top-products {
  position: relative;
  padding-top: 4.375rem;
  padding-bottom: 19.6875rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .top-products {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.top-products::before {
  content: "";
  position: absolute;
  top: 15.625rem;
  right: calc(50% - 33.75rem);
  background-image: url("../images/top/product-deco.webp");
  background-size: contain;
  width: 88.375rem;
  aspect-ratio: 1414/1259;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-products::before {
    top: 22.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    background-size: 100% 100%;
    width: 62.5rem;
    height: 103.75rem;
    aspect-ratio: auto;
  }
}

.top-products__inner.inner {
  max-width: 84.375rem;
}
@media screen and (max-width: 767px) {
  .top-products__inner.inner {
    max-width: 33.75rem;
  }
}

.top-products__header {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top-products__section-title-wrapper {
    text-align: center;
  }
}

.top-products__text {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #231815;
  line-height: 2;
  margin-top: 1.375rem;
}
.top-products__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.375rem; /* 上下の余白 */
  column-gap: 6.25rem; /* 左右の余白 */
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .top-products__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    max-width: 25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.top-products__card-item {
  position: relative;
  width: 100%;
  min-height: 26.375rem;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-products__card-item {
    min-height: auto;
  }
}

.top-products-card {
  display: block;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 1.375rem 2.1875rem 1.75rem 3.5625rem;
  background-color: #e6e6e6;
  font: inherit;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-products-card {
    padding-block: 1.875rem 3.125rem;
    padding-inline: 1.25rem;
  }
}

.top-products-card__head {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-products-card__head {
    gap: 1.25rem;
  }
}

.top-products-card__number {
  font-size: 5.9375rem;
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #898989;
}
@media screen and (max-width: 767px) {
  .top-products-card__number {
    font-size: 3rem;
  }
}

.top-products-card__title {
  font-size: max(1.5rem, 12px);
  font-family: "BIZ UDGothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #898989;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top-products-card__title {
    font-size: max(1.125rem, 12px);
  }
}

.top-products-card__img {
  position: absolute;
  width: 34rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-products-card__img {
    position: static;
    width: 90%;
    margin-inline: auto;
    margin-top: 0;
  }
}

.top-products-card__img img {
  aspect-ratio: 545/321;
  object-fit: contain;
}

@media (any-hover: hover) {
  .top-products-card:hover .top-products-card__img {
    transform: scale(1.03);
  }
}
.top-products-card__img.top-products-card__img-01 {
  left: 1.5625rem;
  bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-products-card__img.top-products-card__img-01 {
    margin-top: 1.25rem;
  }
}

.top-products-card__img.top-products-card__img-02 {
  left: 0.875rem;
  bottom: -0.625rem;
}

.top-products-card__img.top-products-card__img-03 {
  left: 1.875rem;
  bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-products-card__img.top-products-card__img-03 {
    margin-top: 1.25rem;
  }
}

.top-products-card__img.top-products-card__img-04 {
  left: 1.5625rem;
  bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-products-card__img.top-products-card__img-04 {
    margin-top: 1.875rem;
  }
}

.top-products-card__more {
  position: absolute;
  right: 2.1875rem;
  bottom: 1.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  border: 1px solid #231815;
  background-color: #231815;
  padding: 0.5rem;
  max-width: 13.1875rem;
  border-radius: 0.3125rem;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-products-card__more {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 3.125rem;
    margin-inline: auto;
  }
}

.top-products-card__more::before {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 1rem;
  aspect-ratio: 42/43;
  transition: all 0.3s;
}

.top-products-card__more-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-products-card:hover .top-products-card__more {
    background-color: #ffffff;
  }
  .top-products-card:hover .top-products-card__more::before {
    background-color: #231815;
  }
  .top-products-card:hover .top-products-card__more-text {
    color: #231815;
  }
}
.top-works-people {
  position: relative;
}

.top-works-people__inner.inner {
  max-width: 84.375rem;
}
@media screen and (max-width: 767px) {
  .top-works-people__inner.inner {
    max-width: 33.75rem;
  }
}

.top-works-people__section-title-wrapper {
  text-align: center;
}

.top-works-people__lead {
  font-size: max(0.9375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-works-people__lead {
    text-align: left;
  }
}

.top-works-people__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .top-works-people__cards {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.5rem;
    max-width: 25rem;
  }
}

.top-works-people__card-item {
  min-width: 0;
}

.top-works-people__card-item--02 {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .top-works-people__card-item--02 {
    margin-top: 0;
  }
}

.top-works-people-card {
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.top-works-people-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.3;
  mix-blend-mode: multiply;
  transition: all 0.3s;
  z-index: 1;
}

@media (any-hover: hover) {
  .top-works-people-card:hover::before {
    background-color: transparent;
  }
}
.top-works-people-card__media {
  overflow: hidden;
}

.top-works-people-card__media img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 480/485;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-works-people-card:hover .top-works-people-card__media img {
    transform: scale(1.1);
  }
}
.top-works-people-card__wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.top-works-people-card__text-wrapper {
  display: grid;
  grid-template-columns: 1fr max(7.1875rem, 90px);
}

.top-works-people-card__department {
  font-size: clamp(1.5rem, -6.5rem + 10vw, 2.5rem); /* 32 ~ 40 | 1280 ~ 1440 */
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding-top: 1.5625rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-works-people-card__department {
    font-size: max(1.25rem, 12px);
    padding-top: 1.25rem;
    padding-left: 1.25rem;
  }
}

.top-works-people-card__meta {
  padding-block: 2.5rem 0.625rem;
  padding-inline: clamp(0.625rem, -1.875rem + 3.13vw, 0.938rem); /* 10 ~ 15 | 1280 ~ 1440 */
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .top-works-people-card__meta {
    padding-block: 1.25rem 0.625rem;
  }
}

.top-works-people-card__meta-text {
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

.top-works-people-card__meta-text:nth-child(n+2) {
  margin-top: 1.25rem;
}

.top-works-people-card__btn {
  position: absolute;
  right: 1.25rem;
  bottom: 1.4375rem;
  max-width: 13.1875rem;
  width: 100%;
  background-color: #008c3c;
  padding: 0.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-works-people-card__btn {
    max-width: 11.25rem;
  }
}

.top-works-people-card__btn::before {
  content: "";
  position: absolute;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-arrow-02.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #ffffff;
  width: 0.875rem;
  aspect-ratio: 14/9;
}

.top-works-people-card__btn-text {
  font-size: max(1rem, 12px);
  font-family: "Inter", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: capitalize;
}

.l-lower {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .l-lower {
    padding-bottom: 5rem;
  }
}

.l-lower-main {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-lower-main {
    margin-top: 5.9375rem;
  }
}

.l-lower-main__side {
  margin-top: -2.1875rem;
}

.l-entry-contact {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-entry-contact {
    margin-top: 3.75rem;
  }
}

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

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

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

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

/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 767px以下で改行 */
.br-767-less {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-767-less {
    display: block;
  }
}

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

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

/* SPのとき非表示 */
@media screen and (max-width: 767px) {
  .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;
  }
}
/* PC・SP共通用 */
.mt-1 {
  margin-top: 0.0625rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ---------- margin-topの設定 | ここまで ---------- */
/* ---------- スクリーンリーダーオンリー用の記述 | ここから ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- スクリーンリーダーオンリー用の記述 | ここまで ---------- *//*# sourceMappingURL=style.css.map */