@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

@media (max-width: 767px) {
  .font-size-sp {
    font-size: 14px !important;
  }
}

.contact-bg {
  border: solid 1px #fff;
}

.colum1 {
  position: relative;
}

.case-label {
  position: absolute;
  top: -45px;
  left: 0;
  background: linear-gradient(135deg, #33c7c7, #149bff70);
  padding: 10px 30px;
  color: #fff;
}

.works-bg {
  background: linear-gradient(135deg, #2db5b51f, #0092ff1c);
}

.white-bg {
  background-color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px); /* 下から上に */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==== お問い合わせ・資料請求 ==== */
.contact-downloads {
  background: #fff;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  padding: 0;
  margin: 0;
}

.cd-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  gap: 0;
}

/* ボックス */
.cd-box {
  position: relative;
  flex: 1 1 50%;
  padding: 80px 80px 140px;
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  transition: background 0.4s ease;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #009d9d, #008cf470);
}

/* 背景ホバーで明るく */
.cd-box:hover {
  background: linear-gradient(135deg, #007272, #0064b870);
}

/* 画像エリア */
.cd-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0.25;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ホバーで画像が浮く */
.cd-box:hover .cd-image {
  opacity: 0.25;
}

.cd-box:hover .cd-image img {
  transform: scale(1.15);
}

/* コンテンツ */
.cd-content {
  position: relative;
  z-index: 2;
}

.cd-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cd-subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cd-text {
  font-size: 16px;
  line-height: 2;
  opacity: 0.95;
}

/* 矢印ボタン */
.cd-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 90px;
  height: 90px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  transition: all 0.3s ease;
  z-index: 2;
}

.cd-box:hover .cd-btn {
  background: #fff;
  color: #33C7C7;
  transform: scale(1.05);
}

/* スマホ調整 */
@media (max-width: 768px) {
  .cd-inner {
    flex-direction: column;
  }
  .cd-box {
    flex: 1 1 100%;
    padding: 40px 24px 80px;
  }
  .cd-title {
    font-size: 32px;
    margin-bottom: 6px;
  }
  .cd-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .cd-text {
    font-size: 14px;
    line-height: 1.7;
  }
  .cd-btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
  .cd-image {
    opacity: 0.35;
  }
}


/* サービスの紹介セクション */
/* ベース設定 */
.sv-section {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #334155; /* slate-700 */
  line-height: 1.6;
  box-sizing: border-box;
}

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

/* コンテナ */
.sv-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- グリッドレイアウト --- */
.sv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* --- サービスカード本体 --- */
.sv-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column; /* スマホは縦積み */
  height: auto;
}

.sv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- 画像エリア (左側/上側) --- */
.sv-card__image-area {
  /* 画像URLはHTML側の style属性 で指定します */
  /* background-image: url('...');  <-- CSSでの指定は削除 */
  background-size: cover;
  background-position: center;
  position: relative;
  /* スマホ時の高さ確保 */
  height: 200px;
  width: 100%;
}

/* 画像を濃く見せるための軽い黒フィルター */
.sv-card__image-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 画像を少し暗く */
  transition: background 0.3s;
}

.sv-card:hover .sv-card__image-area::before {
  background: rgba(0, 0, 0, 0.15);
}

/* 数字バッジ */
.sv-card__number {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  padding: 6px 20px;
  border-radius: 99px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sv-card__number::before {
  content: "No.";
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

/* --- 本文エリア (右側/下側) --- */
.sv-card__body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: relative;
}

/* --- PC表示時の横長レイアウト化 (960px以上) --- */
@media (min-width: 960px) {
  .sv-card {
    flex-direction: row; /* 横並び */
    min-height: 240px;
  }
  .sv-card__image-area {
    height: auto;
    width: 300px;
    flex-shrink: 0;
  }
  .sv-card__number {
    top: 24px;
    left: 24px;
    font-size: 28px;
  }
  .sv-card__body {
    padding: 32px;
    /* 下部にボタンの高さ分の余白を確保 */
    padding-bottom: 80px;
    justify-content: center;
  }
}

/* タイトル周り */
.sv-card__title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 2px solid transparent;
  width: fit-content;
  transition: border-color 0.3s;
}

.sv-card:hover .sv-card__title-row {
  border-bottom-color: rgba(51, 199, 199, 0.4);
}

.sv-card__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  transition: color 0.3s;
}

.sv-card:hover .sv-card__title {
  color: #33c7c7;
}

.sv-card__title-en {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sv-card__text {
  color: #334155;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

/* 特徴リスト */
.sv-card__features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.sv-card__features li {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  background-color: #f1f5f9;
  padding: 4px 14px;
  border-radius: 99px;
}

.sv-card__features li::before {
  content: none !important;
}

.sv-icon-check {
  width: 14px;
  height: 14px;
  color: #33c7c7;
  margin-right: 6px;
  flex-shrink: 0;
}

/* フッター (詳細ボタン) */
.sv-card__link {
  display: inline-flex;
  align-items: center;
  color: #33c7c7;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  padding: 8px 20px;
  background: #eaffff;
  border-radius: 99px;
  transition: all 0.3s;
  width: fit-content;
  align-self: flex-start; /* スマホ: 左寄せ */
  margin-top: 24px;
}

/* PC表示時のボタン配置調整 */
@media (min-width: 960px) {
  .sv-card__link {
    position: absolute;
    bottom: 32px;
    right: 32px;
    margin-top: 0;
  }
}

.sv-card:hover .sv-card__link {
  background: #33c7c7;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(51, 199, 199, 0.4);
}

.sv-card__link svg {
  margin-left: 4px;
  transition: transform 0.3s;
}

.sv-card:hover .sv-card__link svg {
  transform: translateX(4px);
}

/* SVGアイコンの色設定 */
.icon-blue { color: #33c7c7; }
.icon-emerald { color: #059669; }
.icon-orange { color: #ea580c; }
.icon-indigo { color: #4f46e5; }

.sv-icon-lg {
  width: 48px;
  height: 48px;
}

h3.sv-card__title.wp-block-heading.has-text-align-left.is-style-section_ttl {
  margin-bottom: 0;
  font-size: 26px;
}


/* --- 基本変数・設定 --- */
:root {
  --lp-color-primary: #333333; /* 変更: #333 */
  --lp-color-secondary: #33c7c7; /* 指定色: Teal */
  --lp-color-secondary-hover: #28a3a3;
  --lp-color-accent: #2563eb; /* Blue 600 */
  --lp-text-base: #334155;
  --lp-text-light: #94a3b8;
  --lp-white: #ffffff;
  --lp-container-width: 1200px;
  
  /* Feature 3 (One-stop) 用のカラー */
  --lp-color-green: #16a34a;
  --lp-color-green-light: #dcfce7;
}

/* コンテンツ内リセット */
.lp-wrapper * {
  box-sizing: border-box;
}

.lp-wrapper {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--lp-text-base);
  line-height: 1.6;
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
}

.lp-container {
  max-width: var(--lp-container-width);
  margin: 0 auto;
}

/* ユーティリティ */
.lp-text-center { text-align: center; }
.lp-bold { font-weight: 700; }

/* --- 強みセクション用スタイル --- */
.lp-section-features {
  padding: 20px 0;
  background-color: #fff;
}

/* レイアウト（縦積み・ジグザグ） */
.lp-features-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 1024px) {
  .lp-features-list {
    gap: 96px;
  }
}

/* 個々のアイテム設定 */
.lp-feature-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* PC以上で左右配置 & ジグザグ */
@media (min-width: 1024px) {
  .lp-feature-row {
    flex-direction: row;
    gap: 64px;
  }
  .lp-feature-row:nth-child(even) {
    flex-direction: row-reverse;
  }
}

/* 画像カラム & 背景装飾（擬似要素で対応） */
.lp-feature-img-col {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .lp-feature-img-col { width: 50%; }
}

/* 背景の斜め四角形を ::before で作成 */
.lp-feature-img-col::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  z-index: -1;
}
/* 色ごとのバリエーション */
.lp-theme-blue::before { background-color: #dbeafe; transform: rotate(3deg); }
.lp-theme-teal::before { background-color: #ccfbfb; transform: rotate(-3deg); }
.lp-theme-green::before { background-color: #dcfce7; transform: rotate(3deg); }

/* カードスタイル */
.lp-feature-card {
  background: #fff;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
}

/* ビジュアルエリア共通 */
.lp-feature-visual {
  height: 250px;
  background-color: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  .lp-feature-visual { height: 320px; }
}

/* Feature 1: GPS Map */
.lp-bg-gps-map {
  background:
    url('https://sample.ple-cre.com/demo17/wp-content/uploads/2026/01/posting-3-2.jpg') center/cover;
}

.lp-icon-gps-center {
  color: var(--lp-color-secondary);
  margin: 0 auto;
  display: block;
}

/* Feature 2: Speed Grid */
.lp-visual-padded {
  padding: 32px;
}

.lp-speed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.lp-speed-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.lp-speed-icon {
  color: var(--lp-color-secondary);
  margin: 0 auto 8px;
  display: block;
}
.lp-speed-text {
  font-size: 14px;
  font-weight: 700;
}
.lp-speed-area {
  grid-column: 1 / -1;
  background: var(--lp-color-primary); /* こちらも#333になります */
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.lp-speed-area-label {
  font-size: 12px;
  opacity: 0.8;
}
.lp-speed-area-val {
  font-size: 18px;
  font-weight: 700;
}
.lp-badge-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-badge {
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #475569;
}

/* Feature 3: One-stop Flow (Updated) */
.lp-flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 均等配置 */
  width: 100%;
  max-width: 400px; /* PCでの広がりすぎ防止 */
  padding: 0 16px;
}
.lp-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lp-flow-circle {
  background: #fff;
  width: 56px; /* 少し小さくして3つ並べやすく */
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  margin-bottom: 8px;
  color: var(--lp-color-green); /* 緑色で統一感を出す */
  border: 2px solid var(--lp-color-green-light);
  transition: transform 0.2s;
}

/* 最後のステップだけ少し強調 */
.lp-flow-step:last-child .lp-flow-circle {
  background: var(--lp-color-green);
  color: #fff;
  border-color: var(--lp-color-green);
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
}

.lp-flow-line {
  flex: 1;
  height: 3px;
  background: #e2e8f0;
  margin: 0 4px;
  position: relative;
  top: -14px; /* 円の中心に合わせる */
  z-index: 1;
}

/* 線に色をつける（進行感） */
.lp-flow-line::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--lp-color-green-light) 50%, #e2e8f0 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  /* アニメーションさせたい場合はここにtransitionを入れる */
}

.lp-flow-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}
.lp-flow-step:last-child .lp-flow-label {
  color: var(--lp-color-green);
}

/* テキストカラム */
.lp-feature-text-col {
  width: 100%;
}
@media (min-width: 1024px) {
  .lp-feature-text-col { width: 50%; }
}

.lp-feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lp-feature-title { font-size: 30px; }
}

.lp-feature-subtitle {
  font-size: 18px;
  display: block;
  margin-top: 4px;
}
.lp-text-blue { color: #2563eb; }
.lp-text-teal { color: #33c7c7; }
.lp-text-green { color: #16a34a; }

.lp-feature-desc {
  color: #475569;
  margin-bottom: 24px;
  font-size: 14px;
}

/* チェックリスト */
.lp-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-weight: 500;
  font-size: 16px;
}
.lp-icon-check { color: #22c55e; flex-shrink: 0; }

/* 視覚的要素（モック） */
.lp-mock-gps {
  text-align: center;
  position: relative;
}
.lp-mock-label {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: #333333; /* 変更: #333 */
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  margin-top: 12px;
}


/* =========================================
           スライダーセクション（Feature）
           ========================================= */
/* =========================================
           基本リセット・ベーススタイル
           ※ 埋め込み先のリセットCSSと競合しないよう、
              このラッパー内のみに適用されるように記述
           ========================================= */
.posting-wrapper *,
.posting-wrapper *::before,
.posting-wrapper *::after {
  box-sizing: border-box;
  /* margin: 0; padding: 0; は埋め込み先のCSSに委ねるか、必要に応じて個別にリセット */
}

/* body タグの代わりに .posting-wrapper にスタイルを適用 */
.posting-wrapper {
  /* font-family 削除（親テーマに依存） */
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0 0 60px 0; /* 下部に余白 */
  
  /* --- 背景設定削除 --- */
  /* 背景画像・オーバーレイは削除し、SWELLのブロック設定に任せます */
  position: relative;
  width: 100%;
  overflow-x: hidden; /* 横スクロール防止 */
}

/* オーバーレイ（薄い白）を削除しました (.posting-wrapper::before) */

/* リンクのリセット */
.posting-wrapper a {
  text-decoration: none;
  color: inherit;
}

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

/* h2, p などのマージンリセット（必要に応じて） */
.posting-wrapper h2,
.posting-wrapper h3,
.posting-wrapper p {
  margin: 0;
}

/* ユーティリティ */
.u-font-en {
  /* font-family 削除 */
}
.u-uppercase { text-transform: uppercase; }
.u-text-grayscale-200 { color: #999; }
.u-text-primary-500 { color: #0056b3; }

/* コンテナ */
.u-wide-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative; /* z-indexを効かせるため */
  z-index: 1;
}

/* =========================================
           Feature Section (横スクロールスライダー)
           ========================================= */
.home-feature {
  /* 背景色はSWELL側で制御 */
  color: #fff; /* 文字色は白（濃い背景を想定） */
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}

.home-feature__header {
  margin-bottom: 40px;
  max-width: 800px;
}

.c-head01__sub {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.c-head01__main {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-feature__txt {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 600px;
}

/* スライダーエリア */
.home-feature__content {
  position: relative;
}

/* CSS Scroll Snap Slider */
.splide__track {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.splide__track::-webkit-scrollbar {
  display: none;
}

.home-feature-list {
  display: flex;
  gap: 20px;
  padding-left: 0;
  width: max-content;
}

.splide__slide {
  scroll-snap-align: start;
  width: 300px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .splide__slide {
    width: 400px;
  }
  .c-head01__main {
    font-size: 2.5rem;
  }
}

/* カードデザイン */
.home-feature-list__item {
  position: relative;
  transition: opacity 0.3s;
}

.home-feature-list__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #333;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative; /* 数字の配置基準にするため追加 */
}

.home-feature-list__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  vertical-align: bottom; /* 画像下の隙間消し */
}

.home-feature-list__item:hover .home-feature-list__item-img img {
  transform: scale(1.05);
}

.home-feature-list__item-areaTxt {
  position: relative;
  padding-left: 0;
}

/* 数字のスタイル変更 */
.home-feature-list__item-areaTxt-num {
  font-size: 3rem;
  font-weight: 700;
  color: #fff; /* はっきり見えるように白に変更 */
  line-height: 1;
  position: absolute;
  bottom: 0; /* 画像の下端に合わせる */
  left: 0;   /* 画像の左端に合わせる */
  z-index: 2;
  pointer-events: none;
  margin: 0;
  padding: 10px 15px; /* 余白調整 */
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* 視認性向上のための影 */
}

.home-feature-list__item-areaTxt-head {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.home-feature-list__item-desc {
  font-size: 0.9rem;
  color: #e6e6e6;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* コントロール UI */
.recruit-welfare__ui {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.c-ui01__num {
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-ui01__num-item:first-child::after {
  content: '/';
  margin-left: 5px;
  color: #666;
}

.c-ui01__arrow {
  display: flex;
  gap: 10px;
}

.c-ui01__arrow-item {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.c-ui01__arrow-item:hover {
  background: #fff;
  color: #000;
}

.c-ui01__arrow-item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.c-ui01__arrow-item.is-prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.c-ui01__arrow-item.is-next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

/* =========================================
           Archive Component (拠点一覧)
           ========================================= */
.home-factory__archive {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
  padding: 0 20px 0; /* 下余白は親で管理 */
}

.section-title-network {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  z-index: 1;
}

.c-factory-archive01__item {
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .c-factory-archive01__item {
    width: calc(33.333% - 20px);
  }
}

.c-factory-archive01__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.c-factory-archive01__item-in {
  display: block;
  position: relative;
  height: 100%;
}

.u-zoom__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.u-zoom__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  vertical-align: bottom;
}

.c-factory-archive01__item-in:hover .u-zoom__img {
  transform: scale(1.1);
}

.c-factory-archive01__item-areaTxt {
  padding: 24px;
  position: relative;
  background: #fff;
}

.c-factory-archive01__item-cat {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.c-factory-archive01__item-cat-item {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #0056b3;
  border: 1px solid #0056b3;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 500;
  background-color: rgba(0, 86, 179, 0.05);
}

.c-factory-archive01__item-details-head {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
}

.c-factory-archive01__item-details-area {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.c-factory-archive01__item-details-area::before {
  content: "📍";
  margin-right: 4px;
  font-size: 0.8rem;
  filter: grayscale(100%);
}

.c-factory-archive01__item-details-desc {
  font-size: 0.9rem;
  color: #444;
  border-top: 1px solid #eee;
  padding-top: 12px;
  line-height: 1.5;
}

.c-factory-archive01__item-areaTxt-ico {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  background-color: #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.c-factory-archive01__item-areaTxt-ico::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: -2px;
}

.c-factory-archive01__item-in:hover .c-factory-archive01__item-areaTxt-ico {
  background-color: #003d82;
}

h3.home-feature-list__item-areaTxt-head.wp-block-heading.has-text-align-left.is-style-section_ttl {
  font-size: 23px;
  margin-bottom: 15px;
}

.font-1 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* コンテンツヘッダー文字 */
.c-pageTitle {
  font-size: 1.5em;
  text-shadow: none;
  font-weight: 700;
  text-align: center;
}

/* フッター上マージンボトム削除 */
.l-content {
  margin: 0 auto 0em;
}

.post_content > * {
  margin-bottom: 0;
}

.w-beforeFooter {
  margin: 0em auto 0em;
}

.l-footer__foot,
.l-footer__widgetArea {
  background: linear-gradient(135deg, #2db5b545, #0092ff1f);
}

/* ヘッダー背景色 */
.l-header {
  background: linear-gradient(135deg, #33c7c7, #149bff70);
  font-weight: 700;
  backdrop-filter: blur(5px);
}

.l-fixHeader:before {
  background: linear-gradient(135deg, #33c7c7, #149bff70);
  backdrop-filter: blur(4px);
}

/* ヘッダー文字太さ */
.c-gnav {
  font-weight: bold;
}


/* テーブル縦スクロール */
.scroll {
  overflow: auto;
  height: 350px;
  width: 100%;
}

/* グリッド線背景 */
.plaid {
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #33c7c71a 1px, transparent 1px), linear-gradient(#33c7c71a 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 18px 18px;
}

/* スマホ文字サイズ */
@media (max-width: 767px) {
  .font-size-sp {
    font-size: 14px !important;
  }
}

.contact-bg {
  border: solid 1px #fff;
}

.colum1 {
  position: relative;
}

.case-label {
  position: absolute;
  top: -45px;
  left: 0;
  background: linear-gradient(135deg, #33c7c7, #149bff70);
  padding: 10px 30px;
  color: #fff;
}

.works-bg {
  background: linear-gradient(135deg, #2db5b51f, #0092ff1c);
  backdrop-filter: blur(2px);
}

.white-bg {
  background-color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px); /* 下から上に */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


/* ==== お問い合わせ・資料請求 ==== */
.contact-downloads {
  background: #fff;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  padding: 0;
  margin: 0;
}

.cd-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  gap: 0;
}

/* ボックス */
.cd-box {
  position: relative;
  flex: 1 1 50%;
  padding: 80px 80px 140px;
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  transition: background 0.4s ease;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #009d9d, #008cf470);
}

/* 背景ホバーで明るく */
.cd-box:hover {
  background: linear-gradient(135deg, #007272, #0064b870);
}

/* 画像エリア */
.cd-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0.25;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ホバーで画像が浮く */
.cd-box:hover .cd-image {
  opacity: 0.25;
}

.cd-box:hover .cd-image img {
  transform: scale(1.15);
}

/* コンテンツ */
.cd-content {
  position: relative;
  z-index: 2;
}

.cd-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cd-subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cd-text {
  font-size: 16px;
  line-height: 2;
  opacity: 0.95;
}

/* 矢印ボタン */
.cd-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 90px;
  height: 90px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  transition: all 0.3s ease;
  z-index: 2;
}

.cd-box:hover .cd-btn {
  background: #fff;
  color: #33C7C7;
  transform: scale(1.05);
}

/* スマホ調整 */
@media (max-width: 768px) {
  .cd-inner {
    flex-direction: column;
  }
  .cd-box {
    flex: 1 1 100%;
    padding: 40px 24px 80px;
  }
  .cd-title {
    font-size: 32px;
    margin-bottom: 6px;
  }
  .cd-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .cd-text {
    font-size: 14px;
    line-height: 1.7;
  }
  .cd-btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
  .cd-image {
    opacity: 0.35;
  }
}


/* =========================================================
//  スマホでスクロールスナップ
// ========================================================= */
@media not all and (min-width: 600px) {
  .-snap {
    --item-mobile-width: 80vw; /* スマホでのアイテムの幅 */
    --gap: 1rem; /* 各アイテム同士の間隔 */
  }
  .-snap > * {
    flex-wrap: nowrap !important;
    padding: 0 calc((100vw - var(--item-mobile-width, 80vw)) / 2) !important;
    margin-inline: calc(var(--swl-pad_container, 0px) * -1) !important;
    gap: var(--gap);
    overflow-x: scroll;
    -webkit-scroll-snap-type: x mandatory;
            scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .-snap > *::-webkit-scrollbar {
    display: none;
  }
  .-snap > * > * {
    margin-inline: auto !important;
    flex-shrink: 0;
    width: var(--item-mobile-width, 80vw) !important;
    scroll-snap-align: center;
  }
  /* 「ノーマル」スタイルの調整 */
  .swell-block-tab.is-style-default .c-tabBody:has(.-snap) {
    padding-left: var(--swl-pad_container, 0px);
    padding-right: var(--swl-pad_container, 0px);
  }
}


/* =========================================================
//  配布実績
// ========================================================= */
/* --- ベーススタイル --- */
.ig-container {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  max-width: 1200px;
  margin: 40px auto;
  box-sizing: border-box;
  color: #333;
}

/* グリッドレイアウト */
.ig-grid {
  display: grid;
  /* PC: 基本は4列（幅が狭まっても崩れないようminmax調整） */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* カード共通デザイン */
.ig-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px; /* 横幅が狭くなっても良いようパディング微調整 */
  text-align: center;
  /* 影（box-shadow）を削除 */
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.05); */
  border: 1px solid #f0f0f0;
  /* ホバー時のtransitionを削除 */
  /* transition: transform 0.3s ease; */
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  display: flex; /* flexにして中身を縦並び整列 */
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* ホバー時の動きを削除 */
/*
  .ig-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  */

/* アイコン（画像用に調整） */
.ig-icon {
  /* フォント設定を削除し、サイズ指定へ変更 */
  width: 80px;  /* アイコン画像の幅 */
  height: 80px; /* アイコン画像の高さ */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 画像の縦横比を維持して収める */
}

/* ラベル */
.ig-label {
  font-size: 19px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: block;
  white-space: nowrap; /* ラベルの改行を防ぐ */
}

/* 数値エリア */
.ig-number-wrap {
  font-size: 32px; /* 4列時に収まるよう少しサイズ調整 */
  font-weight: 800;
  color: #33c7c7;
  line-height: 1.2;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.ig-unit {
  font-size: 14px;
  font-weight: normal;
  margin-left: 2px;
  color: #333;
}

.ig-desc {
  margin-top: auto; /* 説明文を下部に寄せる */
  padding-top: 10px;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.ig-highlight {
  color: #33c7c7;
  font-weight: bold;
}

/* --- 円グラフエリア --- */
.ig-chart-wrap {
  position: relative;
  width: 100px; /* 少しコンパクトに */
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: conic-gradient(#eee 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-chart-inner {
  width: 76px;
  height: 76px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ig-chart-percent {
  font-size: 20px;
  font-weight: bold;
  color: #33c7c7;
}

/* --- 下部セクション（横棒グラフスタイル） --- */
.ig-impact-section {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 12px;
}

.ig-section-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 20px;
  color: #333;
}

.ig-bar-group {
  margin-bottom: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.ig-bar-group:last-child {
  margin-bottom: 0;
}

.ig-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.ig-bar-label {
  font-size: 19px;
  font-weight: bold;
  color: #333;
}

.ig-bar-value-text {
  font-size: 24px;
  font-weight: 800;
  color: #33c7c7;
}

.ig-bar-value-text small {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  margin: 0 2px;
}

/* 棒グラフのトラック（背景） */
.ig-bar-track {
  background: #e2e8f0;
  height: 24px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

/* 棒グラフの中身 */
.ig-bar-fill {
  height: 100%;
  /* グラデーション */
  background: linear-gradient(90deg, #79eaea, #33c7c7);
  width: 0%; /* JSでアニメーション */
  border-radius: 12px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ig-impact-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  text-align: left;
}

/* --- レスポンシブ調整 --- */

/* タブレット・小さいPC (960px以下) -> 2列表示 */
@media (max-width: 960px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* スマホ (600px以下) -> 1列表示 */
@media (max-width: 600px) {
  .ig-grid {
    grid-template-columns: 1fr;
  }
  .ig-number-wrap {
    font-size: 36px;
  }
  .ig-bar-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .ig-bar-value-text {
    margin-top: 5px;
  }
}


/* カバーブロックのブラー */
.blur-cover .wp-block-cover__image-background {
  filter: blur(8px);
  transform: scale(1.05); /* ぼかして隙間が見えないよう拡大 */
  z-index: -1;
}

.blur-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
}

.wp-block-cover.has-parallax {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.wp-block-cover__image-background.has-parallax {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}


/* ==========================================
   追従ボタンのスタイル（改修版V4）
   ========================================== */

/* ボタン全体のコンテナ */
.floating-cta {
    position: fixed;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* 共通ボタンリンクのスタイル */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: opacity 0.3s, transform 0.2s, background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    line-height: 1.2;
    box-sizing: border-box;
}

.cta-btn:hover {
    opacity: 0.9;
}

/* アイコン用SVGスタイル */
.cta-btn svg {
    fill: currentColor;
    flex-shrink: 0;
}

/* ボタン内テキストの共通スタイル */
.btn-text {
    display: block;
    line-height: 1.1;
}

/* --- ボタンごとの色設定 --- */

/* シミュレーション（濃い青/水色系） */
.btn-sim {
    background-color: #33c7c7;
}

/* お見積もり（赤オレンジ系） */
.btn-quote {
    background-color: #ef5a1a;
}

/* 電話ボタン（お問い合わせと同じ色に統一して整理） */
.btn-tel {
    /* 色の渋滞を避けるため、お問い合わせボタンと同じオレンジで統一 */
    background-color: #ef5a1a; 
}

/* --- PC向けスタイル (769px以上) --- */
@media screen and (min-width: 769px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        width: 340px; /* 全体の幅 */
        display: grid;
        grid-template-columns: 1fr 1fr; /* 上段は2列 */
        gap: 10px;
    }

    /* 上段ボタン（シミュ・問合せ） */
    .btn-mini {
        padding: 12px 5px;
        border-radius: 8px;
        font-size: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        flex-direction: column; /* アイコン上・テキスト下 */
        gap: 5px;
    }
    
    .btn-mini svg {
        width: 28px;
        height: 28px;
    }

    /* 電話ボタン（下段） */
    .btn-tel {
        grid-column: 1 / 3;
        padding: 12px 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .btn-tel:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    }

    .btn-tel svg {
        width: 36px;
        height: 36px;
    }

    .tel-content {
        text-align: left;
    }

    .tel-sub {
        display: block;
        font-size: 12px;
        opacity: 0.9;
        margin-bottom: 2px;
    }

    .tel-num {
        display: block;
        font-size: 26px;
        font-family: "Arial", sans-serif;
        letter-spacing: 0.5px;
        line-height: 1;
        margin-bottom: 2px;
    }
    
    .tel-time {
        display: block;
        font-size: 11px;
        opacity: 0.8;
    }
}

/* --- スマホ向けスタイル (768px以下) --- */
@media screen and (max-width: 768px) {
    .floating-cta {
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        padding-bottom: env(safe-area-inset-bottom);
        background: #fff;
    }

    /* 共通設定 */
    .cta-btn {
        border-radius: 0;
        box-shadow: none;
        height: 75px; /* 高さを少し確保 */
        padding-top: 5px;
        padding-bottom: 5px;
    }

    /* 小さいボタン（シミュ・問合せ） */
    .btn-mini {
        width: 65px; /* 少し幅を広げる */
        flex-shrink: 0;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .btn-mini svg {
        width: 24px;
        height: 24px;
        margin-bottom: 0;
    }
    
    .btn-mini .btn-text {
        font-size: 10px;
        transform: scale(0.9); /* 小さく表示 */
        white-space: nowrap;
    }
    
    /* ボタンの境界線 */
    .btn-sim {
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    .btn-quote {
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    /* 電話ボタン（残り幅いっぱい） */
    .btn-tel {
        flex: 1;
        flex-direction: column;
        justify-content: center;
        position: relative;
        padding: 5px;
    }
    
    /* 電話アイコン装飾 */
    .btn-tel svg {
        display: none; 
    }
    
    .tel-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .tel-sub {
        display: block;
        font-size: 9px;
        margin-bottom: 2px;
        opacity: 0.95;
    }

    .tel-num {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-family: "Arial", sans-serif;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 2px;
    }
    
    /* 電話番号横の小さいアイコン（色追従） */
    .tel-num::before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-right: 4px;
        background-color: currentColor;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
    }
    
    .tel-time {
        display: block;
        font-size: 9px;
        opacity: 0.9;
        white-space: nowrap;
        transform: scale(0.95);
    }