/* ==============================
   ベーススタイル
============================== */
body {
  margin: 0;
  line-height: 1.6;
  color: #222;
  background-color: #f5f5f5;
}
img {
  max-width: 100%;
}
.anchor-offset_01 {
  display: block;
  margin-top: 20px;
}
.anchor-offset_02 {
  display: block;
  height: 10px;
  margin-top: -10px;
}
.anchor-offset_03 {
  display: block;
  height: 20px;
  margin-top: -20px;
}
/* コンテナ共通 */
.section-inner, .hero__inner, .case__inner, .intro__inner, .features__inner, .usecases__inner, .possibility__inner, .example__inner, .cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
/* ==============================
   ヒーロー
============================== */
.hero {
  position: relative;
  padding: 50px 0 56px;
  color: #fff;
  background-image: url("../assets/img/hero-bg-pc.webp"); /* PC用画像 */
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
/* オーバーレイ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}
.hero__inner {
  /* 既存: position/max-width/margin/padding は維持 */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* 左やや広め */
  align-items: center;
  gap: 32px;
  position: relative; /* 追加 */
  z-index: 1;
}
.hero__text {
  max-width: 680px; /* 既存 880px を少し絞って読みやすく */
  position: relative;
  z-index: 1; /* 背景オーバーレイ上で確実に表示 */
}
.hero__media {
  /* 画像の縦横比維持しつつ右側で大きく見せる */
  align-self: center;
  justify-self: end;
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* 裁ち落とさずに収める */
  /* 必要に応じて軽いシャドウや角丸 */
  /* border-radius: 8px; */
  /* box-shadow: 0 8px 24px rgba(0,0,0,.25); */
}
.hero__eyebrow {
  margin: 0 0 30px;
  font-size: 1.8em;
  line-height: 1.3;
}
.hero__title {
  margin: 0 0 30px;
  font-size: 2.1em;
  font-weight: 700;
}
.hero__lead {
  margin: 0 0 24px;
  font-size: 0.9em;
  line-height: 1.8;
  max-width: 32em;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
  line-break: strict;
  text-wrap: balance;
}
@media (max-width: 960px) {
  .hero__lead {
    max-width: 28em;
  }
}
@media (max-width: 720px) {
  .hero__lead {
    max-width: 40em;
    text-align: left; /* ← SPは左揃えの方が可読性◎ */
  }
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  padding: 12px 28px;
  font-size: 0.85em;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
/* 矢印 */
.hero__button::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: '';
}
.hero__button--primary {
  background-color: #000;
  color: #fff;
}
.hero__button--primary:hover, .hero__button--primary:focus-visible {
  background-color: #002E92;
}
.hero__button--secondary {
  background-color: #fff;
  color: #002E92;
  border: 2px solid #002E92;
}
.hero__button--secondary:hover, .hero__button--secondary:focus-visible {
  background-color: #002E92;
  color: #fff;
}
@media (max-width: 720px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__button {
    width: 100%;
    max-width: 260px;
  }
}
/* ==============================
   ページ内ナビゲーション
============================== */
.gel_menu_nav {
  color: #111;
  padding: 5px 16px 0px 16px; /* ヘッダーやモーダルとの前後を要調整 */
}
.gel_menu_nav.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0; /* ヘッダーが常時固定なら、その高さに合わせて調整 */
  z-index: 900;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  /* ページ幅を中央に合わせたい場合は、親ラッパーにwidth:100%を敷きつつ、
     内側の .gel_menu_list は従来どおり max-width と margin: 0 auto; を活かせます（既存CSS参照）。 */
}
/* レイアウトジャンプ（レイアウトシフト）を避けるためのプレースホルダー */
.gel-menu-placeholder {
  display: none;
}
.gel-menu-placeholder.is-active {
  display: block;
  height: var(--gel-menu-height, 0px);
}
.gel_menu_list {
  /* PC横並び（3カラム） */
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr; /* item | divider | item | divider | item */
  align-items: center;
  justify-content: center;
  gap: 0 40px; /* itemとdividerの左右間隔 */
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.gel_menu_item {
  display: flex;
  justify-content: center;
}
.gel_menu_link {
  --gel-menu-text-color: #111;
  --gel-menu-subtle-color: #9aa0a6; /* うすいグレー（矢印など） */
  --gel-menu-accent: #111;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--gel-menu-text-color);
  padding: 4px 6px;
  min-width: 200px; /* 視覚的なバランス確保（可変） */
  outline-offset: 4px; /* アクセシビリティ */
}
.gel_menu_link:hover, .gel_menu_link:focus-visible {
  color: var(--gel-menu-accent);
}
.gel_menu_label {
  text-align: center;
  line-height: 1.35;
}
.gel_menu_label_top {
  display: block;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #002E92;
}
.gel_menu_label_bottom {
  display: block;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #002E92;
  font-weight: bold;
}
/* 下の山形（装飾） */
.gel_menu_chevron {
  display: inline-flex;
  margin-top: 0px;
  color: var(--gel-menu-subtle-color);
}
.gel_menu_chevron_svg {
  width: 22px;
  height: 22px;
}
/* 縦の仕切り（PCのみ表示） */
.gel_menu_divider {
  width: 1px;
  height: 48px;
  background-color: #9aa0a6;
}
/* ==============================
   導入事例
============================== */
.case {
  padding: 12px 0 0;
}
.case__inner {
  text-align: center;
  padding: 44px 0;
}
.case__text {
  margin: 0 auto 44px;
  padding: 0 10px;
  max-width: 820px;
  font-size: 0.9em;
}
.case__heading {
  margin: 8px 0 15px;
  font-size: 1.8em;
}
.case__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: flex-start;
}
.case-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1em;
}
.case-card__image {
  width: 100%;
  height: 120px; /* 枠の高さを固定 */
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
}
.case-card__img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.case-card__title {
  margin: 0 0 6px;
  font-size: 1.2em;
}
.case-card__text {
  margin: 0;
  max-width: 260px;
  font-size: 0.9em;
  color: #222;
}
/* ==============================
   製品説明
============================== */
.intro {
  padding: 12px 0 0;
}
.intro__inner {
  text-align: center;
  padding: 44px 0 76px 0;
}
.intro__text {
  margin: 0 auto 10px;
  padding: 0 10px;
  max-width: 820px;
  font-size: 1.2em;
}
/* ==============================
    GELRAMICの選ばれる理由
============================== */
.features {
  padding: 24px 0 0px 0;
}
.features__inner {
  text-align: center;
  /*padding: 44px 0;*/
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}
@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
}
.features__heading {
  margin: 0px 0 20px;
  font-size: 1.6em;
}
/* ==============================
   かんたん装着”で延焼リスクを低減
============================== */
/* カード全体 */
.card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  margin-bottom: 50px;	
  background-image: url("img/feature-card-01_a.webp");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;

}

.card {
  position: relative;
}


.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.card-right {
  position: relative;
  z-index: 1;
}

/* 左エリア */
.card-left {
  width: 30%;
}

/* 右エリア */
.card-right {
  width: 70%;
  padding: 30px;
}
/* 見出し */
.card-right .title {
  font-size: 26px;
  color: #0046b8;
  margin: 0 0 16px 0;
  font-weight: 700;
  text-align: left;
}
/* 説明文 */
.description {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 32px;
	text-align: left;
}
/* 画像リスト */
.image-list {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
/* 各画像 */
.image-item {
  text-align: center;
}
.image-item img {
  width: 220px;
  height: auto;
  border-radius: 4px;
  background: #eaeaea;
}
/* キャプション */
.image-item p {
  margin-top: 8px;
  font-size: 13px;
  color: #333;
}
.image-list--split {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3分割 */
  gap: 24px;
}
/* 2/3 幅の画像 */
.image-item--large {
  grid-column: span 2;
}
.image-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.image-item p {
  margin-top: 8px;
  font-size: 13px;
  color: #333;
  text-align: center;
}
@media (max-width: 768px) {
  .image-list--split {
    grid-template-columns: 1fr;
  }
  .image-item--large {
    grid-column: auto;
  }
  .card {
    flex-direction: column;
  }
  /* 左側エリアを非表示にする */
  .card {
    background-image: none;
  }
  /* 右側を全幅に */
  .card-right {
    width: 100%;
    padding: 20px;
  }
	.card-right .title {
  font-size: 20px;
}
}
/* ==============================
   低温に抑え込む吸熱・断熱テクノロジー
============================== */
/* 全体カード */
.tech-card {
  background: #fff;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  margin-bottom: 50px;
}
.tech-inner {
  display: flex;
  gap: 40px;
}
.tech-top {
  /*display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;*/
  display: flex;
  align-items: flex-end; /* ← 下揃え */
  gap: 32px;
}
/* 右イラスト */
.tech-top-illust {
  width: 25%;
  text-align: center;
}
.tech-top-illust img {
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}
/* 左コンテンツ */
.tech-top-content {
  width: 75%;
}
/* 見出し・本文はそのまま */
.tech-title {
  font-size: 26px;
  color: #002E92;
  margin-bottom: 16px;
  text-align: left;
}
.tech-lead {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: left;
}
.tech-graph {
  text-align: left;
}
.tech-graph img {
  width: 100%;
  max-width: 660px;
  margin-bottom: 16px;
}
.tech-note {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: left;
}
.txt_red {
  color: #e14a2c;
  font-weight: bold;
}
.txt_blue {
  color: #2887EC;
  font-weight: bold;
}
/* === 下段：比較写真をセンター表示 === */
.compare-wrapper {
  display: flex;
  justify-content: center;
}
.compare-box {
  display: flex;
  gap: 24px;
  max-width: 900px;
  width: 80%;
}
/* 既存スタイル流用 */
.compare-item {
  width: 50%;
  text-align: center;
}
/* === レスポンシブ === */
@media (max-width: 768px) {
  .tech-top {
    flex-direction: column;
	  gap: 0;
  }
  .tech-top-illust, .tech-top-content {
    width: 100%;
  }
  .compare-box {
    flex-direction: column;
    align-items: center;
  }
  .compare-item {
    width: 100%;
  }
	.tech-top-illust img {
 display: none;
	}
.tech-title {
  font-size: 20px;
}
}
/* ==============================
   吸熱と共にセラミック化する性質で、爆片による二次被害も抑止
============================== */
/* 全体パネル */
.tech-panel {
  padding: 40px 20px;
}
.tech-panel-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
}
/* 見出し */
.tech-panel-title {
  font-size: 26px;
  font-weight: bold;
  color: #002E92;
  margin-bottom: 16px;
  text-align: left;
}
/* 説明文 */
.tech-panel-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
}
.tech-panel-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}
/* 比較レイアウト */
.tech-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 80%; /* 全体を80%幅にする */
  margin: 0 auto;
}
/* 各画像 */
.tech-compare-item {
  text-align: center;
}
.tech-img-box img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* キャプション */
.tech-caption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: bold;
}
/* 矢印 */
.tech-arrow {
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #ddd;
}
/* レスポンシブ */
@media (max-width: 768px) {
  .tech-compare {
    flex-direction: column;
  }
  .tech-arrow {
    transform: rotate(90deg);
  }
	.tech-panel-title {
  font-size: 20px;
}
}
/* ==============================
   GELRAMICの特徴：燃焼カテゴリ
============================== */
.usecases {
  padding: 72px 0 72px;
  background-image: url("../assets/img/gelramic_usecases_bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.usecase-card {
  display: flex;
  flex-direction: column;
  font-size: 1em;
}
.usecases__inner {
  text-align: center;
}
.usecases__eyebrow {
  font-size: 1em;
  margin: 0 0 8px;
  color: #666;
}
.usecases__title {
  margin: 0 0 20px;
  font-size: 1.6em;
}
.usecases__lead_ttl {
  margin-bottom: 10px;
  max-width: 30em;
  font-size: 1.2em;
  color: #000;
  text-align: left;
  font-weight: bold;
}
.usecases__lead {
  margin: 0 auto 36px;
  padding-right: 60px;
  max-width: 30em;
  font-size: 1em;
  line-height: 1.5;
  color: #000;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}
@media (max-width: 720px) {
  .usecases__lead {
    padding-right: 0px;
    max-width: 100em;
    text-align: left;
  }
}
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7e7e7;
  border-radius: 4px;
}
.image-placeholder--medium {
  width: 220px;
  height: 140px;
}
.image-placeholder__icon {
  font-size: 2em;
  opacity: 0.55;
}
.usecase-card__image {
  margin-bottom: 14px;
}
.usecase-card__title {
  margin: 0 0 6px;
  font-size: 1.2em;
}
.usecase-card__text {
  margin: 0;
  max-width: 250px;
  font-size: 0.9em;
  color: #222;
}
.usecases__grid .usecase-card:nth-child(1) {
  position: relative;
}
.usecases__grid .usecase-card:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 41%;
  right: -20px; /* gap:24px の中央に合わせるためマイナス半分 */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  /* 右向き三角形（CSSボーダー三角） */
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 17px solid #999; /* 三角形の色と大きさを調整 */
  /* 視認性を上げたい場合は僅かな影を付けてもOK */
  /* filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); */
}
.usecase-card--span-2 {
  grid-column: span 2; /* 3/2（= 2/3幅） */
}
.usecase-card--span-1 {
  grid-column: span 1; /* 3/1（= 1/3幅） */
}
.usecase-card--no-arrow::after {
  content: none !important; /* 既存の nth-child ルールより強く上書き */
}
/* ==============================
   GELRAMICの特徴：吸熱パッド有無の燃焼比較
============================== */
.gel_comparison_wrap {
  max-width: var(--gelc-maxw);
  margin: 30px auto 40px;
  padding: 25px;
  background: #efefef; /* 外側のグレー塗り（画像の雰囲気） */
  border: 1px solid var(--gelc-gray);
  border-radius: 12px;
}
/* セクションタイトル行（■タイトル） */
.gel_comparison_block_title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 8px 10px;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 19px);
  color: #333;
}
.gel_comparison_block_title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--gelc-gray-dark);
  border-radius: 1px;
  display: inline-block;
}
/* 内側の白いパネル（ここに画像やテキストを置く） */
.gel_comparison_panel {
  background: var(--gelc-panel);
  border-radius: 8px;
  box-shadow: var(--gelc-shadow);
  padding: 12px;
  margin: 0 8px 16px;
  /*border:1px solid #e4e4e4;*/
  background-color: #FFFFFF;
}
/* 画像用ボックス（アスペクト比指定可） */
.gel_comparison_media {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  /*border:1px solid #e1e1e1;*/
  overflow: hidden;
  /*aspect-ratio: 4 / 3; */ /* 必要に応じて変更(例:16/9) */
}
.gel_comparison_media img {
  position: static;
  inset: 0;
  width: 80%;
  height: auto;
  display: block;
  background: #fff;
  margin-inline: auto;
}
/* 2カラム（上段） */
.gel_comparison_grid2 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 800px) {
  .gel_comparison_grid2 {
    grid-template-columns: 1fr;
  }
}
/* 下段の注記（白ボックス） */
.gel_comparison_note {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 12px 24px;
  margin: 20px 0px 40px 0px;
  box-shadow: var(--gelc-shadow);
  font-size: clamp(13px, 1.9vw, 16px);
  text-align: left;
  width: 80%;
  margin-inline: auto;
}
.gel_comparison_note strong {
  color: #e14a2c;
}
.gel_comparison_note span.blue {
  color: #2887EC;
  font-weight: bold;
}
/* ==============================
    GELRAMICが拓く新たな可能性
============================== */
.possibility {
  padding: 72px 0 80px;
}
.possibility__inner {
  text-align: center;
  /*padding: 44px 0;*/
}
.possibility__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}
.possibility__grid_2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}
.possibility-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1em;
}
.possibility-card__image {
  margin-bottom: 14px;
}
.possibility-card__title {
  margin: 0 0 6px;
  font-size: 1.2em;
}
.possibility-card__text {
  margin: 0;
  max-width: 270px;
  font-size: 0.9em;
}
.possibility__heading {
  margin: 0px 0 20px;
  font-size: 1.6em;
}
.possibility__grid_2 .possibility-card__text {
  width: 100%;
  max-width: none; /* 既存の max-width:260px を無効化 */
  box-sizing: border-box; /* padding込みで100%に収まるように */
  min-height: var(--possibility-text-min-h, 70px); /* デフォルト高さ */
  display: flex; /* 複数行でも上下中央など調整しやすい */
  align-items: center; /* 垂直方向センター */
  justify-content: center; /* 水平方向センター（左右中央寄せしたい場合） */
  text-align: center;
  background-color: #808080;
  color: #FFFFFF;
  padding: 10px; /* 複数行テキストの見た目を揃える */
}
/* ==============================
    GELRAMICが拓く新たな可能性スライダー
============================== */
section.column03 {
  max-width: 1920px;
  position: relative;
  top: 38px;
  width: 80vw;
  margin: 80px auto;
}
section.column03 .slider figure {
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
/* 画像 */
section.column03 .slider img {
  display: block;
  width: 100%;
}
section.column03 p {
  margin: 0;
  font-size: 0.9em;
  text-align: center;
}
.slick-dotted.slick-slider {
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  section.column03 {
    width: 90vw;
  }
}
@media only screen and (max-width: 600px) {
  section.column03 {
    width: 90vw;
  }
  section.column03 figure {
    position: relative;
  }
}
/*----slider----*/
.slider {
  padding: 0 2.5vw;
  margin: 20px 0;
}
@media only screen and (max-width: 600px) {
  .slider {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .slider.slick-dotted.slick-slider {
    padding-bottom: 0;
  }
}
.slider .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #002E92;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 14px;
  transform: rotate(45deg);
  background: none;
}
.slider .slick-next {
  right: 0px;
}
.slider .slick-prev {
  left: 0px;
}
.slider .slick-next::before {
  left: 12px;
  right: auto;
}
.slider .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 12px;
  left: auto;
}
.dots .slick-dots {
  position: relative;
  bottom: -10px;
  text-align: center;
}
@media (min-width: 601px) and (max-width: 768px) {
  .dots .slick-dots {
    bottom: 40px;
  }
}
@media screen and (min-width: 600px) {
  .dots .slick-dots {
    bottom: 60px;
  }
}
.dots .slick-dots li {
  display: inline-block;
}
.dots .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots .slick-dots .slick-active button {
  background: #002E92;
}
/* ==============================
    お客様実例
============================== */
.example {
  padding: 72px 0 80px;
  text-align: center;
}
.example__heading {
  margin: 8px 0 0px;
  font-size: 1.8em;
}
/* Carousel Section */
.img-responsive {
  width: 100%;
  height: auto;
  display: block;
}
/*カルーセル*/
.sus-carousel {
  width: 100%;
  padding: 20px 0;
  /*background: #fff;*/
  position: relative;
  text-align: center;
  /*overflow: hidden;*/
}
/*2枚表示で対応のときだけ*/
.sus-carousel, .sus-swiper {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
/* スライドの見た目（幅を明示すると 'auto' 指定が活きる） */
.sus-swiper .swiper-slide {
  width: clamp(280px, 72vw, 560px); /* 画面に応じて可変 */
  /* transform: scale(.9); ← 演出ならOKだが、なくても良い */
  transition: transform .6s;
}
/* 中央のスライドは等倍で強調 
.sus-swiper .swiper-slide-active {
  transform: scale(1);
  z-index: 1;
}*/
/* wrapper の中央寄せ（Swiper は flex なので効く）
.sus-swiper .swiper-wrapper {
  justify-content: center;
} */
/* 画像は既に OK（.img-responsive） */
.sus-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* 説明テキスト位置（そのままでOKだが幅に合わせて微調整可） */
.sus-swiper .sus-swiper-text {
  position: absolute;
  bottom: 0;
  left: 0; /* right:0 だけだとズレる可能性あり */
  right: 0;
  width: auto;
}
.sus-swiper {
  margin: 0 auto;
  padding-bottom: 40px;
  overflow: visible !important;
}
/*.sus-swiper .swiper-wrapper {
 width: 100%;
}*/
/*.sus-swiper .swiper-wrapper .swiper-slide {
 position: relative;
 transform: scale(.8); /* 左右のスライドを小さくする 
 width: 60%;
}*/
.sus-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* 帯は全幅（背景）、中身は中央揃え */
.sus-swiper .sus-swiper-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}
/* 中身をインラインフレックスで中央に */
.sus-swiper .sus-swiper-text__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* アイコンを“テキストの直後”に */
.sus-swiper .sus-swiper-text__inner::after {
  content: '›'; /* 画像なら content:""; + background-image でOK */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #808080;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  margin-left: 2px; /* 微妙な間隔調整 */
  pointer-events: none;
}
.sus-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
}
.sus-carousel-controls button {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #333;
  transition: transform 0.2s ease;
}
.sus-carousel-controls button:hover {
  transform: scale(1.1);
}
.sus-btn-prev, .sus-btn-next, .sus-btn-pause {
  background: none;
  border: none;
  cursor: pointer;
}
/* Arrow Button Base Class */
.arrow-btn {
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: calc(100% - 12px) center;
  padding: 12px 50px 12px 20px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 1em;
  line-height: 1.4;
}
.arrow-btn:hover {
  background-position: calc(100% - 8px) center;
  transform: translateY(-1px);
}
.arrow-white {
  background-image: url("img/i_white_arrow.svg");
  background-color: #0070b8;
  color: #fff;
}
.arrow-white:hover {
  background-color: #005a94;
}
.arrow-white-transparent {
  background-image: url("img/i_white_arrow.svg");
  color: #fff;
}
.arrow-blue {
  background-image: url("img/i_blue_arrow.svg");
  background-color: #fff;
  color: #0070b8;
  border: 2px solid #0070b8;
}
.arrow-blue:hover {
  background-color: #f0f8ff;
}
/* Icon Base Class */
.icon-style {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 6px;
}
.icon-pause {
  background-image: url("img/i_pause.svg");
}
.icon-play {
  background-image: url("img/i_play.svg");
}
.icon-next {
  background-image: url("img/i_next.svg");
}
.icon-prev {
  background-image: url("img/i_prev.svg");
}
/* Header Styles */
.sus-header {
  border-bottom: 2px solid var(--primary);
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  background-color: var(--background);
}
.sus-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sus-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--background);
}
.sus-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sus-logo img {
  height: 24px;
}
.sus-lang-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--primary);
}
.sus-lang-links span {
  color: var(--foreground);
}
.sus-lang-links a {
  margin-left: 5px;
  color: var(--primary);
  text-decoration: underline;
}
.sus-company-link img {
  height: 15px;
  margin-bottom: 5px;
  display: inline-block;
}
.sus-global-nav {
  background: var(--background);
  border-top: 1px solid var(--border);
}
.sus-nav-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sus-nav-list li {
  margin: 0 10px;
  position: relative;
  padding-right: 10px;
}
.sus-nav-list a {
  display: block;
  padding: 12px 0;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.sus-nav-list a img {
  display: block;
  width: 260px;
  padding: 9px 0;
}
.sus-nav-list a:hover {
  color: var(--primary);
}
.sus-nav-list li:not(:first-child)::before {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-image: url("img/arrow_blue.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -3px;
}
.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: none;
}
/* ==============================
   モーダル
============================== */
/*.container {
    text-align: center;
}*/
/*.modal-button {
    padding: 15px 30px;
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-button:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}*/
.mask {
  position: fixed;
  inset: 0; /* 画面全体 */
  background: rgba(0, 0, 0, 0.7); /* 70%透過ブラック */
  z-index: 1000; /* ページの上、モーダルの下 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* 表示状態 */
.mask.appear {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 10001; /* mask より上 */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
/*.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}*/
.modal.appear {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #fff;
  width: min(92vw, 960px);
  max-height: calc(100vh - 48px);
  /*overflow: hidden;*/
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
}
/*.modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}*/
.close-btn-container {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.close-btn {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  color: #495057;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.close-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.fullscreen-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 60px 40px;
}
/*.fullscreen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 40px 40px;
    justify-content: flex-start;
}*/
.fullscreen-content p {
  color: #222;
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 600px;
  text-align: left;
}
.fullscreen-content .close-btn-container {
  position: static;
  margin-top: 30px;
}
.fullscreen-content .close-btn {
  padding: 12px 30px;
  background: #495057;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 1.2;
  white-space: nowrap;
  min-width: 120px;
}
.fullscreen-content .close-btn:hover {
  background: #343a40;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}
.modal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-card__image {
  margin-bottom: 14px;
}
.modal__lead {
  margin: 0 auto 36px;
  max-width: 720px;
  font-size: 1.4em;
  color: #000;
  text-align: left;
  font-weight: bold;
}
.modal__text {
  margin: 0;
  max-width: 260px;
  font-size: 1.2em;
}
/* ==============================
   レスポンシブ
============================== */
/* 993px 以下では <br> を無効化（改行させない） */
@media (min-width: 961px) {
  .gel_menu_list {
    gap: 0 48px;
  }
}
@media (max-width: 768px) {
  .fullscreen-content {
    padding: 40px 20px;
  }
  .fullscreen-content .title {
    font-size: 2rem;
  }
  .fullscreen-content p {
    font-size: 1rem;
  }
}
@media (max-width: 960px) {
  .case__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .usecases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .possibility__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .possibility__grid_2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .image-placeholder--medium {
    width: 260px;
    height: 150px;
  }
  .usecases__grid .usecase-card:nth-child(1)::after {
    display: none;
  }
  .sus-swiper .swiper-slide {
    width: clamp(260px, 80vw, 520px);
  }
  .anchor-offset_01 {
    display: block;
	height: 70px;  
    margin-top: -70px; /* ↑と同じ量をマイナス指定 */
  }
  .anchor-offset_02 {
    display: block;
    height: 100px; /* 固定ヘッダー＋固定ナビぶんで再調整 */
    margin-top: -100px; /* ↑と同じ量をマイナス指定 */
  }
  .anchor-offset_03 {
    display: block;
    height: 110px; /* 固定ヘッダー＋固定ナビぶんで再調整 */
    margin-top: -110px; /* ↑と同じ量をマイナス指定 */
  }
  .gel_menu_link .gel_menu_label {
    white-space: nowrap; /* 折り返し禁止 */
  }
  .gel_menu_link .gel_menu_label_top, .gel_menu_link .gel_menu_label_bottom {
    display: inline; /* block → inline で横に並べる */
  }
  /* 2つのラベルの間に非改行スペースを1つ入れる（見た目の間隔用） */
  .gel_menu_link[href="#possibility"] .gel_menu_label_bottom::before {
    content: "\00a0"; /* NBSP */
  }
  .gel_menu_list {
    grid-template-columns: 1fr; /* 1カラム */
    gap: 4px 0;
  }
  .gel_menu_divider {
    display: none; /* 縦仕切りは非表示 */
  }
  .gel_menu_link {
    min-width: 0;
    /*padding: 10px 8px;*/
  }
  .gel_menu_label_top, .gel_menu_label_bottom {
    font-size: 16px;
  }
}
@media (max-width: 720px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
    color: #fff;
    background-image: url("../assets/img/hero-bg-sp.webp"); /* SP用画像 */
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
  }
  .hero__inner {
    display: block; /* 1カラムに戻す */
  }
  .hero__media {
    margin-top: 24px; /* テキストの下に適度な余白 */
    max-width: none;
  }
  .hero__text {
    max-width: none;
  }
  .hero__eyebrow {
    font-size: 1.8em;
  }
  .case__grid {
    grid-template-columns: 1fr;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .usecases__grid {
    grid-template-columns: 1fr;
  }
  .gel_comparison_block_title {
    gap: 0px;
    margin: 8px 0px 10px;
    text-align: left;
  }
  .gel_comparison_wrap {
    padding: 10px;
  }
  .gel_comparison_media img {
    width: 100%;
  }
  .gel_comparison_note {
    width: 100%;
  }
  .possibility__grid {
    grid-template-columns: 1fr;
  }
  .possibility__grid_2 {
    grid-template-columns: 1fr;
  }
  .cta__button {
    width: 90%;
  }
  .sus-swiper .swiper-slide {
    width: clamp(220px, 88vw, 480px);
  }
}
/* ==============================
   ロゴ画像（SVG）のスタイル
============================== */
/* ヒーローのロゴ */
.hero__logo {
  height: 62px;
  width: auto;
  display: block;
}
/* 見出し内ロゴ */
.features__logo, .usecases__logo, .possibility__logo {
  height: 38px;
  width: auto;
  vertical-align: middle;
}
/* 見出し内でロゴとテキストを横並びにする */
.features__heading--with-logo, .possibility__title--with-logo, .possibility__heading--with-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  color: #000;
}
/* 見出し内でロゴとテキストを横並びにする */
.usecases__title--with-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  color: #fff;
}
/* usecases 見出しの改行とロゴが縦方向にきれいに見えるよう調整 */
.usecases__title--with-logo {
  flex-direction: row;
}
/* ==============================
   CTA（お問い合わせ誘導）
============================== */
.cta__actions {
  
display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center; /* ← これを追加 */

}
.cta {
  padding: 72px 0;
  background-color: #ffffff;
  text-align: center;
}
.cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta__text {
  font-size: 1.4em;
  font-weight: 600;
  margin: 0 0 24px;
  color: #222;
}
.cta__text.small {
  font-size: 1.0em;
  font-weight: normal;
  margin: 0 0 24px;
  color: #222;
}
.cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  margin: 0 auto;
  padding: 14px 40px;
  font-size: 1em;
  font-weight: 600;
  border-radius: 30px;
  background-color: #000;
  color: #fff;
  transition: background-color 0.25s ease;
}
.cta__button::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}
.cta__button:hover, .cta__button:focus-visible {
  background-color: #003f9e;
}