@charset "utf-8";

/* =========================================================
   fade-lux（スクロールフェード）
========================================================= */
.fade-lux {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-lux.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   supply-section（上下余白ゼロ・最適化）
========================================================= */
.supply-section {
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 960px;
  color: var(--bg-inverse-color);
  line-height: 1.8;
}

/* 導入文 */
.supply-section .lead {
  text-align: center;
  font-size: 0.95rem;
  margin: 1.5rem 0 2.5rem;
  letter-spacing: 0.03em;
}

/* h2（導入タイトル） */
.supply-section h2 {
  margin: 0 0 1.5rem;
}

/* list1（3つの強み） */
.list1 {
  display: grid;
  gap: 2rem;
}

/* list（アイコン＋テキスト） */
.list {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

/* =========================================================
   flex1（交互レイアウト）
========================================================= */
.flex1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.flex1.reverse {
  flex-direction: row-reverse;
}

/* 画像（角丸＋影＋16:9） */
.flex1 .image {
  flex: 0 0 48%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.flex1 .image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  pointer-events: none;
  z-index: -1;
}
.flex1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flex1 .image span {
  position: absolute;
  bottom: -0.4em;
  left: -0.2em;
  font-size: clamp(2rem, 6vw, 5rem);
  opacity: 0.1;
}

/* テキスト */
.flex1 .text {
  flex: 1;
  line-height: 1.8;
  padding: 0 2rem;
}

/* PC：テキスト中央揃え */
@media (min-width:700px) {
  .flex1 .text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* スマホ：縦積み */
@media (max-width:700px) {
  .flex1,
  .flex1.reverse {
    flex-direction: column;
    align-items: flex-start;
  }
  .flex1 .image {
    width: 100%;
    border-radius: 10px;
  }
  .flex1 .image::before {
    border-radius: 10px;
  }
  .flex1 .text {
    padding: 1rem 0;
  }
}

@media (max-width: 700px) {
  .supply-section {
    padding: 0 2rem !important; /* 上下0／左右1rem */
  }
}

/* =========================================================
   クロージング
========================================================= */
.closing-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 4rem auto;
  padding: 2rem 1rem;
}
.closing-block p {
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.03em;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .closing-block p {
    white-space: nowrap;
  }
}
@media (max-width: 699px) {
  .closing-block p {
    white-space: normal;
  }
}

