@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

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

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 28px 40px;
}

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

.header__inner-under {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 20px;
}

.header__logo-img {
  width: 170px;
  height: auto;
}

.pc__nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.pc__nav-ul {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc__nav-link {
  color: #000;
  font-weight: 500;
}

.pc__nav-link-under {
  color: #fff;
}

.pc__nav-contact {
  min-width: 170px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(145deg, #222, #050505);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hamburger {
  display: none;
}

.top__pc-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

.top__pc-nav.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sp__nav {
  display: none;
}

.pc__nav-li {
  position: relative;
}

.pc__nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pc__nav-arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.pc__nav-li--has-dropdown:hover .pc__nav-arrow {
  transform: rotate(225deg) translateY(-2px);
}

.pc-dropdown {
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  z-index: 100;
  width: 280px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px) scale(0.96);
  transform-origin: top center;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.pc-dropdown::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
}

.pc__nav-li--has-dropdown:hover .pc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.pc-dropdown__link {
  display: block;
  padding: 18px 20px;
  color: #111;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.18s ease;
}

.pc-dropdown__link:hover {
  background: rgba(0, 0, 0, 0.05);
  opacity: 1;
}

.pc-dropdown__link:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pc-dropdown__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
}

.header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header__under {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 15px 40px;
}

.header__under.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 15px 40px;
}

.header.is-scrolled .header__logo-img {
  width: 140px;
  height: auto;
}

.header__under.is-scrolled .header__logo-img {
  width: 140px;
  height: auto;
}

.header__under.is-scrolled .pc__nav-link-under {
  color: #000;
}

.header__under.is-scrolled .pc__nav-arrow {
  color: #000;
}

.header__under.is-scrolled .header__inner-under {
  border-bottom: none;
  padding-bottom: 0;
}

.sp__nav-item {
  overflow: hidden;
}

.sp__nav-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px 14px 0 0;
  background: transparent;
  color: #111;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.sp__nav-arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.sp__nav-item.is-open .sp__nav-arrow {
  transform: rotate(225deg);
}

.sp-dropdown {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.sp-dropdown {
  display: none;
}

.sp__nav-item.is-open .sp-dropdown {
  display: block;
}

.sp-dropdown::before {
  content: "";
  display: block;
}

.sp__nav-item.is-open .sp-dropdown {
  grid-template-rows: 1fr;
}

.sp-dropdown {
  overflow: hidden;
}

.sp-dropdown__link {
  display: flex;
  align-items: center;
  padding: 15px 22px 15px 34px;
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(0, 0, 0, 0.025);
}

.sp-dropdown__link:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* スマホ */
@media (max-width: 768px) {
  .header {
    padding: 18px 20px;
  }
  .header__logo-img {
    width: 118px;
  }
  .header__under.is-scrolled {
    padding: 15px 20px;
  }
  .pc__nav {
    display: none;
  }
  .hamburger {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    display: grid;
    place-items: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
  }
  .hamburger.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hamburger span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transition: 0.35s ease;
  }
  .hamburger span:nth-child(1) {
    transform: translateY(-7px);
  }
  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }
  .hamburger span:nth-child(3) {
    transform: translateY(7px);
  }
  .hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .sp__nav {
    position: fixed;
    top: 70px;
    right: 16px;
    width: min(92vw, 360px);
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px) scale(0.94);
    transform-origin: top right;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  .sp__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .sp__nav a {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    color: #111;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: transparent;
    transition: background 0.18s ease;
  }
  .sp__nav a:hover,
.sp__nav a:active {
    background: rgba(0, 0, 0, 0.05);
  }
  .sp__nav a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .sp__nav a.sp__nav-contact {
    margin-top: 8px;
    padding: 20px 22px;
    background: linear-gradient(145deg, #222, #050505);
    border-bottom: none;
    color: #fff;
    justify-content: center;
    border-radius: 14px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  }
  .sp__nav-contact {
    background: linear-gradient(145deg, #333, #111);
  }
}
.video-wrap {
  position: relative;
  width: 100vw;
  height: 100vh; /* fallback */
  height: 100dvh; /* SE / 14 / 14 Pro Max / Android すべて対応 */
  overflow: hidden;
}

#bg-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 66% center;
     object-position: 66% center;
  z-index: 0;
}

video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 66% center;
     object-position: 66% center;
}

/* intro: 最前面で再生 */
#v-intro {
  z-index: 2;
  opacity: 1;
}

/* loop: 裏で待機 */
#v-loop {
  z-index: 1;
  opacity: 0;
}

/* 切り替え: introを透過 → loopを最前面へ */
#v-intro.done {
  opacity: 0;
  z-index: 1;
  transition: opacity 0.08s linear;
}

#v-loop.active {
  opacity: 1;
  z-index: 2;
  transition: opacity 0.08s linear;
}

.mv__wrapper {
  position: absolute;
  top: 360px;
  left: 60px;
  z-index: 20;
}

.mv__title {
  font-size: 50px;
  font-weight: bold;
}

.mv__titlte--jp {
  font-size: 18px;
}

.hero-copy {
  z-index: 100;
  position: relative;
  width: 420px;
  height: 100%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(40px);
}

/* intro動画終了後に出す */
.hero-copy.is-show {
  -webkit-animation: heroCopyFadeUp 1.2s ease-out forwards;
          animation: heroCopyFadeUp 1.2s ease-out forwards;
}

@-webkit-keyframes heroCopyFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-frame {
  position: absolute;
  padding: 45px 0 0 45px;
  left: 40px;
  bottom: 50px;
}

/* 英語タイトル */
.hero-frame h1 {
  margin: 0 0 24px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 70px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-frame h1 span {
  display: block;
  color: #101820;
}

.hero-frame h1 .gradient {
  background: linear-gradient(90deg, #34a853 0%, #42b7a6 45%, #0b6fb8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 日本語キャッチ */
.lead {
  margin: 0 0 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #111;
}

/* 下線 */
.line {
  width: 520px;
  height: 2px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #38b996 0%, #4bb7d8 70%, transparent 100%);
  position: relative;
}

.line::after {
  content: "";
  position: absolute;
  right: 70px;
  top: 0;
  width: 56px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #2aa9d6 0 6px, transparent 6px 12px);
}

/* 小さい説明文 */
.sub {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #111;
}

/* 左上の装飾 */
.corner-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #36b995, #55c7d8);
}

.corner-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 92px;
  background: linear-gradient(180deg, #36b995, #55c7d8);
}

.corner-top::after {
  content: "";
  position: absolute;
  left: 160px;
  top: 0;
  width: 120px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #48bfb5 0 8px, transparent 8px 16px);
  transform: skewX(-25deg);
}

@media (max-width: 768px) {
  .hero-copy {
    z-index: 100;
    position: relative;
    width: 100%; /* 固定px→全幅に */
    height: 100%;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .hero-frame {
    position: absolute;
    padding: 24px 0 0 20px;
    bottom: 36px;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  /* 英語タイトル */
  .hero-frame h1 {
    margin: 0 0 10px;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(32px, 10vw, 48px); /* vwで柔軟に */
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .hero-frame h1 span {
    display: block;
    color: #101820;
  }
  .hero-frame h1 .gradient {
    background: linear-gradient(90deg, #34a853 0%, #42b7a6 45%, #0b6fb8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  /* 日本語キャッチ */
  .lead {
    margin: 0 0 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #111;
  }
  /* 下線 */
  .line {
    width: min(280px, 80vw); /* 画面幅に追従 */
    height: 2px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #38b996 0%, #4bb7d8 70%, transparent 100%);
    position: relative;
  }
  .line::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 0;
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #2aa9d6 0 6px, transparent 6px 12px);
  }
  /* 小さい説明文 */
  .sub {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(13px, 3.5vw, 16px);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #111;
  }
  /* 左上の装飾 */
  .corner-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #36b995, #55c7d8);
  }
  .corner-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, #36b995, #55c7d8);
  }
  .corner-top::after {
    content: "";
    position: absolute;
    left: 120px;
    top: 0;
    width: 100px;
    height: 4px;
    background: repeating-linear-gradient(90deg, #48bfb5 0 8px, transparent 8px 16px);
    transform: skewX(-25deg);
  }
}
.grass-wrap {
  width: 100%;
  height: 500px;
  padding: 50px 0;
  background: #000;
}

.glass-card {
  width: min(90vw, 1200px);
  height: 320px;
  margin: 80px auto;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* 上の反射 */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 25%, transparent 45%);
  opacity: 0.8;
  pointer-events: none;
}

/* 四隅のほんのり光 */
.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(120, 200, 255, 0.18), transparent 18%), radial-gradient(circle at top right, rgba(255, 210, 120, 0.16), transparent 18%), radial-gradient(circle at bottom left, rgba(120, 200, 255, 0.1), transparent 18%), radial-gradient(circle at bottom right, rgba(255, 210, 120, 0.1), transparent 18%);
}

.faq-item {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  margin-inline: auto;
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #0B0D12;
}

.faq-question::before {
  content: "Q";
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgb(255, 255, 255);
  color: #0B0D12;
  font-weight: 700;
}

.faq-answer {
  padding: 0 32px 28px 98px;
  color: #4B5563;
  font-size: 14px;
  line-height: 1.9;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-icon {
  font-size: 18px;
  color: #0B0D12;
}

.slider_parent {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.slider_parent .slider {
  display: flex;
}

.text_scroll {
  -webkit-animation: scroll 80s linear infinite;
          animation: scroll 80s linear infinite;
}

.logos {
  flex-shrink: 0;
}

.slider_parent ul li {
  margin-left: 10px;
  margin-right: 10px;
}

.slider_parent ul li {
  display: inline-block;
}

.slider_parent ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.slider_parent ul li > a img {
  transition: 0.4s;
}

.slider_parent ul li > a img {
  max-width: 100% !important;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.battery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.battery-card {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #E9EDF3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.04);
}

.card-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.card-num.yellow {
  color: #E5A900;
}

.card-num.blue {
  color: #4B8FD9;
}

.card-num.green {
  color: #49A878;
}

.battery-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0B0D12;
}

.battery-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #4B5563;
}

.battery-card img {
  width: 100%;
  margin-top: 24px;
  border-radius: 12px;
  display: block;
}

/* ==============================
  Common
============================== */
.inner {
  width: min(1120px, 90%);
  margin-inline: auto;
}

.section-heading {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F4C430;
  transform: translateY(-50%);
}

/* ==============================
  ABOUT
============================== */
.about {
  position: relative;
  padding: 80px 0;
  background: radial-gradient(circle at 86% 12%, rgba(255, 218, 91, 0.18), transparent 28%), radial-gradient(circle at 8% 82%, rgba(120, 180, 255, 0.12), transparent 34%), linear-gradient(180deg, #fafafa 0%, #f5f5f3 100%);
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr; /* image は absolute なので単一カラム */
  align-items: center;
}

.about__body {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.about__title {
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.about__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
}

.about__image {
  position: absolute;
  top: 20px;
  right: 0;
  width: min(600px, 50%);
}

.about__card-list {
  width: min(1120px, 90%);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about__card {
  position: relative;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 6px;
}

.about__card-wrap {
  padding: 30px;
  margin-top: 0;
  z-index: 2;
  position: relative;
}

.about__card::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: calc(100% - 60px);
  height: 2px;
  background: #F4C430;
}

.about__card--green::after {
  background: #9BCB8E;
}

.about__card--red::after {
  background: #EF6B63;
}

.about__card-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 10px;
  font-size: 15px;
}

.about__card-label--yellow {
  color: #d4a500;
}

.about__card-label--green {
  color: #9BCB8E;
}

.about__card-label--red {
  color: #EF6B63;
}

.about__card-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.under__line {
  width: 20px;
  content: "";
  border: 1px solid #333;
  margin-bottom: 20px;
}

.about__card-text {
  margin: 0;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.about__card span img {
  width: 30px;
  display: block;
}

.about__card-img {
  width: 135px;
  position: absolute;
  top: 10px;
  right: 0;
}

/* ==============================
  LOGO MARQUEE
============================== */
.logo-marquee {
  max-width: 100%;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  overflow: hidden;
  z-index: 3;
}

.logo-marquee__track {
  display: flex;
  gap: 86px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: logoMarquee 50s linear infinite;
          animation: logoMarquee 50s linear infinite;
}

.logo-marquee__list {
  display: flex;
  align-items: center;
  gap: 86px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-marquee__item {
  flex: 0 0 auto;
}

.logo-marquee__image {
  height: clamp(72px, 11vw, 150px);
  width: auto;
  display: block;
  opacity: 0.86;
}

@-webkit-keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ==============================
  SERVICE
============================== */
.service {
  position: relative;
  padding: 80px 0 0;
  background: radial-gradient(circle at 82% 24%, rgba(255, 208, 68, 0.16), transparent 27%), linear-gradient(180deg, #f5f5f3 0%, #fbfbfa 100%);
  background-image: url(../images/service__bg.png);
}

.service__inner {
  display: grid;
  grid-template-columns: 450px 500px;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.service__title {
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
}

.service__lead {
  margin: 0 0 20px;
  font-size: 25px;
  line-height: 1.9;
  font-weight: 700;
}

.service__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
}

.service__diagram {
  text-align: right;
}

.service__diagram-image {
  width: min(460px, 100%);
  display: inline-block;
}

/* ==============================
  SERVICE LIST
============================== */
.service-list {
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}

.service-list__inner {
  position: relative;
  z-index: 1;
}

.service-list__item {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 72px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.65);
}

.service-list__number {
  margin: 0 0 10px;
  color: #e0a600;
  font-size: 13px;
  font-weight: 700;
}

.service-list__number-2 {
  color: #EF6B63;
}

.service-list__number-3 {
  color: #3FBEF1;
}

.service-list__number-4 {
  color: #F4C430;
}

.service-list__number span {
  color: #333;
}

.service-list__title {
  margin: 0 0 20px;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.35;
  font-weight: 700;
}

.service-list__text {
  max-width: 540px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
}

.service-list__visual {
  position: relative;
  text-align: right;
}

.service-list__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 22px;
  border-radius: 999px;
  background: #080808;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.service-list__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.35) 42%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.35) 58%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
  z-index: -1;
}

.service-list__button:hover::before {
  opacity: 1;
  -webkit-animation: service-button-shine 1.5s ease-in-out infinite;
          animation: service-button-shine 1.5s ease-in-out infinite;
}

.service-list__button:hover {
  opacity: 1;
}

@-webkit-keyframes service-button-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}

@keyframes service-button-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}
.service-list__image {
  display: block;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}

/* ==============================
  CTA
============================== */
.contact-cta {
  padding: 70px 0;
  background: #050505;
}

.contact-cta__inner {
  width: 70%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(120deg, rgba(96, 123, 132, 0.42), rgba(0, 0, 0, 0.96) 46%, rgba(84, 66, 22, 0.52));
}

.contact-cta__item {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 64px 32px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.contact-cta__item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

/* テキスト類をグラデーションより上に表示 */
.contact-cta__title,
.contact-cta__text,
.contact-cta__button {
  position: relative;
  z-index: 2;
}

/* 左側：左から中央へ進むグラデーション */
.contact-cta__item:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(156, 193, 205, 0.78) 0%, rgba(126, 165, 178, 0.68) 26%, rgba(96, 123, 132, 0.62) 52%, rgba(96, 123, 132, 0.42) 74%, rgba(96, 123, 132, 0) 100%);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* 右側：右から中央へ進むグラデーション */
.contact-cta__item:last-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(84, 66, 22, 0) 0%, rgba(84, 66, 22, 0.52) 26%, rgba(128, 101, 36, 0.68) 52%, rgba(176, 142, 62, 0.78) 74%, rgba(214, 178, 94, 0.82) 100%);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* hover時 */
.contact-cta__item:first-child:hover::before {
  opacity: 1;
  -webkit-animation: contact-cta-left-gradient 1.5s ease-in-out forwards;
          animation: contact-cta-left-gradient 1.5s ease-in-out forwards;
}

.contact-cta__item:last-child:hover::before {
  opacity: 1;
  -webkit-animation: contact-cta-right-gradient 1.5s ease-in-out forwards;
          animation: contact-cta-right-gradient 1.5s ease-in-out forwards;
}

/* 左 → 中央 */
@-webkit-keyframes contact-cta-left-gradient {
  0% {
    transform: translateX(-100%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes contact-cta-left-gradient {
  0% {
    transform: translateX(-100%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* 右 → 中央 */
@-webkit-keyframes contact-cta-right-gradient {
  0% {
    transform: translateX(100%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes contact-cta-right-gradient {
  0% {
    transform: translateX(100%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
.contact-cta__title {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
}

.contact-cta__text {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

/* ==============================
  FAQ
============================== */
.faq {
  padding: 80px 0;
  background: radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.95), transparent 25%), radial-gradient(circle at 90% 26%, rgba(255, 198, 40, 0.16), transparent 24%), linear-gradient(180deg, #f7f7f6 0%, #fff 100%);
}

.under__faq {
  padding: 60px 0;
  background: none;
  border-top: 1px solid #999;
}

.faq__head {
  text-align: center;
  margin-bottom: 52px;
}

.faq__title {
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
}

.faq__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.faq__list {
  width: min(760px, 100%);
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.faq__question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 24px 30px;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.faq__question-mark,
.faq__answer-mark {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.faq__question-text {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2px;
  background: #111;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

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

.faq__answer {
  display: none;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 0 30px 26px;
}

.faq__answer-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}

.faq__item.is-open .faq__answer {
  display: grid;
}

.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* ==============================
  FOOTER
============================== */
.footer {
  background: #000;
  color: #fff;
  padding: clamp(54px, 6vw, 80px) clamp(24px, 3.5vw, 80px) 25px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 4vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: clamp(36px, 4vw, 42px);
  border-bottom: 1px solid #7B7979;
}

.footer__brand {
  min-width: 0;
}

.footer__logo {
  display: block;
  width: clamp(160px, 14vw, 200px);
  margin: 0 0 clamp(28px, 3vw, 50px);
}

.footer__copy {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  color: #fff;
}

.footer__nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.footer__col {
  padding-right: clamp(20px, 2vw, 40px);
}

.footer__col2,
.footer__contact {
  padding-left: clamp(20px, 2vw, 40px);
  border-left: 1px solid #7B7979;
}

.footer__col2 a {
  font-size: 14px;
}

.footer h3 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 5px 0 20px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 20px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer__button:hover {
  opacity: 1;
}

.footer__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.35) 42%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.35) 58%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
  z-index: -1;
}

.footer__button:hover::before {
  opacity: 1;
  -webkit-animation: footer-button-shine 1.5s ease-in-out infinite;
          animation: footer-button-shine 1.5s ease-in-out infinite;
}

.footer__button,
.footer__button .footer__arrow {
  position: relative;
  z-index: 1;
}

@-webkit-keyframes footer-button-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}

@keyframes footer-button-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}
.footer__contact p {
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.6;
}

.footer__tel {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.footer__tell-icon {
  display: block;
  width: clamp(20px, 1.8vw, 24px);
  flex-shrink: 0;
}

.footer__arrow {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
}

.footer__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 175px;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid #7B7979;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  text-align: right;
}

.footer__bottom p {
  margin: 15px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #7B7979;
}

/* ==============================
  Responsive - Tablet (769px〜1024px)
============================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about__image {
    display: none;
  }
  .about__body {
    max-width: 100%;
  }
  .about__card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .service__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .service-list__item {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
  .contact-cta__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cta__title {
    font-size: 28px;
  }
  .footer__inner {
    gap: 40px;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 40px;
  }
  .footer__col,
.footer__col2,
.footer__contact {
    padding: 0;
    border: none;
  }
  .footer__col2,
.footer__contact {
    border-left: 1px solid #7B7979;
    padding-left: 32px;
  }
  .section-heading {
    margin-bottom: 20px;
  }
  .about__title {
    margin: 0 0 20px;
  }
  .service__title {
    margin: 0 0 20px;
  }
  .faq__title {
    margin: 0 0 20px;
  }
}
/* ==============================
  Responsive - SP (〜768px)
============================== */
@media screen and (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  .about__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about__image {
    display: none;
  }
  .about__body {
    max-width: 100%;
  }
  .about__card-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .logo-marquee {
    padding: 28px 0 54px;
  }
  .logo-marquee__list {
    gap: 42px;
  }
  .service {
    padding: 60px 0;
  }
  .service__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service__diagram {
    text-align: center;
  }
  .service-list {
    padding-bottom: 60px;
  }
  .service-list__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 44px 0;
  }
  .service-list__visual {
    text-align: left;
  }
  .service-list__image {
    margin-left: 0;
  }
  .contact-cta {
    padding: 52px 0;
  }
  .contact-cta__title {
    font-size: 28px;
  }
  .contact-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-cta__item {
    padding: 48px 24px;
  }
  .contact-cta__item:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .faq {
    padding: 60px 0;
  }
  .faq__head {
    margin-bottom: 38px;
  }
  .faq__question {
    padding: 22px 20px;
    gap: 14px;
  }
  .faq__question-text {
    font-size: 14px;
  }
  .faq__answer {
    padding: 0 20px 24px;
    gap: 14px;
  }
  /* Footer SP */
  .footer {
    padding: 60px 40px 20px;
  }
  .footer__inner {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 44px;
  }
  .footer__brand {
    width: 100%;
  }
  .footer__logo {
    width: 160px;
    margin-bottom: 24px;
  }
  .footer__copy {
    font-size: 14px;
    line-height: 1.9;
  }
  .footer__nav {
    width: 100%;
    justify-content: start;
  }
  .footer__contact {
    grid-column: 1/-1;
  }
  .footer h3 {
    margin: 0 0 16px;
    font-size: 16px;
  }
  .footer li + li {
    margin-top: 12px;
  }
  .footer__contact p {
    font-size: 13px;
  }
  .footer__tel {
    font-size: 22px;
  }
  .footer__button {
    width: 100%;
    max-width: 280px;
  }
  .footer__bottom {
    text-align: left;
  }
  .section-heading {
    margin-bottom: 20px;
  }
  .about__title {
    margin: 0 0 20px;
  }
  .service__title {
    margin: 0 0 20px;
  }
  .faq__title {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a a" "b c";
    min-width: 0;
    row-gap: 20px;
  }
  .footer__col1 {
    grid-area: a;
    border-left: 1px solid #7B7979;
    padding-left: clamp(20px, 2vw, 40px);
  }
  .footer__col2 {
    grid-area: b;
  }
  .footer__contact {
    grid-area: c;
  }
  .footer__button {
    max-width: 200px;
  }
  .hero-frame {
    left: 10px;
    bottom: 30px;
  }
  .section-heading {
    font-size: 18px;
  }
  .section__title {
    font-size: 25px;
  }
  .about__card-title {
    font-size: 20px;
  }
  .about__card-label {
    font-size: 14px;
  }
  .service__lead {
    font-size: 17px;
    line-height: 1.5;
  }
  .service-list__title {
    font-size: 22px;
  }
  .contact-cta__title {
    font-size: 25px;
  }
  .about__text {
    font-size: 14px;
  }
  .service__text {
    font-size: 14px;
  }
  .service-list__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 430px) {
  .footer {
    padding: 60px 0 20px;
  }
  .footer__inner {
    width: 90%;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .footer__col1 h3 {
    margin-bottom: 0;
  }
  .footer__bottom {
    width: 90%;
  }
}
@media screen and (max-width: 378px) {
  .about__card-img {
    width: 110px;
    top: 40px;
  }
}
/* ==============================
  FIPページ
============================== */
.under {
  position: relative;
  background: #fbfbfa;
  color: #0B0D12;
}

.under-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url(../images/fip-mv.png);
  background-size: cover;
  background-position: right;
}

.under-hero__inner {
  position: absolute;
  z-index: 1;
  width: min(100%, 640px);
  margin-left: clamp(24px, 5.5vw, 80px);
  bottom: 42%;
  transform: translateY(60%);
}

.under-hero__body {
  max-width: 640px;
}

.under-hero__title {
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.under-hero__text {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.under-about {
  padding: 60px 0;
}

.under-about__head {
  margin-bottom: 40px;
  text-align: center;
}

.under-about-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.under-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.under-about__img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.under-about__card {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  align-items: center;
}

.under-about__card-mid {
  padding: 0 20px;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
}

.under-about__card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.under-about__card p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.under-compare {
  padding: 60px 0;
  border-top: 1px solid #999;
}

.under-compare__inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 80px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 380px minmax(0, 800px);
  gap: 80px;
  align-items: center;
}

.under-section__lead {
  margin: 30px 0 0;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.under-compare__table-wrap {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
}

.under-compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.under-compare__col--label {
  width: 168px;
}

.under-compare__col--fit,
.under-compare__col--fip {
  width: calc((100% - 168px) / 2);
}

.under-compare__table th,
.under-compare__table td {
  height: 66px;
  padding: 0 30px;
  vertical-align: middle;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.under-compare__table td {
  font-weight: 500;
  font-size: 17px;
}

.under-compare__table thead th {
  height: 64px;
  background: #eee;
  text-align: center;
  font-size: 17px;
}

.under-compare__table tbody th {
  text-align: left;
  font-size: 19px;
  white-space: nowrap;
}

.under-compare__table tbody td {
  text-align: center;
}

.under-compare__table tr > *:last-child {
  border-right: none;
}

.under-compare__table tbody tr:last-child > * {
  border-bottom: none;
}

.under-compare__cell--green {
  color: #197A33;
}

.fip-profit {
  padding: 60px 0;
  border-top: 1px solid #999;
}

.fip-profit__head {
  width: 31%;
  flex-shrink: 0;
}

.fip-profit__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  flex: 1;
}

.fip-profit-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.fip-profit-card__number {
  margin: 0;
  padding: 24px 24px 0;
  font-family: "Inter", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.fip-profit-card__number--yellow {
  color: #ffe27a;
  -webkit-text-stroke: 1px #f4c534;
  text-stroke: 1px #f4c534;
}

.fip-profit-card__number--blue {
  color: #8CC4FF;
  -webkit-text-stroke: 1px #5EA2FF;
  text-stroke: 1px #5EA2FF;
}

.fip-profit-card__number--green {
  color: #A3E7AA;
  -webkit-text-stroke: 1px #74C97B;
  text-stroke: 1px #74C97B;
}

.fip-profit-card__title {
  margin: 18px 24px 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.fip-profit-card__text {
  margin: 10px 24px 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.fip-profit-card__image-wrap {
  margin: 0;
  width: 100%;
  aspect-ratio: 188/108;
  margin: auto 0 0;
}

.fip-profit-card__image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.fip-model {
  padding: 60px 0;
  border-top: 1px solid #999;
}

.fip-model__head {
  width: 250px;
  flex-shrink: 0;
}

.fip-model__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  flex: 1;
}

.fip-model-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 170px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.fip-model-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 20px 24px 30px;
  background: linear-gradient(93.37deg, #FFFFFF 2.12%, rgba(255, 255, 255, 0.92) 53.5%, rgba(255, 255, 255, 0) 62.86%);
}

.fip-model-card__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.fip-model-card__title--blue {
  color: #1e82d8;
}

.fip-model-card__title--green {
  color: #168a43;
}

.fip-model-card__text {
  margin-top: 14px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.fip-model-card__list {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.fip-model-card__item {
  position: relative;
  padding-left: 20px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.fip-model-card__item::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #00a85a;
  font-weight: 700;
}

.fip-model-card__item1::before {
  color: #1e82d8;
}

.fip-model-card__image-wrap {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
}

.fip-model-card__image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.fip-flow {
  padding: 60px 0;
  border-top: 1px solid #999;
}

.fip-flow__head {
  width: 240px;
  flex-shrink: 0;
}

.fip-flow__body {
  flex: 1;
}

.fip-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fip-flow__item {
  position: relative;
  text-align: center;
}

.fip-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 46px);
  width: calc(100% - 64px);
  height: 1px;
  background: #d7dce2;
}

.fip-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 33px;
  right: -16px;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7eb9ff;
}

.fip-flow__number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border: 1px solid #d7dce2;
  border-radius: 50%;
  background: #fff;
  color: #2d74d8;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.fip-flow__item-title {
  margin: 16px 0 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.fip-flow__text {
  margin: 8px 0 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.under-section__title {
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.faq__under-head {
  text-align: left;
  max-width: 410px;
}

.fip__under-inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 80px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.under {
  background-color: #fbfbfa;
}

/* ==============================
  gasページ
============================== */
.gas__hero {
  background-image: url(../images/gas-mv.png);
}

.under-compare__col-gas--label {
  width: 240px;
}

.under-compare__col-gas--fit,
.under-compare__col-gas--fip {
  width: calc((100% - 240px) / 2);
}

.gas__flow-img {
  width: 100px;
  margin-inline: auto;
  margin-top: 20px;
}

.gas-flow__number {
  color: #0B8A63;
}

.fip-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 33px;
  right: -16px;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8ED0B7;
}

.gas__sample-head {
  width: 17%;
}

.gas__lead--small {
  font-size: 14px;
  font-weight: 400;
  color: #606060;
  margin-top: 10px;
}

.gas__sample-cards {
  max-width: 100%;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}

.gas__sample-card {
  width: 100%;
  min-width: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.gas__card-title--sub {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  min-height: 2lh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gas__card__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.gas__card-img {
  margin-top: 10px;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.gas__card-text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #606060;
}

.reduction-badge {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(56deg, #1FA06A 12.52%, #138A5D 46.73%, #0D6F4A 80.94%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0px 12px 24px rgba(16, 46, 35, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: -40px auto 0;
  z-index: 2;
}

.reduction-badge__number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  color: #fff;
}

.reduction-badge__value {
  font-size: 35px;
  font-weight: 500;
  line-height: 0.9;
}

.reduction-badge__value-last {
  font-size: 16px;
}

.reduction-badge__percent {
  margin-left: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  transform: translateY(-2px);
}

.reduction-badge__percent-last {
  transform: translateY(2px);
}

.reduction-badge__label {
  margin: 6px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.gas__industry {
  padding: 60px 0;
  border-top: 1px solid #999;
}

.industry {
  padding: 60px 0;
  background: #fff;
}

.industry__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
  box-sizing: border-box;
}

.industry__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  row-gap: 20px;
}

.industry__item {
  position: relative;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
}

.industry__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.45);
}

.industry__item:first-child::before {
  display: none;
}

.industry__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.industry__icon {
  width: 90px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.industry__text {
  margin: 15px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.gas__industry-head {
  width: 210px;
}

/* ==============================
  エコクールページ
============================== */
.ecocool__hero {
  background-image: url(../images/ecocool-mv.png);
}

.ecocool__compare-img {
  width: 80%;
}

.ecocool__compare-inner {
  grid-template-columns: 465px minmax(0, 870px);
}

.ecocool__flow-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.ecocool__flow-head {
  width: 260px;
  flex-shrink: 0;
}

.ecocool__flow-body {
  flex: 1;
  min-width: 0;
}

.ecocool__flow-list {
  --flow-gap: clamp(40px, 4vw, 80px);
  --circle-size: 72px;
  --line-space: 18px;
  display: flex;
  justify-content: space-between;
  gap: var(--flow-gap);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ecocool__flow-item {
  position: relative;
  flex: 1 1 0;
  width: auto;
  max-width: none;
  min-width: 0;
  text-align: left;
}

.ecocool__flow-number {
  width: var(--circle-size);
  height: var(--circle-size);
  margin: 0;
  color: #5EA2FF;
}

.ecocool__flow-item-title {
  text-align: left;
}

.ecocool__flow-item .fip-flow__text {
  text-align: left;
}

.ecocool__flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--circle-size) / 2);
  left: calc(var(--circle-size) + var(--line-space));
  width: calc(100% + var(--flow-gap) - var(--circle-size) - var(--line-space) * 2);
  height: 2px;
  background: #d7dce2;
}

.ecocool__flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(var(--circle-size) / 2 - 2.5px);
  left: calc(var(--circle-size) + var(--line-space) + (100% + var(--flow-gap) - var(--circle-size) - var(--line-space) * 2) / 2 - 2.5px);
  right: auto;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5EA2FF;
}

.ecocool-result {
  padding: 60px 0;
  border-top: 1px solid #999;
}

.ecocool-result__inner {
  align-items: center;
}

.ecocool-result__head {
  width: 260px;
  flex-shrink: 0;
}

.ecocool-result__cards {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.ecocool-result-card {
  min-height: 250px;
  padding: 30px 24px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08), 0 4px 0 #1688ff;
  text-align: center;
}

.ecocool-result-card--accent {
  border: 2px solid #1688ff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1), 0 4px 0 #1688ff;
}

.ecocool-result-card__title {
  margin: 10px 0 5px;
  color: #0078ff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.ecocool-result-card__main {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.ecocool-result-card__main2 {
  font-size: 30px;
}

.ecocool-result-card__main--blue {
  color: #1688ff;
  font-size: 62px;
  line-height: 1;
}

.ecocool-result-card__main span {
  margin-left: 3px;
  font-size: 20px;
  font-weight: 700;
}

.ecocool-result-card__main--blue span {
  font-size: 28px;
}

.ecocool-result-card__text {
  margin: 5px 0 0;
  color: #000;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
}

.ecocool-result-card__text span {
  font-size: 18px;
}

.ecocool__result-head {
  width: 25%;
}

.ecocool-result-card__main-small {
  font-size: 18px;
}

.ecocool-result-card__icon-img {
  width: 120px;
  margin-inline: auto;
}

/* ==============================
  LEDページ
============================== */
.led__hero {
  background-image: url(../images/led-mv.png);
}

.led__compare {
  max-width: 1080px;
  margin: 60px auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 58px;
}

.section-title .accent {
  color: #0D6EFD;
}

.section-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-top: 16px;
}

.card-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding: 0 80px;
}

.card {
  position: relative;
  width: 50%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 8px rgba(15, 23, 42, 0.04), 0px 10px 30px rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 27px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}

.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  padding: 10px 28px;
  margin-top: -75px;
  margin-bottom: 32px;
  white-space: nowrap;
}

.badge.blue {
  background: #0D6EFD;
}

.badge.green {
  background: #078A3D;
}

.badge-number {
  font-weight: 700;
  font-size: 30px;
  line-height: 43px;
  color: #FFFFFF;
}

.badge-label {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  color: #FFFFFF;
}

.icon-circle {
  width: 120px;
  height: 120px;
}

.card-headline {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
}

.card-headline.blue {
  color: #005BFF;
}

.card-headline.green {
  color: #078A3D;
}

.card-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  width: 100%;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  padding: 8px 0;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon.blue {
  background: #0D6EFD;
}

.check-icon.green {
  background: #078A3D;
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

.recommend-box {
  width: 100%;
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
}

.recommend-box.blue {
  background: #EEF3FD;
}

.recommend-box.green {
  background: #EDF6F3;
}

.recommend-title {
  font-weight: 700;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 12px;
}

.recommend-title.blue {
  color: #005BFF;
}

.recommend-title.green {
  color: #078A3D;
}

.recommend-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
}

.led__merit {
  padding: 60px 0;
  border-top: 1px solid #999;
  text-align: center;
}

.led__merit-title {
  margin: 0 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #000;
}

.led__merit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 1120px;
}

.led__merit-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.led__merit-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #000;
}

.led__merit-icon {
  width: 120px;
  height: 120px;
  margin: 0 0 20px;
}

.led__merit-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.led__merit-item-title {
  margin: 0 0 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #000;
}

.led__merit-item-text {
  margin: 0;
  max-width: 200px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.44;
  color: #000;
}

.led__lineup {
  padding: 60px 0;
  border-top: 1px solid #999;
  text-align: center;
}

.led__lineup-title {
  margin: 0 0 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  color: #000;
}

.led__lineup-lead {
  margin: 0 auto 40px;
  max-width: 695px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

.led__lineup-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
  max-width: 1080px;
}

.led__lineup-item {
  text-align: left;
}

.led__lineup-img {
  width: 100%;
  aspect-ratio: 300/192;
  margin: 0 0 20px;
  border-radius: 5px;
  overflow: hidden;
}

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

.led__lineup-item-title {
  margin: 0 0 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #000;
}

.led__lineup-item-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.44;
  color: #000;
}

/* ==============================
  会社概要ページ
============================== */
.company__hero {
  background-image: url(../images/company-mv.png);
}

.company__inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 80px;
  margin-inline: auto;
}

.company__page {
  background-color: #000;
}

.company__hero-title {
  margin-bottom: 20px;
}

.company__hero {
  background-position: center;
}

.company__message {
  margin: 60px 0;
}

.message__head {
  text-align: left;
}

.message__text {
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 1.5;
}

.message__name {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: bold;
  color: #fff;
  text-align: right;
  margin-top: 30px;
}

.message__name span {
  font-size: 20px;
  font-weight: 700;
  margin-right: 30px;
}

.message__head .section-heading, .message__head .section__title {
  color: #fff;
}

.company__business {
  padding: 60px 0;
  background: none;
  border-top: 1px solid #999;
}

.business-list {
  padding: 80px 0;
  background: #000;
}

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

.business-list__card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 373px;
  color: #fff;
  text-decoration: none;
  background: #000;
}

.business-list__image {
  width: 100%;
  height: 100%;
  min-height: 373px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.business-list__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: background 0.35s ease;
}

.business-list__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}

.business-list__icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.business-list__icon--fip {
  transform: scaleX(-1);
}

.business-list__title {
  margin: 0 0 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}

.business-list__text {
  margin: 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}

.business-list__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 170px;
  height: 40px;
  border-radius: 120px;
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
}

.business-list__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.35) 42%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.35) 58%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
  z-index: -1;
}

.business-list__button > span {
  position: relative;
  z-index: 1;
}

.business-list__arrow {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

/* hover */
.business-list__card:hover .business-list__image {
  transform: scale(1.3);
}

.business-list__card:hover .business-list__overlay {
  background: rgba(0, 0, 0, 0.48);
}

.business-list__card:hover .business-list__button::before {
  opacity: 1;
  -webkit-animation: business-button-shine 1.5s ease-in-out infinite;
          animation: business-button-shine 1.5s ease-in-out infinite;
}

@-webkit-keyframes business-button-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}

@keyframes business-button-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}
.company__profile {
  padding: 60px 0;
  background: none;
  border-top: 1px solid #999;
}

.company__content {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(320px, 1fr);
  align-items: center;
  gap: 72px;
  padding: 40px 36px;
  border: 1px solid #7b7979;
  border-radius: 18px;
}

.company__list {
  margin: 0;
}

.company__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  -moz-column-gap: 32px;
       column-gap: 32px;
  padding: 28px 10px;
  border-bottom: 1px solid #7b7979;
}

.company__row:first-child {
  padding-top: 0;
}

.company__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.company__term {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.company__desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.company__position {
  margin-right: 10px;
}

.company__row--business {
  align-items: start;
}

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

.company__map-img {
  width: 100%;
  max-width: 417px;
  height: auto;
  display: block;
}

/* ==============================
  led Responsive
============================== */
@media screen and (max-width: 1024px) {
  .led__merit-title {
    font-size: 32px;
  }
  .led__merit-list {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .led__merit-icon {
    width: 90px;
    height: 90px;
  }
  .led__merit-item:nth-child(3)::before {
    content: none;
  }
  .card {
    width: calc(50% - 20px);
    padding: 30px;
  }
  .badge {
    padding: 5px 20px;
    margin-top: -58px;
  }
  .badge-label {
    font-size: 20px;
  }
  .badge-number {
    font-size: 20px;
  }
  .led__lineup-title {
    font-size: 32px;
  }
  .led__lineup-lead {
    margin-bottom: 48px;
    font-size: 18px;
  }
  .led__lineup-list {
    max-width: 100%;
    gap: 20px;
  }
  .business-list__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .company__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .company__map-img {
    max-width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .led__merit {
    padding: 60px 0;
  }
  .led__merit-title {
    margin-bottom: 40px;
    font-size: 28px;
  }
  .led__merit-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .led__merit-item:nth-child(3)::after,
.led__merit-item:nth-child(4)::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: #000;
  }
  .led__compare {
    width: 90%;
  }
  .card-grid {
    flex-direction: column;
  }
  .card {
    width: 100%;
    margin-inline: auto;
  }
  .led__lineup {
    padding: 60px 0;
  }
  .led__lineup-title {
    font-size: 28px;
  }
  .led__lineup-lead {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
  }
  .led__lineup-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .company__hero {
    background-position: 59%;
  }
  .message__text {
    font-size: 16px;
  }
  .message__name span {
    font-size: 14px;
    margin-right: 15px;
  }
  .company__inner {
    width: 90%;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .business-list__inner {
    grid-template-columns: 1fr;
  }
  .company__content {
    padding: 32px 20px;
    border-radius: 14px;
    gap: 30px;
  }
  .company__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }
  .company__term {
    font-size: 16px;
  }
  .company__desc {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
  }
  .company__map-img {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .led__merit-list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .led__merit-item-text {
    max-width: 260px;
  }
  .led__merit-item:not(:first-child) {
    position: relative;
    padding-top: 32px;
  }
  .led__merit-item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: #000;
  }
  .led__merit-item:nth-child(3)::after,
.led__merit-item:nth-child(4)::after {
    display: none;
  }
  .led__lineup-list {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .led__lineup-item-title {
    font-size: 18px;
  }
  .led__lineup-item-text {
    font-size: 14px;
  }
  .section-title {
    font-size: 30px;
    line-height: 44px;
  }
  .section-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .card {
    padding-left: 24px;
    padding-right: 24px;
  }
  .card-grid {
    padding: 0;
  }
  .led__lineup-img {
    margin: 0 0 10px;
  }
  .led__lineup-item-title {
    margin: 0 0 5px;
  }
}
/* ==============================
  under-responsive
============================== */
/* 1200px */
@media screen and (max-width: 1200px) {
  .under-compare__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .under-compare__body {
    max-width: 100%;
  }
  .under-hero__inner {
    width: min(100% - 48px, 600px);
    margin-left: 48px;
    margin-top: 0;
  }
  .under-hero__title {
    font-size: 44px;
  }
  .under-hero__text {
    max-width: 380px;
    font-size: 20px;
  }
  .fip__under-inner {
    flex-direction: column;
  }
  .fip__under-head {
    width: 100%;
  }
  .fip-model__cards {
    width: 100%;
    display: flex;
  }
  .fip-model-card {
    display: flex;
    min-width: calc(50% - 12px);
  }
  .fip-flow__body {
    width: 100%;
  }
  .faq__list-under {
    width: 100%;
  }
  .faq__under-head {
    min-width: 100%;
  }
  .ecocool__compare-inner {
    grid-template-columns: 1fr;
  }
  .ecocool__compare-img {
    width: 70%;
    margin-inline: auto;
  }
  .ecocool__compare-wrap {
    display: flex;
  }
  .ecocool__flow-head {
    width: 260px;
  }
  .ecocool__flow-inner {
    flex-direction: unset;
  }
  .ecocool-result__inner {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
  .ecocool-result__head {
    width: 100%;
  }
  .ecocool-result__cards {
    width: 100%;
    gap: 24px;
  }
  .led__faq-head {
    text-align: center;
  }
}
/* 1024px */
@media screen and (max-width: 1024px) {
  .under-about__card-mid {
    border-right: none;
  }
  .fip-profit__title {
    font-size: 28px;
  }
  .fip-profit__cards {
    gap: 16px;
  }
  .fip-profit-card__number {
    padding: 22px 20px 0;
    font-size: 30px;
  }
  .fip-profit-card__title {
    margin: 16px 20px 0;
  }
  .fip-profit-card__text {
    margin: 10px 20px 16px;
  }
  .fip-model__cards {
    gap: 24px;
  }
  .fip-model-card__content {
    padding: 26px 18px 22px 24px;
  }
  .fip-flow__list {
    gap: 18px;
  }
  .fip-flow__number {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }
  .fip-flow__item:not(:last-child)::after {
    top: 31px;
    left: calc(50% + 40px);
    width: calc(100% - 70px);
  }
  .fip-flow__item:not(:last-child)::before {
    top: 29px;
    right: -11px;
  }
  .fip__under-inner {
    gap: 40px;
  }
  .ecocool__compare-inner {
    grid-template-columns: 1fr;
  }
  .ecocool__compare-wrap {
    justify-content: space-between;
  }
  .ecocool__compare-img {
    width: 50%;
  }
  .ecocool__compare-lead {
    width: 40%;
  }
  .ecocool__flow-inner {
    flex-direction: column;
    gap: 36px;
  }
  .ecocool__flow-head {
    width: 100%;
  }
  .ecocool__flow-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .ecocool__flow-list {
    --flow-gap: clamp(24px, 3.5vw, 48px);
    display: flex;
    justify-content: space-between;
    gap: var(--flow-gap);
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .ecocool__flow-item {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
  }
  .ecocool__flow-number {
    margin: 0;
  }
  .ecocool__flow-item:not(:last-child)::after {
    top: calc(var(--circle-size) / 2);
    left: calc(var(--circle-size) + var(--line-space));
    width: calc(100% + var(--flow-gap) - var(--circle-size) - var(--line-space) * 2);
  }
  .ecocool__flow-item:not(:last-child)::before {
    top: calc(var(--circle-size) / 2 - 2.5px);
    left: calc(var(--circle-size) + var(--line-space) + (100% + var(--flow-gap) - var(--circle-size) - var(--line-space) * 2) / 2 - 2.5px);
    right: auto;
  }
  .ecocool-result__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .ecocool-result-card {
    padding: 28px 18px 15px;
  }
  .ecocool-result-card__main {
    font-size: 20px;
  }
  .ecocool-result-card__main2 {
    font-size: 30px;
  }
  .ecocool-result-card__main--blue {
    font-size: 52px;
  }
  .ecocool-result-card__title {
    font-size: 16px;
  }
  .ecocool-result-card__main span {
    font-size: 16px;
  }
}
/* 768px */
@media screen and (max-width: 768px) {
  .under-about__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .under-about__card {
    gap: 18px;
    padding: 20px;
    margin-inline: auto;
  }
  .under-about__card-mid {
    padding: 20px;
    border-left: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .under-about__img {
    width: 88px;
    height: 88px;
  }
  .under-about__card h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .under-about__card p {
    font-size: 14px;
    line-height: 1.7;
  }
  .under-about__head {
    margin-bottom: 20px;
  }
  .under-compare__inner {
    gap: 32px;
  }
  .under-compare__title {
    font-size: 30px;
    line-height: 1.45;
  }
  .under-compare__text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }
  .under-compare__table-wrap {
    margin-inline: calc(50% - 50vw);
    padding-inline: 5vw;
    overflow-x: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-overflow-scrolling: touch;
  }
  .under-compare__table {
    min-width: 720px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
    font-size: 15px;
  }
  .under-compare__table th,
.under-compare__table td {
    height: 58px;
    padding: 0 18px;
  }
  .under-compare__table thead th {
    height: 58px;
    font-size: 15px;
  }
  .under-compare__table tbody th {
    font-size: 15px;
  }
  .fip-profit__title {
    font-size: 30px;
    line-height: 1.55;
  }
  .fip-profit__cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fip-profit-card {
    border-radius: 16px;
  }
  .fip-profit-card__number {
    padding: 24px 24px 0;
    font-size: 32px;
  }
  .fip-profit-card__title {
    margin: 16px 24px 0;
    font-size: 18px;
  }
  .fip-profit-card__text {
    margin: 10px 24px 18px;
    font-size: 14px;
  }
  .fip-profit-card__image-wrap {
    aspect-ratio: 335/170;
  }
  .under-hero__inner {
    margin-left: 40px;
    width: 60%;
    bottom: 15%;
    transform: none;
  }
  .under-hero__title {
    margin-bottom: 20px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.45;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .under-hero__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.9;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  }
  .fip-model__title {
    font-size: 30px;
  }
  .fip-model__cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .fip-model-card {
    min-height: 220px;
  }
  .fip-model-card__content {
    padding: 26px 20px 24px;
    background: linear-gradient(93.37deg, #FFFFFF 2.12%, rgba(255, 255, 255, 0.92) 63.5%, rgba(255, 255, 255, 0) 72.86%);
  }
  .fip-flow__title {
    font-size: 30px;
  }
  .fip-flow__body {
    width: 100%;
  }
  .fip-flow__list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 50px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .fip-flow__item {
    display: grid;
    width: 100%;
    grid-template-columns: 72px 1fr;
    -moz-column-gap: 18px;
         column-gap: 18px;
    text-align: left;
  }
  .fip-flow__item:not(:last-child)::after {
    width: 1px;
    height: 30px;
    left: 37px;
    top: 80px;
  }
  .fip-flow__item:not(:last-child)::before {
    top: 90px;
    right: 0;
    left: 35px;
  }
  .fip-flow__number {
    grid-row: span 2;
    width: 72px;
    height: 72px;
    margin: 0;
  }
  .fip-flow__item-title {
    margin-top: 4px;
    font-size: 20px;
  }
  .fip-flow__text {
    margin-top: 5px;
    font-size: 16px;
  }
  .fip__under-inner {
    width: 90%;
    padding: 0;
  }
  .under-compare__inner {
    width: 90%;
    padding: 0;
  }
  .under__faq {
    padding: 60px 0;
  }
  .under-section__title {
    font-size: 28px;
  }
  .under-section__lead {
    font-size: 18px;
    margin-top: 20px;
  }
  .under-compare__col--label {
    width: 130px;
  }
  .under-compare__col--fit,
.under-compare__col--fip {
    width: calc((100% - 130px) / 2);
  }
  .under-compare__col-gas--label {
    width: 180px;
  }
  .under-compare__col-gas--fit,
.under-compare__col-gas--fip {
    width: calc((100% - 180px) / 2);
  }
  .gas-flow__item {
    display: grid;
    width: 100%;
    grid-template-columns: 72px 80px 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 18px;
         column-gap: 18px;
    text-align: left;
  }
  .gas-flow__number {
    grid-column: 1;
    grid-row: 1/3;
  }
  .gas__flow-img {
    grid-column: 2;
    grid-row: 1/3;
    width: 72px;
    height: 72px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: 0;
  }
  .gas-flow__item .fip-flow__item-title {
    grid-column: 3;
    grid-row: 1;
  }
  .gas-flow__item .fip-flow__text {
    grid-column: 3;
    grid-row: 2;
  }
  .ecocool__compare-img {
    width: 100%;
  }
  .ecocool__compare-lead {
    width: 100%;
  }
  .ecocool__flow-inner {
    flex-direction: column;
    gap: 32px;
  }
  .ecocool__flow-head {
    width: 100%;
  }
  .ecocool__flow-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .ecocool__flow-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .ecocool__flow-item {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 18px;
         column-gap: 18px;
    row-gap: 8px;
    width: 100%;
    max-width: none;
    min-width: 0;
    text-align: left;
  }
  .ecocool__flow-number {
    grid-column: 1;
    grid-row: 1/3;
    width: 64px;
    height: 64px;
    margin: 0;
  }
  .ecocool__flow-item .ecocool__flow-item-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .ecocool__flow-item .fip-flow__text {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
  .ecocool__flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 72px;
    left: 31px;
    width: 1px;
    height: 28px;
  }
  .ecocool__flow-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 84px;
    left: 29px;
    right: auto;
    z-index: 2;
    width: 5px;
    height: 5px;
  }
  .ecocool-result {
    padding: 52px 0;
  }
  .ecocool-result__inner {
    gap: 32px;
  }
  .ecocool-result__cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .ecocool-result-card {
    min-height: auto;
    padding: 30px 22px 28px;
  }
  .ecocool-result-card__main {
    font-size: 30px;
  }
  .ecocool-result-card__main--blue {
    font-size: 56px;
  }
}
/* 600px */
@media screen and (max-width: 600px) {
  .fip-model-card {
    width: 100%;
    min-height: auto;
  }
  .fip-model__cards {
    display: flex;
    flex-direction: column;
  }
  .fip-model-card__title {
    font-size: 17px;
  }
  .fip-model-card__text {
    font-size: 14px;
  }
  .fip-model-card__list {
    margin: 10px 0 0;
  }
}
/* 500px */
@media screen and (max-width: 500px) {
  .under-compare__title {
    font-size: 28px;
  }
  .ecocool-result__cards {
    grid-template-columns: 1fr;
  }
  .ecocool-result-card__title {
    font-size: 20px;
  }
  .ecocool-result-card__main span {
    font-size: 25px;
  }
  .ecocool-result-card__main {
    font-size: 33px;
  }
  .ecocool-result-card__main2 {
    font-size: 40px;
  }
  .ecocool-result-card__text {
    font-size: 12px;
  }
  .ecocool__flow-item:not(:last-child)::after {
    height: 50px;
  }
  .ecocool__flow-item:not(:last-child)::before {
    top: 95px;
  }
}
/* 480px */
@media screen and (max-width: 480px) {
  .under-about__img {
    width: 76px;
    height: 76px;
  }
  .under-about__card h3 {
    font-size: 17px;
  }
  .under-about__card p {
    font-size: 13px;
  }
  .fip-model-card {
    min-height: auto;
  }
  .fip-model-card__content {
    width: 100%;
    padding: 24px 22px 20px;
  }
  .under-hero__inner {
    width: 85%;
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .under-hero__title {
    font-size: 28px;
  }
  .under-hero__text {
    font-size: 15px;
  }
  .fip-flow__item-title {
    font-size: 18px;
  }
  .fip-flow__text {
    font-size: 14px;
  }
  .gas-flow__item {
    display: grid;
    width: 100%;
    grid-template-columns: 72px 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    text-align: left;
    display: grid;
    width: 100%;
  }
  .company__hero {
    background-image: url(../images/company-mvsp.png);
    background-position: center;
  }
}
.lower-breadcrumb {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 40px;
}

.lower-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lower-breadcrumb__item {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.lower-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.lower-breadcrumb__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lower-breadcrumb__link:hover {
  opacity: 0.65;
}

.lower-breadcrumb__current {
  color: #fff;
}

@media (max-width: 768px) {
  .lower-breadcrumb {
    top: 100px;
    left: 20px;
  }
}
/* tb表示切替ユーティリティ */
.tb--show {
  display: none;
}

@media (max-width: 1200px) {
  .tb--none {
    display: none !important;
  }
  .tb--show {
    display: block !important;
  }
}
/* xl表示切替ユーティリティ */
.xl--show {
  display: none;
}

.sp--show {
  display: none;
}

.sp2--show {
  display: none;
}

@media (max-width: 1024px) {
  .xl--none {
    display: none !important;
  }
  .xl--show {
    display: block !important;
  }
}
/* SP表示切替ユーティリティ */
@media (max-width: 768px) {
  .sp--none {
    display: none !important;
  }
  .sp--show {
    display: block !important;
  }
}
/* SP表示切替ユーティリティ */
@media (max-width: 480px) {
  .sp2--none {
    display: none !important;
  }
  .sp2--show {
    display: block !important;
  }
}
.pc__nav-contact {
  position: relative;
  overflow: hidden;
  min-width: 170px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(145deg, #222, #050505);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.pc__nav-contact span {
  position: relative;
  z-index: 2;
}

.pc__nav-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.35) 42%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.35) 58%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
}

.pc__nav-contact:hover::before {
  opacity: 1;
  -webkit-animation: button-shine 1.5s ease-in-out infinite;
          animation: button-shine 1.5s ease-in-out infinite;
}

@-webkit-keyframes button-shine {
  0% {
    left: -75%;
  }
  100% {
    left: 110%;
  }
}

@keyframes button-shine {
  0% {
    left: -75%;
  }
  100% {
    left: 110%;
  }
}
@media screen and (max-width: 500px) {
  .pc__nav-contact::before,
.service-list__button::before,
.footer__button::before,
.contact-cta__item::before {
    -webkit-animation: none !important;
            animation: none !important;
    transition: none !important;
    opacity: 0 !important;
    display: none !important;
  }
  .pc__nav-contact,
.service-list__button,
.footer__button,
.contact-cta__item {
    transition: none !important;
  }
  .pc__nav-contact:hover::before,
.service-list__button:hover::before,
.footer__button:hover::before,
.contact-cta__item:hover::before {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 0 !important;
    display: none !important;
  }
}
/* お問い合わせページ*/
.contact {
  position: relative;
  background-color: #000;
}

.contact .pc__nav-contact {
  background: linear-gradient(145deg, #e9e6e6, #e4e3e3);
}

.contact .pc__nav-contact span {
  color: #000;
}

.contact__header {
  background-color: #000;
}

.contact__title {
  margin-inline: auto;
}

.contact__main {
  padding-top: 230px;
}

/* =========================
  Contact Form
========================= */
#formWrap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 48px 48px 50px;
  border: 1px solid #7B7979;
  border-radius: 18px;
  background: transparent;
  filter: drop-shadow(0 10px 30px rgba(200, 202, 208, 0.06)) drop-shadow(0 2px 8px rgba(225, 225, 225, 0.04));
}

.form__attention {
  margin: 0 0 40px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.formTable {
  width: 100%;
  border-collapse: collapse;
}

.formTable tr {
  display: block;
  margin-bottom: 34px;
}

.formTable th,
.formTable td {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  text-align: left;
}

.formTable th {
  display: flex;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.form__must {
  display: inline-block;
  margin-left: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.form__radio-list {
  display: flex;
  align-items: center;
  gap: 56px;
}

.form__radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.form__radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: block;
}

.form__radio input::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.form__radio input:checked::before {
  transform: scale(1);
}

/* 入力欄共通 */
.formTable input[type=text],
.formTable input[type=email],
.formTable input[type=tel],
.formTable select,
.formTable textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #7B7979;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.formTable input[type=text],
.formTable input[type=email],
.formTable input[type=tel],
.formTable select {
  height: 73px;
  padding: 0 24px;
}

.formTable textarea {
  min-height: 300px;
  padding: 22px 24px;
  resize: vertical;
}

/* placeholder */
.formTable input::-moz-placeholder, .formTable textarea::-moz-placeholder {
  color: #7B7979;
  opacity: 1;
}
.formTable input::placeholder,
.formTable textarea::placeholder {
  color: #7B7979;
  opacity: 1;
}

/* focus */
.formTable input[type=text]:focus,
.formTable input[type=email]:focus,
.formTable input[type=tel]:focus,
.formTable select:focus,
.formTable textarea:focus {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* select */
.formTable select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 28px) 50%, calc(100% - 20px) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}

.formTable select option {
  color: #000;
}

/* 送信ボタン */
#formWrap form > p:last-child {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
}

#formWrap input[type=submit] {
  max-width: 383px;
  height: 83px;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#formWrap input[type=submit]:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.confirm__button {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.form__attention-thanks {
  margin-top: 40px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .contact__main {
    padding-top: 200px;
  }
}
@media (max-width: 450px) {
  #formWrap {
    padding: 40px 30px;
  }
  .formTable th {
    font-size: 18px;
  }
  .form__radio-list {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .formTable input[type=text], .formTable input[type=email], .formTable input[type=tel], .formTable select {
    height: 60px;
    padding: 0 20px;
  }
  .formTable input[type=text], .formTable input[type=email], .formTable input[type=tel], .formTable select, .formTable textarea {
    font-size: 14px;
  }
  .formTable textarea {
    padding: 20px;
  }
}
.g-recaptcha div {
  margin-inline: auto;
}