/* ============================================================
   Gallery Section
============================================================ */

.gallery {
  position: relative;
  z-index: 3;
  background: var(--color-bg);
  overflow: hidden;
  padding: 0 0 80px;
}

/* ---- 各行 ---- */
.gallery__row {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 14px;
}

.gallery__row:last-of-type {
  margin-bottom: 0;
}

.gallery__track {
  display: flex;
  gap: 14px;
  width: max-content;
}

/* 右方向（translateX: -50% → 0） */
.gallery__row--right .gallery__track {
  animation: gallery-scroll-right 30s linear infinite;
}

/* 左方向（translateX: 0 → -50%） */
.gallery__row--left .gallery__track {
  animation: gallery-scroll-left 30s linear infinite;
}

@keyframes gallery-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes gallery-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- 各アイテム ---- */
.gallery__item {
  flex-shrink: 0;
  width: 384px;
  height: 384px;
  border-radius: 10px;
  overflow: hidden;
}

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

/* ---- フェードオーバーレイ（下へ向かって白） ---- */
.gallery__fade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 30%);
  pointer-events: none;
}

/* ============================================================
   News Section（お知らせ）
============================================================ */

.news {
  position: relative;
  z-index: 3;
  background: var(--color-bg);
  padding: 120px 0;
}

.news__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

/* ---- ヘッダー ---- */
/* ============================================================
   共通セクションパーツ
============================================================ */

.sec-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.feature__header .sec-dot {
  background: #fff;
}

.sec-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
}

.sec-title--white {
  color: #fff;
}

.sec-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ============================================================
   News Section
============================================================ */

.news__header {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}


/* ---- リスト ---- */
.news__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.news__divider {
  width: 100%;
  height: 1px;
  background: var(--color-dark-12);
}

.news__item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  text-decoration: none;
  transition: var(--transition-opacity);
}

.news__item:hover {
  opacity: 0.7;
}

.news__date {
  font-size: 14px;
  line-height: 1.1;
  color: var(--color-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.news__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  background: #f0f4f8;
  border-radius: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  white-space: nowrap;
  flex-shrink: 0;
  font-feature-settings: "palt" 1;
}

.news__item-title {
  flex: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  font-feature-settings: "palt" 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
}

.news__arrow img {
  width: 100%;
  height: auto;
}

/* ---- CTA ---- */
.news__cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  height: 50px;
  padding: 0 20px;
  background: var(--color-primary);
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-opacity);
  font-feature-settings: "palt" 1;
}

.news__cta:hover {
  opacity: 0.85;
}

.news__cta svg {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}

/* ============================================================
   CTA Section（お問い合わせ）
============================================================ */

.cta {
  position: relative;
  z-index: 3;
  background: var(--color-bg);
  padding: 80px 0;
}

.cta__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--color-primary);
  border-radius: 10px;
  overflow: hidden;
  padding: 80px;
}

.cta__card::before {
  content: '';
  position: absolute;
  right: -550px;
  top: -20px;
  transform: translateY(-50%) rotate(15deg);
  width: 1200px;
  height: 1200px;
  background: url('../img/cta/cta_bg.svg') center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

.cta__text,
.cta__btn {
  position: relative;
  z-index: 1;
}

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


.cta__body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.cta__faq-link {
  color: #fff;
  text-decoration: underline;
  transition: var(--transition-opacity);
}

.cta__faq-link:hover {
  opacity: 0.75;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  height: 70px;
  padding: 0 30px;
  background: #fff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-opacity);
  font-feature-settings: "palt" 1;
}

.cta__btn:hover {
  opacity: 0.85;
}

.cta__btn img {
  width: 14px;
  height: auto;
}

/* ============================================================
   Company Section（会社概要）
============================================================ */

.company {
  position: relative;
  z-index: 3;
  background: var(--color-bg);
  padding: 120px 0;
}

.company__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* ---- ヘッダー（左カラム） ---- */
.company__header {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}


/* ---- ボディ（右カラム） ---- */
.company__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

/* ---- テーブル ---- */
.company__table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

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

.company__divider {
  width: 100%;
  height: 1px;
  background: var(--color-dark-12);
}

.company__label {
  width: 200px;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark-70);
  font-feature-settings: "palt" 1;
  margin: 0;
}

.company__value {
  flex: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  font-feature-settings: "palt" 1;
  margin: 0;
}

/* ---- Google マップボタン ---- */
.company__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 11px;
  border: 1px solid var(--color-dark);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition-opacity);
}

.company__map-btn:hover {
  opacity: 0.7;
}

/* ---- CTA ---- */
.company__cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  height: 50px;
  padding: 0 20px;
  background: var(--color-primary);
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-opacity);
  font-feature-settings: "palt" 1;
}

.company__cta:hover {
  opacity: 0.85;
}

.company__cta svg {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}

/* ============================================================
   Feature Section（選ばれる理由）
============================================================ */

.feature {
  position: relative;
  background-image: url('../img/feature/bg.svg');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: var(--color-bg);
  overflow: hidden;
  padding: 120px 0 160px;
}

.feature__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  z-index: 3;
}

/* ---- 装飾アイコン ---- */
.feature__bg-icon {
  position: absolute;
  top: -14px;
  right: -200px;
  width: 810px;
  pointer-events: none;
  user-select: none;
}

.feature__bg-icon img {
  width: 100%;
  transform: rotate(-19.53deg);
  opacity: 0.3;
}

/* ---- セクションヘッダー ---- */
.feature__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 512px;
}


.feature__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ---- フィーチャーブロック ---- */
.feature__blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature__block {
  display: flex;
  align-items: center;
  gap: 62px;
}

.feature__block--reverse {
  flex-direction: row-reverse;
  gap: 60px;
}

.feature__block-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature__block-heading {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.feature__block-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ---- 画像エリア ---- */
.feature__block-img-grid {
  flex: 0 0 620px;
  width: 620px;
  height: 620px;
  border-radius: 10px;
  overflow: hidden;
}

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

/* ---- 白背景付き画像エリア（Block 2） ---- */
.feature__block-img-wrap {
  flex: 1;
  height: 620px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.feature__block-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


/* ---- 数字で見るirohana ---- */
.feature__stats {
  display: none;
}

.feature__stats--visible {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.feature__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}

.feature__stats-header {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.feature__stats-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.feature__stats-note {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-feature-settings: "palt" 1;
}

.feature__stat-cards {
  display: flex;
  gap: 20px;
}

.feature__stat-card {
  flex: 1;
  padding: 60px 40px;
  border-radius: 10px;
  background: rgba(25, 142, 178, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature__stat-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature__stat-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.feature__stat-label {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  font-feature-settings: "palt" 1;
}

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

.feature__stat-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.feature__stat-number-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.feature__stat-number {
  font-weight: 300;
  font-size: 134px;
  line-height: 1;
  color: #fff;
}

.feature__stat-unit {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #fff;
  padding-bottom: 16px;
}

/* ============================================================
   Service Section
============================================================ */

.service {
  position: relative;
  z-index: 3;
  background-color: var(--color-bg);
  background-image: url('../img/service/bg.svg');
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.service__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* ---- セクションヘッダー ---- */
.service__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 678px;
}


.service__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ---- カード一覧 ---- */
.service__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---- カード ---- */
.service__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.service__card:hover {
  transform: translateY(-4px);
}

.service__card-img {
  flex-shrink: 0;
  width: 330px;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
}

.service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.service__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service__card-heading-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.service__card-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service__card-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-dark);
}

.service__card-heading {
  font-weight: 400;
  font-size: 56px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
}

.service__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 25px;
  flex-shrink: 0;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  color: var(--color-primary);
}

.service__card-arrow img {
  width: 16px;
  height: auto;
}

.service__card-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin: 0;
  font-feature-settings: "palt" 1;
}

.service__card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   FV Section
   Design base: 1360 × 800
============================================================ */

.fv {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.fv__container {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1380px;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 0 auto;
  height: 800px;
}

/* ============================================================
   About Section
============================================================ */

.about {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 20px 0 120px;
  background: var(--color-bg);
}

/* ---- 装飾ブロブ ---- */
.about__blob {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.service__blob {
  position: absolute;
  width: 250px;
  top: 0;
  right: 0;
  pointer-events: none;
  user-select: none;
}

.about__blob--l {
  width: 120px;
  top: -80px;
  left: 0;
}

/* ---- ロゴスライダー（style.css に移動済み） ---- */

/* ---- グリッドレイアウト ---- */
.about__main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 120px;
  z-index: 1;
}

/* 装飾テキスト */
.about__deco-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.about__deco-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: deco-marquee 20s linear infinite;
}

.about__deco-track img {
  height: 160px;
  width: auto;
  flex-shrink: 0;
  opacity: .1;
}

@keyframes deco-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 大見出しラップ */
.about__hero-heading-wrap {
  position: relative;
}

.about__hero-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* 大見出し */
.about__hero-heading {
  font-weight: 400;
  font-size: 90px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
  position: relative;
  z-index: 1;
}

/* テキストブロック */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-top: 250px;
}

.about__content-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.about__heading-wrap {
  position: relative;
}

.about__heading {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
}

.about__heading-gradient {
  display: inline-block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: linear-gradient(107.64deg, #0095bd, #007796);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: "palt" 1;
}

.about__photo {
  grid-column: 2;
  border-radius: 12px;
  overflow: hidden;
}

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

.about__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   FV Section
============================================================ */

/* ---- 背景アイコン (装飾・fixed) ----------------------- */
.fv__bg-icon {
  position: fixed;
  right: 5%;
  top: -5%;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.fv__bg-icon img {
  width: 100%;
  max-width: 900px;
  transform: rotate(-20deg);
  opacity: 0.1;
  filter: grayscale(1);
}

/* ---- 左: メインコンテンツ (flex item) -------------------- */
/* container(1240px)の左端に合わせる: (FV幅 - 1240px) / 2 = (1500 - 1240) / 2 = 130px */
.fv__content {
  flex: 0 0 auto;
  padding: 0 60px 0 max(calc((100% - 1240px) / 2), 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 3;
}

/* キャッチコピー */
.fv__headline {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.5;
  letter-spacing: 5px;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}

.fv__headline-accent {
  color: var(--color-primary);
}

/* CTAグループ */
.fv__targets {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fv__target {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* アバター */
.fv__target-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.fv__target-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* タイトル */
.fv__target-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: var(--color-dark);
  margin: 0;
  font-feature-settings: "palt" 1;
}

.fv__target-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* CTAボタン */
.fv__target-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--color-dark);
  border-radius: 6px;
  justify-content: space-between;
  font-weight: 600;
  font-size: 17px;
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-feature-settings: "palt" 1;
}

.fv__target-btn:hover {
  background-color: var(--color-dark);
  color: #fff;
}

.fv__target-arrow {
  width: 11px;
  height: auto;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.fv__target-btn:hover .fv__target-arrow path {
  stroke: #fff;
}

/* ---- 右: ヒーロー写真 (flex item) ------------------------ */
.fv__hero-photo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  pointer-events: none;
  position: relative;
  z-index: 3;
}


.fv__hero-fade {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv__hero-fade-slide {
  position: absolute;
  top: 0;
  left: 40px;
  height: 100%;
  width: auto;
  max-width: none;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.fv__hero-fade-slide.is-active {
  opacity: 1;
}

/* ---- UIスクリーンショット (装飾・absolute) ---------------- */
.fv__screens {
  position: absolute;
  right: 0%;
  bottom: 5%;
  z-index: 4;
  pointer-events: none;
}

.fv__screen {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- SCROLLインジケーター (装飾・absolute) ---------------- */
.fv__scroll {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 37px;
  z-index: 3;
}

.fv__scroll-text {
  display: block;
  font-size: 12px;
  color: var(--color-dark);
  letter-spacing: 0.05em;
}

.fv__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background-color: var(--color-dark-20);
  position: relative;
}

.fv__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-dark);
  border-radius: 50%;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 1;
  }

  70% {
    top: calc(100% - 5px);
    opacity: 1;
  }

  100% {
    top: calc(100% - 5px);
    opacity: 0;
  }
}

/* ---- コピーライト (装飾・absolute) ------------------------ */
.fv__copyright {
  position: absolute;
  left: 20px;
  top: 50%;
  margin: 0;
  font-size: 11px;
  color: var(--color-dark);
  opacity: 0.5;
  white-space: nowrap;
  writing-mode: vertical-lr;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
  z-index: 3;
}

.page-top .logo-slider {
  margin-bottom: 0;
}

/* ============================================================
   Tablet  (max-width: 1199px)
============================================================ */
@media (max-width: 1199px) {

  .fv__container {
    height: auto;
    padding: 0;
    flex-direction: column;
  }

  .fv__content {
    padding: 150px 40px 40px;
    gap: 32px;
  }

  .fv__targets {
    flex-direction: row;
    gap: 24px;
  }

  .fv__target {
    flex: 1;
  }

  .fv__hero-photo {
    flex: none;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .fv__hero-fade {
    width: 100%;
    height: 100%;
  }

  .fv__hero-fade-slide {
    left: 10%;
    top: 0;
    width: 120%;
    height: auto;
  }

  .fv__hero-fade-slide:first-child {
    position: relative;
    left: 10%;
  }

  .fv__screens {
    width: 300px;
    bottom: 20px;
    right: 20px;
  }

  .fv__scroll {
    display: none;
  }

  .fv__copyright {
    display: none;
  }

  .fv__headline {
    font-size: 55px;
    white-space: normal;
  }

  /* 文字サイズ調整 */
  .sec-title {
    font-size: 34px;
  }

  .about__hero-heading {
    font-size: 64px;
  }

  .about__heading,
  .about__heading-gradient {
    font-size: 28px;
  }

  .about__text {
    font-size: 16px;
  }

  .about__main-title {
    font-size: 28px;
  }

  .service__card-heading {
    font-size: 44px;
  }

  .feature__block {
    flex-direction: column;
    gap: 32px;
  }

  .feature__block--reverse {
    flex-direction: column;
    gap: 32px;
  }

  .feature__block:nth-child(2) .feature__block-text {
    order: -1;
  }

  .feature__block-img-grid {
    flex: none;
    width: 480px;
    height: 480px;
    margin: 0 auto;
  }

  .feature__block-img-wrap {
    flex: none;
    width: 480px;
    height: 480px;
    margin: 0 auto;
    padding: 30px;
  }

  .feature__block-heading {
    font-size: 32px;
  }

  .feature__block-body {
    font-size: 15px;
  }

  .feature__block-text {
    gap: 24px;
  }

  .feature__desc {
    font-size: 15px;
  }
}

/* ============================================================
   Mobile  (max-width: 767px)
============================================================ */
@media (max-width: 767px) {

  /* トップページ FV */
  .fv__container {
    height: auto;
    padding: 0;
    flex-direction: column;
  }

  .fv__content {
    padding: 100px 20px 20px;
    gap: 32px;
  }

  .fv__hero-photo {
    flex: none;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .fv__hero-fade {
    width: 100%;
    height: 100%;
  }

  .fv__hero-fade-slide {
    position: absolute;
    left: 70%;
    bottom: 0;
    width: 130%;
    height: auto;
    transform: translateX(-50%);
  }

  .fv__hero-fade-slide:first-child {
    position: relative;
    left: 70%;
    transform: translateX(-50%);
  }

  .fv__screens {
    width: 180px;
    bottom: 20px;
    right: 10px;
  }

  .fv__scroll {
    display: none;
  }

  .fv__copyright {
    display: none;
  }

  .fv__bg-icon {
    top: 40%;
    width: 100%;
  }

  .fv__headline {
    font-size: 36px;
    line-height: 1.7;
    letter-spacing: 1px;
    white-space: normal;
  }

  .fv__targets {
    flex-direction: column;
    gap: 16px;
  }

  .fv__target-btn {
    font-size: 15px;
    padding: 18px;
  }

  /* About Section */
  .about__blob--l {
    width: 50px;
  }

  .about__main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .about__content {
    margin-top: 0;
    gap: 24px;
  }

  .about__hero-heading {
    font-size: 48px;
  }

  .about__heading,
  .about__heading-gradient {
    font-size: 22px;
  }

  .about__text {
    font-size: 16px;
  }

  .about__photo {
    grid-column: 1;
  }

  /* Gallery Section */
  .gallery__item {
    width: 240px;
    height: 240px;
  }

  /* Feature Section */
  .feature {
    padding: 80px 0 100px;
  }

  .feature__inner {
    gap: 60px;
  }

  .feature__header {
    max-width: 100%;
    gap: 24px;
  }

  .sec-title {
    font-size: 24px;
  }

  .sec-title-row {
    gap: 16px;
  }

  .feature__blocks {
    gap: 60px;
  }

  .feature__block {
    flex-direction: column;
    gap: 30px;
  }

  .feature__block:nth-child(2) {
    flex-direction: column;
  }

  .feature__block:nth-child(2) .feature__block-text {
    order: -1;
  }

  .feature__block-img-grid {
    width: 100%;
    height: auto;
    flex: none;
  }

  .feature__block-img-wrap {
    width: 100%;
    height: auto;
    flex: none;
    padding: 24px;
  }

  .feature__block-heading {
    font-size: 22px;
  }

  .feature__block-text {
    gap: 20px;
  }

  .feature__block-body {
    font-size: 14px;
  }

  .feature__stats-title {
    font-size: 22px;
  }

  /* Service Section */
  .service {
    overflow: hidden;
    padding: 120px 0 60px;
  }

  .service__blob {
    width: 100px;
  }

  .service__inner {
    gap: 40px;
  }

  .service__header {
    max-width: 100%;
    gap: 24px;
  }

  .service__header .sec-title {
    font-size: 28px;
  }

  .service__card {
    flex-direction: column;
    gap: 24px;
  }

  .service__card-img {
    width: 80%;
    height: 80%;
    flex-shrink: 1;
  }

  .service__card-body {
    gap: 20px;
    min-width: 0;
  }

  .service__card-heading-group {
    flex-wrap: wrap;
    gap: 12px;
  }

  .service__card-heading {
    font-size: 28px;
  }

  .service__card-label-wrap {
    min-width: 0;
  }

  .service__card-subtitle {
    font-size: 16px;
  }

  .service__card-text {
    font-size: 14px;
  }

  /* News Section */
  .news {
    padding: 60px 0;
  }

  .news__inner {
    gap: 24px;
  }

  .news__header {
    gap: 16px;
  }


  .news__item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 0;
  }

  .news__item-title {
    flex: 0 0 100%;
    white-space: normal;
  }

  .news__arrow {
    display: none;
  }

  /* Company Section */
  .company {
    padding: 60px 0;
  }


  .company__header {
    gap: 20px;
  }

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

  .company__row {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    padding: 15px 10px;
  }

  .company__label {
    width: 100%;
    color: rgba(42, 45, 42, 0.5);
    font-size: 13px;
  }

  .company__value {
    font-size: 14px;
  }

  /* Logo Slider */
  .page-top .logo-slider {
    padding: 10px;
  }

  /* CTA Section */
  .cta {
    padding: 40px 0;
  }

  .cta__card {
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
  }


  .cta__btn {
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 1;
    justify-content: center;
  }
}