@charset "UTF-8";
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #000;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: super;
  font-size: 0.6em;
  line-height: 0;
}

sub {
  vertical-align: sub;
  font-size: 0.6em;
  line-height: 0;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  display: block;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* base */
/* px → rem */
/* ==========================
  Responsive Clamp Function
  （固定＋特例custom）
========================== */
/* --------------------------
  Project Default Viewport
-------------------------- */
/* --------------------------
  通常版：基本はこれだけ使う
  rclamp(16, 24)
-------------------------- */
/* --------------------------
  特例版：ここだけviewport変えたい時用
  rclamp-custom(24, 64, 600, 1600)
-------------------------- */
/* Safari対策 */
* {
  min-height: 0;
}

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #222020;
  line-height: 1.4;
  background: #fcfcfc;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.6;
  }
}

body.is-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

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

.l-inner {
  max-width: 1240px;
  width: 90%;
  margin-inline: auto;
}

.l-inner840 {
  max-width: 840px;
  width: 90%;
  margin-inline: auto;
}

.l-inner1050 {
  max-width: 1050px;
  width: 90%;
  margin-inline: auto;
}

.l-inner1040 {
  max-width: 1040px;
  width: 90%;
  margin-inline: auto;
}

.l-inner880 {
  max-width: 880px;
  width: 90%;
  margin-inline: auto;
}

.l-inner1340 {
  max-width: 1340px;
  width: 90%;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .l-inner1340--about-company {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .l-inner1340--environmental {
    width: 100%;
  }
}

.l-inner760 {
  max-width: 760px;
  width: 90%;
  margin-left: 5%;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: clamp(2.5rem, -7.1428571429rem + 10.7142857143vw, 6.25rem);
  height: 120px;
  background: var(---, #fcfcfc);
}
@media screen and (max-width: 1000px) {
  .header {
    padding-left: 20px;
  }
}
@media (max-width: 900px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: 290px;
  width: clamp(11.25rem, -0.2083333333rem + 20.3703703704vw, 18.125rem);
}

.header__nav-wrapper {
  height: 100%;
  display: flex;
  gap: clamp(1.25rem, -0.8333333333rem + 3.7037037037vw, 2.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .header__nav-wrapper {
    display: none;
  }
}

.header__nav-center {
  display: flex;
  flex-direction: column;
}

/* 上段 */
.header__top {
  display: flex;
  justify-content: flex-end;
}

.header__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header__tel-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__tel-label {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
}

.header__tel {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.header__tel-note {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  align-self: flex-end;
  margin-bottom: 0.8em;
  margin-left: -4px;
}

.header__time {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.8;
}

.header__nav {
  margin-top: 10px;
}

.header__nav-list {
  display: flex;
  gap: clamp(0.625rem, -0.4166666667rem + 1.8518518519vw, 1.25rem);
}

.header__nav-trigger {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
  padding-bottom: 12px;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.48px;
}

/* 矢印 */
.header__nav-arrow-icon {
  transition: transform 0.3s;
}

/* 下線 */
.header__nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #b92020;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.header__nav-item:hover .header__nav-trigger {
  color: #b92020;
}

.header__nav-link {
  position: relative;
  padding-bottom: 12px;
  transition: color 0.3s;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #b92020;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

/* 色変更 */
.header__nav-link:hover {
  color: #b92020;
}

/* 下線アニメーション */
.header__nav-link:hover::after {
  transform: scaleX(1);
}

.header__nav-item:hover .header__nav-arrow-icon {
  transform: rotate(180deg);
}

.header__nav-item:hover .header__nav-trigger::after {
  transform: scaleX(1);
}

/* 右エリア */
.header__nav-right {
  display: flex;
  height: 100%;
}

/* CTA共通 */
.header__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: clamp(6.875rem, 1.6666666667rem + 9.2592592593vw, 10rem);
  padding: 18px 10px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 500;
}

.header__cta--contact {
  background: #222020;
}

.header__cta--recruit {
  background: #b92020;
  transition: background 0.3s ease;
}

.header__cta--recruit:hover {
  background: #941a1a;
}

.header__cta-icon {
  display: block;
  width: auto;
  height: 40px;
}

.header__cta-text {
  display: block;
}

.mega-menu {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #f2f2f2;
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.header__nav-item--has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* hover中だけ操作可能 */
  pointer-events: auto;
}

.mega-menu__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: clamp(4.375rem, 1.25rem + 5.5555555556vw, 6.25rem);
}

.mega-menu__inner1240 {
  max-width: 1240px;
}

.mega-menu__heading {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.84px;
}

.mega-menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex: 1;
}

.mega-menu__item {
  list-style: none;
}

.mega-menu__link {
  display: block;
  text-decoration: none;
}

.mega-menu__link:hover {
  color: #b92020;
}

.mega-menu__link--green:hover {
  color: #53b920;
}

.mega-menu__img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

.mega-menu__title {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  position: relative;
  padding-left: 12px;
}

.mega-menu__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em; /* ← ココを調整 */
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.mega-menu__title--green::before {
  background: #53b920;
}

.mega-menu__content {
  display: flex;
  gap: clamp(1.25rem, -9.1666666667rem + 18.5185185185vw, 7.5rem);
}

.mega-menu__inner1240 .mega-menu__content {
  flex: 1;
  min-width: 0;
}

.mega-menu__office-list {
  display: grid;
  gap: 8px;
}

.mega-menu__office-link {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  font-size: clamp(0.875rem, 0.6666666667rem + 0.3703703704vw, 1rem);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.mega-menu__office-link:hover {
  color: #b92020;
}

.mega-menu__office-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.mega-menu__list-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mega-menu__list-area--related {
  grid-template-columns: 1fr;
}

.mega-menu__list-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mega-menu__list-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu__sub-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.48px;
}

.mega-menu__sub-list li {
  font-size: clamp(0.875rem, 0.6666666667rem + 0.3703703704vw, 1rem);
  position: relative;
  padding-left: 12px;
  color: #777;
}

.mega-menu__sub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em; /* ← ココを調整 */
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.mega-menu__sub-list li + li {
  margin-top: 8px;
}

.mega-menu__sub-list--related {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu__sub-list--related li + li {
  margin-top: 0;
}

.mega-menu__sub-list li a {
  display: flex;
  align-items: center;
  gap: 3px;
}

.header__overlay {
  z-index: 99; /* headerより下 */
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer__wrapper {
  position: fixed;
  z-index: 105;
  background: var(---, #b92020);
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}
@media screen and (min-width: 901px) {
  .drawer__wrapper {
    display: none;
  }
}

.drawer__icon {
  position: relative;
  z-index: 110;
  top: 22px;
  right: -16px;
  color: #fff;
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 901px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 8px;
  background: #fff;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7px;
  background: #fff;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 60px;
  right: 0;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  overflow-y: auto;
  translate: 101%;
  transition: translate 0.3s ease;
  background: var(---, #fcfcfc);
}
.drawer.js-show {
  translate: 0;
}

.drawer__item {
  padding-inline: 20px;
}

/* ボタン */
.drawer__toggle {
  width: 100%;
  padding-block: 18px;
  text-align: left;
  background: none;
  border: none;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: var(---, #222020);
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.48px;
  border-bottom: 1px solid #cecece;
}

/* ＋アイコン */
.drawer__toggle::before,
.drawer__toggle::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #222020;
  transform: translateY(-50%);
}

/* 縦線（＋） */
.drawer__toggle::after {
  transform: translateY(-50%) rotate(90deg);
}

/* 開いたとき → ー */
.drawer__item.is-open .drawer__toggle::after {
  display: none;
}

.drawer__item.is-open .drawer__toggle {
  border-bottom: none;
}

/* サブメニュー */
.drawer__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(---, #f2f2f2);
  margin-inline: -20px;
  padding-inline: 20px;
}

.drawer__sub li {
  padding: 12px 20px;
  color: var(---, #777);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4; /* 19.6px */
  letter-spacing: 0.42px;
  position: relative;
}

.drawer__sub li a {
  transition: color 0.3s ease;
}

.drawer__sub li a:hover {
  color: #b92020;
}

.drawer__sub li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.drawer__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 12px;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #cecece;
  font-size: 1rem;
  font-weight: 500;
  color: var(---, #222020);
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.48px;
}

/* 矢印 */
.drawer__arrow {
  position: relative;
  width: 34px;
  height: 34px;
  margin-right: 6px;
}

/* ＞ */
.drawer__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  background: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* 丸（最初は透明＆縮小） */
.drawer__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #c00;
  border-radius: 50%;
  transform: scale(0.6); /* ←これ追加 */
  opacity: 0;
  transition: all 0.3s ease;
}

.drawer__link:hover .drawer__arrow::after {
  transform: scale(1); /* ←hoverも同じ */
  opacity: 1;
}

/* 見出し */
.drawer__sub-title {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid var(---, #dbdbdb);
  padding-top: 12px;
}

/* リスト */
.drawer__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 2カラム */
.drawer__sub-list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* 各項目 */
.drawer__sub-list li {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  color: #777;
  padding-block: 10px;
}

/* 赤ドット */
.drawer__sub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4em;
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.drawer__sub-title-link {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 8px;
  padding-top: 12px;
  padding-left: 14px;
  position: relative;
  display: block;
}

.drawer__sub-title-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4em;
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.drawer__sub li.is-dragorex::before {
  background: #53b920; /* 好きなグリーンに調整OK */
}

.drawer__sub li.is-dragorex a:hover {
  color: #53b920;
}

.drawer__sub-list li a {
  display: flex;
}

.drawer__sub-btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.drawer__sub-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s;
}
.drawer__sub-btn--recruit {
  background: var(---, #b92020);
}
.drawer__sub-btn--recruit:hover {
  background: #941a1a;
}
.drawer__sub-btn--contact {
  background: var(---, #222020);
}

.drawer__sub-btn-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer__sub-btn-icon {
  width: 30px;
  height: 24px;
}

.drawer__sub-btn-text {
  font-size: 1.0625rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4; /* 23.8px */
  letter-spacing: 0.34px;
  font-weight: 600;
  margin-right: 20px;
}

.drawer__sub-btn-arrow {
  position: absolute;
  right: 20px;
}

.drawer__sub-title-link {
  transition: color 0.3s ease;
}
.drawer__sub-title-link:hover {
  color: #b92020;
}

.btn {
  border-radius: 4px;
  background: var(---, #222020);
  width: 280px;
  height: 72px;
  padding: 0 20px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .btn {
    height: 68px;
    width: 100%;
    max-width: 350px;
  }
}

.btn__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
}

.btn__icon {
  position: absolute; /* ←変更 */
  left: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* 矢印 */
.btn__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn__link-arrow {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  position: relative;
  align-self: end;
  white-space: nowrap;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn__link-arrow {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.0625rem;
    letter-spacing: 0.34px;
    line-height: 1.4;
    gap: 8px;
  }
}

.btn__link-arrow:hover {
  color: #b92020;
}

.btn__link-arrow:after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../img/icon/icon_arrow-red.svg") no-repeat center/contain;
}

.btn__link-arrow--green {
  position: relative;
}

.btn__link-arrow--green:after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../img/icon/icon_arrow-green.svg") no-repeat center/contain;
}

.btn__link-arrow--green:hover {
  color: #53B920;
}

.areas__card-content .btn__link-arrow {
  color: #222020;
  margin-left: auto;
}

.btn__cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  transition: color 0.3s ease;
}

/* 矢印 */
.btn__cta-link::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../img/icon/icon_arrow-green.svg") no-repeat center/contain;
}

.btn__link-red {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  padding-inline: 40px;
  height: 70px;
  border-radius: 4px;
  background: var(---, #b92020);
  transition: all 0.3s ease;
}

.btn__link-red:hover {
  background: #941a1a;
}

.btn__link-green {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  padding-inline: 40px;
  height: 70px;
  border-radius: 4px;
  background: #53b920;
  transition: all 0.3s ease;
  width: 82%;
  max-width: 450px;
}
.btn__link-green .icon__arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../img/icon/icon_arrow-white.svg") no-repeat center/contain;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn__link-green {
    width: 100%;
    padding-inline: 20px;
  }
}

.btn__link-green:hover {
  background: #42941a;
}

.btn__link-green.cta-dragorex__btn--secondary {
  border: 1px solid #fff;
  background: rgba(34, 32, 32, 0.8);
  transition: all 0.3s ease;
}
.btn__link-green.cta-dragorex__btn--secondary:hover {
  border: 1px solid #42941a;
  background: #42941a;
  opacity: 1;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .section-title {
    white-space: normal;
  }
}

.section-title--center {
  align-items: center;
}

.section-title__en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #b92020;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    letter-spacing: -0.36px;
  }
}

.section-title__ja {
  font-size: clamp(2rem, 1.735915493rem + 1.1267605634vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4; /* 61.6px */
  letter-spacing: 1.32px;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    letter-spacing: 0.96px;
  }
}

.section-title--white {
  color: #fff;
}
.section-title--white .section-title__en {
  color: #fff;
}

.section-title--green .section-title__en {
  color: var(---, #53b920);
}

.section-title--contact {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-title--contact {
    text-align: center;
  }
}
.section-title--contact .section-title__en {
  color: #fff;
}

.section-title__wrapper {
  display: flex;
  gap: 100px;
  align-items: flex-end; /* ←これが本命 */
}
@media screen and (max-width: 767px) {
  .section-title__wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.section-title--eco {
  white-space: wrap;
}

.subtitle {
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
  padding-left: 20px;
  border-left: 6px solid var(---, #b92020);
}

.subtitle__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .subtitle__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.subtitle__logo {
  width: 44px;
  height: auto;
}

.subtitle__text {
  display: flex;
  flex-direction: column;
}

.subtitle__main {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
}
@media screen and (max-width: 767px) {
  .subtitle__main {
    flex-direction: column;
    align-items: flex-start;
  }
}

.subtitle__sub {
  color: var(---, #777);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  padding-left: 47px;
}
@media screen and (max-width: 767px) {
  .subtitle__sub {
    padding-left: 0;
  }
}

.subtitle__flag {
  width: 120px;
  height: auto;
}

.subtitle__ja {
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
}

.subtitle__en {
  color: var(---, #777);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2; /* 24px */
  letter-spacing: -0.4px;
}

.footer {
  background: var(---, #dbdbdb);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  padding-block: 80px 40px;
}
@media screen and (max-width: 767px) {
  .footer__content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.footer__right {
  padding-right: 40px;
  border-right: 1px solid var(---, #777);
}
@media screen and (max-width: 767px) {
  .footer__right {
    padding-right: 0;
    border-right: none;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  width: 252px;
  display: block;
}

.footer__address {
  color: var(---, #777);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}

.footer__map iframe {
  width: 100%;
  height: auto;
}

.footer__Instagram {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon_Instagram {
  width: 29px;
}

.icon_link-share {
  width: 14px;
}

.footer__left {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .footer__left {
    padding-left: 0;
  }
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1200px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__block-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  margin-bottom: 8px;
}

.footer__locations {
  margin-top: 20px;
}

.footer__locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 1080px) {
  .footer__locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .footer__locations-grid {
    gap: 8px;
  }
}

.footer__locations .location-name {
  font-size: 1rem;
  letter-spacing: 0.48px;
  font-weight: 700;
  text-align: center;
}
.footer__locations .location-name span {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .footer__locations .location-name {
    font-size: 0.875rem;
  }
  .footer__locations .location-name span {
    font-size: 0.625rem;
  }
}
.footer__locations .location {
  border-radius: 8px;
  border: 1px solid var(---, #777);
}
@media screen and (max-width: 767px) {
  .footer__locations .location {
    padding: 8px 0;
  }
}
.footer__locations .location-tel {
  text-align: center;
  font-size: clamp(1.125rem, 0.4127043091rem + 1.485884101vw, 1.75rem);
}
@media screen and (max-width: 767px) {
  .footer__locations .location-tel {
    font-size: 1.25rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .footer__locations .location-note {
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
  }
}

.footer__bottom {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #ececec;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    border-radius: 4px;
    grid-template-columns: 1fr;
  }
}

.footer__bottom-title {
  color: var(---, #222020);
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer__bottom-title {
    line-height: 1.4;
  }
}

.footer__bottom-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .footer__bottom-list {
    gap: 10px;
  }
}

.footer__bottom-item a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.footer__bottom-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.logo_SNW {
  width: 200px;
  margin-left: 10px;
}

.logo_SANWA {
  width: 241px;
}
@media (min-width: 768px) {
  .logo_SANWA {
    width: 340px;
  }
}

.logo_fuyo {
  width: 246px;
}

.logo_ginan {
  width: 177px;
}

.logo_ozawa {
  width: 210px;
}

.footer__copyright {
  padding-block: 20px;
  background: var(---, #b92020);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.42px;
}
.footer__copyright .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright .l-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.footer__copyright-nav {
  display: flex;
  gap: 20px;
}

.footer__copyright-nav li + li {
  position: relative;
  padding-left: 20px;
}

.footer__copyright-nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #fff;
}

.nav-link {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  position: relative;
  padding-left: 12px;
  color: #777;
  letter-spacing: 0.48px;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b92020;
}

.nav-link--green:hover {
  color: #53b920;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em; /* ← ココを調整 */
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}

.nav-link--green::before {
  background: #53b920;
}

.nav-link:hover {
  opacity: 0.7;
}

.sitemap__list .nav-link {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  position: relative;
  margin-top: 0;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .sitemap__list .nav-link {
    letter-spacing: 0.36px;
  }
}
.sitemap__list .nav-link__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.sitemap__list .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em; /* ← ココを調整 */
  width: 6px;
  height: 3px;
  background: #b92020;
  border-radius: 50%;
}
.sitemap__list .nav-link--green::before {
  background: #53b920;
}

.page__kv {
  margin-top: 210px;
}
@media screen and (max-width: 767px) {
  .page__kv {
    margin-top: 200px;
  }
}

.page__kv-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .page__kv-title {
    gap: 0;
  }
}

.page__kv-title-en {
  color: var(---, #777);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 1.2059859155rem + 0.1877934272vw, 1.375rem);
  font-weight: 600;
  line-height: 1.2; /* 26.4px */
  letter-spacing: -0.44px;
}
@media screen and (max-width: 767px) {
  .page__kv-title-en {
    letter-spacing: -0.4px;
  }
}

.page__kv-title-ja {
  font-size: clamp(2.375rem, 2.0669014085rem + 1.3145539906vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 1.56px;
}
@media screen and (max-width: 767px) {
  .page__kv-title-ja {
    letter-spacing: 1.14px;
  }
}

.page__section {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .page__section {
    padding-bottom: 80px;
  }
}

.page__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page__heading-en {
  color: var(---, #777);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 1.2059859155rem + 0.1877934272vw, 1.375rem);
  font-weight: 600;
  line-height: 1.2; /* 26.4px */
  letter-spacing: -0.44px;
}
@media screen and (max-width: 767px) {
  .page__heading-en {
    letter-spacing: -0.4px;
  }
}

.page__heading-ja {
  font-size: clamp(2.375rem, 2.0669014085rem + 1.3145539906vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 1.56px;
}
@media screen and (max-width: 767px) {
  .page__heading-ja {
    letter-spacing: 1.14px;
  }
}

.page__body {
  margin-top: 127px;
  background: var(---, #f2f2f2);
  padding: 40px 80px;
}
@media screen and (max-width: 767px) {
  .page__body {
    margin-top: 56px;
    padding: 20px 16px;
  }
}

.page__body-text {
  color: var(---Black, #222);
  text-align: center;
  font-size: 1rem;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 767px) {
  .page__body-text {
    text-align: left;
  }
}

.page-policy {
  margin-top: 127px;
  color: var(---Black, #222);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 767px) {
  .page-policy {
    margin-top: 56px;
  }
}

.page-policy__section {
  margin-top: 20px;
}

.page-policy__contact {
  margin-top: 20px;
  color: #fa11f2;
}

.grid__column2 {
  display: grid;
  row-gap: clamp(1.25rem, -1.6071428571rem + 5.9523809524vw, 3.75rem);
  -moz-column-gap: clamp(1.25rem, -3.0357142857rem + 8.9285714286vw, 5rem);
       column-gap: clamp(1.25rem, -3.0357142857rem + 8.9285714286vw, 5rem);
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .grid__column2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .grid__column2--reverse > :nth-child(1) {
    order: 2;
  }
  .grid__column2--reverse > :nth-child(2) {
    order: 1;
  }
}

.grid__column2--number {
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .grid__column2--number {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .grid__column2--message {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .grid__column2--message-info {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media screen and (max-width: 767px) {
  .grid__column2--sals-office {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.grid__column2--use {
  display: grid;
  gap: clamp(2.5rem, -0.3571428571rem + 5.9523809524vw, 5rem);
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .grid__column2--use {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.grid__column2--center {
  align-items: center;
}

.grid__column2--center .faq__card {
  grid-column: 1/-1;
  justify-self: center;
}

.grid__column2--stretch {
  align-items: stretch;
}

.grid__column2--dragorex-product {
  gap: 0;
  align-items: stretch;
}

.grid__column2--cta-quote {
  gap: 0;
  align-items: stretch;
}

.grid__column2-sub {
  display: grid;
  gap: clamp(1.25rem, -1.6071428571rem + 5.9523809524vw, 3.75rem);
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .grid__column2-sub {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media screen and (max-width: 767px) {
  .grid__column2--steel-plate-sub {
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .grid__column2--rlogistics {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.grid__column3 {
  display: grid;
  gap: clamp(1.25rem, 0.3952451709rem + 1.7830609212vw, 2rem);
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .grid__column3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.grid__column3--60 {
  display: grid;
  gap: clamp(1.875rem, -0.2678571429rem + 4.4642857143vw, 3.75rem);
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .grid__column3--60 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.grid__column3--group-companies {
  gap: 40px;
}
@media (max-width: 900px) {
  .grid__column3--group-companies {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.grid__column3--our-strengths {
  gap: 60px;
}

.grid__feature-card {
  gap: clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem);
}

.grid__column4 {
  display: grid;
  gap: clamp(0.75rem, 0.1338028169rem + 2.6291079812vw, 2.5rem);
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .grid__column4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid__card .u-text400 {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .grid__card .u-text400 {
    padding-left: 0;
  }
}

.grid__card .heading-line-red span {
  color: var(---, #b92020);
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2; /* 24px */
  letter-spacing: -0.4px;
  margin-top: 5px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .grid__card .heading-line-red span {
    margin-top: 3px;
  }
}

.data-list {
  margin-top: 60px;
}

.data-list__item {
  display: flex;
  border-top: 1px solid var(---, #dbdbdb);
  padding: 24px 20px;
}
@media screen and (max-width: 767px) {
  .data-list__item {
    flex-direction: column;
    gap: 8px;
    padding: 20px;
  }
}

.data-list__item:last-child {
  border-bottom: 1px solid #dbdbdb;
}

.data-list__item--history {
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .data-list__item--history {
    padding: 20px 16px;
  }
}

.data-list__label {
  color: var(---, #b92020);
  font-size: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
  white-space: nowrap;
  width: 240px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .data-list__label {
    width: 100%;
  }
}

.data-list__label--company-data {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  color: var(---, #222020);
}

.data-list__title {
  color: var(---, #1A1A1A);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  margin-bottom: 8px;
}

.media-links {
  padding-block: 100px;
  background: url(".././img/common/bg_media-links.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .media-links {
    padding-block: 80px;
  }
}

.media-links__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .media-links__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.media-links__item {
  position: relative;
  display: block;
  overflow: hidden;
}

.media-links__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.media-links__title {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: clamp(1.125rem, 0.4127043091rem + 1.485884101vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.84px;
  background: rgba(34, 32, 32, 0.8);
  padding: 8px 20px 8px 24px;
}
@media screen and (max-width: 767px) {
  .media-links__title {
    padding: 8px 12px 8px 16px;
    color: var(--ffffff, #FFF);
    letter-spacing: 0.66px;
    font-size: 1.375rem;
  }
}

.media-links__btn {
  position: absolute;
  right: 20px;
  bottom: 14px;
  color: #fff;
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .media-links__btn {
    gap: 8px;
  }
}

.media-links__item:hover .media-links__btn {
  color: #b92020;
}

/* 矢印 */
.media-links__btn::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url("../img/icon/icon_arrow-red.svg") no-repeat center/contain;
}

/* ホバー */
.media-links__item:hover img {
  transform: scale(1.05);
}

.news__content {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .news__content {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

.news__heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.news__links-btn {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.news__links-btn::after {
  content: "";
  width: 34px;
  height: 34px;
  background: url("../img/icon/icon_arrow-red.svg") no-repeat center/contain;
}

.news__links-btn:hover {
  color: #b92020;
}

.news__link {
  display: grid;
  grid-template-columns: 95px 90px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(---, #dbdbdb);
  transition: border-color 0.3s ease;
  position: relative;
}

.news__link:hover {
  border-bottom: 1px solid var(---, #777);
}

.news__date {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.36px;
  min-width: 90px;
}

.news__category {
  font-size: 1rem;
  border-radius: 2px;
  background: var(---, #222020);
  color: #fff;
  padding: 5px 10px 2px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.news__text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  padding-right: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0; /* ←これ超重要！！ */
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__text {
    width: 100%;
  }
}

/* 矢印 */
.news__text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../img/icon/icon_arrow.svg") no-repeat center/24px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.news__link:hover .news__text::after {
  border-color: #b92020;
  background-color: #fff;
}

.news__links-btn--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .news__links-btn--pc {
    display: none;
  }
  .news__links-btn--sp {
    display: inline-flex;
  }
  .news__footer {
    margin-top: 40px;
    text-align: right;
  }
  .news__link {
    grid-template-columns: 95px 1fr;
    grid-template-areas: "date category" "text text";
    gap: 10px 20px;
  }
  .news__list {
    margin-top: 40px;
  }
  .news__date {
    grid-area: date;
  }
  .news__category {
    grid-area: category;
    justify-self: start;
    width: -moz-fit-content;
    width: fit-content;
  }
  .news__text {
    grid-area: text;
  }
}
.scroll-wrapper {
  overflow: hidden;
}

.scroll__track {
  display: flex;
  gap: 20px;
  animation: scroll 50s linear infinite;
  width: -moz-max-content;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll__image {
  width: 340px;
  height: 340px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .scroll__image {
    width: 300px;
    height: 300px;
  }
}
.scroll__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.scroll__text-track {
  display: flex;
  gap: 80px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.scroll__text-item {
  color: var(---, #f2f2f2);
  font-family: "Poppins", sans-serif;
  font-size: clamp(4rem, 1.8873239437rem + 9.014084507vw, 10rem);
  line-height: 1.2; /* 192px */
  letter-spacing: -3.2px;
}
@media screen and (max-width: 767px) {
  .scroll__text-item {
    letter-spacing: -1.28px;
  }
}

.scroll__text-item--white {
  color: #fff;
}

.scroll-wrapper__work {
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .scroll-wrapper__work {
    display: none;
  }
}

.cta-contact {
  background: url(".././img/top/bg_cta-contact.webp") no-repeat center/cover;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .cta-contact {
    padding-block: 60px;
  }
}

.cta-contact__content {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .cta-contact__content {
    margin-top: 20px;
  }
}

.cta-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cta-contact__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cta-contact__item {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cta-contact__item {
    border-radius: 8px;
  }
}

.cta-contact__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 80%;
  background: #ddd;
  transform: translateY(-50%);
}

.cta-contact__icon img {
  width: 90px;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cta-contact__icon img {
    width: 67px;
    margin-bottom: 0px;
  }
}

.cta-contact__label {
  font-size: clamp(1rem, 0.8575408618rem + 0.2971768202vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .cta-contact__label {
    font-size: 1.125rem;
  }
}

.cta-contact__tel-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cta-contact__tel-wrapper span {
  font-size: 1.125rem;
  font-weight: 400;
}

.cta-contact__tel {
  color: var(---, #b92020);
  font-size: clamp(1.375rem, 0.6627043091rem + 1.485884101vw, 2rem);
}
@media screen and (max-width: 767px) {
  .cta-contact__tel {
    font-size: 2rem;
  }
}

/* 注釈 */
.cta-contact__note {
  font-size: clamp(0.8125rem, 0.5988112927rem + 0.4457652303vw, 1rem);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .cta-contact__note {
    font-size: 1rem;
  }
}

/* ボタン */
.cta-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.0625rem, 0.9912704309rem + 0.1485884101vw, 1.125rem);
  border-radius: 4px;
  background: var(---, #b92020);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cta-contact__btn {
    font-size: 1.125rem;
    margin-top: 12px;
  }
}

.cta-contact__btn:hover {
  color: #fff;
  background: #941a1a;
}

/* 枠ボタン */
.cta-contact__btn--outline {
  background: transparent;
  color: #b92020;
  border-radius: 4px;
  border: 1px solid var(---, #b92020);
  transition: all 0.3s ease;
}

.cta-contact__btn--outline:hover {
  color: #fff;
  background: #941a1a;
  border-color: #941a1a;
}

.cta-contact__arrow {
  width: 34px;
  height: 34px;
}

.cta-contact__arrow {
  transition: all 0.3s ease;
}

.cta-contact__btn:hover .cta-contact__arrow {
  content: url("../img/icon/icon_arrow-white.svg");
}

.breadcrumb {
  color: rgba(102, 102, 102, 0.6);
  padding-block: 16px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-block: 8px;
  }
}
.breadcrumb a,
.breadcrumb span {
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  line-height: 1.8;
  letter-spacing: 0.42px;
  margin-inline: 3px;
}
.breadcrumb a {
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb--type2 {
  border-bottom: none;
}

.section-heading__title {
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
}
.section-heading__title span {
  color: var(---, #b92020);
}

.heading-lead {
  padding-block: 80px;
  background: url(".././img/common/bg_media-links.webp") no-repeat top/cover;
}
@media screen and (max-width: 767px) {
  .heading-lead {
    padding-block: 60px;
  }
}
.heading-lead p {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}

.heading-lead .heading-lead__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.36px;
}
.heading-lead .heading-lead__text span {
  font-size: 1.125rem;
  font-weight: 600;
}

.checklist__item {
  position: relative;
  padding-left: 36px; /* アイコン分の余白 */
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  padding-block: 12px;
  border-bottom: 1px solid var(---, #dbdbdb);
}
@media screen and (max-width: 767px) {
  .checklist__item {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.4;
    letter-spacing: 0.34px;
  }
}

.checklist__item::before {
  content: "";
  position: absolute;
  top: 0.7em; /* 上揃え */
  left: 0;
  width: 32px;
  height: 32px;
  background: url("../img/icon/icon_check.svg") no-repeat center/contain;
}

.checklist__item--why {
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
  font-size: clamp(1.125rem, 1.0589788732rem + 0.2816901408vw, 1.3125rem);
}
.checklist__item--why span {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .checklist__item--why {
    letter-spacing: 0.36px;
  }
}

.our-strengths__content .checklist__item {
  position: relative;
  padding-left: 36px;
  font-weight: 600;
  line-height: 1.8;
  padding-block: 12px;
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  gap: 8px;
}
.our-strengths__content .checklist__main {
  color: var(---, #1a1a1a);
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  letter-spacing: 0.44px;
}
.our-strengths__content .checklist__line {
  width: 48px;
  height: 1px;
  background-color: #777;
  display: block;
}
.our-strengths__content .checklist__sub {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.48px;
}
@media (max-width: 834px) {
  .our-strengths__content .checklist__item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .our-strengths__content .checklist__main {
    width: 100%; /* 1行占有 */
  }
  .our-strengths__content .checklist__line {
    width: 28px; /* 固定 */
  }
  .our-strengths__content .checklist__sub {
    flex: 1; /* 残り幅 */
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.pagination .page-numbers {
  color: var(---, #777);
  font-family: "Poppins", sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.2; /* 31.2px */
  letter-spacing: -0.52px;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination a.page-numbers:hover {
  opacity: 0.6;
}

/* アクティブ（今のページ） */
.pagination .current {
  color: #B92020;
}

.pagination .prev,
.pagination .next {
  font-size: 0.875rem; /* 数字より少し小さく */
}

.news-sidebar {
  padding-left: 60px;
  border-left: 1px solid var(---, #dbdbdb);
}
@media screen and (max-width: 767px) {
  .news-sidebar {
    padding-left: 0;
    border-left: none;
  }
}

.news-sidebar__title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news-sidebar__title {
    text-align: left;
  }
}

.news-sidebar__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .news-sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.news-sidebar__list a {
  display: inline-block; /* ←重要 */
  color: #666;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 4px;
  border: 1px solid #777;
  background: #fff;
  padding: 4px 14px;
  width: 105px;
  text-decoration: none;
  transition: all 0.3s;
}

/* hover */
.news-sidebar__list a:hover {
  background: #777;
  border: #777;
  color: #fff;
}

/* active */
.news-sidebar__list li.is-active a {
  background: #222020;
  border: #222020;
  color: #fff;
}

.feature-card {
  padding: 40px 20px;
  border-radius: 4px;
  border: 1px solid var(---, #777);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .feature-card {
    padding: 20px;
    gap: 12px;
  }
}

.feature-card__icon img {
  max-width: 70px;
  height: 54px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .feature-card__icon img {
    max-width: 45px;
    height: 40px;
  }
}

.feature-card__icon01 img {
  width: 60px;
  height: 54px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .feature-card__icon01 img {
    max-width: 45px;
    height: 40px;
  }
}

.feature-card__title {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4; /* 39.2px */
  letter-spacing: 0.84px;
  display: grid;
  place-items: center; /* ←これ最強 */
  text-align: center;
}

.feature-card__text {
  width: 100%;
  color: var(---, #1a1a1a);
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}

.feature-card--eco {
  background: #fff;
  padding: 40px 20px;
  border-radius: 4px;
  border: 1px solid var(---, #777);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .feature-card--eco {
    padding: 20px;
    gap: 12px;
  }
}

.heading-line-red {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.84px;
  position: relative;
  padding-bottom: 10px;
  display: flex;
}

/* グレーの線 */
.heading-line-red::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #DBDBDB;
}

/* 赤い線 */
.heading-line-red::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: #b92020;
}

.heading-line-red img {
  width: 38px;
  height: 39px;
  display: block;
}

.categories .heading-line-red {
  align-items: center;
  gap: 8px;
}

.heading-line-green {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.84px;
  position: relative;
  padding-bottom: 10px;
  display: flex;
}
.heading-line-green .unm {
  color: var(---, #53b920);
  font-size: 1.25rem;
  margin-right: 8px;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .heading-line-green .unm {
    margin-top: 2px;
  }
}

.heading-line-green__text {
  color: var(---, #1a1a1a);
}
.heading-line-green__text span {
  color: var(---, #53b920);
}

.heading-line-green::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #dbdbdb;
}

.heading-line-green::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: #53b920;
}

.cta-banner__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .cta-banner__grid {
    grid-template-columns: 1fr;
  }
}

.cta-banner__content {
  background: url(".././img/common/bg_cta-banner.webp") no-repeat center/cover;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-banner__text {
  color: #fff;
  font-size: clamp(1rem, 0.5726225854rem + 0.8915304606vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .cta-banner__text {
    margin-bottom: 12px;
    font-size: 1.125rem;
  }
}

.cta-banner__image {
  height: 100%;
}

.cta-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cta-banner__grid:hover .btn__cta-link--green {
  color: #53b920;
}
.cta-banner__grid:hover .cta-banner__image img {
  transform: scale(1.05);
}

.cta-banner__image {
  overflow: hidden;
}
.cta-banner__image img {
  transition: transform 0.4s ease;
}

.cta-quote--pc .cta-quote__content {
  padding: 40px;
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta-quote--pc .cta-quote__content--left {
  background: url(".././img/common/bg_cta-quote01.webp") no-repeat center/cover;
}
.cta-quote--pc .cta-quote__content--right {
  background: url(".././img/common/bg_cta-quote02.webp") no-repeat center/cover;
}
.cta-quote--pc .cta-quote__text {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4; /* 39.2px */
  letter-spacing: 0.84px;
}
@media screen and (max-width: 767px) {
  .cta-quote--pc {
    display: none;
  }
}

.cta-quote--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .cta-quote--sp {
    display: block;
  }
}

.cta-quote--sp {
  background: url(".././img/common/bg_cta-quoteSP.jpg") no-repeat center/cover;
  padding-block: 80px;
}
.cta-quote--sp .cta-quote__content {
  width: 90%;
  margin-inline: auto;
  padding-top: 180px;
  background: url(".././img/common/bg_cta-quoteSP02.jpg") no-repeat center/cover;
}
.cta-quote--sp .cta-quote__bottom {
  background: rgba(185, 32, 32, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  padding: 20px 16px 28px 16px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-quote--sp .cta-quote__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 39.2px */
}

.cta-quote--equipment.cta-quote--pc .cta-quote__content--left {
  background: url(".././img/common/bg_cta-quote03.webp") no-repeat center/cover;
}
.cta-quote--equipment.cta-quote--pc .cta-quote__content--right {
  background: url(".././img/common/bg_cta-quote04.webp") no-repeat center/cover;
}
.cta-quote--equipment.cta-quote--sp .cta-quote__content {
  background: url(".././img/common/bg_cta-quoteSP03.webp") no-repeat center/cover;
}

.cta-quote__content--left::before,
.cta-quote__content--right::before {
  pointer-events: none;
}

.section {
  padding-block: 140px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 80px;
  }
}

.section100_140 {
  padding-top: 100px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .section100_140 {
    padding-block: 80px;
  }
}

.section140_0 {
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .section140_0 {
    padding-block: 80px;
  }
}

.section0_140 {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .section0_140 {
    padding-bottom: 80px;
  }
}

.section140_60 {
  padding-block: 140px 60px;
}
@media screen and (max-width: 767px) {
  .section140_60 {
    padding-block: 80px 40px;
  }
}

.section100 {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .section100 {
    padding-block: 60px;
  }
}

.section140_100 {
  padding-block: 140px 100px;
}
@media screen and (max-width: 767px) {
  .section140_100 {
    padding-block: 100px 80px;
  }
}

.section80_180 {
  padding-block: 80px 180px;
}
@media screen and (max-width: 767px) {
  .section80_180 {
    padding-block: 60px 100px;
  }
}

.section50_140 {
  padding-top: 50px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .section50_140 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section--strengths {
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .section--strengths {
    padding-top: 80px;
  }
}

.list__title {
  color: var(---, #1a1a1a);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .list {
    gap: 16px;
  }
}

.list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.8;
}

.item__main {
  color: var(---, #1a1a1a);
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  letter-spacing: 0.44px;
  font-weight: 600;
  white-space: nowrap;
}

.item__main--link {
  transition: opacity 0.3s ease;
}
.item__main--link:hover {
  opacity: 0.7;
}

.item__line {
  width: 48px;
  height: 1px;
  background-color: #777;
  display: block;
}

.item__sub {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.48px;
  min-width: 150px;
}

@media (max-width: 834px) {
  .list__item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .item__main {
    width: 100%; /* 1行占有 */
  }
  .item__line {
    width: 28px; /* 固定 */
    margin-left: 10px;
  }
  .item__sub {
    flex: 1; /* 残り幅 */
  }
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(---, #dbdbdb);
}

.location-name {
  color: var(---, #1a1a1a);
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.location-tel {
  color: var(---, #1a1a1a);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4; /* 39.2px */
}

.location-note {
  color: var(---, #777);
  font-size: 0.875rem;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
  text-align: center;
}

.service {
  padding-block: 140px 310px;
}
@media screen and (max-width: 767px) {
  .service {
    padding-block: 80px 230px;
  }
}

.service__links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__links-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .service__links-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service__link-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .service__link-images {
    grid-template-columns: 1fr;
  }
}

.service__link-image {
  position: relative;
}

.service__link {
  position: relative;
}

.service__link-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
}

.service__link-title--left {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10%;
}

.service__link-body--right {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  inset: 0;
}

.service__link-body {
  position: absolute;
  inset: 0;
  padding-top: 20%;
  padding-bottom: 10%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 70px;
  color: #fff;
  text-align: center;
}

/* タイトル */
.service__link-title {
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
}

.service__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  border: 1px solid #fff;
  padding-inline: 40px;
  border-radius: 4px;
  background: rgba(34, 32, 32, 0.8);
  height: 70px;
  position: relative;
  z-index: 20;
  transition: all 0.3s ease;
}

.service__link-btn:hover {
  background: #941a1a;
  border-color: #941a1a;
  color: #fff;
}

.service__link:hover .service__link-btn {
  background: #941a1a;
  border-color: #941a1a;
  color: #fff;
}

.service__link:hover .service__link-btn--green {
  background: #42941a;
  border-color: #42941a;
}

.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.about-list {
  margin-bottom: 20px;
}
.about-list li {
  margin-top: 20px;
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .about-list li {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-list {
    margin-bottom: 16px;
  }
}

.contect-tel__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 20px 40px;
  border-radius: 8px;
  border: 1px solid var(---, #dbdbdb);
}
.contect-tel__card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}
.contect-tel__card a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.download__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 600px;
  margin-inline: auto;
}

.download__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}
.download__card-body h3 {
  text-align: center;
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 767px) {
  .download__card-body h3 {
    letter-spacing: 0.66px;
    text-align: left;
  }
}

.download__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .download__card-list {
    grid-template-columns: 1fr;
  }
}

.download__card li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8;
}

.download__card li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.2em;
}

.download__card-download {
  text-align: center;
}

.download__card-download--dragorex {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .download__card-download--dragorex {
    margin-top: 20px;
  }
}

.download__btn {
  display: block;
  padding: 12px 16px;
  color: #b92020;
  border-radius: 4px;
  border: 1px solid var(---, #b92020);
  position: relative;
  transition: all 0.3s ease;
  max-width: 280px;
  margin-inline: auto;
}

.download__btn--dragorex {
  border: 1px solid var(---, #53b920);
  color: var(---, #53b920);
  max-width: 315px;
}

.download__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .download__btn-text {
    font-size: 1.0625rem;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.34px;
  }
}

.download__btn-arrow {
  display: block;
  margin: 12px auto 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #b92020;
  border-bottom: 2px solid #b92020;
  transform: rotate(45deg);
}

.download__btn-arrow--dragorex {
  border-right: 2px solid #53b920;
  border-bottom: 2px solid #53b920;
}

/* ホバー */
.download__btn:hover {
  background: #b92020;
  color: #fff;
}

.download__btn--dragorex:hover {
  background: #53b920;
  color: #fff;
}

.download__btn:hover .download__btn-arrow {
  border-color: #fff;
}

/* 下のテキスト */
.download__note {
  margin-top: 4px;
  color: var(---, #777);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7; /* 170% */
}

.download__card--DRAGOREX {
  display: none;
}

/* =========================
  フィールド
========================= */
.contact-form__field {
  margin-top: 20px;
  color: var(---, #1a1a1a);
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .contact-form__field {
    flex-direction: column;
    gap: 8px;
  }
}

.contact-form__field:first-of-type {
  margin-top: 40px;
}

/* =========================
  ラベル
========================= */
.contact-form__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  width: 300px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .contact-form__head {
    margin-bottom: 0;
    width: 100%;
  }
}

.contact-form__field .wpcf7-form-control-wrap {
  flex: 1;
  width: 100%;
}

.wpcf7-list-item-label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}

.contact-form__label {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.4; /* 23.8px */
    letter-spacing: 0.34px;
  }
}

.contact-form__required {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.42px;
  border-radius: 4px;
  background: var(---, #b92020);
  padding-inline: 8px;
}

/* =========================
  input / textarea
========================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 20px;
  border-radius: 4px;
  border: 1px solid var(---, #dbdbdb);
  background: var(---, #f2f2f2);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b92020;
  background: #fff;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

/* =========================
  ラジオボタン
========================= */
.contact-form__radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #777;
  border-radius: 50%;
  position: relative;
  padding: 0;
  background: var(---, #fcfcfc);
  flex-shrink: 0;
}

.contact-form__radio input[type=radio]:checked::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #b92020;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-form__radio input[type=radio]:checked {
  border: 1px solid #b92020;
}

.contact-form__radio .wpcf7-list-item {
  display: block;
  margin-bottom: 20px;
  margin-left: 0;
}

.contact-form__radio .wpcf7-list-item:last-child {
  margin-bottom: 0;
}

.contact-form__radio .wpcf7-list-item label {
  display: flex;
  gap: 8px;
}

/* =========================
  同意チェック
========================= */
.contact-agree {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-agree {
    margin-top: 20px;
  }
}

/* =========================
  チェックボックス全体
========================= */
.contact-agree label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item-label {
    text-align: left;
  }
}

.contact-agree__link {
  color: #007bff;
  text-decoration: none;
}
.contact-agree__link:hover {
  opacity: 0.7;
}

/* =========================
  チェックボックス本体
========================= */
.contact-agree input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #cacaca;
  border-radius: 3px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  padding: 0;
}

/* =========================
  チェック時（✓）
========================= */
.contact-agree input[type=checkbox]:checked::before {
  content: "✓";
  font-size: 0.875rem;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
}

/* =========================
  送信ボタン
========================= */
.contact-form__submit-button {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__submit-button {
    margin-top: 40px;
  }
}

.contact-form__submit-button input[type=submit] {
  padding-inline: 20px;
  width: 280px;
  height: 72px;
  border-radius: 4px;
  background: var(---, #222020);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact-form__submit-button input[type=submit] {
    height: 68px;
    font-size: 1.125rem;
    letter-spacing: 0.36px;
    width: 90%;
    max-width: 350px;
    margin-inline: auto;
  }
}

.contact-form__submit-button input[type=submit]:hover {
  background: #444;
}

.contact-form__text {
  color: var(---, #777);
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact-form__text {
    margin-top: 20px;
    text-align: left;
  }
}

/* =========================
  エラー
========================= */
.wpcf7-not-valid-tip {
  font-size: 0.875rem;
  color: #b92020;
  margin-top: 4px;
}

.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px;
  font-size: 0.875rem;
}

.wpcf7-spinner {
  display: none;
}

.latest-news__wrapper {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .latest-news__wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.single-news .latest-news__content {
  width: 100%;
}

.latest-news__content {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .latest-news__content {
    width: 100%;
  }
}

.latest-news__content .news__list {
  border-top: 1px solid #ddd;
}

.latest-news__sidebar {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .latest-news__sidebar {
    width: 100%;
  }
}

.news-detail {
  border-bottom: 1px solid var(---, #dbdbdb);
}

.news-detail__content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
  color: var(---, #1a1a1a);
}

.news-detail__meta {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-detail__date {
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  line-height: 1.4; /* 25.2px */
  letter-spacing: 0.36px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .news-detail__date {
    letter-spacing: 0.32px;
  }
}

.news-detail__category {
  color: #fff;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  border-radius: 4px;
  background: var(---, #1a1a1a);
  padding: 3px 10px;
}

/* 見出し */
.news-detail__title {
  font-size: clamp(1.75rem, 1.485915493rem + 1.1267605634vw, 2.5rem);
  font-weight: 600;
  line-height: 1.6; /* 64px */
  letter-spacing: 1.2px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(---, #f2f2f2);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news-detail__title {
    letter-spacing: 0.84px;
  }
}

.news-detail__content h2 {
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
  padding-left: 20px;
  border-left: 6px solid var(---, #b92020);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .news-detail__content h2 {
    letter-spacing: 0.78px;
    margin-bottom: 20px;
  }
}

.news-detail__content h3 {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4; /* 39.2px */
  letter-spacing: 0.84px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .news-detail__content h3 {
    letter-spacing: 0.66px;
  }
}

/* 段落 */
.news-detail__content p {
  margin-bottom: 20px;
}

/* 画像 */
.news-detail__content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* キャプション */
.news-detail__content figcaption {
  font-size: 0.875rem;
  color: #777;
  text-align: center;
  padding-bottom: 16px;
  font-weight: 500;
}

/* リスト */
.news-detail__content ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style: disc;
}

/* 引用 */
.news-detail__content blockquote {
  background: #f2f2f2;
  padding: 15px;
  margin: 20px 0;
  border-left: 3px solid #777;
}
.news-detail__content blockquote p {
  margin-bottom: 0;
  color: var(---, #777);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
}

.news-detail__content a {
  color: var(---, #0075ff);
}

.news-detail__content a:hover {
  opacity: 0.7;
}

.news-detail__attachments {
  margin-block: 40px;
  padding: 16px 20px;
  border: 1px solid var(---, #777);
  background: var(---, #f2f2f2);
}
.news-detail__attachments p {
  margin-bottom: 0;
  color: var(---, #777);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
}
@media screen and (max-width: 767px) {
  .news-detail__attachments p {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4; /* 23.8px */
    letter-spacing: 0.34px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__attachments {
    padding: 16px;
  }
}

.news-detail__content ul.news-detail__attachments-list {
  list-style: none;
  padding-left: 0;
  margin-block: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-detail__attachments-list li {
  position: relative;
  padding-left: 35px;
}
.news-detail__attachments-list li a {
  color: #777;
}

/* アイコン */
.news-detail__attachments-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 19px;
  height: 22px;
  background: url("../img/icon/icon-pdf.svg") no-repeat center/contain;
}

.news-detail__pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.news-detail__pager-prev,
.news-detail__pager-next {
  width: 30%;
}

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

.news-detail__pager-prev a,
.news-detail__pager-next a {
  text-decoration: none;
  color: #777;
  transition: color 0.3s ease;
}

.news-detail__pager-prev a:hover,
.news-detail__pager-next a:hover {
  color: #1a1a1a;
}

.news-detail__pager-prev span,
.news-detail__pager-next span {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .news-detail__pager-prev span,
  .news-detail__pager-next span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.4; /* 23.8px */
    letter-spacing: 0.34px;
  }
}

.news-detail__pager-prev p,
.news-detail__pager-next p {
  margin-top: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.42px;
}

@media screen and (max-width: 767px) {
  .news-detail__pager-prev p,
  .news-detail__pager-next p {
    display: none;
  }
}

.home .fv {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 900px) {
  .home .fv {
    margin-top: 60px;
  }
}
.home .fv__inner {
  display: flex;
  position: relative;
  height: 600px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .home .fv__inner {
    padding-bottom: 170px;
    height: 735px;
  }
}
.home .fv__scrolldown {
  padding-inline: 45px;
}
@media screen and (max-width: 767px) {
  .home .fv__scrolldown {
    padding-inline: 20px;
  }
}
.home .fv__scrolldown-text {
  position: absolute;
  left: 18px;
  bottom: 128px;
  rotate: 90deg;
  font-family: "Poppins", sans-serif;
  color: var(---, #777);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2; /* 14.4px */
  letter-spacing: -0.24px;
}
@media screen and (max-width: 767px) {
  .home .fv__scrolldown-text {
    left: 0;
    bottom: 268px;
  }
}
.home .fv__scrolldown-bar {
  width: 1px;
  height: 68px;
  background: #777;
  position: absolute;
  left: 39px;
  bottom: 28px;
}
@media screen and (max-width: 767px) {
  .home .fv__scrolldown-bar {
    left: 22px;
    bottom: 169px;
  }
}
.home .fv__scrolldown-bar-active {
  position: absolute;
  width: 3px;
  height: 8px;
  background: #b92020;
  left: 50%;
  transform: translateX(calc(-50% - 0.8px));
  animation: scrollDown 3s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: 0%;
  }
}
.home .fv__visual {
  position: relative;
  flex: 1;
}
.home .fv__video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .home .fv__video {
    padding-top: 135px;
  }
}
.home .fv__video--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .home .fv__video--pc {
    display: none;
  }
  .home .fv__video--sp {
    display: block;
  }
}
.home .fv__title {
  color: var(--Color-White, #fff);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
  font-size: clamp(5.25rem, 4.1071428571rem + 2.380952381vw, 6.25rem);
  font-weight: 900;
  line-height: 1.4; /* 140px */
  letter-spacing: 3px;
  position: absolute;
  top: 13%;
  left: 5%;
}
@media screen and (max-width: 767px) {
  .home .fv__title {
    text-shadow: none;
    color: var(---, #222020);
    letter-spacing: 1.2px;
    top: 12px;
    left: 0;
    font-size: 2.5rem;
  }
}
.home .fv__text {
  color: var(--Color-White, #fff);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
  font-size: 1.5rem;
  font-size: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  font-weight: 600;
  line-height: 1.8; /* 43.2px */
  letter-spacing: 0.72px;
  position: absolute;
  bottom: 10%;
  left: 5%;
}
@media (max-width: 1300px) {
  .home .fv__text {
    bottom: 28%;
  }
}
@media screen and (max-width: 767px) {
  .home .fv__text {
    font-size: 1.1875rem;
    letter-spacing: 0.57px;
    bottom: 50px;
  }
}
.home .fv__badge {
  position: absolute;
  right: 0;
  bottom: 50px;
  display: inline-flex;
  padding: 12px 40px 10px 20px;
  align-items: flex-start;
  gap: 20px;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
@media (max-width: 1300px) {
  .home .fv__badge {
    bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .home .fv__badge {
    left: 0;
    top: 570px;
    bottom: 0;
    padding: 12px 0;
  }
}
.home .fv__badge-logo {
  width: 73px;
  height: auto;
}
.home .fv__badge-text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.36px;
  margin-bottom: 12px;
}
.home .front-news {
  border-top: 1px solid var(---, #dbdbdb);
  border-bottom: 1px solid var(---, #dbdbdb);
  padding-block: 35px;
}
.home .front-news__content {
  display: flex;
  align-items: center;
}
.home .front-news__content h2 {
  color: var(---, #b92020);
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  padding-right: 37px;
}
.home .front-news__list {
  flex: 1;
  min-width: 0;
}
.home .news-links__item {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.home .news-links__item .news__date {
  color: var(---, #6e6e6e);
}
.home .news__links-btn {
  transition: color 0.3s ease;
}
.home .news-links__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .home .news-links__meta {
    gap: 8px;
  }
}
.home .front-news__text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  padding-right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .home .front-news__text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .home .front-news__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .home .front-news__content h2 {
    padding-right: 0;
  }
  .home .front-news__list {
    width: 100%;
  }
  .home .news-links__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .home .news__links-btn {
    margin-left: auto;
  }
}
.home .link-cards__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 1100px) {
  .home .link-cards__contents {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.home .link-card {
  position: relative;
}
@media (max-width: 1100px) {
  .home .link-card {
    max-width: 640px;
    margin-inline: auto;
  }
}
.home .link-card__link {
  position: relative;
  display: block;
  overflow: hidden;
}
.home .link-card__img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .home .link-card__img img {
    aspect-ratio: 335/220;
  }
}
.home .link-card__body {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  min-height: 96px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background: rgba(34, 34, 34, 0.8);
}
@media screen and (max-width: 767px) {
  .home .link-card__body {
    flex-direction: column;
    padding: 10px 20px;
  }
}
.home .link-card__title {
  color: #fff;
  font-size: clamp(1.25rem, 1.1839788732rem + 0.2816901408vw, 1.4375rem);
  font-weight: 600;
}
.home .link-card__link:hover .btn__link-arrow {
  color: #b92020;
}
.home .link-card__link:hover .btn__link-arrow--green {
  color: #53b920;
}
.home .about-company {
  padding-block: 80px 180px;
}
@media screen and (max-width: 767px) {
  .home .about-company {
    padding-block: 40px 80px;
  }
}
.home .about-company__wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-left: -5%;
}
@media screen and (max-width: 767px) {
  .home .about-company__wrapper {
    flex-direction: column-reverse;
    gap: 40px;
    margin-left: 0;
    overflow-x: hidden;
  }
}
.home .about-company__images {
  display: grid;
  gap: 20px;
  width: 56%;
}
@media screen and (max-width: 767px) {
  .home .about-company__images {
    display: none;
    width: 100%;
  }
}
.home {
  /* 上画像 */
}
.home .about-company__image-top img {
  width: 100%;
  height: auto;
  display: block;
}
.home {
  /* 下2枚 */
}
.home .about-company__image-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.home .about-company__image-bottom img {
  width: 100%;
  height: auto;
  display: block;
}
.home .about-company__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 44%;
}
@media screen and (max-width: 767px) {
  .home .about-company__content {
    width: 90%;
    margin-inline: auto;
  }
}
.home .about-company__list {
  list-style: none;
  padding: 0;
}
.home .about-company__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(---, #222020);
  padding: 20px 34px;
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.84px;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .home .about-company__link {
    padding: 17px 20px;
  }
}
.home .about-company__list li + li .about-company__link {
  margin-top: 20px;
}
.home .about-company__icon img {
  width: 34px;
  height: auto;
}
.home {
  /* PC */
}
.home .about-company__scroll {
  display: none;
}
@media screen and (max-width: 767px) {
  .home .about-company__images {
    display: none;
  }
  .home .about-company__scroll {
    display: block;
  }
}
.home .recruit {
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home .recruit {
    padding-bottom: 80px;
  }
}
.home .recruit__bg {
  width: 93%;
  position: relative;
  z-index: 1;
  translate: 0 -100px;
  height: 600px;
  position: sticky;
  top: 220px;
}
@media (max-width: 900px) {
  .home .recruit__bg {
    top: 160px;
  }
}
@media screen and (max-width: 767px) {
  .home .recruit__bg {
    height: 430px;
  }
}
.home .recruit__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.home .recruit__content {
  position: relative;
  z-index: 2;
  margin-top: -230px;
  padding-block: 60px;
  padding-inline: clamp(1.25rem, -0.1745913819rem + 2.9717682021vw, 2.5rem);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
}
@media screen and (max-width: 767px) {
  .home .recruit__content {
    margin-top: -140px;
  }
}
.number {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .number {
    padding-bottom: 40px;
  }
}

.number-bg {
  width: 93%;
  position: relative;
  z-index: 1;
}

.number-content {
  padding-block: 80px;
  padding-inline: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
  background: var(---, #fcfcfc);
  margin-top: -30%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .number-content {
    margin-top: -20%;
    padding-block: 80px 40px;
  }
}

.number-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .number-grid {
    gap: 20px;
  }
}

.number-item {
  border-radius: 4px;
  border: 1px solid var(---, #222020);
}

.number-item__label {
  border-radius: 0 0 4px 0;
  background: var(---, #222020);
  padding: 4px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .number-item__label {
    font-size: 0.875rem;
  }
}

.number-item__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-block: 20px;
}

.number-item__img-wrap {
  width: 80px;
  height: 90px;
}
@media (max-width: 1000px) {
  .number-item__img-wrap {
    width: 80px;
    height: 90px;
  }
}
.number-item__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.number-item__img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.number-item__num {
  font-size: clamp(1.875rem, -1.5440193165rem + 7.132243685vw, 4.875rem);
  font-weight: 500;
  color: #b92020;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .number-item__num {
    font-size: 3.75rem;
  }
}

.number-item__unit {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  color: #b92020;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 767px) {
  .number-item__unit {
    letter-spacing: 0.66px;
  }
}

.nunber__certification-content {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .nunber__certification-content {
    align-items: flex-start;
  }
}

.nunber__certification-content-logo {
  width: 73px;
}

.nunber__certification-content__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nunber__certification-content__body p {
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.nunber__certification-content__body .note {
  color: #000;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .nunber__certification-content__body .note {
    color: var(---, #1a1a1a);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8; /* 28.8px */
    letter-spacing: 0.48px;
  }
}
@media screen and (max-width: 767px) {
  .nunber__certification-content__body {
    align-items: flex-start;
    gap: 12px;
  }
}

.numner__sales-image {
  max-width: 880px;
  margin-inline: auto;
}

.numner__sales-note {
  max-width: 880px;
  margin-inline: auto;
  text-align: right;
}

.page-sdgs .environmental__grid {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, -3.0237741456rem + 8.9153046062vw, 5rem);
  margin-right: -5%;
}
@media screen and (max-width: 767px) {
  .page-sdgs .environmental__grid {
    flex-direction: column;
    gap: 40px;
    margin-right: 0;
  }
}
.page-sdgs .environmental__content {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .page-sdgs .environmental__content {
    width: 90%;
    margin-inline: auto;
  }
}
.page-sdgs .environmental__images {
  display: grid;
  gap: 20px;
  width: 56%;
}
@media screen and (max-width: 767px) {
  .page-sdgs .environmental__images {
    display: none;
  }
}
.page-sdgs .environmental__image-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.page-sdgs .environmental__scroll {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-sdgs .environmental__scroll {
    display: block;
    width: 100%;
    overflow: hidden;
  }
}
.page-sdgs .dragorex-product {
  background: url(".././img/sdgs/bg_dragorex.webp") no-repeat center/cover;
}
.page-sdgs .dragorex-product__grid {
  padding-block: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: url(".././img/dragorex/bg_cta-dragorex.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .page-sdgs .dragorex-product__grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-block: 180px 0;
    background: url(".././img/dragorex/bg_cta-dragorex-sp.webp") no-repeat top/cover;
  }
}
.page-sdgs .dragorex-product__card {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .page-sdgs .dragorex-product__card {
    padding: 20px 16px;
    background: rgba(83, 185, 32, 0.6);
    backdrop-filter: blur(3px);
  }
}
.page-sdgs .dragorex-product__card--left h3 {
  color: #fff;
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-sdgs .dragorex-product__card--left h3 {
    margin-bottom: 12px;
    letter-spacing: 0.78px;
  }
}
.page-sdgs .dragorex-product__card--right {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-sdgs .dragorex-product__card--right {
    margin-top: -1px;
  }
}
.page-sdgs .dragorex-product__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  border: 1px solid #fff;
  padding-inline: 40px;
  border-radius: 4px;
  background: rgba(34, 32, 32, 0.8);
  height: 70px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-sdgs .dragorex-product__link-btn {
    font-size: 1.0625rem;
    height: 68px;
    color: #fff;
    font-family: "Noto Sans JP";
    line-height: 1.4; /* 23.8px */
    letter-spacing: 0.34px;
    gap: 6px;
    padding-inline: 20px;
  }
}
.page-sdgs .dragorex-product__link-text {
  display: inline-flex;
  align-items: baseline;
}
.page-sdgs .dragorex-product__link-text sup {
  display: inline;
  vertical-align: super;
  font-size: 0.6em;
  line-height: 0;
  position: relative;
  top: -1em;
}
.page-sdgs .dragorex-product__link-btn:hover {
  background: #42941a;
  border-color: #42941a;
}
.page-sdgs .sdg__note {
  margin-top: 20px;
  color: #777;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.42px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-sdgs .sdg__note {
    text-align: left;
  }
}
.page-sdgs .sdg__note span {
  color: #0075ff;
  letter-spacing: 0.42px;
  text-decoration-line: underline;
}

.message__name {
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}

.message-info {
  padding-block: 140px 60px;
}
@media screen and (max-width: 767px) {
  .message-info {
    padding-block: 60px;
  }
}

.message-info__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .message-info__list {
    gap: 40px;
  }
}

.message-info__head {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.message-info__title {
  color: var(---, #b92020);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 1.6478873239rem + 1.5023474178vw, 3rem);
  font-weight: 600;
  line-height: 1.2; /* 57.6px */
  letter-spacing: -0.96px;
}
@media screen and (max-width: 767px) {
  .message-info__title {
    font-weight: 700;
    line-height: 1.4; /* 44.8px */
    letter-spacing: 0.96px;
  }
}

.message-info__label {
  color: var(---, #777);
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .message-info__label {
    letter-spacing: 0.36px;
  }
}

.message-info__text {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .message-info__text {
    letter-spacing: 0.36px;
  }
}

.organization {
  padding-block: 60px 140px;
}

.organization__image {
  margin-top: 40px;
}

#head-office,
#tokyo-office,
#osaka-office,
#chugoku-office,
#kyushu-office {
  scroll-margin-top: 160px;
}
@media screen and (max-width: 767px) {
  #head-office,
  #tokyo-office,
  #osaka-office,
  #chugoku-office,
  #kyushu-office {
    scroll-margin-top: 80px;
  }
}

.head-office__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.head-office__info-item {
  display: flex;
  line-height: 1.8;
  align-items: center;
}

.head-office__info-label {
  width: 80px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.36px;
}

.head-office__info-detail {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.48px;
}

.factory {
  padding-top: 100px;
  padding-bottom: 300px;
}
@media screen and (max-width: 767px) {
  .factory {
    padding-bottom: 250px;
  }
}

.factory__contact li {
  display: flex;
  line-height: 1.8;
  align-items: center;
}

.factory__label {
  width: 80px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.36px;
}

.factory__subtitle {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4; /* 39.2px */
  letter-spacing: 0.84px;
  margin-top: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .factory__subtitle {
    letter-spacing: 0.66px;
  }
}

.factory__list li {
  position: relative;
  padding-left: 1.2em;
}

.factory__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.factory__product-link {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.factory__product-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
@media (any-hover: hover) {
  .factory__product-link:hover::after {
    transform: scaleX(1);
  }
}

.factory__content {
  display: flex;
  gap: clamp(1.25rem, -3.0237741456rem + 8.9153046062vw, 5rem);
}
@media screen and (max-width: 767px) {
  .factory__content {
    flex-direction: column;
    gap: 40px;
  }
}

.factory__image img {
  width: 420px;
  aspect-ratio: 420/273;
}

.factory-office__content {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .factory-office__content {
    width: 100%;
  }
}

.factory__image {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .factory__image {
    width: 100%;
  }
}
.factory__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 420/273;
  -o-object-fit: cover;
     object-fit: cover;
}

.factory__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  table-layout: fixed;
}
.factory__table .factory__table-category {
  width: 7%;
}
.factory__table .factory__table-item {
  width: 25%;
}
.factory__table .factory__table-machine {
  width: 25%;
}
.factory__table th,
.factory__table td {
  padding: 10px 7px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: Roboto, sans-serif;
  font-size: clamp(0.8125rem, 0.5988112927rem + 0.4457652303vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .factory__table th,
  .factory__table td {
    padding: 7px 10px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.factory__table tbody th {
  background: #fff;
  font-weight: 700;
}
.factory__table tbody th.center {
  background: #fafafa;
  padding-inline: 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  vertical-align: middle;
}
.factory__table tbody tr.gray th {
  background: #777;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding-inline: 5px;
  font-size: clamp(0.6875rem, 0.3313521545rem + 0.7429420505vw, 1rem);
}
@media screen and (max-width: 767px) {
  .factory__table tbody tr.gray th {
    font-size: 0.75rem;
    padding-inline: 6px;
  }
}
.factory__table td {
  background: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .factory__table {
    display: block;
    overflow-x: auto;
    table-layout: auto;
    -webkit-overflow-scrolling: touch;
  }
  .factory__table tbody {
    display: table;
    width: 100%;
  }
}

.sales-office__card {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8098591549rem + 1.8779342723vw, 2.5rem);
  justify-content: space-between;
}

.sales-office__card-body {
  display: flex;
  flex-direction: column;
}

.sales-office__swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.sales-office__swiper img {
  display: block;
  width: 100%;
  aspect-ratio: 280/320;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ======================
   PC表示（デフォルト）
====================== */
.sales-office__swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sales-office__swiper .swiper-slide {
  width: 100% !important;
  margin-right: 0 !important;
}

.sales-office__pagination,
.sales-office__prev,
.sales-office__next {
  display: none;
}

/* ======================
   SP時だけSwiper有効
====================== */
@media screen and (max-width: 767px) {
  .sales-office__swiper .swiper-wrapper {
    display: flex !important;
  }
  .sales-office__swiper .swiper-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    padding-bottom: 30px;
  }
  .sales-office__pagination {
    display: block;
    position: static;
    margin-top: 30px;
    text-align: center;
  }
  .sales-office__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #fff;
    border: 1px solid #6e6e6e;
  }
  .sales-office__pagination .swiper-pagination-bullet-active {
    background: #6e6e6e;
  }
}
.office-access {
  margin-top: 20px;
}

.office-access__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .office-access__item {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
}

.office-access__term {
  width: 90px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}

.office-access__desc {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}

.group-companies__card .office-access__item {
  padding: 0;
}
.group-companies__card .office-access__item.start {
  align-items: flex-start;
}

.group-companies__card-icon-link {
  margin-top: auto;
  margin-left: auto;
}

.group-companies__card {
  display: flex;
  gap: 4px;
  padding: 20px;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid var(---, #dbdbdb);
}

.group-companies__card a {
  display: flex;
  gap: 4px;
  flex-direction: column;
  height: 100%;
}

.overseas {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .overseas {
    margin-top: 80px;
  }
}

.areas__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dbdbdb;
}

.areas__card:hover .areas__card-img img {
  transform: scale(1.05);
}
.areas__card:hover .btn__link-arrow {
  color: #b92020;
}

.areas__card-img {
  overflow: hidden;
}
.areas__card-img img {
  transition: transform 0.4s ease;
}

.areas__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.areas__card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .areas__card-content {
    gap: 16px;
  }
}

.rlogistics {
  border-bottom: 1px solid var(---, #dbdbdb);
  border-top: 1px solid var(---, #dbdbdb);
}

.rlogistics__flow-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .rlogistics__flow-list {
    gap: 12px;
  }
}

.rlogistics__flow-item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 16px 30px;
  border-radius: 4px;
  background-color: #dbdbdb;
  text-align: center;
  color: var(---, #777);
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4; /* 39.2px */
  letter-spacing: 0.84px;
}
@media screen and (max-width: 767px) {
  .rlogistics__flow-item {
    margin-bottom: 12px;
    letter-spacing: 0.66px;
  }
}

.rlogistics__flow-item::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  border-style: solid;
  border-width: 15px 14px 0 14px;
  border-color: #dbdbdb transparent transparent;
  translate: -50% 100%;
}

/* 2個目以降の色変更 */
.rlogistics__flow-item:nth-child(2) {
  color: #fff;
  background: #e9baba;
}

.rlogistics__flow-item:nth-child(3) {
  background: #d57979;
  color: #fff;
}

.rlogistics__flow-item:nth-child(4) {
  background: #b92020;
  color: #fff;
}

.rlogistics__flow-item:nth-child(2)::after {
  border-color: #e9baba transparent transparent;
}

.rlogistics__flow-item:nth-child(3)::after {
  border-color: #d57979 transparent transparent;
}

.rlogistics__flow-item:nth-child(4)::after {
  display: none;
}

.fv-dragorex {
  position: relative;
  background: #3e8b18;
}
@media (max-width: 900px) {
  .fv-dragorex {
    padding-bottom: 120px;
  }
}

.fv-dragorex__content {
  padding: 60px 100px;
  background: url(".././img/dragorex/bg_fv-dragorex.webp") no-repeat center/cover;
  position: relative;
  width: 100%;
  height: 600px;
}
@media (max-width: 900px) {
  .fv-dragorex__content {
    height: 532px;
    background: url(".././img/dragorex/bg_fv-dragorexSP.webp") no-repeat center/cover;
    padding: 0;
  }
}

.fv-dragorex__title {
  color: #fff;
  font-size: clamp(2rem, 1.6478873239rem + 1.5023474178vw, 3rem);
  font-weight: 900;
  line-height: 1.4; /* 67.2px */
  letter-spacing: 1.44px;
  position: absolute;
  top: 60px;
  left: 100px;
}
@media (max-width: 900px) {
  .fv-dragorex__title {
    top: 36px;
    left: 5%;
    letter-spacing: 0.96px;
  }
}
@media (max-width: 340px) {
  .fv-dragorex__title {
    font-size: 1.75rem;
  }
}
.fv-dragorex__title span {
  font-size: clamp(2.375rem, 1.9788732394rem + 1.6901408451vw, 3.5rem);
  letter-spacing: 1.62px;
}
@media screen and (max-width: 767px) {
  .fv-dragorex__title span {
    letter-spacing: 1.14px;
  }
}

.fv-dragorex__title--greeen {
  margin-top: 12px;
  color: var(---, #53b920);
  position: absolute;
  top: 215px;
  left: 100px;
}
@media (max-width: 900px) {
  .fv-dragorex__title--greeen {
    top: 150px;
    left: 5%;
  }
}

.fv-dragorex__badge {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  bottom: 60px;
  left: 100px;
}
@media (max-width: 900px) {
  .fv-dragorex__badge {
    bottom: -115px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
  }
}

.fv-dragorex__logo {
  width: clamp(12.5rem, 9.4850352113rem + 12.8638497653vw, 21.0625rem);
}
.fv-dragorex__logo img {
  position: absolute;
  bottom: 60px;
  right: 100px;
}
@media (max-width: 900px) {
  .fv-dragorex__logo img {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.fv-dragorex__badge-logo {
  width: 109px;
  aspect-ratio: 1/1;
}
@media (max-width: 900px) {
  .fv-dragorex__badge-logo {
    width: 72px;
  }
}

.fv-dragorex__text {
  color: var(--Color-White, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.0625rem, 0.9084507042rem + 0.6572769953vw, 1.5rem);
  font-weight: 600;
  line-height: 1.8; /* 43.2px */
  letter-spacing: 0.72px;
}
.fv-dragorex__text span {
  color: var(---, #53b920);
}

.about-dragorex {
  position: relative;
  overflow-x: hidden;
}

/* 上エリア */
.about-dragorex__top {
  background: url(".././img/common/bg_media-links.webp") no-repeat top/cover;
  padding: 80px 120px 140px;
  text-align: center;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .about-dragorex__top {
    padding: 60px 20px 40px;
  }
}

/* 見出し */
.about-dragorex__lead {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8;
  color: var(---, #1a1a1a);
  letter-spacing: 0.44px;
}

.about-dragorex__badge {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 30px;
  border-radius: 100px;
  background-color: #53b920;
  text-align: left;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .about-dragorex__badge {
    padding-inline: 20px 15px;
  }
}

.about-dragorex__badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 14px 0 0 10px;
  border-color: #53b920 transparent transparent;
  translate: calc(-50% + 0.2px) 100%;
}

/* カード */
.about-dragorex__cards {
  position: absolute;
  margin-top: 60px;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .about-dragorex__cards {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
  }
}

.about-dragorex__card {
  width: clamp(13.75rem, 9.4762258544rem + 8.9153046062vw, 17.5rem);
  border-radius: 4px;
  border: 1px solid var(---, #777);
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-dragorex__card img {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .about-dragorex__card img {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-dragorex__card {
    width: 100%;
    max-width: 380px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
}

.about-dragorex__card p {
  color: var(---, #1a1a1a);
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-dragorex__card p {
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.34px;
  }
}

.about-dragorex__bottom {
  padding-top: 145px;
  padding-bottom: 100px;
  background: #eef8e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about-dragorex__bottom {
    padding-top: 40px;
    padding-bottom: 110px;
  }
}

.about-dragorex__bottom-lead {
  color: var(---, #1a1a1a);
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .about-dragorex__bottom-lead {
    letter-spacing: 0.36px;
  }
}

.about-dragorex__bottom-main {
  margin-top: 20px;
  color: #25530e;
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.84px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .about-dragorex__bottom-main {
    letter-spacing: 0.66px;
  }
}

.about-dragorex__bottom-main .line {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.about-dragorex__bottom-main .line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: #cfe3c2;
  z-index: -1;
}

.about-dragorex__bottom-main-small {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  line-height: 1.8;
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .about-dragorex__bottom-main-small {
    letter-spacing: 0.36px;
  }
}

.about-dragorex__bottom-sub {
  margin-top: 12px;
  color: #25530e;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  position: relative;
  display: inline-block;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .about-dragorex__bottom-sub {
    letter-spacing: 0.66px;
  }
}

.about-dragorex__bottom-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: #cfe3c2;
  z-index: -1;
}

.about-dragorex__bottom-accent {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 767px) {
  .about-dragorex__bottom-accent {
    letter-spacing: 0.66px;
  }
}

@media screen and (max-width: 767px) {
  .about-dragorex__bottom-main--PC {
    display: none;
  }
}

.about-dragorex__bottom-main--SP {
  display: none;
}
@media screen and (max-width: 767px) {
  .about-dragorex__bottom-main--SP {
    display: block;
    text-align: center;
  }
}

.about-dragorex__icon-light img {
  width: 149px;
  height: 197px;
}
@media screen and (max-width: 767px) {
  .about-dragorex__icon-light img {
    width: 57px;
    height: 75px;
  }
}
.about-dragorex__icon-light {
  position: absolute;
  bottom: 53px;
  left: calc(50% - 481px);
}
@media screen and (max-width: 767px) {
  .about-dragorex__icon-light {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.about-dragorex__icon-person {
  position: absolute;
  bottom: 0px;
  right: calc(50% - 490px);
}
.about-dragorex__icon-person img {
  width: 175px;
  height: 252px;
}
@media screen and (max-width: 767px) {
  .about-dragorex__icon-person {
    display: none;
  }
}

.eco {
  background: url(".././img/dragorex/bg_eco.webp") no-repeat center/cover;
}

.eco__note {
  margin-top: 20px;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}
.eco__note a {
  color: #0ea5e9;
}

.benefits {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .benefits {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.data {
  position: relative;
  padding-bottom: 320px;
}
@media screen and (max-width: 1200px) {
  .data {
    padding-bottom: 400px;
  }
}
@media screen and (max-width: 767px) {
  .data {
    padding-bottom: 590px;
  }
}

.data__bg {
  transform: translateY(-140px);
  width: 90%;
  height: 600px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .data__bg {
    height: 218px;
    transform: translateY(0);
    width: 100%;
  }
}
.data__bg img {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .data__bg img {
    height: 218px;
  }
}

.date__grid {
  margin-top: -80px;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .date__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.date__content {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 100px 120px;
  padding-inline: 60px;
  max-width: 1240px;
  width: 90%;
  margin-inline: auto;
  background: var(---, #fcfcfc);
}
@media screen and (max-width: 767px) {
  .date__content {
    padding-block: 80px;
    padding-inline: 20px;
    top: 140px;
  }
}

.date__card.hidden {
  visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .date__card.hidden {
    display: none;
  }
}

.date__card {
  border-radius: 4px;
  border: 1px solid var(---, #1a1a1a);
  width: 50%;
}

.date__category {
  padding: 4px 20px;
  border-radius: 0 0 4px 0;
  background: var(---, #1a1a1a);
  padding: 4px 20px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}

.date__body {
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid var(---, #dbdbdb);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .date__body {
    padding: 16px;
    text-align: left;
  }
}

.date__test {
  background: #f5f5f5;
  padding: 30px 20px;
  width: 90%;
  margin-inline: auto;
  text-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .date__test {
    gap: 12px;
    padding: 18px 16px;
  }
}

.date__test-title {
  color: #777;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .date__test-title {
    font-size: 1.0625rem;
  }
}

.date__test-result {
  color: #1a1a1a;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.date__test-result .date__check {
  width: 32px;
}
@media screen and (max-width: 767px) {
  .date__test-result {
    align-items: flex-start;
    text-align: left;
  }
}

.date__test-note {
  color: #777;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}

.date__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faq__card {
  padding: 20px;
  background: #fff;
}

.faq__question,
.faq__answer {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .faq__question,
  .faq__answer {
    gap: 4px;
  }
}

.faq__question {
  padding-bottom: 20px;
  border-bottom: 1px solid var(---, #dbdbdb);
  color: var(---, #1a1a1a);
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}

.faq__question-text {
  min-width: 0;
}

.faq__answer {
  padding-top: 20px;
  color: var(---, #1a1a1a);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}

.faq__answer-text {
  display: block;
  flex: 1;
  min-width: 0;
}
.faq__answer-text a {
  color: #0ea5e9;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq__q,
.faq__a {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.faq__a {
  color: #53b920;
}

.cta-dragorex {
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta-dragorex {
    height: 666px;
  }
}

.cta-dragorex__content {
  padding-block: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: url(".././img/dragorex/bg_cta-dragorex.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .cta-dragorex__content {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
    background: url(".././img/dragorex/bg_cta-dragorex-sp.webp") no-repeat top/cover;
    height: 666px;
    padding-block: 0px;
  }
}

.cta-dragorex__text {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .cta-dragorex__text {
    margin-top: 235px;
    gap: 16px;
    padding: 20px 16px;
    background: rgba(83, 185, 32, 0.6);
    backdrop-filter: blur(3px);
    max-width: 450px;
    margin-inline: auto;
  }
}

.cta-dragorex__title {
  font-size: clamp(1.3125rem, 1.2904929577rem + 0.0938967136vw, 1.375rem);
  font-weight: 600;
  line-height: 1.4; /* 39.2px */
  letter-spacing: 0.84px;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .cta-dragorex__title {
    letter-spacing: 0.66px;
    padding-inline: 0;
  }
}

.cta-dragorex__desc {
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .cta-dragorex__desc {
    line-height: 1.4;
  }
}

.cta-dragorex__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .cta-dragorex__actions {
    margin-top: 30px;
    padding: 0;
    gap: 12px;
  }
}

.cta-dragorex__note {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
}

.cta-dragorex__btn--primary {
  max-width: 300px;
}

.cta-dragorex__btn--secondary {
  display: none;
}

.page-steel .table {
  width: 100%;
  border-collapse: collapse;
}
.page-steel .table th,
.page-steel .table td {
  padding: 12px 16px;
  border: 1px solid #777;
  text-align: left;
}
.page-steel .table--spec thead th {
  background: var(---, #222020);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page-steel .table--spec thead th {
    font-size: 1.0625rem;
    line-height: 1.4; /* 23.8px */
    letter-spacing: 0.34px;
  }
}
.page-steel .table-spec-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-steel .table-spec-heading {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .page-steel .table-spec__heading-main {
    width: 100%;
  }
}
.page-steel .table-spec__heading-line {
  display: block;
  width: 48px;
  height: 1px;
  background: #fff;
}
.page-steel {
  /* 左カラム */
}
.page-steel .table--spec th {
  width: 180px;
  background: var(---, #dbdbdb);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .page-steel .table--spec th {
    width: 137px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.48px;
  }
}
.page-steel {
  /* 右カラム */
}
.page-steel .table--spec td {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}
.page-steel .table__caption {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
  color: var(---, #777);
}
.page-steel .steel-table__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  table-layout: fixed;
}
.page-steel .steel-table__table .steel-table__category {
  width: 7%;
}
.page-steel .steel-table__table .steel-table__item {
  width: 25%;
}
.page-steel .steel-table__table .steel-table__machine {
  width: 25%;
}
.page-steel .steel-table__table th,
.page-steel .steel-table__table td {
  padding: 10px 7px;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  font-family: Roboto, sans-serif;
  font-size: clamp(0.8125rem, 0.5988112927rem + 0.4457652303vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .page-steel .steel-table__table th,
  .page-steel .steel-table__table td {
    padding: 7px 10px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.page-steel .steel-table__table tbody th {
  background: var(---, #dbdbdb);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .page-steel .steel-table__table tbody th {
    font-size: clamp(0.8125rem, 0.6331313776rem + 0.7653061224vw, 1rem);
  }
}
.page-steel .steel-table__table tbody th.center {
  background: var(---, #dbdbdb);
  padding-inline: 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  vertical-align: middle;
}
.page-steel .steel-table__table tbody tr.gray th {
  background: var(---, #222020);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-steel .steel-table__table tbody tr.gray th {
    font-size: clamp(0.9375rem, 0.8179209184rem + 0.5102040816vw, 1.0625rem);
    padding-inline: 6px;
  }
}
.page-steel .steel-table__table tbody tr.gray th.steel-table__factory-heading {
  padding-left: 16px;
  text-align: left;
}
.page-steel .steel-table__table td {
  background: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 767px) {
  .page-steel .steel-table__table {
    display: block;
    overflow-x: auto;
    table-layout: auto;
    -webkit-overflow-scrolling: touch;
  }
  .page-steel .steel-table__table tbody {
    display: table;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-steel .strengths__image-PC {
    display: none;
  }
}
.page-steel .strengths__image-SP {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-steel .strengths__image-SP {
    display: block;
  }
}
.page-steel .products__card {
  padding: 20px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .page-steel .products__card {
    padding: 20px 16px;
  }
}
.page-steel .products__card-list li {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}
.page-steel .products__card-list li span {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.48px;
}
.page-steel .products__card-list li .note {
  color: var(---, #777);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
}
.page-steel .products__sub-list {
  list-style: disc;
  padding-left: 1.2em;
  margin-left: 12px;
}
.page-steel .products__sub-list li {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .page-steel .products__sub-list li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.0625rem;
    letter-spacing: 0.34px;
  }
}
.page-steel .process-flow__content {
  padding: 32px 40px 40px;
  border-radius: 4px;
  border: 1px solid var(---, #777);
}
@media screen and (max-width: 767px) {
  .page-steel .process-flow__content {
    max-width: 600px;
    margin-inline: auto;
  }
}
.page-steel .process-flow__conten__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-steel .process-flow__conten__title h3 {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4; /* 39.2px */
  letter-spacing: 0.84px;
}
.page-steel .process-flow__conten__title p {
  color: var(---, #777);
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
.page-steel .process-flow__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-steel .process-flow__list {
    flex-direction: column;
  }
}
.page-steel .process-flow__item {
  position: relative;
  flex: 1;
  padding: 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 中間用（基本形） */
  clip-path: polygon(86% 0, 100% 50%, 86% 100%, 0% 100%, 11% 50%, 0% 0%);
}
@media screen and (max-width: 767px) {
  .page-steel .process-flow__item {
    clip-path: polygon(50% 20%, 100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    padding-block: 50px 30px;
  }
}
.page-steel {
  /* 1つ目だけ左フラット */
}
.page-steel .process-flow__item:first-child {
  clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .page-steel .process-flow__item:first-child {
    clip-path: polygon(100% 0%, 100% 75%, 100% 75%, 50% 100%, 0 75%, 0 0);
    padding-block: 30px 30px;
  }
}
.page-steel {
  /* 重なり調整 */
}
.page-steel .process-flow__item + .process-flow__item {
  margin-left: 0px;
}
.page-steel .process-flow__num {
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
}
.page-steel .process-flow__title {
  font-size: clamp(1rem, 0.8575408618rem + 0.2971768202vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .page-steel .process-flow__title {
    margin-top: 0;
  }
}
.page-steel .process-flow__head {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .page-steel .process-flow__head {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
.page-steel .process-flow__text {
  font-size: 0.875rem;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
}
.page-steel {
  /* 鋼板：1個目だけ文字色変える */
}
.page-steel .sprocess__steel-plate .process-flow__item:first-child {
  color: #777;
}
.page-steel {
  /* 鋼管：1個目だけ文字色変える */
}
.page-steel .process__steel-pipe .process-flow__item:first-child {
  color: #d57979;
}
.page-steel .process__steel-plate .process-flow__item:nth-child(1) {
  background: var(---, #dbdbdb);
}
.page-steel .process__steel-plate .process-flow__item:nth-child(2) {
  background: #a6a6a6;
}
.page-steel .process__steel-plate .process-flow__item:nth-child(3) {
  background: #a6a6a6;
}
.page-steel .process__steel-plate .process-flow__item:nth-child(4) {
  background: var(---, #777);
}
.page-steel .process__steel-plate .process-flow__item:nth-child(5) {
  background: var(---, #222020);
}
.page-steel .process__steel-pipe .process-flow__item:nth-child(1) {
  background: #f8e9e9;
}
.page-steel .process__steel-pipe .process-flow__item:nth-child(2) {
  background: #e9baba;
}
.page-steel .process__steel-pipe .process-flow__item:nth-child(3) {
  background: #e9baba;
}
.page-steel .process__steel-pipe .process-flow__item:nth-child(4) {
  background: #d57979;
}
.page-steel .process__steel-pipe .process-flow__item:nth-child(5) {
  background: #b92020;
}

.page-equipment .categories {
  border-bottom: 1px solid var(---, #dbdbdb);
}
.page-equipment .categories__grid {
  display: grid;
  gap: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .page-equipment .categories__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.page-equipment .categories__grid--bottom {
  margin-top: clamp(1.25rem, -1.5991827637rem + 5.9435364042vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .page-equipment .categories__grid--bottom {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-equipment .categories__grid--top {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-equipment .categories__grid--bottom {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-equipment .categories__card1 {
    grid-column: 1/3;
  }
}
.page-equipment .categories__card {
  border-radius: 4px;
  border: 1px solid var(---, #777);
  padding: 20px;
}
.page-equipment .categories__text {
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}
@media screen and (max-width: 767px) {
  .page-equipment .categories__text {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-equipment .categories__text:first-of-type {
    margin-top: 20px;
  }
}
.page-equipment .categories__note {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .page-equipment .categories__note {
    margin-top: 12px;
  }
}
.page-equipment .categories__note--bold {
  font-weight: 700;
}
.page-equipment .categories__small {
  color: var(---, #777);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 0.42px;
}
@media screen and (max-width: 767px) {
  .page-equipment .categories__small {
    margin-top: 12px;
  }
}
.page-equipment .our-strengths__content h3 {
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
}
.page-equipment .use__card {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-equipment .use__card-category {
  color: #fff;
  text-align: center;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 700;
  line-height: 1.4; /* 22.4px */
  border-radius: 0 0 4px 0;
  background: var(---, #1a1a1a);
  padding: 4px 20px;
  display: inline-block;
  padding: 4px 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.page-equipment .use__card-body {
  margin-top: 8px;
  padding-inline: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-equipment .use__card-body {
    padding-inline: 16px;
    padding-bottom: 16px;
  }
}
.page-equipment .custom__wrapper {
  background: #fff;
  padding: 40px 20px;
}
.page-equipment .custom__message h3 {
  font-size: clamp(1.625rem, 1.536971831rem + 0.3755868545vw, 1.875rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
}
.page-equipment .custom__list-title {
  color: var(---, #1a1a1a);
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  letter-spacing: 0.44px;
}
.page-equipment .custom__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .page-equipment .custom__list {
    gap: 12px;
  }
}
.page-equipment .custom__list li {
  position: relative;
  padding-left: 1.2em;
  color: #1a1a1a;
  font-size: clamp(1.0625rem, 1.0404929577rem + 0.0938967136vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .page-equipment .custom__list li {
    line-height: 1.4;
  }
}
.page-equipment .custom__list {
  /* 黒丸 */
}
.page-equipment .custom__list li::before {
  content: "・";
  position: absolute;
  top: 0; /* ←これで上揃え */
  left: 0;
}
.page-equipment .clients__wrapper {
  padding: 100px;
  background: var(---, #fcfcfc);
}
@media screen and (max-width: 767px) {
  .page-equipment .clients__wrapper {
    padding: 80px 16px 60px 16px;
  }
}
.page-equipment .clients__text {
  color: #333;
  text-align: center;
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-weight: 600;
  line-height: 1.8; /* 39.6px */
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-equipment .clients__text {
    text-align: left;
  }
}
.page-equipment .clients__text span {
  font-size: clamp(1.125rem, 1.1470070423rem + -0.0938967136vw, 1.0625rem);
}
.page-equipment .clients__content {
  padding: 40px 20px;
  border-radius: 4px;
  border: 1px solid var(---, #777);
}
@media screen and (max-width: 767px) {
  .page-equipment .clients__content {
    padding: 20px 16px;
  }
}
.page-equipment .clients__content--manufacturer {
  padding: 40px 20px;
  border-radius: 4px;
  border: 1px solid var(---, #777);
}
@media screen and (max-width: 767px) {
  .page-equipment .clients__content--manufacturer {
    padding: 20px 16px;
  }
}
.page-equipment .manufacturer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-equipment .manufacturer-list {
    justify-content: flex-start;
    gap: 8px 12px;
  }
}
.page-equipment .manufacturer-list__item {
  padding: 2px 10px;
  border-radius: 2px;
  background: var(---, #777);
  color: #fff;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .page-equipment .manufacturer-list__item {
    padding-inline: 8px;
  }
}
@media screen and (max-width: 380px) {
  .page-equipment .manufacturer-list__item {
    font-size: 12px;
  }
}
.page-equipment .manufacturer-note {
  margin-top: 30px;
  text-align: center;
  color: var(---, #1a1a1a);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 767px) {
  .page-equipment .manufacturer-note {
    margin-top: 20px;
  }
}
.page-equipment .clients-list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  row-gap: 0.25rem;
  -moz-column-gap: clamp(1.25rem, -0.7444279346rem + 4.1604754829vw, 3rem);
       column-gap: clamp(1.25rem, -0.7444279346rem + 4.1604754829vw, 3rem);
  align-content: center;
  justify-content: center;
  color: var(---, #1a1a1a);
  font-size: clamp(0.9375rem, 0.7238112927rem + 0.4457652303vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
}
.page-equipment .clients-list span {
  display: block;
}
.page-equipment .clients-list .clients-list__other {
  grid-column: 1/-1;
  justify-self: end;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-equipment .clients-list {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    font-size: 1.0625rem;
  }
  .page-equipment .clients-list .clients-list__other {
    justify-self: start;
    margin-top: 0.25rem;
  }
}

.steel-plate {
  border-bottom: 1px solid var(---, #dbdbdb);
}

.steel-pipe {
  border-bottom: 1px solid var(---, #dbdbdb);
}

.pipe-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pipe-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid var(---, #777);
}

.pipe-table--1 {
  min-width: 971px;
}

.pipe-table--2 {
  min-width: 891px;
}

.pipe-table--3 {
  min-width: 831px;
}

.pipe-table--4 {
  min-width: 460px;
}

@media screen and (max-width: 767px) {
  .baling-hoop .grid__content {
    min-width: 0;
  }
}

.pipe-table th,
.pipe-table td {
  border: 1px solid var(---, #777);
  text-align: center;
  white-space: nowrap;
  padding: 12px 16px;
}

/* 1段目 */
.pipe-table thead tr:first-child th {
  background: var(---, #1a1a1a);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .pipe-table thead tr:first-child th {
    font-size: 1rem;
    font-weight: 700;
  }
}

/* 2段目 */
.pipe-table thead tr:nth-child(2) th {
  background: var(---, #dbdbdb);
  color: var(---, #1a1a1a);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .pipe-table thead tr:nth-child(2) th {
    font-size: 1rem;
    font-weight: 700;
  }
}

/* 左上の rowspan="2" のセル */
.pipe-table thead th[rowspan] {
  background: var(---, #1a1a1a);
  color: #fff;
  width: 140px;
}

.pipe-table .circle {
  display: inline-block;
  transform: scale(1.8);
  transform-origin: center;
}
.pipe-table .circle--triangle {
  transform: scale(1);
}

@media screen and (max-width: 767px) {
  .pipe-table thead th[colspan] {
    text-align: left;
  }
}
/* body左見出し */
.pipe-table tbody th {
  color: var(---, #1a1a1a);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8; /* 32.4px */
  letter-spacing: 0.36px;
}
@media screen and (max-width: 767px) {
  .pipe-table tbody th {
    font-size: 1rem;
    font-weight: 700;
  }
}

/* body */
.pipe-table tbody td {
  color: var(---, #1a1a1a);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}

#steel-plate {
  scroll-margin-top: 120px; /* ヘッダー高さ分に調整 */
}
@media screen and (max-width: 767px) {
  #steel-plate {
    scroll-margin-top: 60px; /* ヘッダー高さ分に調整 */
  }
}

#steel-pipe {
  scroll-margin-top: 120px; /* ヘッダー高さ分に調整 */
}
@media screen and (max-width: 767px) {
  #steel-pipe {
    scroll-margin-top: 60px; /* ヘッダー高さ分に調整 */
  }
}

#baling-hoop {
  scroll-margin-top: 120px; /* ヘッダー高さ分に調整 */
}
@media screen and (max-width: 767px) {
  #baling-hoop {
    scroll-margin-top: 60px; /* ヘッダー高さ分に調整 */
  }
}

#round-pipe-table,
#square-pipe-table,
#rectangular-pipe-table,
#triangle-pipe-table {
  scroll-margin-top: 120px; /* ヘッダー高さ分に調整 */
}
@media screen and (max-width: 767px) {
  #round-pipe-table,
  #square-pipe-table,
  #rectangular-pipe-table,
  #triangle-pipe-table {
    scroll-margin-top: 60px; /* ヘッダー高さ分に調整 */
  }
}

.steel-plate__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.steel-plate__table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  table-layout: auto;
}

/* 列見出し（Figmaに行なし・支援技術向けのみ表示） */
.steel-plate__table-thead-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.steel-plate__table th,
.steel-plate__table td {
  padding: 12px 16px;
  border: 1px solid var(---, #777);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.steel-plate__table th {
  background: var(---, #dbdbdb);
  color: var(---, #1a1a1a);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
}

.steel-plate__table td {
  background: #fff;
  color: var(---, #1a1a1a);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.48px;
}

.steel-plate__table .steel-plate__table-cat {
  width: 180px;
  text-align: center;
}

.steel-plate__table tbody th:not(.steel-plate__table-cat) {
  width: 200px;
}

.steel-plate__table--square-shearing {
  min-width: 480px;
  table-layout: auto;
}

.steel-plate__table--square-shearing thead th {
  background: var(---, #1a1a1a);
  color: #fff;
  text-align: center;
}

.steel-plate__table--square-shearing thead th[colspan="2"] {
  color: transparent;
}

.steel-plate__table--square-shearing .steel-plate__square-col-cat {
  width: 180px;
}

.steel-plate__table--square-shearing .steel-plate__square-col-item {
  width: 200px;
}

@media screen and (max-width: 767px) {
  /* SPデザイン（Figma 7142:14533）に合わせて上書き */
  .steel-plate__table {
    min-width: 100%;
    table-layout: auto;
  }
  .steel-plate__table th,
  .steel-plate__table td {
    padding: 12px 20px;
  }
  .steel-plate__table th {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.34px;
  }
  .steel-plate__table td {
    font-size: 1rem;
  }
  .steel-plate__table--square-shearing .steel-plate__square-col-cat {
    width: 45px;
  }
  .steel-plate__table .steel-plate__table-cat {
    width: 45px;
    padding: 4px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .steel-plate__table tbody th:not(.steel-plate__table-cat) {
    width: 180px;
    padding-block: 12px;
    padding-inline: 12px 4px;
  }
  .steel-plate__table--square-shearing .steel-plate__table-cat {
    width: 45px;
    padding: 12px;
  }
  .steel-plate__table--square-shearing tbody th:not(.steel-plate__table-cat) {
    min-width: 140px;
    padding: 12px 20px;
  }
}
.steel-plate__table--mini {
  min-width: 440px;
  table-layout: auto;
}

.steel-plate__table--mini thead th {
  background: var(---, #1a1a1a);
  color: #fff;
  text-align: center;
}

.steel-plate__table--mini thead th[colspan="2"] {
  color: transparent;
}

.steel-plate__table--mini .steel-plate__mini-col-cat {
  width: 180px;
}

.steel-plate__table--mini .steel-plate__mini-col-item {
  width: 200px;
}

@media screen and (max-width: 767px) {
  .steel-plate__table--mini .steel-plate__mini-col-cat {
    width: 45px;
  }
  .steel-plate__table--mini .steel-plate__table-cat {
    width: 45px;
  }
  .steel-plate__table--mini .steel-plate__mini-col-item {
    width: 180px;
  }
  .steel-plate__table--mini tbody th:not(.steel-plate__table-cat) {
    width: 180px;
  }
  .steel-plate__table--mini thead th {
    font-size: 0.9375rem;
    padding: 12px 8px;
  }
  .steel-plate__table--mini td {
    padding: 12px 20px;
  }
}
.steel-plate__table--slitter-line thead th {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.steel-plate__table--slitter-line thead th[colspan="2"] {
  color: transparent;
}

.steel-plate__table--slitter-line .steel-plate__table-cat {
  min-width: 180px;
}

.steel-plate__table--slitter-line tbody th:not(.steel-plate__table-cat) {
  min-width: 200px;
}

@media screen and (max-width: 767px) {
  .steel-plate__table--slitter-sp {
    width: 100%;
    min-width: 100%;
    table-layout: auto;
  }
  .steel-plate__table--slitter-sp thead th {
    background: #1a1a1a;
    color: #fff;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 16px;
  }
  .steel-plate__table--slitter-sp .steel-plate__table-cat {
    min-width: 45px;
    padding: 4px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .steel-plate__table--slitter-sp tbody th:not(.steel-plate__table-cat) {
    min-width: 180px;
    padding-block: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.34px;
  }
  .steel-plate__table--slitter-sp td {
    padding: 12px 20px;
  }
}
.triangle-pipe__content {
  display: flex;
  gap: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
}
@media screen and (max-width: 767px) {
  .triangle-pipe__content {
    flex-direction: column-reverse;
  }
}

.triangle-pipe__image {
  width: 335px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .triangle-pipe__image {
    width: 100%;
  }
}

.products__steel-pipe-img {
  display: block;
  width: 100%;
  aspect-ratio: 580/377;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sitemap {
  margin-top: 127px;
}
@media screen and (max-width: 767px) {
  .sitemap {
    margin-top: 109px;
  }
}

.sitemap__block {
  padding-block: 40px;
  border-bottom: 1px solid var(---, #dbdbdb);
}
@media screen and (max-width: 767px) {
  .sitemap__block {
    padding-block: 20px;
  }
}

.sitemap__title {
  color: var(---, #1a1a1a);
  font-size: clamp(1.625rem, 1.4049295775rem + 0.9389671362vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6; /* 57.6px */
  letter-spacing: 1.08px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sitemap__title {
    letter-spacing: 0.78px;
    margin-bottom: 12px;
  }
}

.sitemap__list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .sitemap__list {
    flex-direction: column;
    gap: 8px;
  }
}

.sitemap__list--related {
  display: grid;
  grid-template-columns: max-content max-content;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 12px;
}
@media screen and (max-width: 767px) {
  .sitemap__list--related {
    display: flex;
  }
}

.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-hidden-pc {
    display: block;
  }
}

.u-hidden-sp {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-hover-op {
  transition: opacity 0.3s ease;
}
.u-hover-op:hover {
  opacity: 0.9;
}

.u-hover-scale {
  display: block;
  overflow: hidden;
}

.u-hover-scale img {
  transition: transform 0.4s ease;
}

.u-hover-scale:hover img {
  transform: scale(1.05);
}

.service__link:hover .u-hover-scale img {
  transform: scale(1.05);
}

.u-p140-100 {
  padding-block: 140px 100px;
}

.u-p140 {
  padding-block: 140px;
}

.u-p100 {
  padding-block: 100px;
}

.u-p0-180 {
  padding-bottom: 180px;
}

.u-p100_140 {
  padding-top: 100px;
  padding-bottom: 140px;
}

.u-p140_0 {
  padding-top: 140px;
}

.u-mt-header {
  margin-top: 210px;
}
@media (max-width: 900px) {
  .u-mt-header {
    margin-top: 200px;
  }
}

.u-mt180_80 {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .u-mt180_80 {
    margin-top: 80px;
  }
}

.u-mt180 {
  margin-top: 180px;
}

.u-mt140_60 {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .u-mt140_60 {
    margin-top: 60px;
  }
}

.u-mt140 {
  margin-top: 140px;
}

.u-mt100_80 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .u-mt100_80 {
    margin-top: 80px;
  }
}

.u-mt100 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .u-mt100 {
    margin-top: 60px;
  }
}

.u-mt80_40 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-mt80_40 {
    margin-top: 40px;
  }
}

.u-mt80_20 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-mt80_20 {
    margin-top: 20px;
  }
}

.u-mt80 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-mt80 {
    margin-top: 60px;
  }
}

.u-mt75_140 {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .u-mt75_140 {
    margin-top: 140px;
  }
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt60_60 {
  margin-top: 60px;
}

.u-mt60 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .u-mt60 {
    margin-top: 40px;
  }
}

.u-mt50 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .u-mt50 {
    margin-top: 40px;
  }
}

.u-mt40 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .u-mt40 {
    margin-top: 20px;
  }
}

.u-mt40_40 {
  margin-top: 40px;
}

.u-mt20_12 {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .u-mt20_12 {
    margin-top: 12px;
  }
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt4 {
  margin-top: 4px;
}

.u-mt-150 {
  margin-top: -150px;
}

.u-mt-header--dragorex {
  margin-top: 120px;
}
@media (max-width: 900px) {
  .u-mt-header--dragorex {
    margin-top: 60px;
  }
}

.u-w50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .u-w50 {
    width: 100%;
  }
}

.u-text {
  font-size: 1rem;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
  font-weight: 500;
}

.u-text + .u-text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .u-text + .u-text {
    margin-top: 12px;
  }
}

.u-text--white {
  color: #fff;
}

.u-text400 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.48px;
}
.u-text400 .bold {
  font-weight: 700;
}

.u-text__time {
  color: var(---, #777);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.42px;
}

.u-text__note {
  color: var(---, #777);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.42px;
}

.u-bc--grary {
  background: var(---, #F2F2F2);
}

.u-bc--white {
  background: #FFF;
}

.u-bc--black {
  background: var(---, #222020);
}

.u-nowrap {
  white-space: nowrap;
}