/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 19 2025 | 09:49:41 */
/* ここにCSSコードを追加

例:
.example {
    color: red;
}

CSS の知識に磨きをかけるためにご覧ください。
http://www.w3schools.com/css/css_syntax.asp

コメント終わり */ 
/*----スライダーショー-----*/
/* ===== 全幅スライダー ===== */
.full-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}

/* スライド */
.slides {
  position: relative;
  height: 100vh;
  min-height: 360px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ドット ===== */
.dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #fff;
}

/* スマホ */
@media (max-width: 768px) {
  .slides {
    height: 45vh;
  }
}


/*-------ナビゲーションメニュー--------*/
/* サブナビ全体 */
.sub-nav {
  margin: 40px 0;
}

/* リスト */
.sub-nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* 各メニュー */
.sub-nav_item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* ホバー */
.sub-nav_item a:hover {
  color: #fff;
  background: linear-gradient(90deg, #0f4c81, #1e90ff);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* 現在ページ用（任意） */
.sub-nav_item.current a {
  color: #fff;
  background: #52a452;
  border-color: #52a452;
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .sub-nav_item a {
    min-width: auto;
    width: 100%;
  }
}
/*-------正規販売代理店----------*/
/* 共通 */
.gradient-text {
  margin: 40px auto;
  padding: 0 16px;
  max-width: 1200px;

  font-weight: 700;
  line-height: 1.6;
  text-align: center;

  font-size:28px;

  background: linear-gradient(90deg, #0f4c81, #1e90ff, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* PCでは改行しない */
.sp-only {
  display: none;
}

/* スマホでは改行する */
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }

  .gradient-text {
    text-align: center;   /* 任意：スマホは左寄せ */
    font-size: 16px;
    line-height: 1.7;
  }
}


/* ===== カード全体 ===== */
.card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC：4枚横並び */
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 16px;
}

/* ===== カード ===== */
.card-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;

  border: 2px solid transparent; /* ← 追加 */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease; /* ← 追加 */
}


.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);

  border-color: #0f4c81;
}
.card-item {
  position: relative;
}

.card-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  /*-background: linear-gradient(135deg, #0f4c81, #1e90ff);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;*/
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-item:hover::before {
  opacity: 1;
}


/* 画像 */
.card-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;   /* ← ここを変更 */
  background: #f5f7fa;   /* 余白用（任意） */
}

/* 説明文 */
.card-text {
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

/* ===== レスポンシブ ===== */

/* タブレット */
@media (max-width: 1024px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    gap: 20px;
  }
}

/* スマートフォン */
@media (max-width: 600px) {
  .card-list {
    grid-template-columns: 1fr; /* 1列 */
    gap: 16px;
  }

  .card-text {
    font-size: 14px;
  }
}
/* ===== 高級感ナビテキスト ===== */
.nav-text {
  position: relative;
  display: inline-block;
  margin: 40px auto;
  padding: 0 12px 14px;

  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;

  /* レスポンシブ文字サイズ */
  font-size: clamp(20px, 3vw, 34px);

  /* ダークネイビー × ゴールド */
  color: #1f2a44;
}

/* 下の装飾ライン */
.nav-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 60%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #c9a24d,
    #f1d88a,
    #c9a24d,
    transparent
  );
}

/* 上の細い装飾ライン */
.nav-text::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);

  width: 30%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,162,77,0.7),
    transparent
  );
}

/* ===== スマホ最適化 ===== */
@media (max-width: 768px) {
  .nav-text {
    letter-spacing: 0.1em;
    padding-bottom: 12px;
  }

  .nav-text::after {
    width: 70%;
  }
}
/* ===== 全体 ===== */
.cf7-robot-form {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 16px;
}

/* タイトル */
.cf7-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
/* ===== CF7 タイトル（高級感） ===== */
.cf7-title {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 18px;

  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;

  /* ブルー系グラデーション文字 */
  background: linear-gradient(90deg, #0f4c81, #1e90ff, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* 下線（高級感のある細ライン） */
.cf7-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #0f4c81, #1e90ff);
  border-radius: 999px;
}

/* スマホ最適化 */
@media (max-width: 600px) {
  .cf7-title {
    letter-spacing: 0.04em;
    padding-bottom: 14px;
  }

  .cf7-title::after {
    width: 80px;
  }
}

.cf7-lead {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

/* 入力グループ */
.cf7-group {
  margin-bottom: 24px;
}

.cf7-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.req {
  color: #1e90ff;
  font-size: 12px;
  margin-left: 6px;
}

/* 入力欄 */
.cf7-group input,
.cf7-group select,
.cf7-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.cf7-group input:focus,
.cf7-group textarea:focus,
.cf7-group select:focus {
  outline: none;
  border-color: #1e90ff;
}

/* プライバシー */
.cf7-privacy {
  margin: 32px 0;
  padding: 20px;
  background: #f7f9fc;
  border-radius: 10px;
}

.privacy-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.privacy-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* 送信ボタン */
.cf7-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #0f4c81, #1e90ff);
  color: #fff;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30,144,255,0.3);
}

/* スマホ */
@media (max-width: 600px) {
  .cf7-robot-form {
    margin: 40px auto;
  }
}

/*-------商品ページ-----------*/
.top-img-wrap{
width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.top-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/*--------動画----------*/
/* 全幅動画（Lightning対応） */
.top-video-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.top-video-full video,
.top-video-full iframe {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .top-video-full {
    height: 45vh;
  }
}
/*---------ロボットスペック---------*/
/* 全体 */
.product-spec-section {
  padding: 80px 20px;
  background: #fff;
}

.product-spec-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 商品画像 */
.product-images {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.product-images img {
  max-width: 860px;
  width: 100%;
  height: auto;
}

/* スペック */
.product-specs {
  font-size: 15px;
  color: #333;
}

.spec-list {
  margin: 0;
}

.spec-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid #e6e6e6;
}

.spec-item dt {
  font-weight: 600;
  color: #555;
}

.spec-item dd {
  margin: 0;
  line-height: 1.6;
}

/* タブレット */
@media (max-width: 900px) {
  .product-spec-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-images {
    flex-direction: row;
  }
}

/* スマホ */
@media (max-width: 600px) {
  .product-images {
    flex-direction: column;
    align-items: center;
  }

  .spec-item {
    grid-template-columns: 1fr;
  }

  .spec-item dt {
    margin-bottom: 6px;
  }
}
/* カード全体を確実にクリック可能にする */
.card-item a {
  display: block;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: inherit;
}

/* 画像がクリックを邪魔しないように */
.card-item img {
  display: block;
  pointer-events: auto;
}

/* 万一の被さり防止 */
.card-item {
  position: relative;
  z-index: 1;
}

/* セクション全体 */
.robot-recommend-section {
  padding: 80px 20px;
  background: #fff;
}

/* タイトル */
.robot-section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* グリッド */
.robot-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* カード */
.robot-card {
  display: block;
  text-decoration: none;
  color: #333;
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* 画像 */
.robot-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ロボット名 */
.robot-name {
  display: block;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  background: #fff;
}

/* hover */
.robot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.robot-card:hover img {
  transform: scale(1.08);
}

/* タブレット */
@media (max-width: 900px) {
  .robot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .robot-card img {
    height: 240px;
  }
}

/* スマホ */
@media (max-width: 600px) {
  .robot-grid {
    grid-template-columns: 1fr;
  }

  .robot-card img {
    height: 220px;
  }

  .robot-section-title {
    font-size: 22px;
  }
}
/* 背景を薄い水色＆フルワイド */
.robot-recommend-section {
  background: #eef7fb;           /* うす水色 */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 90px 20px;
}

/* 中央寄せ */
.robot-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトルも中央に */
.robot-section-title {
  max-width: 1200px;
  margin: 0 auto 50px;
}
/* セクション全体（黒背景・フルワイド） */
.t8-video-section {
  background: #000;
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px 20px;
}

/* 中央寄せ */
.t8-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル */
.t8-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
/* T8 のみブルーグラデーション */
.t8-col {
  background: linear-gradient(90deg, #2aa7ff, #005eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* サブキャッチ */
.t8-catch {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
	 /* 青グラデーション文字 */
  background: linear-gradient(90deg, #2aa7ff, #005eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 説明文 */
.t8-text {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* 動画ラッパー（角丸） */
.t8-video-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  margin-bottom: 40px;
}

/* video / iframe 共通 */
.t8-video-wrap video,
.t8-video-wrap iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* タブレット */
@media (max-width: 900px) {
  .t8-title {
    font-size: 30px;
  }

  .t8-catch {
    font-size: 18px;
  }
}


/* スマホ */
@media (max-width: 600px) {
  .t8-title {
    font-size: 24px;
  }

  .t8-text {
    font-size: 15px;
  }
  .t8-video-wrap {
    border-radius: 18px;
  }
}
/* セクション全体（白背景・フルワイド対応可） */
.t8-section {
  background: #ffffff;
  color: #111;
  padding: 100px 20px;
}

/* 中のテキスト共通 */
.t8-text-b {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
  color: #333;
}

/* 見出し（キャッチ） */
.t8-catch-b {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
 	 /* 青グラデーション文字 */
  background: linear-gradient(90deg, #2aa7ff, #005eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
}

/* 動画ラッパー（黒背景版と完全共通想定） */
.t8-video-wrap {
  max-width: 900px;              /* ← 黒背景版と同じ */
  margin: 0 auto 60px;
  border-radius: 24px;           /* ← 同じ角丸 */
  overflow: hidden;
  background: #000;              /* 動画の余白対策 */
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

/* video / iframe 共通 */
.t8-video-wrap video,
.t8-video-wrap iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;          /* ← 同じ比率 */
  object-fit: cover;
}

/* タブレット */
@media (max-width: 900px) {
  .t8-catch-b {
    font-size: 20px;
  }

  .t8-video-wrap {
    border-radius: 20px;
  }
}

/* スマホ */
@media (max-width: 600px) {
  .t8-section {
    padding: 70px 16px;
  }

  .t8-catch-b {
    font-size: 18px;
  }

  .t8-text-b {
    font-size: 15px;
  }

  .t8-video-wrap {
    border-radius: 16px;
    margin-bottom: 50px;
  }
}
/*枠線をつける*/
	
#block-12{
	padding:0px;
	border:0 !important;
	border-radius:10px 0;
}
#post-11{
	margin-top:400px;
}