@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 */
}

iframe {
  border: none;
}

img {
  image-rendering: auto;
}

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

/* ---------- ベースファイル | ここまで ---------- */
/* ---------- リセット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-inline: 1.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 0.625rem;
  }
}

.lower-inner {
  width: 100%;
  max-width: 110rem;
  padding-inline: clamp(1.25rem, -10.592rem + 14.04vw, 6.25rem); /* 20 ~ 100 | 1350 ~ 1920 */
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lower-inner {
    max-width: 32.5rem;
    padding-inline: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 3.75rem;
  }
}

.about__inner {
  margin-inline: auto;
  max-width: 109.875rem;
}
.about__container {
  display: grid;
  grid-template-columns: clamp(18.75rem, -19.145rem + 44.91vw, 34.75rem) 1fr; /* 300 ~ 556 | 1350 ~ 1920 */
  grid-template-columns: clamp(18.75rem, -34.688rem + 63.33vw, 41.313rem) 1fr; /* 300 ~ 661 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .about__container {
    display: flex;
    flex-direction: column;
  }
}

.about__image-area {
  padding-top: 3.3125rem;
  padding-right: clamp(2.5rem, -7.122rem + 11.4vw, 6.563rem); /* 40 ~ 105 | 1350 ~ 1920 */
  padding-left: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .about__image-area {
    display: none;
  }
}

.about__image {
  display: block;
  width: 100%;
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 456/713.5;
}

.about__content {
  flex: 1;
  padding-top: 8rem;
  padding-bottom: 4rem;
  border-left: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .about__content {
    order: 1;
    padding-top: 3.75rem;
    padding-bottom: initial;
    border-left: none;
    padding-left: initial;
  }
}

.about__head {
  padding-right: 2.5rem;
  padding-left: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  padding-bottom: clamp(4rem, -3.697rem + 9.12vw, 7.25rem); /* 64 ~ 116 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .about__head {
    margin-inline: auto;
    padding-inline: 0.625rem;
    padding-bottom: 3.75rem;
    max-width: 32.5rem;
  }
}

.about__head-area {
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .about__head-area {
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.about__head-image {
  display: block;
  width: 100%;
  max-width: 17.71875rem;
}
@media screen and (max-width: 767px) {
  .about__head-image {
    margin-inline: auto;
    max-width: 80%;
  }
}

.about__head-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 283.5/214;
}

.about__section-title {
  margin-top: 0.625rem;
}

.about__description {
  margin-top: 1.6875rem;
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .about__description {
    font-size: max(0.875rem, 12px);
  }
}

.about__bottom {
  padding-top: 4rem;
  padding-left: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  padding-right: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .about__bottom {
    margin-inline: auto;
    padding-top: 3.75rem;
    padding-inline: initial;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.about__bottom-inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .about__bottom-inner {
    display: block;
    margin-inline: auto;
    padding-inline: 0.625rem;
    max-width: 32.5rem;
  }
}

.about__catchcopy {
  font-size: 3.125rem;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .about__catchcopy {
    font-size: 2rem;
  }
}

.about__catchcopy-br {
  display: none;
}
@media (width >= 1701px) {
  .about__catchcopy-br {
    display: inline;
  }
}

.about__bottom-description {
  margin-top: 0.875rem;
  max-width: 18.75rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 1.6;
}

.anchor-nav {
  display: grid;
  gap: 0.0625rem;
}

.anchor-nav__item {
  display: grid;
}

.anchor-nav__link {
  display: grid;
  place-items: center start;
  min-height: 3.75rem;
  padding: 0.75rem 2.5rem;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 2.5rem, calc(100% - 1.25rem) 100%, 0 100%);
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .anchor-nav__link {
    padding: 0.75rem 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 2.1875rem, calc(100% - 0.9375rem) 100%, 0 100%);
  }
}

.anchor-nav__link:focus-visible {
  outline: 2px solid #000000;
  outline-offset: -2px;
}

.anchor-nav__link-inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

@media (any-hover: hover) {
  .anchor-nav__link:hover {
    background-color: #000000;
  }
  .anchor-nav__link:hover .anchor-nav__label,
  .anchor-nav__link:hover .anchor-nav__en {
    color: #ffffff;
  }
}
.anchor-nav__label {
  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.1em;
  line-height: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .anchor-nav__label {
    font-size: max(0.875rem, 12px);
  }
}

.anchor-nav__en {
  font-size: max(0.625rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.3s;
}

.anchor-nav[data-theme=service] {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1440px) {
  .anchor-nav[data-theme=service] {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .anchor-nav[data-theme=service] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 375px) {
  .anchor-nav[data-theme=service] {
    grid-template-columns: 1fr;
  }
}

.anchor-nav[data-theme=service] .anchor-nav__link {
  background-color: #b5b5b5;
}

@media (any-hover: hover) {
  .anchor-nav[data-theme=service] .anchor-nav__link:hover {
    background-color: #000000;
  }
}
.anchor-nav[data-theme=company] {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .anchor-nav[data-theme=company] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 375px) {
  .anchor-nav[data-theme=company] {
    grid-template-columns: 1fr;
  }
}

.anchor-nav[data-theme=company] .anchor-nav__link {
  background-color: #b5b5b5;
}

@media (any-hover: hover) {
  .anchor-nav[data-theme=company] .anchor-nav__link:hover {
    background-color: #000000;
  }
}
.anchor-nav[data-theme=sustainable] {
  grid-template-columns: repeat(5, 1fr);
  max-width: 87.75rem;
}
@media screen and (max-width: 1440px) {
  .anchor-nav[data-theme=sustainable] {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .anchor-nav[data-theme=sustainable] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .anchor-nav[data-theme=sustainable] {
    grid-template-columns: 1fr;
  }
}

html,
body {
  overflow-x: clip;
}

.js-fade-op,
.js-fv-fade-op,
.js-fv-fade-ops,
.js-fade-ops {
  opacity: 0;
}

.js-fadeIn-rights {
  visibility: hidden;
}

.js-text-mask,
.js-fv-text-mask,
.js-text-mask-single {
  position: relative;
  transform: translateY(1.25rem);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  --translateX: 0px;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  .js-fade-op,
  .js-fv-fade-op,
  .js-fv-fade-ops,
  .js-fade-ops,
  .js-fadeIn-rights,
  .js-text-mask,
  .js-fv-text-mask,
  .js-text-mask-single {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
  }
  .js-text-mask::before,
  .js-fv-text-mask::before,
  .js-text-mask-single::before {
    display: none !important;
  }
}
.bg-mask-img {
  --_gutter: calc((100dvi - 100cqi) / 2);
  position: relative;
  height: 40rem;
  margin-inline: calc(var(--_gutter) * -1);
  z-index: -5;
}
@media screen and (max-width: 767px) {
  .bg-mask-img {
    height: 25rem;
  }
}
.bg-mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-mask-img[data-theme=news-list],
.bg-mask-img[data-theme=works-list],
.bg-mask-img[data-theme=company] {
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .bg-mask-img[data-theme=news-list],
  .bg-mask-img[data-theme=works-list],
  .bg-mask-img[data-theme=company] {
    height: 25rem;
  }
}

.bg-mask-img__catchcopy {
  position: absolute;
  right: max(clamp(1.25rem, -22.434rem + 28.07vw, 11.25rem), 50% - 48.75rem); /* 20 ~ 180 | 1350 ~ 1920, 1920px超は中央基準で固定 */
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .bg-mask-img__catchcopy {
    right: 1.25rem;
    bottom: 2.5rem;
  }
}

.bg-mask-img__catchcopy-line {
  padding-block: 0.0625rem 0.1875rem;
  padding-inline: 0.0625rem;
  display: inline-block;
  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;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #000000;
  background-color: #ffffff;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .bg-mask-img__catchcopy-line {
    font-size: max(1rem, 12px);
  }
}

.bg-mask-img::before,
.bg-mask-img::after {
  content: "";
  position: absolute;
  background-color: #fff;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 100vw;
  height: 2.5rem;
  z-index: 2;
}

.bg-mask-img::before {
  top: -0.0625rem;
  left: max(35.625rem, 50% - 24.375rem);
  width: 100vw;
  mask-image: url("../../assets/images/common/mask-parts-pc.webp");
}
@media screen and (max-width: 767px) {
  .bg-mask-img::before {
    left: 7.5rem;
    mask-image: url("../../assets/images/common/mask-parts-sp.webp");
  }
}

.bg-mask-img::after {
  bottom: -0.0625rem;
  right: max(35.625rem, 50% - 24.375rem);
  width: 100vw;
  mask-image: url("../../assets/images/common/mask-parts-pc.webp");
  transform: scale(-1, -1);
}
@media screen and (max-width: 767px) {
  .bg-mask-img::after {
    right: 7.5rem;
    mask-image: url("../../assets/images/common/mask-parts-sp.webp");
  }
}

.body-content__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 3.75rem 1fr 3.75rem;
  margin-inline: auto;
  width: calc(100% - 2.5rem);
  border-radius: 0.625rem 0 0 0;
  margin-top: 5rem;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  border-right: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .body-content__wrapper {
    width: calc(100% - 1.125rem);
    grid-template-columns: 1fr;
    margin-top: 3.75rem;
    border-radius: 0;
  }
}

.body-content__slide-text {
  position: relative;
  width: 3.75rem;
  border-right: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .body-content__slide-text {
    display: none;
  }
}

.body-content__main {
  container-type: inline-size;
}

.body-content__scale {
  position: relative;
  width: 3.75rem;
  border-left: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .body-content__scale {
    display: none;
  }
}

.body-content__scale::before {
  content: "";
  position: absolute;
  top: 0.875rem;
  left: 0.3125rem;
  mask-image: url(../../assets/images/common/scale-triangle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #b5b5b5;
  width: 0.75rem;
  aspect-ratio: 12/14;
}

.body-content__scale::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 100%;
  background-color: #b5b5b5;
  mask-image: url(../../assets/images/common/scale.svg);
  mask-size: 1rem auto;
  mask-repeat: repeat-y;
  mask-position: center top;
  z-index: -5;
}

.breadcrumb__nav {
  width: 100%;
}

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

.breadcrumb__item {
  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;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.breadcrumb__nav[data-theme=sustainable] .breadcrumb__item {
  color: #ffffff;
}

.breadcrumb__item:first-of-type {
  text-transform: uppercase;
}

.breadcrumb__item::after {
  content: "-";
  display: inline-block;
  margin-inline: 0.1875rem;
}

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

.breadcrumb__link {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: all 0.3s;
}

.breadcrumb__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.125rem;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s;
}

.breadcrumb__nav[data-theme=sustainable] .breadcrumb__link::before {
  background-color: #ffffff;
}

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

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

/* ----- ボタンタイプ共通設定 ここまで ----- */
/* ---------- ヘッダーボタン | ここから ---------- */
.btn-header {
  display: grid;
  place-items: center;
  min-width: 12.5rem;
  width: 100%;
  height: 100%;
  background-color: var(--header-btn-bg, #b5b5b5);
  padding-inline: 0.625rem;
  padding-block: 0.3125rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25rem 100%, 0 2.5rem);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-header {
    min-width: 8.75rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25rem 100%, 0 2.1875rem);
  }
}

.btn.btn-header[data-theme=drawer] {
  min-width: 11.25rem;
  min-height: 3.125rem;
  background-color: #b5b5b5;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25rem 100%, 0 2.1875rem);
}

.btn__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.btn__header-text-ja {
  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.1em;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn__header-text-ja {
    font-size: max(0.875rem, 12px);
  }
}

@media screen and (max-width: 767px) {
  .btn-header[data-theme=drawer] .btn__header-text-ja {
    font-size: max(1rem, 12px);
  }
}

.btn__header-text-en {
  font-size: 10px;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .btn-header:hover {
    background-color: #000000;
  }
  .btn-header:hover .btn__header-text-ja,
  .btn-header:hover .btn__header-text-en {
    color: #ffffff;
  }
}
/* ---------- ヘッダーボタン | ここまで ---------- */
/* ---------- ボタン（左上クリップパス ver） | ここから ---------- */
.btn-02 {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 17.5rem;
  width: 100%;
  padding-inline: 0.625rem;
  padding-block: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-02 {
    max-width: 12.5rem;
    padding-block: 1.0625rem;
  }
}

.btn-02::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  clip-path: polygon(1.25rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 2.5rem));
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .btn-02::before {
    clip-path: polygon(1.25rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 1.875rem));
  }
}

.btn-02[data-theme=blue]::before {
  background-color: #00a2e9;
}

.btn-02[data-theme=white]::before {
  background-color: #00a2e9;
}

.btn-02[data-theme=black]::before {
  background-color: #ffffff;
}

.btn-02::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #000000;
  clip-path: polygon(1.125rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 2.375rem));
  border-radius: 0.1875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-02::after {
    clip-path: polygon(1.125rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 1.75rem));
  }
}

.btn-02[data-theme=blue]::after {
  background-color: #00a2e9;
}

.btn-02[data-theme=white]::after {
  background-color: #ffffff;
}

.btn-02[data-theme=black]::after {
  background-color: #000000;
}

.btn__text-02 {
  position: relative;
  z-index: 1;
  font-size: max(1.25rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn__text-02 {
    font-size: max(1rem, 12px);
  }
}

.btn-02[data-theme=blue] .btn__text-02 {
  color: #ffffff;
}

.btn-02[data-theme=white] .btn__text-02 {
  color: #00a2e9;
}

.btn-02[data-theme=black] .btn__text-02 {
  color: #ffffff;
}

@media (any-hover: hover) {
  .btn-02[data-theme=blue]:hover::after {
    background-color: #ffffff;
  }
  .btn-02[data-theme=white]:hover::after {
    background-color: #00a2e9;
  }
  .btn-02[data-theme=black]:hover::after {
    background-color: #ffffff;
  }
  .btn-02[data-theme=blue]:hover .btn__text-02 {
    color: #00a2e9;
  }
  .btn-02[data-theme=white]:hover .btn__text-02 {
    color: #ffffff;
  }
  .btn-02[data-theme=black]:hover .btn__text-02 {
    color: #000000;
  }
}
/* ---------- ボタン（左上クリップパス ver） | ここまで ---------- */
/* ---------- ボタン（角丸ボーダー ver） | ここから ---------- */
.btn-03 {
  display: inline-grid;
  place-items: center;
  max-width: 17.5rem;
  width: 100%;
  padding-inline: 1.25rem;
  padding-block: 1.125rem;
  border: 1px solid #00a2e9;
  border-radius: 0.3125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-03 {
    max-width: 12.5rem;
    padding-block: 0.9375rem;
  }
}

.btn__text-03 {
  font-size: max(1.25rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #00a2e9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn__text-03 {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn-03:hover {
    background-color: #00a2e9;
  }
  .btn-03:hover .btn__text-03 {
    color: #ffffff;
  }
}
/* ---------- ボタン（角丸ボーダー ver） | ここまで ---------- */
/* ---------- 送信ボタン（フォーム用） | ここから ---------- */
.btn-submit {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 17.5rem;
  width: 100%;
  padding-inline: 0.625rem;
  padding-block: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-submit {
    max-width: 12.5rem;
    padding-block: 1.0625rem;
  }
}

.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #00a2e9;
  clip-path: polygon(1.25rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 2.5rem));
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .btn-submit::before {
    clip-path: polygon(1.25rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 1.875rem));
  }
}

.btn-submit::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #ffffff;
  clip-path: polygon(1.125rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 2.375rem));
  border-radius: 0.1875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-submit::after {
    clip-path: polygon(1.125rem 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 1.75rem));
  }
}

.btn-submit__submit {
  position: relative;
  z-index: 1;
  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: #00a2e9;
  letter-spacing: 0.1em;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-submit__submit {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .btn-submit:hover::after {
    background-color: #00a2e9;
  }
  .btn-submit:hover .btn-submit__submit {
    color: #ffffff;
  }
}
/* ---------- 送信ボタン（フォーム用） | ここまで ---------- */
.company-mv {
  --_gutter: calc((100dvi - 100cqi) / 2);
  position: relative;
  height: 100lvh;
  margin-inline: calc(var(--_gutter) * -1);
  overflow: hidden;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .company-mv {
    margin-top: -3.75rem;
  }
}

.company-mv__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}
.company-mv__img img {
  height: 100%;
  object-fit: cover;
}

.company-mv__img-title {
  container-type: inline-size;
  position: absolute;
  top: 52.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - var(--_gutter) * 2);
  height: 17.1875vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company-mv__img-title {
    height: 40vw;
  }
}
.company-mv__img-title img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 151.36cqi;
  height: 100%;
  max-width: none;
  aspect-ratio: 2664/330;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .company-mv__img-title img {
    width: 338.03cqi;
  }
}

.company__fv-desc {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b5b5b5;
  letter-spacing: -0.06em;
  line-height: 1.3333333333;
  max-width: 15rem;
  margin-top: 1.875rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .company__fv-desc {
    max-width: 100%;
    margin-top: 1.25rem;
    margin-left: 0;
  }
}

.company {
  border-top: 1px solid #b5b5b5;
}

.company__inner {
  margin-inline: auto;
  max-width: 110rem;
}
@media screen and (max-width: 1920px) {
  .company__inner {
    border-left: none;
    border-right: none;
  }
}

.company__anchor-nav {
  max-width: 70.1875rem;
  width: 100%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .company__anchor-nav {
    max-width: 100%;
  }
}

.company-message {
  display: grid;
  grid-template-columns: clamp(18.75rem, -4.934rem + 28.07vw, 28.75rem) 1fr; /* 300 ~ 460 | 1350 ~ 1920 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company-message {
    grid-template-columns: 1fr;
    border-top: 1px solid #b5b5b5;
  }
}

.company-message__inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .company-message__inner {
    display: block;
    padding-inline: 0.625rem;
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

.company-message__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  border-top: 1px solid #b5b5b5;
  padding-inline: clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
  padding-top: clamp(3.125rem, -2.204rem + 6.32vw, 5.375rem); /* 50 ~ 86 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .company-message__heading {
    padding-inline: 0.625rem;
    border-top: none;
  }
}

.company-message__heading-ja {
  font-size: 1.625rem;
  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.1em;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .company-message__heading-ja {
    font-size: 1.375rem;
  }
}

.company-message__heading-en {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.3333333333;
  text-transform: uppercase;
}

.company-message__heading-en-dot {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  flex-shrink: 0;
}

.company-message__body {
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .company-message__body {
    border-top: none;
    border-left: none;
  }
}

.company-message__top {
  display: grid;
  grid-template-columns: 1fr clamp(15.625rem, 8.224rem + 8.77vw, 18.75rem); /* 250 ~ 300 | 1350 ~ 1920 */
  gap: clamp(2.5rem, -2.977rem + 6.49vw, 4.813rem); /* 40 ~ 77| 1350 ~ 1920 */
  align-items: flex-start;
  padding-inline: clamp(3.125rem, 1.645rem + 1.75vw, 3.75rem) clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 60 | 1350 ~ 1920 || 50 ~ 100 | 1350 ~ 1920 */
  padding-block: clamp(3.125rem, -2.796rem + 7.02vw, 5.625rem) clamp(3.125rem, 1.645rem + 1.75vw, 3.75rem); /* 50 ~ 90 | 1350 ~ 1920 || 50 ~ 60 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .company-message__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-inline: 0.625rem;
    padding-block: 3.125rem 0;
  }
}

.company-message__title {
  font-size: clamp(1.875rem, -0.493rem + 2.81vw, 2.875rem); /* 30 ~ 46 | 1350 ~ 1920 */
  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.1em;
  line-height: 1.5652173913;
}
@media screen and (max-width: 767px) {
  .company-message__title {
    order: 2;
    font-size: 1.5rem;
  }
}

.company-message__content {
  border-top: 1px solid #b5b5b5;
  padding-block: clamp(3.125rem, 1.645rem + 1.75vw, 3.75rem) clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 60 | 1350 ~ 1920 || 50 ~ 100 | 1350 ~ 1920 */
  padding-inline: clamp(3.125rem, 1.645rem + 1.75vw, 3.75rem) clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 60 | 1350 ~ 1920 || 50 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .company-message__content {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    padding-inline: 0.625rem;
  }
}

.company-message__text-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, -0.461rem + 3.51vw, 3.75rem); /* 40 ~ 60 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .company-message__text-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.company-message__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: #000000;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .company-message__text {
    font-size: max(0.875rem, 12px);
  }
}

.company-message__img {
  mask-image: url("../../assets/images/common/mask-img-vertical.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .company-message__img {
    order: 1;
    max-width: 18.75rem;
    width: 100%;
    margin-inline: auto;
  }
}

.company-message__img img {
  width: 100%;
  aspect-ratio: 300/400;
  height: auto;
  object-fit: cover;
}

.company-message__sign {
  max-width: 12.5rem;
  width: 100%;
  margin-top: 3.75rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .company-message__sign {
    margin-top: 2.5rem;
  }
}
.company-message__sign img {
  height: 100%;
  object-fit: contain;
}

.company-info {
  display: grid;
  grid-template-columns: 1fr clamp(18.75rem, -4.934rem + 28.07vw, 28.75rem); /* 300 ~ 460 | 1350 ~ 1920 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company-info {
    grid-template-columns: 1fr;
  }
}

.company-info__inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .company-info__inner {
    display: block;
    padding-inline: 0.625rem;
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

.company-info__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  border-top: 1px solid #b5b5b5;
  padding-inline: clamp(3.125rem, 1.645rem + 1.75vw, 3.75rem); /* 50 ~ 60 | 1350 ~ 1920 */
  padding-top: clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
  order: 2;
  border-left: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .company-info__heading {
    padding-inline: 0;
    order: -1;
    border-left: none;
    border-top: none;
  }
}

.company-info__heading-ja {
  font-size: 1.625rem;
  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.1em;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .company-info__heading-ja {
    font-size: 1.375rem;
  }
}

.company-info__heading-en {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.3333333333;
  text-transform: uppercase;
}

.company-info__heading-en-dot {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  flex-shrink: 0;
}

.company-info__body {
  padding-block: clamp(3.125rem, -1.316rem + 5.26vw, 5rem); /* 50 ~ 80 | 1350 ~ 1920 */
  order: 1;
}
@media screen and (max-width: 767px) {
  .company-info__body {
    padding-top: 0;
    padding-bottom: 3.125rem;
  }
}

.company-info__list {
  display: grid;
}

.company-info__row {
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  gap: 0.625rem;
  padding-block: 1.125rem;
  padding-inline: clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
  border-bottom: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .company-info__row {
    grid-template-columns: 5.625rem 1fr;
    gap: 0.75rem;
    padding-block: 1rem;
    padding-inline: 0;
  }
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__term {
  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.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .company-info__term {
    font-size: max(0.875rem, 12px);
  }
}

.company-info__desc {
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .company-info__desc {
    font-size: max(0.875rem, 12px);
  }
}

.company-history {
  padding-block: clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
  border-top: 1px solid #b5b5b5;
  overflow: hidden;
}

.company-history__inner {
  max-width: 110rem;
  width: 100%;
  margin-inline: auto;
  padding-left: clamp(3.125rem, -4.276rem + 8.77vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .company-history__inner {
    padding-inline: clamp(0.625rem, -14.375rem + 46.15vw, 7.75rem) 0; /* 10 ~ 124 | 520 ~ 767 (最大幅520px想定)*/
  }
}

.company-history__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.company-history__heading-ja {
  font-size: 1.625rem;
  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.1em;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .company-history__heading-ja {
    font-size: 1.375rem;
  }
}

.company-history__heading-en {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.3333333333;
  text-transform: uppercase;
}

.company-history__heading-en-dot {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  flex-shrink: 0;
}

.company-history__timeline {
  position: relative;
  margin-top: 5.3125rem;
}

.company-history__timeline::before {
  content: "";
  position: absolute;
  top: -2.375rem;
  left: -0.3125rem;
  rotate: 90deg;
  mask-image: url(../../assets/images/common/scale-triangle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #b5b5b5;
  width: 0.75rem;
  aspect-ratio: 12/14;
  z-index: 1;
}

.company-history__timeline::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1rem;
  transform-origin: 0 0;
  rotate: -90deg;
  transform: scale(-1, 1);
  width: 1rem;
  height: 120rem;
  background-color: #b5b5b5;
  mask-image: url(../../assets/images/common/scale.svg);
  mask-size: 1rem auto;
  mask-repeat: repeat-y;
  mask-position: left top;
  z-index: 1;
}

.company-history__swiper {
  position: relative;
  overflow: hidden;
}

.company-history__item {
  position: relative;
  padding-top: 3.3125rem;
  padding-inline: 1.25rem 1.875rem;
}

.company-history__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 5.3125rem;
  background-color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .company-history__item::before {
    height: 3.75rem;
  }
}

.company-history__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .company-history__nav {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    margin-top: 1.875rem;
    padding-right: clamp(0.625rem, -14.375rem + 46.15vw, 7.75rem);
  }
}

.company-history__nav-btn.swiper-button-prev,
.company-history__nav-btn.swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 100vmax;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.company-history__nav-btn.swiper-button-prev::after,
.company-history__nav-btn.swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9375rem;
  aspect-ratio: 12/14;
  background-color: #000000;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  font-size: 0;
  transition: all 0.3s;
}

.company-history__nav-btn.swiper-button-prev-history::after {
  mask-image: url(../../assets/images/common/icon-arrow-left.svg);
  transform: translate(calc(-50% - 0.125rem), -50%);
}

.company-history__nav-btn.swiper-button-next-history::after {
  mask-image: url(../../assets/images/common/icon-arrow-right.svg);
  transform: translate(calc(-50% + 0.125rem), -50%);
}

.company-history__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

@media (any-hover: hover) {
  .company-history__nav-btn:not(.swiper-button-disabled):hover {
    background-color: #000000;
  }
  .company-history__nav-btn:not(.swiper-button-disabled):hover::after {
    background-color: #ffffff;
  }
}
.company-history__year {
  font-size: 1.75rem;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 767px) {
  .company-history__year {
    font-size: 1.5rem;
  }
}

.company-history__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: #000000;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .company-history__text {
    font-size: max(0.875rem, 12px);
  }
}

.company-division {
  display: grid;
  grid-template-columns: clamp(18.75rem, -4.934rem + 28.07vw, 28.75rem) 1fr; /* 300 ~ 460 | 1350 ~ 1920 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company-division {
    grid-template-columns: 1fr;
    border-top: 1px solid #b5b5b5;
  }
}

.company-division__inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .company-division__inner {
    display: block;
    padding-inline: 0.625rem;
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

.company-division__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  border-top: 1px solid #b5b5b5;
  padding-inline: clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
  padding-top: clamp(3.125rem, -4.276rem + 8.77vw, 6.25rem);
}
@media screen and (max-width: 767px) {
  .company-division__heading {
    padding-inline: 0;
    border-top: none;
  }
}

.company-division__heading-ja {
  font-size: 1.625rem;
  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.1em;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .company-division__heading-ja {
    font-size: 1.375rem;
  }
}

.company-division__heading-en {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.3333333333;
  text-transform: uppercase;
}

.company-division__heading-en-dot {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  flex-shrink: 0;
}

.company-division__body {
  display: grid;
  grid-template-columns: 1fr clamp(21.875rem, 12.5rem + 10.42vw, 25rem); /* 350 ~ 400 | 1440 ~ 1920 */
  gap: clamp(2.5rem, -0.313rem + 3.13vw, 3.438rem); /* 40 ~ 55 | 1440 ~ 1920 */
  align-items: center;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  padding-block: clamp(3.125rem, 1.645rem + 1.75vw, 3.75rem) 3.4375rem; /* 50 ~ 60 | 1350 ~ 1920 */
  padding-inline: clamp(3.125rem, 1.25rem + 2.08vw, 3.75rem) clamp(3.125rem, -0.872rem + 4.74vw, 4.813rem); /* 50 ~ 60 | 1440 ~ 1920 || 50 ~ 77 | 1440 ~ 1920 */
}
@media screen and (max-width: 1440px) {
  .company-division__body {
    grid-template-columns: 1fr 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .company-division__body {
    border-top: none;
    border-left: none;
    padding-top: 0;
    padding-bottom: 3.125rem;
    padding-inline: 0;
    grid-template-columns: 1fr;
    gap: 3.125rem;
    margin-top: 1.875rem;
  }
}

.company-division__list {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 0.25rem 3.625rem;
}
@media screen and (max-width: 1600px) {
  .company-division__list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.company-division__link {
  display: block;
  padding-left: 1rem;
  text-indent: -1rem;
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .company-division__link {
    font-size: max(0.875rem, 12px);
  }
}

.company-division__link::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  margin-right: 0.3125rem;
  vertical-align: middle;
  background-color: #000000;
}

.company-division__link span {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

@media (any-hover: hover) {
  .company-division__link:hover {
    opacity: 0.6;
  }
}
.company-division__link:focus-visible {
  opacity: 0.6;
}

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

.company-division__img img {
  aspect-ratio: 360/220;
  height: 100%;
  object-fit: contain;
}

.contact {
  padding-block: 7.125rem 10.6875rem;
  background-color: #ffffff;
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 3.75rem;
  }
}

.contact[data-theme=works-list] {
  z-index: -1;
}

.contact__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 100.625rem;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding-inline: 0.625rem;
    max-width: 32.5rem;
  }
}

.contact__container {
  padding-top: 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__container {
    padding-block: initial;
    display: flex;
    flex-direction: column-reverse;
  }
}

.contact__deco {
  display: block;
  width: 100%;
  max-width: 97.5rem;
}

.contact__deco img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1560/160;
}

.contact__image {
  display: block;
  width: 100%;
  max-width: 34.9375rem;
  position: absolute;
  right: 50%;
  top: -0.8125rem;
  bottom: 0;
  translate: 50% 0;
}
@media screen and (max-width: 767px) {
  .contact__image {
    margin-top: 2.5rem;
    margin-inline: auto;
    width: 80%;
    position: initial;
    translate: initial;
  }
}

.contact__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 559/492;
}

.contact__divider {
  margin-top: 2.5rem;
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .contact__divider {
    display: none;
  }
}

.contact__bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact__bottom {
    margin-top: initial;
    flex-direction: column;
  }
}

.contact__bottom .section-title {
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .contact__bottom .section-title {
    margin-top: initial;
  }
}

.contact__lead {
  max-width: 12.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    margin-top: 1.875rem;
  }
}

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

main {
  flex: 1;
}

/* ~~~~~ コンテンツ量が少なく短いページ（404、サンクスページなど）でもフッターを最下部に表示する ここまで ~~~~~ */
.content-wrap[data-theme=sustainable] {
  position: relative;
}

.content-wrap[data-theme=sustainable]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/sustainable/sustainable-bg-pc.webp);
  background-size: cover;
  background-position: top center;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .content-wrap[data-theme=sustainable]::before {
    background-image: url(../../assets/images/sustainable/sustainable-bg-sp.webp);
  }
}

.cta-pair {
  padding-block: 6.125rem 6.25rem;
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .cta-pair {
    padding-block: 3.75rem;
  }
}

.cta-pair__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 100.625rem;
}
@media screen and (max-width: 767px) {
  .cta-pair__inner {
    padding-inline: 0.625rem;
    max-width: 32.5rem;
  }
}

.cta-pair__head {
  display: flex;
  justify-content: space-between;
  max-width: 96.25rem;
}
@media screen and (max-width: 767px) {
  .cta-pair__head {
    flex-direction: column;
  }
}

.cta-pair__lead {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b5b5b5;
  letter-spacing: -0.06em;
  line-height: 1.6;
}

.cta-pair__text {
  flex: 1;
  display: block;
  width: 100%;
  max-width: 63.75rem;
}

.cta-pair__text img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1020/150;
}

.cta-pair__list {
  margin-top: -3.4375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
  gap: clamp(1.25rem, -4.671rem + 7.02vw, 3.75rem); /* 20 ~ 60 | 1350 ~ 1920 */
}
@media (width <= 1440px) {
  .cta-pair__list {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .cta-pair__list {
    margin-top: -1.25rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

@media (width <= 1440px) {
  .cta-pair__card {
    margin-inline: auto;
    width: 100%;
    max-width: 46.875rem;
  }
}

.cta-pair__card-link {
  display: block;
  padding-block: 1.875rem 2.5rem;
  padding-inline: 2.1875rem;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta-pair__card-link {
    padding: 1.5625rem;
  }
}

.cta-pair__card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #b5b5b5;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.25rem), calc(100% - 1.25rem) 100%, 0 100%);
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .cta-pair__card-link::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9375rem), calc(100% - 0.9375rem) 100%, 0 100%);
  }
}

.cta-pair__card-link::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.125rem), calc(100% - 1.125rem) 100%, 0 100%);
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .cta-pair__card-link::after {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.8125rem), calc(100% - 0.8125rem) 100%, 0 100%);
  }
}

.cta-pair__card-link > * {
  position: relative;
  z-index: 1;
}

@media (any-hover: hover) {
  .cta-pair__card-link::before,
  .cta-pair__card-link::after {
    transition: background-color 0.3s ease-out;
  }
  .cta-pair__card-link .cta-pair__card-desc {
    transition: color 0.3s ease-out;
  }
  .cta-pair__card-link:hover::before {
    background-color: #ffffff;
  }
  .cta-pair__card-link:hover::after {
    background-color: #000000;
  }
  .cta-pair__card-link:hover .cta-pair__card-desc {
    color: #ffffff;
  }
  .cta-pair__card-link .section-title__ja {
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
  }
  .cta-pair__card-link:hover .section-title__ja {
    background-color: #ffffff;
    color: #000000;
  }
  .cta-pair__card-link .section-title__en,
  .cta-pair__card-link .section-title__en-number {
    transition: color 0.3s ease-out;
  }
  .cta-pair__card-link:hover .section-title__en,
  .cta-pair__card-link:hover .section-title__en-number {
    color: #ffffff;
  }
}
.cta-pair__card-scale {
  display: block;
  width: 100%;
  max-width: 42.5rem;
}
@media (width <= 530px) {
  .cta-pair__card-scale {
    translate: 0 4.0625rem;
  }
}

.cta-pair__card-scale img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 680/34;
}

.cta-pair__card-block {
  margin-inline: auto;
  max-width: 39.375rem;
}

.cta-pair__card-content {
  margin-top: -1.25rem;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .cta-pair__card-content {
    align-items: center;
  }
}
@media (width <= 530px) {
  .cta-pair__card-content {
    flex-direction: column;
    align-items: initial;
    gap: 1.25rem;
  }
}

.cta-pair__card-image {
  display: block;
  width: 100%;
  max-width: 12.5rem;
}
@media (width <= 530px) {
  .cta-pair__card-image {
    margin-inline: auto;
    max-width: 80%;
  }
}

.cta-pair__card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 200/140;
}

.cta-pair__card-desc {
  margin-top: 1.5625rem;
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .cta-pair__card-desc {
    font-size: max(0.875rem, 12px);
  }
}

.footer {
  position: relative;
}

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

.footer__inner {
  margin-inline: auto;
}

.footer__top {
  min-height: 31.25rem;
}

.footer__top-inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 108.125rem;
  min-height: inherit;
}
@media screen and (max-width: 767px) {
  .footer__top-inner {
    padding-inline: 0.625rem;
    max-width: 33.75rem;
  }
}

.footer__top-container {
  display: grid;
  grid-template-columns: clamp(21.688rem, 10.882rem + 12.81vw, 26.25rem) clamp(21.688rem, 4.961rem + 19.82vw, 28.75rem) clamp(21.688rem, 4.961rem + 19.82vw, 28.75rem) 1fr;
  min-height: inherit;
}
@media (width <= 1440px) {
  .footer__top-container {
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    max-width: 62.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__top-container {
    grid-template-columns: 1fr;
  }
}

.footer__col {
  padding-block: 3.625rem 3.75rem;
  display: flex;
  flex-direction: column;
  min-height: inherit;
  border-left: 1px solid #b5b5b5;
}
@media (width <= 1440px) {
  .footer__col {
    min-height: initial;
  }
}
@media screen and (max-width: 767px) {
  .footer__col {
    padding: 1.875rem 1.25rem;
    border-right: 1px solid #b5b5b5;
  }
}

@media screen and (max-width: 767px) {
  .footer__col + .footer__col {
    border-top: 1px solid #b5b5b5;
  }
}

.footer__col[data-col="01"] {
  padding-block: 3.75rem;
  padding-right: 1.25rem;
  padding-left: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
  border-left: initial;
}
@media (width <= 1440px) {
  .footer__col[data-col="01"] {
    border-left: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
  }
}

.footer__col[data-col="02"] {
  padding-block: 3.625rem 3.375rem;
  padding-right: 1.25rem;
  padding-left: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
}
@media (width <= 1440px) {
  .footer__col[data-col="02"] {
    border-right: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
  }
}

.footer__col[data-col="03"] {
  padding-block: 3.625rem 3.75rem;
  padding-right: 1.25rem;
  padding-left: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
}

.footer__col[data-col="04"] {
  padding-block: 3.625rem 3.75rem;
  padding-left: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
}
@media (width <= 1440px) {
  .footer__col[data-col="04"] {
    border-right: 1px solid #b5b5b5;
  }
}

.footer__logo {
  display: block;
  width: 100%;
  max-width: 12.5rem;
}

.footer__logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 200/54.87;
}

.footer__address-box {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer__address-box {
    margin-top: 2.5rem;
  }
}

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

.footer__address + .footer__address {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .footer__address + .footer__address {
    margin-top: 0.625rem;
  }
}

.footer__tel {
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__tel:hover {
    opacity: 0.6;
  }
}

.footer__col-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: max(0.6875rem, 12px);
  font-weight: 700;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  line-height: 1.6363636364;
  letter-spacing: initial;
  text-transform: uppercase;
}

.footer__col-title::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #ffffff;
  flex-shrink: 0;
}

.footer__nav-list {
  margin-top: auto;
}
@media (width <= 1440px) {
  .footer__nav-list {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    margin-top: 2.5rem;
  }
}

.footer__nav-link {
  padding-block: 0.4375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(1rem, 12px);
  font-weight: 700;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.6;
  }
}

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

.footer__col-text {
  margin-top: auto;
  font-size: max(0.6875rem, 12px);
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  line-height: 1.5454545455;
  letter-spacing: 0.1em;
}
@media (width <= 1440px) {
  .footer__col-text {
    padding-top: 2.5rem;
  }
}

.footer__col-btn {
  margin-top: 2.5rem;
}

.footer__bottom {
  padding-block: 6.25rem;
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding-block: 1.875rem;
  }
}

.footer__bottom-inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
}

.footer__logo-large {
  margin-inline: auto;
  display: block;
  width: 100%;
  max-width: 112.5rem;
}

.footer__logo-large img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1800/266;
}

.footer__copyright-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright-area {
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.75rem;
  }
}

.footer__privacy-link {
  font-size: max(0.75rem, 12px);
  font-weight: 400;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: initial;
  text-transform: uppercase;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__privacy-link:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  line-height: 1;
}

.footer__copyright-text {
  font-size: max(0.75rem, 12px);
  font-weight: 400;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: initial;
  text-transform: uppercase;
}

.form__row {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form__row {
    display: block;
  }
}

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

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

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

.form__row.form__row--address .form__head,
.form__row.form__row--textarea .form__head {
  margin-top: 0.625rem;
}

.form__row.form__row--privacy,
.form__row.form__row--privacy .form__head {
  align-items: flex-start;
}

.form__head {
  display: flex;
  align-items: center;
}

.form__label {
  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.1em;
}

.form__required {
  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;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2em;
  background-color: #d10000;
  padding: 0.25rem 0.6875rem;
  border-radius: 0.125rem;
  margin-left: 0.625rem;
}

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

.form__input,
.form__textarea {
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #b5b5b5;
  border-radius: 0.25rem;
  padding: 0.3125rem 1rem;
}

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

/* ----- 住所フィールド ----- */
.form__address-postcode {
  display: flex;
  align-items: center;
}

.form__postcode-mark {
  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;
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
}

.form__address-postcode .wpcf7-form-control-wrap {
  max-width: 18.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form__address-postcode .wpcf7-form-control-wrap {
    max-width: 12.5rem;
  }
}

.form__input--address {
  margin-top: 0.625rem;
}

/* ----- プレースホルダー ----- */
::placeholder {
  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: #b5b5b5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  ::placeholder {
    font-size: max(0.875rem, 12px);
  }
}

/* ----- CF7共通 ----- */
.wpcf7-form-control-wrap {
  display: block;
}

.form__privacy-link-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: 500;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.form__privacy-text-link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: #000000;
  transition: all 0.3s;
}

.form__privacy-text-link::before {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}

@media (any-hover: hover) {
  .form__privacy-text-link:hover {
    opacity: 0.6;
  }
}
.form__privacy .wpcf7-list-item {
  margin: 0;
}

.form__privacy .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form__privacy .wpcf7-list-item-label {
  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: 400;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-left: 2rem;
}

.form__privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid #000000;
  border-radius: 0.125rem;
  background-color: #ffffff;
}

.form__privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-65%) rotate(-45deg);
  width: 0.875rem;
  height: 0.4375rem;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  opacity: 0;
}

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

.form__privacy input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* ----- バリデーション ----- */
.wpcf7-not-valid {
  border: 1px solid #d10000;
  background-color: rgba(209, 0, 0, 0.05);
}

.wpcf7-not-valid-tip {
  display: 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: #d10000;
  letter-spacing: 0.075em;
  line-height: 1.3;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: max(0.75rem, 12px);
  }
}

.form__btn-wrapper {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__btn-wrapper {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 1440px) {
  .hamburger {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    z-index: 12;
  }
}

@media screen and (max-width: 1440px) {
  .hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5rem;
    height: 1px;
    background-color: #b5b5b5;
    border-radius: 100vmax;
    transition: all 0.3s;
  }
}

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

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

@media screen and (max-width: 1440px) {
  .hamburger span:nth-child(3) {
    top: 60%;
  }
}

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

@media screen and (max-width: 1440px) {
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
}

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

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

.header {
  --header-nav-color: #000000;
  --header-btn-bg: #b5b5b5;
  z-index: 100;
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 3.75rem;
  padding-inline: 5rem 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    top: 0.625rem;
    padding-inline: 0.5625rem;
    height: 3.125rem;
  }
}

/* ---------- MVページのヘッダー状態管理 | ここから ---------- */
.header.has-mv {
  --header-nav-color: #ffffff;
  --header-btn-bg: #ffffff;
}

.header.headerChange--mv {
  --header-nav-color: #000000;
  --header-btn-bg: #b5b5b5;
}

/* ---------- MVページのヘッダー状態管理 | ここまで ---------- */
/* ---------- スクロールするとヘッダーの色が変化する | ここから ---------- */
.header.headerChange {
  top: 0;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .header.headerChange {
    height: 3.125rem;
  }
}

.header__inner.headerChange {
  background-color: #ffffff;
  padding-bottom: 0;
  border-bottom: 1px solid #b5b5b5;
}

/* ---------- スクロールするとヘッダーの色が変化する | ここまで ---------- */
.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.25rem;
  height: 100%;
  border-radius: 0.625rem 0.625rem 0 0;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  border-right: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header__inner {
    align-items: center;
    padding-left: 0.625rem;
  }
}

.header__logo {
  max-width: 7.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 6.25rem;
  }
}

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

.header__logo-img {
  transition: opacity 0.3s, visibility 0.3s;
}

.header__logo-img--white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

/* ---------- MVページのロゴ切替 | ここから ---------- */
.has-mv .header__logo-img--black {
  opacity: 0;
  visibility: hidden;
}

.has-mv .header__logo-img--white {
  opacity: 1;
  visibility: visible;
}

.headerChange--mv .header__logo-img--black {
  opacity: 1;
  visibility: visible;
}

.headerChange--mv .header__logo-img--white {
  opacity: 0;
  visibility: hidden;
}

/* ---------- MVページのロゴ切替 | ここまで ---------- */
@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1440px) {
  .header__pc-nav {
    display: none;
  }
}

.header__btn-wrapper {
  display: grid;
  grid-template-columns: max-content 3.75rem;
  height: 100%;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .header__btn-wrapper {
    grid-template-columns: max-content 3.125rem;
  }
}

.header__drawer-wrapper {
  width: 100%;
}

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

.header__btn {
  height: 100%;
}

.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
}

.lower-fv {
  position: relative;
  padding-block: 8.125rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lower-fv {
    padding-block: 3.75rem;
  }
}

.lower-fv[data-theme=news] {
  padding-block: 7.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=news] {
    padding-block: 3.75rem;
  }
}

.lower-fv[data-theme=news-list] {
  padding-block: 7.5rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=news-list] {
    padding-block: 3.75rem 1.25rem;
  }
}

.lower-fv[data-theme=sustainable] {
  padding-block: 14.375rem 11.875rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=sustainable] {
    padding-block: 9.375rem 3.75rem;
  }
}

.lower-fv[data-theme=privacy-policy] {
  padding-block: 8.125rem 6.875rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=privacy-policy] {
    padding-block: 3.75rem;
  }
}

.lower-fv[data-theme=contact] {
  padding-block: 6.875rem 6.5625rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=contact] {
    padding-block: 3.75rem;
  }
}

.lower-fv[data-theme=works-list] {
  padding-block: 7.5625rem 1.0625rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=works-list] {
    padding-block: 3.75rem 1.25rem;
  }
}

.lower-fv[data-theme=service] {
  padding-block: 18.125rem 14.375rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=service] {
    padding-block: 9.375rem 3.75rem;
  }
}

.lower-fv__inner {
  padding-inline: clamp(1.25rem, -10.592rem + 14.04vw, 6.25rem); /* 20 ~ 100 | 1350 ~ 1920 */
  width: 100%;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lower-fv__inner {
    max-width: 32.5rem;
    padding-inline: 0.625rem;
  }
}

.lower-fv__container {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__container {
    grid-template-columns: 10rem 1fr;
  }
}

.lower-fv[data-theme=sustainable] .lower-fv__container,
.lower-fv[data-theme=service] .lower-fv__container,
.lower-fv[data-theme=company] .lower-fv__container {
  display: block;
}

.lower-fv__title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8125rem;
  z-index: 1;
}

.lower-fv__title-en-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.lower-fv__title-en {
  display: inline-block;
  font-size: 5rem;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 0.875;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .lower-fv__title-en {
    font-size: 2.125rem;
  }
}

.lower-fv[data-theme=sustainable] .lower-fv__title-en {
  color: #ffffff;
}

.lower-fv__title-en-number {
  display: inline-block;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.06em;
}

.lower-fv[data-theme=sustainable] .lower-fv__title-en-number {
  color: #ffffff;
}

.lower-fv__title-ja {
  display: inline-block;
  font-size: 2.125rem;
  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: 0.9411764706;
  letter-spacing: -0.06em;
  text-indent: -0.06em;
  background-color: #000000;
  padding-inline: 0.0625rem;
  padding-block: 0.0625rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__title-ja {
    font-size: max(1rem, 12px);
  }
}

.lower-fv[data-theme=sustainable] .lower-fv__title-ja {
  background-color: #ffffff;
  color: #42768c;
}

.lower-fv__img-wrapper {
  position: relative;
  width: 100%;
}

.lower-fv__img {
  position: absolute;
  top: 0;
  left: 0;
}

.lower-fv__deco-img {
  position: absolute;
  top: -5.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lower-fv__deco-img {
    top: -9.375rem;
  }
}
.lower-fv__deco-img img {
  height: 100%;
  object-fit: contain;
}

.lower-fv__deco-img[data-theme=sustainable],
.lower-fv__deco-img[data-theme=service] {
  top: -5.25rem;
  left: 50%;
  max-width: 30rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__deco-img[data-theme=sustainable],
  .lower-fv__deco-img[data-theme=service] {
    top: -11.5625rem;
    max-width: 8.125rem;
  }
}

.lower-fv__deco-img[data-theme=company] {
  top: -5.25rem;
  left: 48.5%;
  max-width: 28.75rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__deco-img[data-theme=company] {
    top: -11.5625rem;
    max-width: 8.125rem;
  }
}

.lower-fv__img[data-theme=contact] {
  top: -5rem;
  width: 149.125rem;
}
@media screen and (max-width: 1920px) {
  .lower-fv__img[data-theme=contact] {
    top: -4.1666666667vw;
    width: 124.2708333333vw;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img[data-theme=contact] {
    top: -0.9375rem;
    width: 25.625rem;
  }
}

.lower-fv__img[data-theme=privacy-policy] {
  top: 0.625rem;
  width: 83.75rem;
}
@media screen and (max-width: 1920px) {
  .lower-fv__img[data-theme=privacy-policy] {
    top: 0.5208333333vw;
    width: 69.7916666667vw;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img[data-theme=privacy-policy] {
    top: 0;
    width: 21.25rem;
  }
}

.lower-fv__img[data-theme=sustainable] {
  top: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 201.0625rem;
}
@media screen and (max-width: 1920px) {
  .lower-fv__img[data-theme=sustainable] {
    top: -4.5833333333vw;
    width: 167.5520833333vw;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img[data-theme=sustainable] {
    top: -11.875rem;
    width: 62.5rem;
  }
}

.lower-fv__img[data-theme=news] {
  top: 0;
  width: 96.875rem;
}
@media screen and (max-width: 1920px) {
  .lower-fv__img[data-theme=news] {
    width: 80.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img[data-theme=news] {
    width: 25rem;
  }
}

.lower-fv__img[data-theme=service] {
  top: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 130.3125rem;
}
@media screen and (max-width: 1920px) {
  .lower-fv__img[data-theme=service] {
    top: -4.5833333333vw;
    width: 108.59375vw;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img[data-theme=service] {
    top: -9.375rem;
    left: 50%;
    width: 43.75rem;
  }
}

.lower-fv[data-theme=works] {
  padding-block: 8.125rem 6.875rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=works] {
    padding-block: 3.75rem;
  }
}

.lower-fv__img[data-theme=works] {
  top: -5.125rem;
  width: 109.5rem;
}
@media screen and (max-width: 1920px) {
  .lower-fv__img[data-theme=works] {
    top: -4.2708333333vw;
    width: 91.25vw;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img[data-theme=works] {
    top: 0;
    width: 25rem;
  }
}

.lower-fv[data-theme=company] {
  padding-block: 19.375rem 11.875rem;
}
@media screen and (max-width: 767px) {
  .lower-fv[data-theme=company] {
    padding-block: 8.75rem 3.75rem;
  }
}

.lower-fv__img[data-theme=company] {
  top: -4.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 165.625rem;
}
@media screen and (max-width: 1920px) {
  .lower-fv__img[data-theme=company] {
    top: -3.6458333333vw;
    width: 138.0208333333vw;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv__img[data-theme=company] {
    top: -9.375rem;
    width: 62.5rem;
  }
}

.lower-fv__img img {
  height: 100%;
  object-fit: contain;
}

.lower-fv__breadcrumb {
  margin-top: 2.8125rem;
}

.lower-fv__en-text-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__en-text-wrapper {
    margin-top: 3.125rem;
  }
}

.lower-fv__en-text-wrapper[data-theme=service] {
  margin-top: 8.9375rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__en-text-wrapper[data-theme=service] {
    margin-top: 3.125rem;
  }
}

.lower-fv__en-text-wrapper[data-theme=company] {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__en-text-wrapper[data-theme=company] {
    margin-top: 3.125rem;
  }
}

.lower-fv__en-text-wrapper[data-theme=sustainable] {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__en-text-wrapper[data-theme=sustainable] {
    margin-top: 3.125rem;
  }
}

.lower-fv__en-text {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b5b5b5;
  line-height: 1.6;
  letter-spacing: -0.06em;
}

.lower-fv__visual {
  margin-inline: auto;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lower-fv__visual {
    max-width: 31.25rem;
  }
}

.lower-fv__visual img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lower-fv__visual img {
    margin-inline: auto;
    width: 80%;
  }
}

.lower-fv__visual[data-theme=service],
.lower-fv__visual[data-theme=company] {
  margin-top: -11.125rem;
  max-width: 28.5rem;
}
@media screen and (max-width: 767px) {
  .lower-fv__visual[data-theme=service],
  .lower-fv__visual[data-theme=company] {
    margin-top: 1.25rem;
    max-width: 31.25rem;
  }
}

.lower-fv__description-wrapper {
  margin-inline: auto;
  max-width: 110rem;
}

.lower-fv__description {
  margin-top: clamp(1.25rem, -5.707rem + 8.25vw, 4.188rem); /* 20 ~ 67 | 1350 ~ 1920 */
  margin-left: 29.9375rem;
  padding-right: 1.5625rem;
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .lower-fv__description {
    margin-top: 1.875rem;
    margin-left: initial;
    padding-right: inherit;
    font-size: max(0.875rem, 12px);
  }
}

.lower-fv__description[data-theme=service],
.lower-fv__description[data-theme=company] {
  margin-top: -2.25rem;
  margin-left: auto;
  padding-right: clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem); /* 20 ~ 100 | 1350 ~ 1920 */
  width: fit-content;
  max-width: 97.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.06em;
  color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .lower-fv__description[data-theme=service],
  .lower-fv__description[data-theme=company] {
    margin-top: 1.25rem;
    margin-inline: auto;
    padding-inline: 0.625rem;
  }
}

.lower-sidebar {
  position: sticky;
  top: 6.25rem;
  align-self: start;
  max-height: calc(100vh - 7.5rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #b5b5b5 transparent;
}
.lower-sidebar::-webkit-scrollbar {
  width: 0.375rem;
}
.lower-sidebar::-webkit-scrollbar-thumb {
  background-color: #b5b5b5;
  border-radius: 0.1875rem;
}
.lower-sidebar::-webkit-scrollbar-track {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .lower-sidebar {
    position: static;
    max-height: none;
    overflow-x: visible;
    overflow-y: visible;
    overscroll-behavior: auto;
  }
}

.lower-sidebar[data-theme=news-list] {
  padding-top: 6.25rem;
  padding-left: clamp(1.25rem, -10.592rem + 14.04vw, 6.25rem); /* 20 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .lower-sidebar[data-theme=news-list] {
    padding-top: 3.125rem;
    padding-left: initial;
    position: static;
  }
}

.lower-sidebar__heading {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.lower-sidebar__heading-icon {
  display: inline-block;
  width: 0.75rem;
  height: 0.875rem;
  mask-image: url(../../assets/images/common/icon-arrow-right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #b5b5b5;
  flex-shrink: 0;
}

.lower-sidebar__heading-text {
  font-size: max(1.25rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #b5b5b5;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.lower-sidebar__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .lower-sidebar__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 540px) {
  .lower-sidebar__items {
    grid-template-columns: repeat(1, 1fr);
    max-width: 21.875rem;
    width: 100%;
  }
}

.lower-sidebar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-block: 0.53125rem;
  padding-right: 0.875rem;
  padding-left: 1.875rem;
  transition: all 0.3s;
}

/* ボーダー（外側の形） */
.lower-sidebar__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #707070;
  clip-path: polygon(0.375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.375rem);
}

.lower-sidebar__link::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #ffffff;
  clip-path: polygon(0.3125rem 0, 100% 0, 100% 100%, 0 100%, 0 0.3125rem);
  transition: all 0.3s;
}

.lower-sidebar__link-icon {
  position: absolute;
  top: 1.2em;
  left: 0.875rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .lower-sidebar__link-icon {
    top: 1.1em;
  }
}

.lower-sidebar__link-text {
  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: 500;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.2;
  transition: all 0.3s;
  z-index: 1;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .lower-sidebar__link-text {
    font-size: max(0.875rem, 12px);
  }
}

/* アクティブ状態 */
.lower-sidebar__item--active {
  pointer-events: none;
}

.lower-sidebar__item--active .lower-sidebar__link::after {
  background-color: #000000;
}

.lower-sidebar__item--active .lower-sidebar__link-icon {
  background-color: #ffffff;
}

.lower-sidebar__item--active .lower-sidebar__link-text {
  color: #ffffff;
}

@media (any-hover: hover) {
  .lower-sidebar__link:hover::after {
    background-color: #000000;
  }
  .lower-sidebar__link:hover .lower-sidebar__link-icon {
    background-color: #ffffff;
  }
  .lower-sidebar__link:hover .lower-sidebar__link-text {
    color: #ffffff;
  }
}
.lower-title {
  display: inline-block;
  font-size: 2.125rem;
  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.4411764706;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .lower-title {
    font-size: 1.5rem;
  }
}

.lower-two-column {
  display: grid;
  grid-template-columns: clamp(15.625rem, 11.184rem + 5.26vw, 17.5rem) 1fr; /* 250 ~ 280 | 1350 ~ 1920 */
  gap: clamp(2.5rem, -3.421rem + 7.02vw, 5rem); /* 40 ~ 80 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .lower-two-column {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}

.lower-two-column[data-theme=news-list] {
  grid-template-columns: clamp(16.875rem, 0.592rem + 19.3vw, 23.75rem) 1fr; /* 270 ~ 380 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .lower-two-column[data-theme=news-list] {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}

.lower-two-column[data-theme=works-list] {
  margin-top: 6.4375rem;
  grid-template-columns: 17.5rem 1fr;
  gap: clamp(1.25rem, -7.632rem + 10.53vw, 5rem); /* 20 ~ 80 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .lower-two-column[data-theme=works-list] {
    margin-top: 3.125rem;
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}

.lower-two-column__main {
  max-width: 52.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lower-two-column__main {
    max-width: none;
  }
}

.lower-two-column__main[data-theme=news-list],
.lower-two-column__main[data-theme=works-list] {
  max-width: 100%;
}

.mask-img {
  max-width: 22.375rem;
  width: 100%;
  margin-inline: auto;
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

:where(dialog) {
  inline-size: unset;
  max-inline-size: unset;
  block-size: unset;
  max-block-size: unset;
  padding: unset;
  margin: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

:where(:root[data-mousedown] dialog *) {
  outline: none;
}

[data-modal-open]:where(:root[data-mousedown] *) {
  outline: none;
}

.modal {
  position: fixed;
  inset: 0;
  inline-size: fit-content;
  block-size: fit-content;
  max-inline-size: min(100% - max(5vi, 20px) * 2, 52.5rem);
  max-block-size: min(100svb - max(5vi, 20px) * 2, 37.5rem);
  margin: auto;
  background-color: transparent;
  transition: all 0.3s;
}

.modal:not([data-active=true]) {
  opacity: 0;
  scale: 0.95;
}

.modal::backdrop {
  background-color: color-mix(in srgb, #000000, transparent 20%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.modal:not([data-active=true])::backdrop {
  opacity: 0;
}

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

.modal__container img {
  max-inline-size: min(100vi - max(5vi, 20px) * 2, 52.5rem);
  max-block-size: min(100svb - max(5vi, 20px) * 2, 37.5rem);
  block-size: auto;
  inline-size: auto;
}

.modal__close {
  position: absolute;
  top: -1.5625rem;
  right: -1.5625rem;
  width: 3.125rem;
  aspect-ratio: 1;
  cursor: pointer;
  background-color: #000000;
  border-radius: 100vmax;
  transition: all 0.3s;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .modal__close {
    top: -1.25rem;
    right: -1.25rem;
    width: 2.5rem;
  }
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s;
  margin: auto;
}

.modal__close::before {
  rotate: 45deg;
}

.modal__close::after {
  rotate: 135deg;
}

@media (any-hover: hover) {
  .modal__close:hover {
    background-color: #ffffff;
  }
  .modal__close:hover::before,
  .modal__close:hover::after {
    background-color: #000000;
  }
}
.modal__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.mv {
  --_gutter: calc((100dvi - 100cqi) / 2);
  position: relative;
  height: 100lvh;
  margin-inline: calc(var(--_gutter) * -1);
  overflow: hidden;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: -3.75rem;
  }
}

.mv__video {
  position: absolute;
  inset: 0;
  z-index: -5;
}

.mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__video-img {
  position: absolute;
  inset: 0;
  z-index: -5;
}
.mv__video-img img {
  height: 100%;
  object-fit: cover;
}

.mv__content {
  position: relative;
  max-width: 120rem;
  width: 100%;
  height: 100%;
  padding-inline: 7.5rem;
  margin-inline: auto;
  z-index: 1;
}
.mv__description {
  position: absolute;
  top: 7.5rem;
  display: inline-block;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .mv__description {
    top: 43%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .mv__description {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
  }
}

.mv__lead {
  position: absolute;
  top: 8.75rem;
  left: 0;
  right: 0;
  width: max-content;
  margin-inline: auto;
  align-self: start;
  justify-self: center;
  font-size: 1.75rem;
  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.1em;
  line-height: 1;
  background-color: #ffffff;
  font-feature-settings: "palt";
  padding: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    top: 7.5rem;
    font-size: 1.25rem;
    white-space: nowrap;
  }
}

.mv__catchcopy {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 6.75rem;
  width: 100%;
  max-width: 91.25rem;
}
@media screen and (max-width: 1500px) {
  .mv__catchcopy {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .mv__catchcopy {
    bottom: 3.125rem;
  }
}

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

@media screen and (max-width: 767px) {
  .news {
    padding-block: 3.75rem;
  }
}

.news__inner {
  margin-inline: auto;
  max-width: 109.875rem;
}
@media screen and (max-width: 767px) {
  .news__inner {
    padding-inline: 0.625rem;
    max-width: 32.5rem;
  }
}

.news__container {
  display: flex;
}
@media screen and (max-width: 767px) {
  .news__container {
    flex-direction: column;
  }
}

.news__list {
  margin-top: 2.0625rem;
  width: 100%;
  max-width: 81.25rem;
}
@media screen and (max-width: 767px) {
  .news__list {
    order: 2;
    margin-top: 1.875rem;
  }
}

.news__item:not(:first-child) {
  border-top: 1px solid #b5b5b5;
}

.news__item-link {
  display: block;
  padding-block: 1.875rem 1.25rem;
  padding-inline: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__item-link {
    padding-block: 1.25rem;
    padding-inline: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .news__item-link {
    transition: background-color 0.3s ease-out;
  }
  .news__item-link .news__item-date,
  .news__item-link .news__item-tag-text,
  .news__item-link .news__item-title {
    transition: color 0.3s ease-out;
  }
  .news__item-link .news__item-tag::before,
  .news__item-link .news__item-tag::after {
    transition: background-color 0.3s ease-out;
  }
  .news__item-link .news__item-tag-icon {
    transition: background-color 0.3s ease-out;
  }
  .news__item-link:hover {
    background-color: #000000;
  }
  .news__item-link:hover .news__item-date,
  .news__item-link:hover .news__item-tag-text,
  .news__item-link:hover .news__item-title {
    color: #ffffff;
  }
  .news__item-link:hover .news__item-tag::before {
    background-color: #ffffff;
  }
  .news__item-link:hover .news__item-tag::after {
    background-color: #000000;
  }
  .news__item-link:hover .news__item-tag-icon {
    background-color: #ffffff;
  }
}
.news__item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.news__item-tag {
  padding-block: 0.375rem;
  padding-inline: 0.84375rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.news__item-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #b5b5b5;
  clip-path: polygon(0.5rem 0, 100% 0, 100% 100%, 0 100%, 0 0.5rem);
}

.news__item-tag::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #ffffff;
  clip-path: polygon(0.4375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.4375rem);
}

.news__item-tag > * {
  position: relative;
  z-index: 1;
}

.news__item-tag-icon {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  flex-shrink: 0;
}

.news__item-tag-text {
  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;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1;
}

.news__item-title {
  margin-top: 0.4375rem;
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  white-space: normal; /* 文字を折り返す */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示する行数 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: max(0.875rem, 12px);
  }
}

.news__sidebar {
  flex: 1;
  padding-top: 4.5625rem;
  padding-right: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  padding-left: clamp(2.5rem, -0.461rem + 3.51vw, 3.75rem); /* 40 ~ 60 | 1350 ~ 1920 */
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__sidebar {
    display: contents;
  }
}

.news__sidebar::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #b5b5b5;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (width <= 2000px) {
  .news__sidebar::before {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news__sidebar::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .news__container .section-title {
    order: 1;
  }
}

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

.outline-wrapper {
  position: relative;
}
@media screen and (max-width: 1920px) {
  .outline-wrapper {
    position: initial;
  }
}

.outline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 100%;
  max-width: 109.875rem;
  border-right: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  z-index: -1;
}
@media screen and (max-width: 1920px) {
  .outline-wrapper::before {
    display: none;
  }
}

.outline-wrapper:has(> .contact)::before {
  z-index: 1;
  pointer-events: none;
}

.page-contact__head {
  padding-bottom: 4.75rem;
}
@media screen and (max-width: 767px) {
  .page-contact__head {
    padding-bottom: 3.125rem;
  }
}

.page-contact__head-container {
  display: grid;
  grid-template-columns: 21.25rem 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-contact__head-container {
    grid-template-columns: 1fr;
  }
}

.page-contact__head-text-01 {
  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: 400;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .page-contact__head-text-01 {
    font-size: 1.375rem;
    margin-top: 0;
  }
}

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

.page-contact__head-tel-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1.625rem;
  background-color: #ffffff;
  border: 1px solid #b5b5b5;
  border-radius: 0.25rem;
  padding: 1.4375rem 1.875rem;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .page-contact__head-tel-wrapper {
    gap: 0.9375rem;
    padding: 0.9375rem 0.9375rem;
    margin-top: 1.875rem;
  }
}

.page-contact__head-tel-text {
  font-size: 1rem;
  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.1em;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .page-contact__head-tel-text {
    font-size: max(0.875rem, 12px);
  }
}

.page-contact__head-tel-text-number {
  padding-left: 1.875rem;
  border-left: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .page-contact__head-tel-text-number {
    padding-left: 0.9375rem;
  }
}

.page-contact__head-tel-link {
  font-size: 2.5rem;
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .page-contact__head-tel-link {
    font-size: 1.75rem;
  }
}

.page-contact__head-text-04 {
  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: #000000;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .page-contact__head-text-04 {
    font-size: max(0.8125rem, 12px);
    margin-top: 1.25rem;
  }
}

.page-contact__head-text-strong {
  font-weight: 700;
  color: #d10000;
}

.page-contact__title-wrapper {
  padding-block: 1.25rem;
  border-bottom: 1px solid #b5b5b5;
}

.page-contact__container {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .page-contact__container {
    padding-block: 5rem;
  }
}

.page-contact__inner {
  max-width: 55rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-contact__inner {
    max-width: 32.5rem;
    padding-inline: 0.625rem;
  }
}

.page-news {
  padding-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .page-news {
    padding-top: 1.75rem;
  }
}

.page-news__content {
  padding-bottom: 13.5625rem;
  border-top: 1px solid #b5b5b5;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-news__content {
    margin-top: 0.9375rem;
    padding-bottom: 5rem;
  }
}

.page-news__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 110rem;
}
@media screen and (max-width: 767px) {
  .page-news__inner {
    padding-inline: 0.625rem;
    max-width: 33.75rem;
  }
}

.page-news__title {
  display: inline-block;
  font-size: max(2.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;
  letter-spacing: 0.1em;
  line-height: 1.4411764706;
  padding-left: clamp(1.25rem, -10.592rem + 14.04vw, 6.25rem); /* 20 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .page-news__title {
    font-size: max(1.5rem, 12px);
  }
}

.page-news__list {
  padding-top: 3.75rem;
  display: block;
  border-left: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .page-news__list {
    padding-top: initial;
    border-left: initial;
  }
}

.page-news__item {
  border-bottom: 1px solid #b5b5b5;
}

.page-news__item-link {
  padding-block: 2.4375rem;
  padding-left: clamp(1.25rem, -10.592rem + 14.04vw, 6.25rem); /* 20 ~ 100 | 1350 ~ 1920 */
  padding-right: clamp(1.25rem, -10.592rem + 14.04vw, 6.25rem); /* 20 ~ 100 | 1350 ~ 1920 */
  display: block;
}
@media screen and (max-width: 767px) {
  .page-news__item-link {
    padding-block: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (any-hover: hover) {
  .page-news__item-link {
    transition: background-color 0.3s ease-out;
  }
  .page-news__item-link .page-news__item-date,
  .page-news__item-link .page-news__item-tag-text,
  .page-news__item-link .page-news__item-title {
    transition: color 0.3s ease-out;
  }
  .page-news__item-link .page-news__item-tag::before,
  .page-news__item-link .page-news__item-tag::after {
    transition: background-color 0.3s ease-out;
  }
  .page-news__item-link:hover {
    background-color: #000000;
  }
  .page-news__item-link:hover .page-news__item-date,
  .page-news__item-link:hover .page-news__item-tag-text,
  .page-news__item-link:hover .page-news__item-title {
    color: #ffffff;
  }
  .page-news__item-link:hover .page-news__item-tag::before {
    background-color: #ffffff;
  }
  .page-news__item-link:hover .page-news__item-tag::after {
    background-color: #000000;
  }
  .page-news__item-link:hover .page-news__item-tag-icon {
    background-color: #ffffff;
  }
}
.page-news__item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .page-news__item-meta {
    gap: 0.75rem;
  }
}

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

.page-news__item-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding-block: 0.375rem;
  padding-right: 0.8125rem;
  padding-left: 1.875rem;
}

.page-news__item-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #b5b5b5;
  clip-path: polygon(0.5rem 0, 100% 0, 100% 100%, 0 100%, 0 0.5rem);
}

.page-news__item-tag::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #ffffff;
  clip-path: polygon(0.4375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.4375rem);
}

.page-news__item-tag > * {
  position: relative;
  z-index: 1;
}

.page-news__item-tag-icon {
  position: absolute;
  top: 0.85em;
  left: 0.875rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.page-news__item-tag-text {
  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;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1;
}

.page-news__item-title {
  margin-top: 0.5rem;
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  white-space: normal; /* 文字を折り返す */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示する行数 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-news__item-title {
    font-size: max(0.875rem, 12px);
  }
}

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

.page-works {
  padding-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .page-works {
    padding-top: 1.25rem;
  }
}

.page-works__content {
  padding-bottom: 13.5625rem;
  border-top: 1px solid #b5b5b5;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-works__content {
    margin-top: 0.9375rem;
    padding-bottom: 5rem;
  }
}

.page-works__title {
  display: inline-block;
  font-size: max(2.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;
  letter-spacing: 0.1em;
  line-height: 1.4411764706;
}
@media screen and (max-width: 767px) {
  .page-works__title {
    font-size: 1.5rem;
  }
}

.page-works__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 0.1875rem;
}
@media (width <= 1440px) {
  .page-works__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .page-works__cards {
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: 32.5rem;
  }
}

.page-works__card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 0;
}

.page-works__card-link {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 0;
  padding-block: 1.25rem 0.9375rem;
  padding-inline: 1.25rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-works__card-link {
    padding: 0.9375rem;
  }
}

.page-works__card-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.page-works__card-image {
  max-width: 22.375rem;
  width: 100%;
  margin-inline: auto;
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  position: relative;
}
@media (width <= 1440px) {
  .page-works__card-image {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-works__card-image {
    max-width: 80%;
  }
}

.page-works__card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 358/240;
  object-fit: cover;
}

.page-works__card-tag {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  max-width: 82%;
  padding-right: 0.84375rem;
  padding-left: 1.875rem;
  padding-block: 0.375rem;
  background-color: #ffffff;
  clip-path: polygon(0.375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.375rem);
  z-index: 1;
}

.page-works__card-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #707070;
  clip-path: polygon(0.375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.375rem);
  pointer-events: none;
}

.page-works__card-tag::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #ffffff;
  clip-path: polygon(0.34375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.34375rem);
  pointer-events: none;
}

.page-works__card-tag-icon {
  position: absolute;
  top: 0.85em;
  left: 0.875rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .page-works__card-tag-icon {
    top: 0.8em;
  }
}

.page-works__card-tag-text {
  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;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.page-works__card-title {
  margin-top: 1.0625rem;
  padding-inline: 1.25rem;
  font-size: 1.125rem;
  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.1em;
  line-height: 1.5555555556;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .page-works__card-title {
    padding-inline: 0.625rem;
    font-size: max(1rem, 12px);
  }
}

.page-works__card-divider {
  margin-top: 1.1875rem;
  margin-inline: 1.25rem;
  width: calc(100% - 2.5rem);
  height: 1px;
  background-color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .page-works__card-divider {
    margin-inline: 0.625rem;
    width: calc(100% - 1.25rem);
  }
}

.page-works__card-location {
  margin-top: -0.5625rem;
  margin-inline: 1.25rem;
  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: #000000;
  letter-spacing: 0.1em;
  line-height: 1.3714285714;
}
@media screen and (max-width: 767px) {
  .page-works__card-location {
    margin-inline: 0.625rem;
  }
}

@media (any-hover: hover) {
  .page-works__card-link {
    transition: background-color 0.3s ease-out;
  }
  .page-works__card-link::after {
    transition: background-color 0.3s ease-out;
  }
  .page-works__card-link .page-works__card-title,
  .page-works__card-link .page-works__card-location {
    transition: color 0.3s ease-out;
  }
  .page-works__card-link .page-works__card-divider {
    transition: background-color 0.3s ease-out;
  }
  .page-works__card-link .page-works__card-tag,
  .page-works__card-link .page-works__card-tag::before,
  .page-works__card-link .page-works__card-tag::after {
    transition: background-color 0.3s ease-out;
  }
  .page-works__card-link .page-works__card-tag-text {
    transition: color 0.3s ease-out;
  }
  .page-works__card-link:hover {
    background-color: #000000;
  }
  .page-works__card-link:hover::after {
    background-color: #ffffff;
  }
  .page-works__card-link:hover .page-works__card-title,
  .page-works__card-link:hover .page-works__card-location {
    color: #ffffff;
  }
  .page-works__card-link:hover .page-works__card-divider {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .page-works__card-link:hover .page-works__card-tag,
  .page-works__card-link:hover .page-works__card-tag::after {
    background-color: #000000;
  }
  .page-works__card-link:hover .page-works__card-tag::before {
    background-color: #ffffff;
  }
  .page-works__card-link:hover .page-works__card-tag-icon {
    background-color: #ffffff;
  }
  .page-works__card-link:hover .page-works__card-tag-text {
    color: #ffffff;
  }
}
.page-works__pagination {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-works__pagination {
    margin-top: 2.5rem;
  }
}

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

.pagination a {
  transition: background-color 0.3s ease-out;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  font-size: max(1rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    width: 1.875rem;
    height: 1.875rem;
    font-size: max(0.875rem, 12px);
  }
}

@media (any-hover: hover) {
  a.page-numbers:hover {
    background-color: #efefef;
  }
}
/* 現在表示されているページ */
.page-numbers.current {
  background-color: #efefef;
  pointer-events: none;
}

/* 最初・最終ページボタン（≪ ≫） */
.page-numbers.first,
.page-numbers.last {
  font-size: max(0.75rem, 12px);
}

/* 省略記号（…） */
.page-numbers.dots {
  width: auto;
  min-width: 0;
  padding: 0;
  background-color: transparent;
  pointer-events: none;
}

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

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

.pc-nav__item-link {
  display: flex;
  align-items: flex-start;
  gap: 0.3125rem;
  font-size: max(clamp(0.875rem, -0.25rem + 1.25vw, 1rem), 14px); /* 14 ~ 16 | 1440 ~ 1600 */
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: var(--header-nav-color, #000000);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-block: 0.625rem;
  padding-inline: 0.9375rem;
  text-align: center;
  transition: all 0.3s;
}

.pc-nav__item-link-number {
  display: inline-block;
  font-size: 0.625rem;
}

@media (any-hover: hover) {
  .pc-nav__item-link:hover {
    opacity: 0.6;
  }
}
.post-detail-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-block: 1px solid #b5b5b5;
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .post-detail-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
    padding-block: 2.5rem;
  }
}

.post-detail-nav__links {
  display: contents;
}

.post-detail-nav__prev {
  grid-column: 1;
}

.post-detail-nav__next {
  grid-column: 3;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .post-detail-nav__next {
    grid-column: 2;
  }
}

.post-detail-nav__prev a,
.post-detail-nav__next a,
.post-detail-nav__back a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: opacity 0.3s;
}

.post-detail-nav__icon {
  width: 0.75rem;
  flex-shrink: 0;
}

.post-detail-nav__back .post-detail-nav__icon {
  width: 1.375rem;
}

.post-detail-nav__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: 500;
  color: #000000;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .post-detail-nav__text {
    font-size: max(0.875rem, 12px);
  }
}

.post-detail-nav__back {
  grid-column: 2;
  text-align: center;
}

.post-detail-nav__back--sp {
  grid-column: 1/-1;
  text-align: center;
}
.post-detail-nav__back--sp a {
  justify-content: center;
}

@media (any-hover: hover) {
  .post-detail-nav__prev a:hover,
  .post-detail-nav__next a:hover,
  .post-detail-nav__back a:hover {
    opacity: 0.6;
  }
}
.privacy-policy__title-wrapper {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #b5b5b5;
}

.privacy-policy__container {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__container {
    padding-block: 5rem;
  }
}

.privacy-policy__inner {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__inner {
    max-width: 32.5rem;
    padding-inline: 0.625rem;
  }
}

.privacy-policy__intro {
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .privacy-policy__intro {
    font-size: max(0.875rem, 12px);
  }
}

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

.privacy-policy__item:nth-child(n+2) {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__item:nth-child(n+2) {
    margin-top: 2.1875rem;
  }
}

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

.privacy-policy__text-wrapper {
  margin-top: 1.25rem;
}

.privacy-policy__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;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .privacy-policy__text {
    font-size: max(0.875rem, 12px);
    margin-top: 1rem;
  }
}

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

.section-title__en-main {
  display: flex;
  align-items: flex-start;
  gap: 0.5625rem;
}

.section-title__en {
  font-size: max(3.125rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: max(2.25rem, 12px);
  }
}

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

.section-title__ja {
  display: inline-block;
  margin-top: 0.3125rem;
  padding-block: 0.0625rem 0.125rem;
  padding-inline: 0.0625rem;
  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;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #ffffff;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    font-size: max(1rem, 12px);
  }
}

.section-title[data-size=lg] .section-title__en {
  font-size: max(5rem, 12px);
  line-height: 0.875;
}
@media screen and (max-width: 767px) {
  .section-title[data-size=lg] .section-title__en {
    font-size: max(2.125rem, 12px);
  }
}

.section-title[data-size=lg] .section-title__ja {
  margin-top: 0.6875rem;
  font-size: max(2.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .section-title[data-size=lg] .section-title__ja {
    font-size: max(1rem, 12px);
  }
}

.section-title[data-theme=white] .section-title__en {
  color: #ffffff;
}

.section-title[data-theme=white] .section-title__en-number {
  color: #ffffff;
}

.section-title[data-theme=white] .section-title__ja {
  background-color: #ffffff;
  color: #000000;
}

.service-detail {
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .service-detail {
    padding-block: 1.875rem 3.75rem;
  }
}

.service-detail__inner {
  margin-inline: auto;
  max-width: 109.875rem;
}

.service-detail__container {
  display: grid;
  grid-template-columns: 28.75rem 1fr;
}
@media screen and (max-width: 767px) {
  .service-detail__container {
    grid-template-columns: 1fr;
  }
}

.service-detail__left {
  display: flex;
  align-items: flex-start;
  gap: 0.6875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-detail__left {
    padding-inline: 0.625rem;
    flex-direction: column;
    gap: initial;
  }
}

.service-detail__left-text {
  position: relative;
  width: 100%;
  max-width: 18.75rem;
  height: 100%;
  padding-inline: 1.875rem;
}
@media screen and (max-width: 767px) {
  .service-detail__left-text {
    max-width: 100%;
  }
}

.service-detail__left-text img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60rem;
  object-fit: contain;
  aspect-ratio: 240/960;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service-detail__left-text img {
    position: static;
    transform: none;
    aspect-ratio: 960/240;
    height: 100%;
  }
}

.service-detail__head {
  margin-top: 6.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .service-detail__head {
    margin-top: 1.875rem;
    padding-left: 0.625rem;
    padding-bottom: 1.25rem;
  }
}

.service-detail__arrow {
  display: block;
  width: 100%;
  max-width: 0.75rem;
}

.service-detail__arrow svg {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 12/14;
}

.service-detail__head-text {
  font-size: max(1.25rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #b5b5b5;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.service-detail__right {
  padding-top: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  padding-right: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  padding-bottom: clamp(2.5rem, -5.641rem + 9.65vw, 5.938rem); /* 40 ~ 95 | 1350 ~ 1920 */
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-detail__right {
    padding-top: 1.875rem;
    padding-right: initial;
    border-top: 1px solid #b5b5b5;
  }
}

.service-detail__right:before {
  content: "";
  width: 1px;
  background-color: #b5b5b5;
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .service-detail__right:before {
    display: none;
  }
}

.service-detail__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 1440px) {
  .service-detail__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .service-detail__list {
    grid-template-columns: 1fr;
    margin-inline: auto;
    padding-inline: 0.625rem;
    max-width: 32.5rem;
  }
}

.service-detail__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-detail__item {
    border-bottom: 1px solid #b5b5b5;
  }
}

@media screen and (max-width: 767px) {
  .service-detail__item:last-child {
    border-bottom: initial;
  }
}

.service-detail__item:nth-child(2)::before,
.service-detail__item:nth-child(3)::before,
.service-detail__item:nth-child(5)::before,
.service-detail__item:nth-child(6)::before {
  content: "";
  position: absolute;
  top: 2.375rem;
  left: 0;
  width: 1px;
  height: 82.505%;
  background-color: #b5b5b5;
  z-index: 1;
}
@media (width <= 1440px) {
  .service-detail__item:nth-child(2)::before,
  .service-detail__item:nth-child(3)::before,
  .service-detail__item:nth-child(5)::before,
  .service-detail__item:nth-child(6)::before {
    display: none;
  }
}

@media (width <= 1440px) {
  .service-detail__item:nth-child(2)::before,
  .service-detail__item:nth-child(4)::before,
  .service-detail__item:nth-child(6)::before {
    display: block;
    content: "";
    position: absolute;
    top: 2.375rem;
    left: 0;
    width: 1px;
    height: 80%;
    background-color: #b5b5b5;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .service-detail__item:nth-child(2)::before,
  .service-detail__item:nth-child(4)::before,
  .service-detail__item:nth-child(6)::before {
    display: none;
  }
}

.service-detail__item:nth-child(n+4) {
  border-top: 1px solid #b5b5b5;
}
@media (width <= 1440px) {
  .service-detail__item:nth-child(n+4) {
    border-top: initial;
  }
}

@media (width <= 1440px) {
  .service-detail__item:nth-child(n+3) {
    border-top: 1px solid #b5b5b5;
  }
}
@media screen and (max-width: 767px) {
  .service-detail__item:nth-child(n+3) {
    border-top: initial;
  }
}

.service-detail__item-link {
  display: block;
  padding-top: clamp(1.25rem, -1.414rem + 3.16vw, 2.375rem); /* 20 ~ 38 | 1350 ~ 1920 */
  padding-bottom: clamp(1.25rem, -1.711rem + 3.51vw, 2.5rem); /* 20 ~ 40 | 1350 ~ 1920 */
  padding-inline: clamp(1.25rem, -1.711rem + 3.51vw, 2.5rem); /* 20 ~ 40 | 1350 ~ 1920 */
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-detail__item-link {
    padding: 1.5625rem;
  }
}

.service-detail__item-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media (any-hover: hover) {
  .service-detail__item-link {
    transition: background-color 0.3s ease-out;
  }
  .service-detail__item-link::after {
    transition: background-color 0.3s ease-out;
  }
  .service-detail__item-link .service-detail__item-icon {
    transition: background-color 0.3s ease-out;
  }
  .service-detail__item-link .service-detail__item-en,
  .service-detail__item-link .service-detail__item-title {
    transition: color 0.3s ease-out;
  }
  .service-detail__item-link:hover {
    background-color: #000000;
  }
  .service-detail__item-link:hover::after {
    background-color: #ffffff;
  }
  .service-detail__item-link:hover .service-detail__item-icon {
    background-color: #ffffff;
  }
  .service-detail__item-link:hover .service-detail__item-en,
  .service-detail__item-link:hover .service-detail__item-title {
    color: #ffffff;
  }
}
.service-detail__item-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.service-detail__item-icon {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
}

.service-detail__item-en {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: initial;
  line-height: 1.6;
  text-transform: uppercase;
}

.service-detail__item-title {
  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;
  letter-spacing: 0.1em;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
  .service-detail__item-title {
    font-size: max(1rem, 12px);
  }
}

.service-detail__item-image {
  margin-top: 1.25rem;
  max-width: 20rem;
  width: 100%;
  margin-inline: auto;
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .service-detail__item-image {
    max-width: 80%;
  }
}

.service-detail__item-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/200;
  object-fit: cover;
}

.service {
  border-top: 1px solid #b5b5b5;
}

.service__inner {
  margin-inline: auto;
  max-width: 110rem;
  border-left: 1px solid #b5b5b5;
  border-right: 1px solid #b5b5b5;
}
@media screen and (max-width: 1920px) {
  .service__inner {
    border-left: none;
    border-right: none;
  }
}

.service__anchor-nav {
  max-width: 105.3125rem;
  width: 100%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__anchor-nav {
    max-width: 100%;
  }
}

.service__section {
  display: grid;
  grid-template-columns: clamp(18.75rem, -4.934rem + 28.07vw, 28.75rem) 1fr; /* 300 ~ 460 | 1350 ~ 1920 */
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .service__section {
    grid-template-columns: 1fr;
  }
}

.service__section:first-of-type {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__section:first-of-type {
    margin-top: 2.5rem;
  }
}

.service__section[data-layout=reverse] {
  grid-template-columns: 1fr clamp(18.75rem, -4.934rem + 28.07vw, 28.75rem); /* 300 ~ 460 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__section[data-layout=reverse] {
    grid-template-columns: 1fr;
  }
}

.service__section[data-layout=reverse] .service__side {
  order: 2;
  border-left: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .service__section[data-layout=reverse] .service__side {
    border-left: none;
  }
}

.service__section[data-layout=reverse] .service__body {
  order: 1;
  border-left: none;
}
@media screen and (max-width: 767px) {
  .service__section[data-layout=reverse] .service__body {
    border-left: none;
  }
}

.service__side {
  padding-top: clamp(3.125rem, 1.645rem + 1.75vw, 3.75rem); /* 50 ~ 60 | 1350 ~ 1920 */
  padding-bottom: clamp(3.125rem, -7.977rem + 13.16vw, 7.813rem); /* 50 ~ 125 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__side {
    order: 2;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    border-top: 1px solid #b5b5b5;
  }
}

.service__side-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(3.125rem, -9.539rem + 13.16vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__side-inner {
    display: grid;
    grid-template-columns: 7.5rem auto;
    gap: 1.25rem;
    align-items: center;
    max-width: 23.4375rem;
    width: 100%;
    margin-inline: auto;
    padding-inline: 0.625rem;
  }
}

.service__side[data-layout=reverse] .service__side-inner {
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .service__side[data-layout=reverse] .service__side-inner {
    align-items: center;
  }
}

.service__side-img img {
  aspect-ratio: 260/346;
  object-fit: contain;
  height: 100%;
}

.service__side-caption {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b5b5b5;
  letter-spacing: -0.06em;
  line-height: 1.6;
  max-width: 14.0625rem;
  width: 100%;
}

.service__body {
  border-left: 1px solid #b5b5b5;
  padding-top: clamp(3.125rem, -3.832rem + 8.25vw, 6.063rem); /* 50 ~ 97 | 1350 ~ 1920 */
  padding-bottom: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__body {
    order: 1;
    border-left: none;
    padding-top: 3.125rem;
    padding-bottom: 0;
  }
}

.service__body-inner {
  padding-inline: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__body-inner {
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
    padding-inline: 0.625rem;
  }
}

.service__body-inner[data-layout=reverse] {
  padding-inline: clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem) clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 100 | 1350 ~ 1920 || 25 ~ 60 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__body-inner[data-layout=reverse] {
    padding-inline: 0.625rem;
  }
}

.service__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.service__heading-ja {
  font-size: clamp(1.375rem, 0.783rem + 0.7vw, 1.625rem); /* 22 ~ 26 | 1350 ~ 1920 */
  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.1em;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .service__heading-ja {
    font-size: max(1.25rem, 12px);
  }
}

.service__heading-en {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.6;
  text-transform: uppercase;
}

.service__heading-en-dot {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  flex-shrink: 0;
}

.service__desc {
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__desc {
    font-size: max(0.875rem, 12px);
    margin-top: 1.5625rem;
  }
}

.service__items-inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .service__items-inner {
    display: block;
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
    padding-inline: 0.625rem;
  }
}

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

.service__item {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  align-items: flex-start;
  gap: 2.5rem;
  padding-block: 2.5rem;
  padding-inline: clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem) clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 100 | 1350 ~ 1920 || 25 ~ 60 | 1350 ~ 1920 */
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .service__item {
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
    grid-template-columns: 4.375rem 1fr;
    gap: 0.9375rem;
    padding-block: 1.875rem 3.125rem;
    padding-inline: 0;
  }
}

.service__items[data-layout=reverse] .service__item {
  padding-inline: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__items[data-layout=reverse] .service__item {
    padding-inline: 0;
  }
}

.service__item-img img {
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 0.25rem;
  height: 100%;
}

.service__item-title {
  font-size: 1.25rem;
  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.1em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .service__item-title {
    font-size: max(1rem, 12px);
  }
}

.service__item-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: #000000;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service__item-text {
    font-size: max(0.875rem, 12px);
    margin-top: 0.9375rem;
  }
}

.service__flow {
  border-top: 1px solid #b5b5b5;
  padding-top: clamp(3.125rem, -3.832rem + 8.25vw, 6.063rem); /* 50 ~ 97 | 1350 ~ 1920 */
  padding-bottom: clamp(3.125rem, -3.832rem + 8.25vw, 6.063rem); /* 50 ~ 97 | 1350 ~ 1920 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service__flow {
    padding-top: 3.125rem;
    padding-bottom: 0;
  }
}

.service__flow-inner {
  max-width: 110rem;
  width: 100%;
  margin-inline: auto;
  padding-left: clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem); /* 25 ~ 100 | 1350 ~ 1920 */
  padding-right: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem); /* 25 ~ 60 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__flow-inner {
    max-width: 32.5rem;
    padding-inline: 0.625rem;
  }
}

.service__flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .service__flow-grid {
    grid-template-columns: 1fr;
    margin-top: 3.125rem;
    padding-inline: 2.5rem 1.25rem;
    padding-bottom: 3.125rem;
  }
}

.service__flow-grid::before {
  content: "";
  position: absolute;
  top: -2.375rem;
  left: -0.3125rem;
  rotate: 90deg;
  mask-image: url(../../assets/images/common/scale-triangle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #b5b5b5;
  width: 0.75rem;
  aspect-ratio: 12/14;
}
@media screen and (max-width: 767px) {
  .service__flow-grid::before {
    left: 1.25rem;
    top: -0.4375rem;
    rotate: 180deg;
  }
}

.service__flow-grid::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1rem;
  transform-origin: 0 0;
  rotate: -90deg;
  transform: scale(-1, 1);
  width: 1rem;
  height: 120rem;
  background-color: #b5b5b5;
  mask-image: url(../../assets/images/common/scale.svg);
  mask-size: 1rem auto;
  mask-repeat: repeat-y;
  mask-position: left top;
}
@media screen and (max-width: 767px) {
  .service__flow-grid::after {
    top: 0;
    rotate: none;
    transform-origin: initial;
    height: 100%;
    mask-size: 100% auto;
  }
}

.service__flow-item {
  position: relative;
  padding-top: 4.1875rem;
  padding-inline: clamp(0.625rem, -0.855rem + 1.75vw, 1.25rem) clamp(0.625rem, -3.076rem + 4.39vw, 2.188rem); /* 10 ~ 20 | 1350 ~ 1920 || 10 ~ 35 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .service__flow-item {
    padding-block: 1.5rem;
    padding-right: 0;
    padding-left: 1.875rem;
    padding-left: 0;
    border-top: 1px solid #b5b5b5;
  }
}

.service__flow-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 7.875rem;
  background-color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .service__flow-item::before {
    content: none;
  }
}

.service__flow-label {
  display: grid;
  grid-template-columns: clamp(1.875rem, -0.345rem + 2.63vw, 2.813rem) 1fr; /* 30 ~ 45 | 1350 ~ 1920 */
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service__flow-label {
    gap: 1rem;
  }
}

.service__flow-icon img {
  aspect-ratio: 1/1;
  object-fit: contain;
  height: 100%;
}

.service__flow-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.service__flow-step {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.service__flow-title {
  font-size: 1.25rem;
  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.1em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .service__flow-title {
    font-size: max(1rem, 12px);
  }
}

.service__flow-text {
  font-size: max(clamp(0.875rem, 0.579rem + 0.35vw, 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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service__flow-text {
    font-size: max(0.875rem, 12px);
    margin-top: 0.9375rem;
  }
}

.single-news {
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .single-news {
    padding-bottom: 5rem;
  }
}

.single-news__head {
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #b5b5b5;
}

.single-news__meta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .single-news__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

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

.single-news__category {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-block: 0.1875rem;
  padding-right: 0.8125rem;
  padding-left: 1.4375rem;
}

/* ボーダー（外側の形） */
.single-news__category::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #707070;
  clip-path: polygon(0.375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.375rem);
}

/* 内側の本体 */
.single-news__category::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #ffffff;
  clip-path: polygon(0.3125rem 0, 100% 0, 100% 100%, 0 100%, 0 0.3125rem);
}

/* コンテンツを前面に */
.single-news__category > * {
  position: relative;
  z-index: 1;
}

.single-news__category-icon {
  position: absolute;
  top: 0.65em;
  left: 0.84375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  z-index: 1;
}

.single-news__category-text {
  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;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.5833333333;
}

.single-news__title {
  font-size: 2.125rem;
  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.1em;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .single-news__title {
    font-size: 1.5rem;
  }
}

/* ----- コンテンツエリア ----- */
.single-news__content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .single-news__content {
    margin-top: 3.125rem;
  }
}

/* ----- 記事本文 ----- */
.single-news__body {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .single-news__body {
    padding-bottom: 3.75rem;
  }
}

.single-news__body h2 {
  font-size: 1.75rem;
  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.1em;
  line-height: 1.4285714286;
  margin-top: 3.75rem;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .single-news__body h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

.single-news__body h2:first-child {
  margin-top: 0;
}

.single-news__body h3 {
  font-size: 1.375rem;
  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.1em;
  line-height: 1.5;
  margin-top: 3.125rem;
  padding-bottom: 0.3125rem;
  padding-inline: 0.9375rem;
  border-bottom: 1px solid #b5b5b5;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .single-news__body h3 {
    font-size: 1.125rem;
    padding-inline: 0.3125rem;
    margin-top: 2.5rem;
  }
}

.single-news__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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-news__body p {
    font-size: max(0.875rem, 12px);
  }
}

.single-news__body p + p {
  margin-top: 1em;
}

.single-news__body p strong {
  font-weight: 700;
}

.single-news__body p a {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  word-break: break-all;
  transition: all 0.3s;
}

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

.single-news__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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .single-news__body > ul > li {
    font-size: max(0.875rem, 12px);
  }
}

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

.single-news__body figure {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .single-news__body figure {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.single-news__body .wp-block-image img {
  width: 100%;
  aspect-ratio: 840/570;
  object-fit: cover;
  border-radius: 0.25rem;
}

.single-news__body .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.single-news__body blockquote {
  border-left: 0.25rem solid #b5b5b5;
  padding-left: 1.25rem;
  margin-top: 1.25rem;
}

.single-news__body blockquote p {
  margin-top: 0;
}

.single-works {
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .single-works {
    padding-bottom: 5rem;
  }
}

.single-works__head {
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #b5b5b5;
}

.single-works__meta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .single-works__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
  }
}

.single-works__category {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-block: 0.1875rem;
  padding-right: 0.8125rem;
  padding-left: 1.4375rem;
}

.single-works__category::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #707070;
  clip-path: polygon(0.375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.375rem);
}

.single-works__category::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #ffffff;
  clip-path: polygon(0.3125rem 0, 100% 0, 100% 100%, 0 100%, 0 0.3125rem);
}

.single-works__category > * {
  position: relative;
  z-index: 1;
}

.single-works__category-icon {
  position: absolute;
  top: 0.65em;
  left: 0.84375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  z-index: 1;
}

.single-works__category-text {
  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;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.5833333333;
}

.single-works__title {
  font-size: 2.125rem;
  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.1em;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .single-works__title {
    font-size: 1.5rem;
  }
}

/* ----- コンテンツエリア ----- */
.single-works__content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .single-works__content {
    margin-top: 3.125rem;
  }
}

/* ----- メイン画像 ----- */
.single-works__main-image {
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}

.single-works__main-image img {
  aspect-ratio: 840/560;
  height: 100%;
  object-fit: cover;
}

/* ----- ギャラリー ----- */
.single-works__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem 0.875rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .single-works__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 2.5rem;
  }
}

.single-works__gallery-item {
  overflow: hidden;
  cursor: pointer;
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}

.single-works__gallery-item img {
  aspect-ratio: 272/190;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .single-works__gallery-item:hover img {
    transform: scale(1.05);
  }
}
.single-works__gallery-item:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* ----- 概要 ----- */
.single-works__overview {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .single-works__overview {
    margin-top: 2.5rem;
  }
}

.single-works__overview-item {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
}
@media screen and (max-width: 767px) {
  .single-works__overview-item {
    grid-template-columns: 1fr;
  }
}

.single-works__overview-item + .single-works__overview-item {
  margin-top: 1.25rem;
}

.single-works__overview-label {
  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.1em;
  line-height: 1.75;
}

.single-works__overview-value {
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-bottom: 1rem;
  border-bottom: 1px solid #b5b5b5;
}

.single-works-post-detail-nav {
  margin-top: 6.25rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-works-post-detail-nav {
    margin-top: 3.75rem;
    padding-inline: 0;
  }
}

.slide-text {
  position: absolute;
  top: 0;
  overflow: hidden;
}

@media screen and (max-width: 552px) {
  .slide-text.body-content__slide-text {
    display: none;
  }
}

.slide-text.slide-text-02 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.9375rem;
  padding-bottom: 1.5625rem;
  z-index: -1;
  z-index: 1;
}

.slide-text.slide-text-02.top-busters__slide-text {
  padding-top: 1.5625rem;
}

.slide-text.slide-text-03 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  z-index: -1;
}

.slide-text.slide-text-04 {
  position: relative;
  z-index: -1;
}

.slide-text.slide-text-05 {
  position: absolute;
  top: 7.625rem;
  left: 50%;
  transform: translateX(-50%) rotate(-10.3deg);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-block: 0.3125rem;
  filter: drop-shadow(0.625rem 0.625rem 0.625rem rgba(0, 0, 0, 0.2));
  z-index: -2;
  width: 120%;
}

.slide-text.slide-text-05::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide-text.slide-text-06.busters__profile-bg-slide-text {
  position: absolute;
  top: auto;
  bottom: 0.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4.8125rem;
  z-index: 0;
}

.slide-text.body-content__slide-text-01 {
  position: relative;
  height: 100%;
  z-index: 2;
}

.slide-text.slide-text-up {
  right: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .slide-text.slide-text-up {
    right: 0;
  }
}

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

.slide-text__wrapper.slide-text__wrapper-body-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  flex-direction: column;
  height: 100%;
}

.slide-text__wrapper.slide-text__wrapper-02 {
  position: relative;
  width: 100%;
  height: 7.5rem;
  overflow: visible;
}

.slide-text__wrapper.slide-text__wrapper-06 {
  position: relative;
  width: 100%;
  height: 4.8125rem;
  overflow: visible;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-top {
  z-index: -3;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-bottom {
  z-index: -1;
}

.slide-text__wrapper.slide-text__wrapper-03 {
  position: relative;
  width: 100%;
  height: 2.4375rem;
  overflow: visible;
}

.slide-text__wrapper.slide-text__wrapper-04 {
  position: relative;
  width: 100%;
  height: 18.75rem;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-a,
.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-c {
  z-index: -4;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-b,
.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-d {
  z-index: 1;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-b::before,
.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-b::after,
.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-d::before,
.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-d::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-b::before {
  bottom: 0.1875rem;
  right: calc(50% - 3.375rem);
  background-image: url(../../assets/images/common/slider-text-chara-03.png);
  width: 12.96875rem;
  aspect-ratio: 207.5/250;
  z-index: -1;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-b::after {
  left: calc(50% + 2.3125rem);
  bottom: -1.625rem;
  background-image: url(../../assets/images/common/slider-text-chara-04.png);
  width: 7.44375rem;
  aspect-ratio: 119.1/300;
  z-index: 1;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-d::before {
  bottom: -0.625rem;
  right: calc(50% + 3.0625rem);
  background-image: url(../../assets/images/common/slider-text-chara-01.png);
  width: 5rem;
  aspect-ratio: 80/240;
  z-index: 1;
}

.slide-text__wrapper.slide-text__wrapper-02.slide-text__wrapper-02-d::after {
  left: calc(50% + 1.6875rem);
  bottom: -1.3125rem;
  background-image: url(../../assets/images/common/slider-text-chara-02.png);
  width: 7.2rem;
  aspect-ratio: 115.2/300;
  z-index: -1;
}

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

.slide-text__items.slide-text__items-02 {
  height: 7.5rem;
}

.slide-text__items.slide-text__items-03 {
  height: 2.4375rem;
  gap: 0.25rem;
}

.slide-text__items.slide-text__items-04 {
  height: 100%;
  gap: 0.625rem;
}

.slide-text__items.slide-text__items-05 {
  height: 1.625rem;
}

.slide-text__items.slide-text__items-06 {
  height: 4.8125rem;
  gap: 1.875rem;
}

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

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

/* 右から左へ */
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.slide-text__items.slide-text__items--up {
  flex-direction: column;
  animation: infinity-scroll-up 400s infinite linear 0.5s both;
  width: 100%;
}

/* 下から上へ */
@keyframes infinity-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.slide-text__items.slide-text__items--down {
  flex-direction: column;
  animation: infinity-scroll-down 400s infinite linear 0.5s both;
  width: 100%;
}

/* 上から下へ */
@keyframes infinity-scroll-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.slide-text__item {
  position: relative;
  width: 100%;
}
.slide-text__item.slide-text__item-02 {
  width: 60rem;
  height: 7.5rem;
}

.slide-text__item.slide-text__item-04 {
  width: 15rem;
}

.slide-text__item.slide-text__item-04 img {
  aspect-ratio: 240/300;
  object-fit: cover;
  border-radius: 0.25rem;
}

.slide-text__item.slide-text__item-05 {
  width: 38.625rem;
}

.slide-text__item.slide-text__item-06 {
  width: 52.25rem;
  height: 4.8125rem;
}

.slide-text__item-text {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.2em;
  padding: 0.59375rem 1.875rem;
  border-radius: 100vmax;
  white-space: nowrap;
}

.slide-text__item.slide-text__item-body-content {
  max-width: 1.625rem;
  width: 100%;
  aspect-ratio: 26/1020;
}

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

.sp-nav {
  display: none;
}
@media screen and (max-width: 1440px) {
  .sp-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    max-width: 31.25rem;
    overflow-y: auto;
    padding: 6.25rem 0;
    z-index: 11;
    background-color: #ffffff;
    border: 1px solid #b5b5b5;
  }
}
@media screen and (max-width: 767px) {
  .sp-nav {
    inset: 0;
    max-width: none;
    padding-block: 6.25rem;
  }
}

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

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

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

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

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

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

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

@media screen and (max-width: 1440px) {
  .sp-nav__item-link {
    display: flex;
    align-items: flex-start;
    gap: 0.3125rem;
    font-size: 16;
    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.1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding-block: 0.625rem;
    padding-inline: 0.9375rem;
    transition: all 0.3s;
  }
}

.sp-nav__item-link-number {
  display: inline-block;
  font-size: 0.625rem;
}

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

@media screen and (max-width: 1440px) {
  .sp-nav__item-link-ja {
    font-size: max(0.875rem, 12px);
    font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4285714286;
    letter-spacing: 0.075em;
    margin-top: 0.125rem;
  }
}

@media screen and (max-width: 1440px) {
  .sp-nav__btn {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
  }
}

.sustainable {
  border-top: 1px solid #ffffff;
}

.sustainable__inner {
  margin-inline: auto;
  max-width: 110rem;
  width: 100%;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 1920px) {
  .sustainable__inner {
    border-left: none;
    border-right: none;
  }
}

.sustainable__anchor-nav {
  max-width: 87.75rem;
  width: 100%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sustainable__anchor-nav {
    max-width: 100%;
  }
}

.sustainable__section {
  display: grid;
  grid-template-columns: clamp(18.75rem, -4.934rem + 28.07vw, 28.75rem) 1fr; /* 300 ~ 460 | 1350 ~ 1920 */
  border-top: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .sustainable__section {
    grid-template-columns: 1fr;
    padding-top: 3.125rem;
  }
}

.sustainable__section[data-layout=reverse] {
  grid-template-columns: 1fr clamp(18.75rem, -4.934rem + 28.07vw, 28.75rem); /* 300 ~ 460 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__section[data-layout=reverse] {
    grid-template-columns: 1fr;
  }
}

.sustainable__section[data-layout=reverse] .sustainable__body {
  order: 1;
  border-left: none;
  padding-left: clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem); /* 25 ~ 100 | 1350 ~ 1920 */
  padding-right: clamp(1.563rem, -2.138rem + 4.39vw, 3.125rem); /* 25 ~ 50 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__section[data-layout=reverse] .sustainable__body {
    padding-inline: 0;
  }
}

.sustainable__body-inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .sustainable__body-inner {
    display: block;
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
    padding-inline: 0.625rem;
  }
}

.sustainable__heading {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  padding-top: clamp(3.125rem, -4.276rem + 8.77vw, 6.25rem); /* 50 ~ 100 | 1350 ~ 1920 */
  padding-inline: clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem) clamp(1.563rem, -0.658rem + 2.63vw, 2.5rem); /* 25 ~ 100 | 1350 ~ 1920 || 25 ~ 40 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__heading {
    padding-top: 0;
    padding-inline: 0;
  }
}

.sustainable__section[data-layout=reverse] .sustainable__heading {
  order: 2;
  padding-inline: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem) clamp(1.563rem, -0.658rem + 2.63vw, 2.5rem); /* 25 ~ 60 | 1350 ~ 1920 || 25 ~ 40 | 1350 ~ 1920 */
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .sustainable__section[data-layout=reverse] .sustainable__heading {
    order: -1;
    padding-inline: 0;
    border-left: none;
  }
}

.sustainable__heading-ja {
  font-size: clamp(1.375rem, 0.783rem + 0.7vw, 1.625rem); /* 22 ~ 26 | 1350 ~ 1920 */
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .sustainable__heading-ja {
    font-size: 1.25rem;
  }
}

.sustainable__heading-en {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  text-transform: uppercase;
}

.sustainable__heading-en-dot {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #ffffff;
  flex-shrink: 0;
}

.sustainable__body {
  border-left: 1px solid #ffffff;
  padding-block: clamp(3.125rem, -3.832rem + 8.25vw, 6.063rem); /* 50 ~ 97 | 1350 ~ 1920 */
  padding-inline: clamp(1.563rem, -3.618rem + 6.14vw, 3.75rem) clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem); /* 60 ~ 100 | 1350 ~ 1920 || 25 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__body {
    padding-block: 1.875rem 3.125rem;
    padding-inline: 0;
    border-left: none;
  }
}

.sustainable__lead {
  font-size: clamp(2.25rem, 0.77rem + 1.75vw, 2.875rem); /* 36 ~ 46 | 1350 ~ 1920 */
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.5652173913;
}
@media screen and (max-width: 767px) {
  .sustainable__lead {
    font-size: 1.5rem;
  }
}

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

.sustainable__text {
  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: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .sustainable__text {
    font-size: max(1rem, 12px);
  }
}

.sustainable__sdgs-content {
  display: grid;
  grid-template-columns: 1fr 18.75rem;
  align-items: start;
  gap: clamp(2.5rem, -1.941rem + 5.26vw, 4.375rem); /* 40 ~ 70 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__sdgs-content {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .sustainable__sdgs-img {
    max-width: 12.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

.sustainable__sdgs-img img {
  aspect-ratio: 300/400;
  object-fit: contain;
  height: 100%;
}

.sustainable__body[data-layout=with-image] {
  display: grid;
  grid-template-columns: 1fr minmax(0, 22.5rem);
  align-items: center;
  gap: clamp(2.5rem, -1.941rem + 5.26vw, 4.375rem); /* 40 ~ 70 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__body[data-layout=with-image] {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.5rem;
  }
}

.sustainable__img {
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .sustainable__img {
    max-width: 22.5rem;
    width: 100%;
  }
}

.sustainable__img img {
  width: 100%;
  aspect-ratio: 360/240;
  height: auto;
  object-fit: cover;
}

.sustainable__items {
  display: grid;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .sustainable__items {
    gap: 2rem;
  }
}

.sustainable__item[data-layout=with-image] {
  display: grid;
  grid-template-columns: 1fr minmax(0, 22.5rem);
  align-items: center;
  gap: clamp(2.5rem, -1.941rem + 5.26vw, 4.375rem); /* 40 ~ 70 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__item[data-layout=with-image] {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.5rem;
  }
}

.sustainable__item-img {
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .sustainable__item-img {
    max-width: 22.5rem;
    width: 100%;
  }
}

.sustainable__item-img img {
  width: 100%;
  aspect-ratio: 360/240;
  height: auto;
  object-fit: cover;
}

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

.sustainable__item-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .sustainable__item-text {
    font-size: max(0.875rem, 12px);
    margin-top: 0.75rem;
  }
}

.sustainable__caption-wrapper {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding-block: 3.625rem;
  padding-inline: clamp(1.563rem, -9.539rem + 13.16vw, 6.25rem) clamp(1.563rem, -13.24rem + 17.54vw, 7.813rem); /* 25 ~ 100 | 1350 ~ 1920 || 25 ~ 125 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .sustainable__caption-wrapper {
    padding-block: 1.875rem;
    padding-inline: 0;
  }
}

.sustainable__caption-wrapper[data-theme=double] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sustainable__caption-wrapper[data-theme=double] {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.sustainable__caption {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b5b5b5;
  letter-spacing: -0.06em;
  line-height: 1.6;
}

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

@media screen and (max-width: 767px) {
  .top-company {
    padding-block: 3.75rem;
  }
}

.top-company__inner {
  margin-inline: auto;
  padding-inline: 1.5625rem;
  max-width: 100.625rem;
}
@media screen and (max-width: 767px) {
  .top-company__inner {
    padding-inline: 0.625rem;
    max-width: 32.5rem;
  }
}

.top-company__container {
  display: flex;
  gap: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-company__container {
    flex-direction: column;
    align-items: normal;
    gap: initial;
  }
}

.top-company__image {
  display: block;
  width: 100%;
  max-width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .top-company__image {
    order: 2;
    margin-top: 2.5rem;
    margin-inline: auto;
    padding-top: initial;
    padding-inline: 0.625rem;
    max-width: 80%;
  }
}

.top-company__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 260/160;
}

.top-company__block {
  padding-top: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  padding-bottom: clamp(2.5rem, -0.461rem + 3.51vw, 3.75rem); /* 40 ~ 60 | 1350 ~ 1920 */
  padding-left: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  display: flex;
  gap: clamp(2.5rem, -10.822rem + 15.79vw, 8.125rem); /* 40 ~ 130 | 1350 ~ 1920 */
  position: relative;
}
@media (width <= 1440px) {
  .top-company__block {
    padding-top: 3.75rem;
    padding-left: 2.5rem;
    flex-direction: column;
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-company__block {
    display: contents;
  }
}

.top-company__block::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #b5b5b5;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top-company__block::before {
    display: none;
  }
}

.top-company__container .section-title {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-company__container .section-title {
    order: 1;
    margin-top: initial;
  }
}

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

.top-company__description {
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .top-company__description {
    order: 3;
    margin-top: 1.875rem;
    font-size: max(0.875rem, 12px);
  }
}

.top-company__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-company__btn {
    order: 4;
    display: flex;
    justify-content: center;
  }
}

.top-service {
  border-top: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding-top: 3.75rem;
  }
}

.top-service__inner {
  margin-inline: auto;
  max-width: 109.875rem;
}

.top-service__container {
  position: relative;
  display: flex;
}

.top-service__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  z-index: -1;
}

.top-service__left-head {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__left-head {
    display: flex;
    flex-direction: column-reverse;
  }
}

.top-service__left-head-image {
  display: block;
  width: 100%;
  max-width: 81.25rem;
}
@media (width <= 1650px) {
  .top-service__left-head-image {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-service__left-head-image {
    margin-top: 1.875rem;
  }
}

.top-service__left-head-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1300/549;
}

.top-service__left-head-content {
  position: absolute;
  top: clamp(6.25rem, 1.513rem + 5.61vw, 8.25rem); /* 100 ~ 132 | 1350 ~ 1920 */
  left: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__left-head-content {
    margin-inline: auto;
    padding-inline: 0.625rem;
    max-width: 32.5rem;
    position: initial;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .top-service__left-head-content .section-title[data-theme=white] .section-title__en {
    color: #000000;
  }
}

@media screen and (max-width: 767px) {
  .top-service__left-head-content .section-title[data-theme=white] .section-title__en-number {
    color: #000000;
  }
}

@media screen and (max-width: 767px) {
  .top-service__left-head-content .section-title[data-theme=white] .section-title__ja {
    color: #ffffff;
    background-color: #000000;
  }
}

.top-service__left-head-description {
  font-size: 1rem;
  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.75;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-service__left-head-description {
    font-size: max(0.875rem, 12px);
    color: #000000;
  }
}

.top-service__left-bottom {
  padding-top: 3.8125rem;
  padding-right: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  padding-bottom: 3.75rem;
  padding-left: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-service__left-bottom {
    margin-inline: auto;
    padding-block: 1.875rem;
    padding-inline: 0.625rem;
    flex-direction: column-reverse;
    max-width: 32.5rem;
  }
}

.top-service__left-bottom-description {
  max-width: 9.375rem;
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 1.6;
}
@media (width <= 1650px) {
  .top-service__left-bottom-description {
    margin-top: 1.25rem;
    max-width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-service__left-bottom-description {
    max-width: 100%;
  }
}

.top-service__left-bottom-catchcopy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}

.top-service__left-bottom-catchcopy-line {
  padding-block: 0.0625rem 0.1875rem;
  padding-inline: 0.0625rem;
  display: inline-block;
  font-size: max(3.125rem, 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;
  letter-spacing: 0.15em;
  color: #ffffff;
  background-color: #000000;
  text-align: right;
  font-feature-settings: "palt";
}
@media (width <= 850px) {
  .top-service__left-bottom-catchcopy-line {
    font-size: max(3.0625rem, 12px);
  }
}
@media screen and (max-width: 767px) {
  .top-service__left-bottom-catchcopy-line {
    font-size: max(1.5rem, 12px);
  }
}

.top-service__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #b5b5b5;
}
@media (width <= 1650px) {
  .top-service__right {
    display: contents;
  }
}

.top-service__right-head {
  padding-top: 2.5rem;
  padding-right: 1.5625rem;
  padding-left: 2.5rem;
}
@media (width <= 1650px) {
  .top-service__right-head {
    padding: initial;
    position: absolute;
    top: 1.5625rem;
    right: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .top-service__right-head {
    top: 14.375rem;
    right: initial;
    left: 0.625rem;
  }
}

.top-service__right-head-description {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #b5b5b5;
  letter-spacing: -0.06em;
  line-height: 1.6;
}

.top-service__radar {
  margin-top: auto;
  display: block;
  width: 100%;
  max-width: 28.75rem;
}
@media (width <= 1650px) {
  .top-service__radar {
    position: absolute;
    bottom: 6.25rem;
    right: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .top-service__radar {
    max-width: 18.75rem;
    bottom: 2.5rem;
  }
}

.top-service__radar img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 460/460;
}

.works {
  position: relative;
}

.works__bg {
  --_gutter: calc((100dvi - 100cqi) / 2);
  position: absolute;
  inset: 0;
  margin-inline: calc(var(--_gutter) * -1);
  z-index: -1;
  height: 100%;
}

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

.works__bg::before {
  content: "";
  position: absolute;
  left: max(35.625rem, 50% - 24.375rem);
  mask-image: url("../../assets/images/common/mask-parts-pc.webp");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 100vw;
  height: 2.5rem;
  z-index: 2;
  top: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .works__bg::before {
    left: 7.5rem;
    mask-image: url("../../assets/images/common/mask-parts-sp.webp");
  }
}

.works__inner {
  margin-inline: auto;
  max-width: 109.875rem;
}
@media screen and (max-width: 767px) {
  .works__inner {
    padding-inline: 0.625rem;
    max-width: 32.5rem;
  }
}

.works__container {
  padding-block: 6.25rem 6.25rem;
  display: grid;
  grid-template-columns: 28.75rem 1fr;
}
@media screen and (max-width: 767px) {
  .works__container {
    padding-block: 6.25rem 3.75rem;
    grid-template-columns: 1fr;
  }
}

.works__info {
  margin-top: 0.9375rem;
  padding-left: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .works__info {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .works__container .section-title {
    order: 1;
  }
}

.works__description {
  margin-top: 3.8125rem;
  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;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .works__description {
    order: 2;
    margin-top: 2.5rem;
    font-size: max(0.875rem, 12px);
  }
}

.works__btn {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .works__btn {
    order: 4;
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }
}

.works__content {
  padding-right: clamp(2.5rem, -6.382rem + 10.53vw, 6.25rem); /* 40 ~ 100 | 1350 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .works__content {
    order: 3;
    padding-right: initial;
  }
}

.works__cards {
  margin-top: 2.0625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1875rem;
}
@media (width <= 1440px) {
  .works__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .works__cards {
    grid-template-columns: 1fr;
    margin-top: 3.125rem;
  }
}

.works__card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
}

.works__card-link {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  padding-block: 1.25rem 1.4375rem;
  padding-inline: 1.25rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works__card-link {
    padding: 0.9375rem;
  }
}

.works__card-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #000000;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.works__card-image {
  max-width: 22.375rem;
  width: 100%;
  margin-inline: auto;
  mask-image: url("../../assets/images/common/mask-img.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  position: relative;
}
@media (width <= 1440px) {
  .works__card-image {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .works__card-image {
    max-width: 80%;
  }
}

.works__card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 358/240;
  object-fit: cover;
}

.works__card-tag {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-inline: 0.625rem;
  padding-block: 0.25rem;
  background-color: #ffffff;
  clip-path: polygon(0.375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.375rem);
  z-index: 1;
}

.works__card-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #707070;
  clip-path: polygon(0.375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.375rem);
}

.works__card-tag::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #ffffff;
  clip-path: polygon(0.34375rem 0, 100% 0, 100% 100%, 0 100%, 0 0.34375rem);
}

.works__card-tag-icon {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000000;
  position: relative;
  z-index: 1;
}

.works__card-tag-text {
  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;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.works__card-title {
  margin-top: 1.0625rem;
  padding-inline: 1.25rem;
  font-size: 1.125rem;
  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.1em;
  line-height: 1.5555555556;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .works__card-title {
    padding-inline: 0.625rem;
    font-size: max(1rem, 12px);
  }
}

.works__card-divider {
  margin-top: 1.1875rem;
  margin-inline: 1.25rem;
  width: calc(100% - 2.5rem);
  height: 1px;
  background-color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .works__card-divider {
    margin-inline: 0.625rem;
    width: calc(100% - 1.25rem);
  }
}

.works__card-location {
  margin-top: 0.625rem;
  padding-inline: 1.25rem;
  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: #000000;
  letter-spacing: 0.1em;
  line-height: 1.3714285714;
}
@media screen and (max-width: 767px) {
  .works__card-location {
    padding-inline: 0.625rem;
  }
}

@media (any-hover: hover) {
  .works__card-link {
    transition: background-color 0.3s ease-out;
  }
  .works__card-link .works__card-title,
  .works__card-link .works__card-location {
    transition: color 0.3s ease-out;
  }
  .works__card-link .works__card-divider {
    transition: background-color 0.3s ease-out;
  }
  .works__card-link:hover {
    background-color: #000000;
  }
  .works__card-link:hover .works__card-title,
  .works__card-link:hover .works__card-location {
    color: #ffffff;
  }
  .works__card-link:hover .works__card-divider {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .works__card-link .works__card-tag,
  .works__card-link .works__card-tag::before,
  .works__card-link .works__card-tag::after {
    transition: background-color 0.3s ease-out;
  }
  .works__card-link .works__card-tag-icon {
    transition: background-color 0.3s ease-out;
  }
  .works__card-link .works__card-tag-text {
    transition: color 0.3s ease-out;
  }
  .works__card-link:hover .works__card-tag,
  .works__card-link:hover .works__card-tag::after {
    background-color: #000000;
  }
  .works__card-link:hover .works__card-tag::before {
    background-color: #ffffff;
  }
  .works__card-link:hover .works__card-tag-icon {
    background-color: #ffffff;
  }
  .works__card-link:hover .works__card-tag-text {
    color: #ffffff;
  }
}
.works__catchcopy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .works__catchcopy {
    margin-top: 1.875rem;
    align-items: flex-start;
  }
}

.works__catchcopy-line {
  padding-block: 0.0625rem 0.1875rem;
  padding-inline: 0.0625rem;
  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: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #000000;
  background-color: #ffffff;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .works__catchcopy-line {
    font-size: max(0.875rem, 12px);
  }
}

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

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

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

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

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

/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 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;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 | ここから ---------- */
/* 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;
  }
}

/* ---------- 表示・非表示 | ここまで ---------- */
/* ---------- 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;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
}

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