/* ===============================
   ご利用までの流れ
================================ */
.icon-home {
  background-image: url("icon.svg");
  width: 24px;
  height: 24px;
}
:root {
  /* ユーザー定義のカスタムプロパティ */
  --zkm-bg: #fff;
  --zkm-ink: #1f2937;
  --zkm-accent: #ff7a18;
  --zkm-card: #fbfbfb;
  --zkm-radius: 14px;
  --zkm-shadow: 0 6px 16px rgba(31, 41, 55, 0.08);
  --zkm-gap: 20px;
  --zkm-maxwidth: 1100px;

  /* 料金詳細ページで使用するカスタムプロパティを追加 */
  --color-primary: #1aa7c7; /* テトテルプライマリカラー (ベーシックプランなど) */
  --color-secondary: #ff9158; /* スタンダードプランやCTAボタン */
  --color-gray: #6c757d; /* ミニマムプラン */
  --color-success: #4caf50; /* チェックマーク */
  --color-link: #1a74c7; /* リンクや情報強調 */
  --color-warning: #ff7e5f; /* 強調、年間割引など */
  --color-bg-light: #f7f9fa;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-deep: 0 12px 12px 0 rgba(40, 47, 60, 0.3);
}

/* ===================================
   1. ベースとレイアウト
   =================================== */

.plan-summary-section,
.comparison-section,
.faq-section {
  max-width: var(--zkm-maxwidth);
  margin: 0 auto;
  padding: 0 var(--zkm-gap);
}

/* --------------------
   セクションの基本設定
   -------------------- */
.page-title-section {
  background: var(--zkm-bg);
  padding: 30px var(--zkm-gap);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 5px dashed #ff9158;
}

/* ===================================
   2. プラン概要セクション (Summary Cards)
   =================================== */
.plan-summary-section {
  padding-top: 50px;
  text-align: center;
}

.plan-cards-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.summary-card {
  background-color: var(--zkm-bg);
  border-radius: var(--zkm-radius);
  box-shadow: var(--shadow-deep);
  padding: 25px;
  width: 30%;
  min-width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.summary-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
  text-align: center;
}

.plan-price-box {
  text-align: center;
  padding: 15px 0;
  margin: 10px 0 20px;
  border-top: 1px dashed #eee;
  border-bottom: 1px dashed #eee;
}

.price-monthly {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
}

.price-annual {
  font-size: 1.1rem;
  font-weight: 700;
  color: #555;
  margin: 5px 0 0;
}

.unit {
  font-size: 0.7rem;
  font-weight: 400;
  color: #555;
}

.summary-card .description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  flex-grow: 1;
}
/* 案内文（スマホのみ） */
.table-scroll-hint {
  display: none;
  font-size: 14px;
  color: #ff7a00;
  margin-bottom: 10px;
  text-align: right;
  padding-right: 5px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* アイコン */
.scroll-icon {
  animation: slide-hint 1.4s infinite ease-in-out;
}

/* アイコンの動き（左右にゆっくり移動） */
@keyframes slide-hint {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}

/* テーブル横スクロール */
.comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table table {
  min-width: 700px;
}

/* スマホだけ表示 */
@media screen and (max-width: 768px) {
  .table-scroll-hint {
    display: flex;
    margin-top: 10px;
  }
}
/* ====== テトテル導入事例セクション ====== */

.tetotel-case-section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgb(255, 107, 0) 0%, rgb(255, 140, 26) 100%);
}

/* 背景アニメーション */
.tetotel-case-section-bg::before,
.tetotel-case-section-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float-bg 8s ease-in-out infinite alternate;
}

.tetotel-case-section-bg::before {
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #ffffff;
}

.tetotel-case-section-bg::after {
  bottom: -120px;
  right: -120px;
  width: 250px;
  height: 250px;
  background: #ffe8c6;
}

.tetotel-case-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  border: 2px solid #ffcca6;
}

/* 左の内容 */
.tetotel-case-content {
  flex: 1;
}

.tetotel-case-label {
  background: #000;
  color: #fff;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 15px;
}

.tetotel-case-title {
  font-size: 36px;
  margin-bottom: 25px;
}

.tetotel-case-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.tetotel-case-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.tetotel-case-tag {
  background: #ff6b00;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.tetotel-case-text {
  font-size: 16px;
}

.tetotel-case-text .highlight {
  color: #ff5a00;
  font-weight: bold;
}

/* 右の画像 */
.tetotel-case-image img {
  width: 380px;
  height: auto;
  border-radius: 12px;
}

/* 導入数バッジ */
.tetotel-case-badge {
  position: absolute;
  top: -30px;
  right: 40px;
  background: #0a253f;
  color: #fff;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  border: 5px solid #fff;
}

.tetotel-case-badge span {
  font-size: 22px;
  font-weight: bold;
}

/* ====== レスポンシブ ====== */

@media screen and (max-width: 900px) {
  .tetotel-case-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .tetotel-case-list li {
    justify-content: center;
  }

  .tetotel-case-image img {
    width: 80%;
    max-width: 350px;
  }

  .tetotel-case-badge {
    top: -40px;
    right: -10px;
    transform: scale(0.9);
  }
}

@media screen and (max-width: 560px) {
  .tetotel-case-title {
    font-size: 28px;
  }
  .tetotel-case-list {
    text-align: left;
  }

  .tetotel-case-btn {
    font-size: 16px;
  }

  .tetotel-case-badge {
    right: -6px;
    transform: scale(0.8);
  }
  .page-title-section {
    margin-right: 15px;
    margin-left: 15px;
  }
}

/* プラン別カラーリング */
.minimam-sum {
  border-color: var(--color-gray);
}
.minimam-sum .price-monthly {
  color: var(--color-gray);
}

.basic-sum {
  border-color: var(--color-primary);
}
.basic-sum .price-monthly {
  color: var(--color-primary);
}

.standard-sum {
  border-color: var(--color-secondary);
}
.standard-sum .price-monthly {
  color: var(--color-secondary);
}

/* 人気プラン強調 */
.popular-sum {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(26, 167, 199, 0.25);
  position: relative;
  padding-top: 35px;
  border: 3px solid var(--zkm-accent);
}

.popular-sum::before {
  content: "人気 No.1";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  background: linear-gradient(to right, #ff8c42, #ff6a88);
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(255, 124, 136, 0.4);
}

/* ===================================
   3. 年間割引セクション (Discount)
   =================================== */
.discount-section {
  text-align: center;
  padding-top: 40px;
}

.discount-card {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #fff7e6, #ffe0b3);
  border: 1px solid orange;
  border-radius: var(--zkm-radius);
  padding: var(--zkm-gap);
  margin: 20px auto;
  max-width: 700px;
  box-shadow: var(--shadow-light);
}

.discount-icon {
  font-size: 3rem;
  margin-right: var(--zkm-gap);
  color: var(--color-primary);
}

.discount-content h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
  color: var(--zkm-accent);
}

.discount-content strong {
  color: var(--color-warning);
}

.annual-cta {
  font-size: 1.1rem;
  font-weight: 700;
  color: #555;
  margin-top: 15px;
}

/* ===================================
   4. 比較表セクション (Comparison Table)
   =================================== */
.comparison-table {
  overflow-x: auto;
  background-color: var(--zkm-bg);
  border-radius: var(--zkm-radius);
  box-shadow: var(--shadow-deep);
  margin-top: 30px;
}
.section-title {
  text-align: center;
  margin-top: 40px;
  font-size: 28px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th,
td {
  padding: 15px 12px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

thead th {
  background-color: var(--color-bg-light);
  color: #555;
  font-weight: 700;
  position: sticky;
  top: 0;
}

/* プラン別カラムの色と人気マーク */
.minimam-col {
  color: var(--color-gray);
}
.basic-col {
  color: var(--color-primary);
}
.standard-col {
  color: var(--color-secondary);
}

.popular {
  background-color: #fffbe6; /* 人気プランのヘッダー背景 */
}

/* 項目名（左端カラム） */
tbody td:first-child {
  text-align: left;
  font-weight: 500;
  background-color: #fafafa;
  border-left: 5px solid transparent;
}

.category-row td {
  background-color: #e3f2fd;
  font-weight: 700;
  text-align: left !important;
  color: var(--color-primary);
  padding: 10px 12px;
}

/* チェックマークとバツ印 */
td:not(:first-child) {
  font-size: 1.2rem;
  font-weight: 900;
}

td.disabled {
  color: #ccc;
}
td:not(.disabled) {
  color: var(--color-success); /* 緑色のチェックマーク */
}
td.disabled .feature-name {
  text-decoration: line-through;
}

/* 特殊なセル（人数制限など） */
.feature-row strong {
  font-weight: 700;
  color: #ff4081;
}

.price-faq {
  margin-top: 60px;
}

/* ===================================
   7. アニメーション用CSS
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   8. レスポンシブデザイン
   =================================== */
@media (max-width: 992px) {
  .plan-cards-container {
    gap: 20px;
  }
  .summary-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  /* 年間割引カードの縦積み */
  .discount-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    margin-right: 15px;
    margin-left: 15px;
  }
  .discount-icon {
    margin: 0 0 15px 0;
  }
  .annual-cta {
    margin-right: 15px;
    margin-left: 15px;
    text-align: left;
  }

  /* プラン概要カードの縦積み */
  .plan-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 0;
  }
  .summary-card {
    width: 100%;
    max-width: 450px;
  }
  .popular-sum {
    transform: scale(1);
  }
  .popular-sum::before {
    top: -10px;
  }

  /* FAQのアコーディオン */
  .accordion-header {
    font-size: 1rem;
    padding: 15px;
  }
  .accordion-header h3 {
    font-size: 1rem;
  }
  .badge {
    display: block;
    margin-top: 5px;
    margin-left: 0;
    width: fit-content;
  }

  /* CTAボタン */
  .cta-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 20px;
  }
}
.text-lg {
  display: none;
}

/* モバイルでのみ表示され、スクロールを促すアニメーション */
@keyframes bounce-scroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.animate-bounce-scroll {
  animation: bounce-scroll 1s infinite;
}

/* モックアップ用の詳細コンテンツのスタイル */
.detail-content {
  min-height: 100vh; /* スクロールが必要になるように高さを確保 */
}

/* ===================================
   ヘルプページ
   =================================== */

/* ===============================
  機能紹介ページ
================================ */
.zkm_appr_wrap {
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
  color: var(--zkm-ink);
  padding: 48px 20px;
  display: flex;
  justify-content: center;
}

.zkm_appr_inner {
  width: 100%;
  max-width: var(--zkm-maxwidth);
}

.zkm_appr_head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.zkm_appr_kicker {
  display: inline-block;
  background: var(--zkm-accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(255, 122, 24, 0.14);
}

.zkm_appr_title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--zkm-ink);
}

.zkm_appr_sub {
  margin-top: 6px;
  font-size: 14px;
  color: #6b7280;
}

.zkm_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--zkm-gap);
  align-items: start;
}

.zkm_card_check {
  background: var(--zkm-card);
  border-radius: var(--zkm-radius);
  box-shadow: var(--zkm-shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 80%;
}

.zkm_check_icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--zkm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zkm_check_icon svg {
  width: 14px;
  height: 14px;
  /* fill は不要になるか、あるいは fill: none; を指定 */
  fill: none;
  /* 新たに stroke を設定して線の色を白に */
  stroke: #fff;
  /* 線の太さを指定 */
  stroke-width: 2px;
  /* 線の端を丸くする（オプション） */
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .zkm_grid {
    grid-template-columns: 1fr;
  }
  .zkm_appr_head {
    flex-direction: column;
    align-items: flex-start;
  }
  .zkm_card_check {
    width: 100%;
  }
}
/* ================================
   特徴・機能
================================ */
.function-outer {
  background: url(../img/tetote/back2.png) no-repeat center / cover;
}
/* 全体ラッパー */
.bc4f-wrapper {
  background: url(../img/tetote/gray-back.jpg) no-repeat center / cover;
  padding: 60px 0 10px;
}
.bc4f-container {
  width: min(1100px, 90%);
  margin: auto;
}

/* ブロック枠 */
.bc4f-block {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
}

/* アイコン円 */
.bc4f-icon {
  position: absolute;
  top: -20px;
  left: 20px;
}

.bc4f-icon-circle {
  display: inline-block;
  background: #fff;
  border: 2px solid #ddd;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 48px;
  text-align: center;
}

/* セクション見出し */
.bc4f-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bc4f-desc {
  color: #555;
  margin-bottom: 25px;
}

/* 横並びレイアウト */
.bc4f-item-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

.bc4f-text {
  flex: 1;
}

.bc4f-list {
  margin-top: 10px;
  padding-left: 20px;
}

.bc4f-list li {
  margin-bottom: 6px;
  color: #444;
}

/* 画像枠 */
.bc4f-image img {
  width: 380px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .bc4f-item-flex {
    display: block;
  }
  .help-image {
    margin: 0 auto;
  }
  .bc4f-image {
    margin: auto;
    margin-top: 20px;
    text-align: center;
  }
}
/* レスポンシブ */
@media (max-width: 768px) {
  .bc4f-item-flex {
    flex-direction: column;
  }

  .bc4f-image img {
    width: 100%;
  }
  .bc4f-block {
    padding: 40px 20px 10px;
  }
  .bc4f-list {
    padding-left: 0px;
  }
  .bc4f-wrapper {
    padding: 0 0 5px;
  }
}

.change-img {
  width: 500px;
  margin: 0 auto;
}
.tab-outer {
  background: url(../img/tetote/gray-back.jpg) no-repeat center / cover;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 20px 0 70px;
}

.category-outer {
  background: url(../img/tetote/gray-back.jpg) no-repeat center / cover;
  position: relative;
}
.category h3 {
  margin-bottom: 10px;
}
.tab-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* --- 横並び&カードレイアウト --- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  justify-content: center;
}

/* --- 各タブカード --- */
.tab {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  padding: 14px 16px;
  width: 300px; /* カード幅（調整可） */
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  position: relative;
}

/* ホバー */
.tab:hover {
  background: #fafafa;
  transform: translateY(-3px);
}

/* 選択中 */
.tab.active {
  border: 2px solid #4ca9ff;
  background: #f0f9ff;
}

/* --- アイコン部分 --- */
.tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #c79a4a;
  flex-shrink: 0;
}

/* active時のアイコンカラー */
.tab.active .tab-icon {
  background: #4ca9ff;
  color: #fff;
}

/* チェックマーク */
.tab.active .tab-icon::before {
  content: "✔";
  font-size: 16px;
}

/* --- テキスト部を少し太字に --- */
.tab {
  font-weight: 700;
}
[data-target="tab1"] .tab-icon::before {
  content: "📱";
}
[data-target="tab2"] .tab-icon::before {
  content: "📅";
}
[data-target="tab3"] .tab-icon::before {
  content: "🚪";
}
[data-target="tab4"] .tab-icon::before {
  content: "📄";
}
[data-target="tab5"] .tab-icon::before {
  content: "👶";
}
[data-target="tab6"] .tab-icon::before {
  content: "💴";
}
[data-target="tab7"] .tab-icon::before {
  content: "🔔";
}
[data-target="tab8"] .tab-icon::before {
  content: "📝";
}
[data-target="tab9"] .tab-icon::before {
  content: "💬";
}
[data-target="tab10"] .tab-icon::before {
  content: "📧";
}
[data-target="tab11"] .tab-icon::before {
  content: "👥";
}
[data-target="tab12"] .tab-icon::before {
  content: "⚡";
}
[data-target="tab13"] .tab-icon::before {
  content: "❗";
}
[data-target="tab14"] .tab-icon::before {
  content: "📆";
}
[data-target="tab15"] .tab-icon::before {
  content: "⏰";
}
[data-target="tab16"] .tab-icon::before {
  content: "🔢";
}
[data-target="tab17"] .tab-icon::before {
  content: "🎨";
}
[data-target="tab18"] .tab-icon::before {
  content: "👀";
}
.feature-section {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  justify-content: center;
}

.feature-column {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}

.title-orange {
  border-left: 4px solid #e9a26c;
}
.title-green {
  border-left: 4px solid #8cc57f;
}
.title-yellow {
  border-left: 4px solid #e6ca67;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-card:hover {
  background: #fafafa;
  transform: translateY(-2px);
}

.arrow {
  position: absolute;
  right: 16px;
  color: #999;
  font-size: 20px;
}

/* アイコン（簡易版：シンプルな丸枠＋記号） */
.icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c59b5f;
}

/* 個別アイコン（必要なら差し替え） */
.icon-class::before {
  content: "🏫";
}
.icon-document::before {
  content: "📄";
}
.icon-sleep::before {
  content: "😴";
}
.icon-thermo::before {
  content: "🌡️";
}

.icon-photo::before {
  content: "📷";
}
.icon-document2::before {
  content: "🗂️";
}
.icon-contact::before {
  content: "📱";
}
.icon-bell::before {
  content: "📨";
}

.icon-growth::before {
  content: "📋";
}
.icon-time::before {
  content: "⏱️";
}
.icon-money::before {
  content: "💴";
}
.icon-shift::before {
  content: "👥";
}

.tab-content {
  flex: 1;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ddd;
  min-height: 220px;
  transition: background 0.3s ease-in-out;
}

.content-box {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.content-box.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-content img {
  text-align: center;
  margin: auto;
  padding: 30px 0;
}
.function_img {
  margin: auto;
  text-align: center;
}
/* 背景色クラス */
.bg-tab1 {
  background: linear-gradient(to bottom, #f5faff, #cce7ff);
}
.bg-tab2 {
  background: linear-gradient(to bottom, #f0fff5, #b3e6cc);
}
.bg-tab3 {
  background: linear-gradient(to bottom, #fff7e6, #ffe0b3);
}
.bg-tab4 {
  background: linear-gradient(to bottom, #fff0f5, #f2a6bf);
}
.bg-tab5 {
  background: linear-gradient(to bottom, #f9f5ff, #d1b3ff);
}
.bg-tab6 {
  background: linear-gradient(to bottom, #f7fffa, #c8f3dd); /* ミント */
}
.bg-tab7 {
  background: linear-gradient(to bottom, #fff9f7, #ffd4c7); /* サーモン */
}
.bg-tab8 {
  background: linear-gradient(to bottom, #f7fbff, #c9dcff); /* スカイブルー */
}
.bg-tab9 {
  background: linear-gradient(
    to bottom,
    #fff7fb,
    #f4c6e9
  ); /* ピンクラベンダー */
}
.bg-tab10 {
  background: linear-gradient(to bottom, #f9fff5, #d4efb3); /* ライトグリーン */
}
.bg-tab11 {
  background: linear-gradient(to bottom, #f5faff, #d4e4ff); /* ペールブルー */
}
.bg-tab12 {
  background: linear-gradient(to bottom, #fffdf5, #ffe9a8); /* クリーム */
}
.bg-tab13 {
  background: linear-gradient(to bottom, #fff5f5, #ffcccc); /* ペールレッド */
}
.bg-tab14 {
  background: linear-gradient(to bottom, #f5fffe, #bff4ef); /* アクア */
}
.bg-tab15 {
  background: linear-gradient(to bottom, #fef5ff, #e3b5f4); /* ライラック */
}
.bg-tab16 {
  background: linear-gradient(to bottom, #f5faff, #bdd7ff); /* クラウドブルー */
}
.bg-tab17 {
  background: linear-gradient(to bottom, #fffaf5, #f7d6a8); /* アプリコット */
}
.bg-tab18 {
  background: linear-gradient(
    to bottom,
    #f6fff5,
    #c6f1b9
  ); /* パステルグリーン */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .tab-content {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (max-width: 768px) {
  .tab-container {
    flex-direction: column;
  }
  .tabs {
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }
  .tab-content {
    margin-top: 16px;
  }
  .category h3 {
    font-size: 20px;
  }
  .change-img {
    width: 100%;
    margin: 0 auto;
  }
}
/* =====================================================
   MESSAGE / PRICE / THOUGHT
===================================================== */
.message {
  position: relative;
  max-width: 800px;
  margin: 100px auto 0;
  padding: 60px 40px;
  background: url(../img/back5.png) center/cover no-repeat;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.1);
}
.message h2 {
  position: absolute;
  top: 0;
  left: 40px;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: normal;
  line-height: 1.2;
  color: #f26f78;
}
.message h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.message .img {
  position: absolute;
}
.name {
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
}
.price .message {
  padding: 40px;
  margin-top: 0;
}
.price h4 {
  font-size: 32px;
  color: #f26f78;
  margin-bottom: 13px;
}
.price h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.price p {
  font-size: 14px;
}
.thought .message {
  max-width: 1040px;
  padding: 60px;
}
.message .img {
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .message {
    margin-top: 40px;
    padding: 30px 20px 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .message h2 {
    font-size: 24px;
    left: 20px;
  }
  .message h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .message .img {
    /* display: none; */
    right: 20px;
    bottom: auto;
    top: 0;
    margin-top: -30px;
    width: 100px;
  }
}
/* ===============================
SNSトータルサポート
================================ */
/* ===== テトテル CTA セクション ===== */

.tetotel-cta-section {
  padding: 80px 20px;
  background: #f9fafc;
}

.tetotel-cta-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===== カード ===== */
.tetotel-cta-card {
  background: #f1f6fb;
  width: 48%;
  max-width: 500px;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}

.tetotel-cta-icon {
  margin-bottom: 20px;
}

.tetotel-cta-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.tetotel-cta-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 900px) {
  .tetotel-cta-card {
    width: 100%;
  }
}

/* ===============================
問い合わせ　コンタクトページ
================================ */
.cw-contact-section {
  background-color: #fff;
  padding: 60px 20px;
  color: #333;
  box-sizing: border-box;
  line-height: 1.6;
}

.cw-contact-section * {
  box-sizing: border-box;
}

/* レイアウトコンテナ */
.cw-contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* --- 左側コンテンツ --- */
.cw-contact-left {
  flex: 1;
  min-width: 300px;
}

.cw-contact-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #2f3841;
}

.cw-contact-desc {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

/* 画像プレースホルダー */
.cw-contact-illustration {
  margin-bottom: 40px;
  text-align: center;
}
.cw-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* --- 右側フォームエリア --- */
.cw-contact-right {
  flex: 0 0 400px; /* 固定幅 */
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .cw-contact-container {
    display: block;
  }
}
@media (max-width: 768px) {
  .cw-contact-right {
    flex: 100%;
  }
}

.cw-contact-form {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
}

.cw-form-group {
  margin-bottom: 20px;
}

.cw-form-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.cw-badge-required {
  background: linear-gradient(#ff6b00 0, #ff8c1a 100%);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: normal;
}

.cw-form-input,
.cw-form-select,
.cw-form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
  appearance: none; /* デフォルトスタイル解除 */
}

.cw-form-input:focus,
.cw-form-select:focus,
.cw-form-textarea:focus {
  outline: none;
  border-color: #4da5ff;
  box-shadow: 0 0 0 3px rgba(77, 165, 255, 0.2);
}

.cw-form-textarea {
  height: 120px;
  resize: vertical;
}

/* セレクトボックスの矢印調整 */
.cw-select-wrapper {
  position: relative;
}
.cw-select-wrapper::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  pointer-events: none;
}

/* プライバシーポリシー */
.cw-form-privacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cw-privacy-label {
  font-size: 14px;
  font-weight: bold;
  display: block;
  align-items: center;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
}
.cw-privacy-check {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cw-privacy-notes {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  font-size: 11px;
  color: #666;
}
.cw-privacy-notes li {
  margin-bottom: 5px;
}
.cw-privacy-notes a,
.cw-footer-note a {
  color: #007bff;
  text-decoration: underline;
}

/* 送信ボタン */
.cw-submit-btn {
  width: 100%;
  background: linear-gradient(#ff6b00 0, #ff8c1a 100%);
  color: white;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.3s;
  box-shadow: 0 4px 6px rgba(255, 69, 78, 0.2);
}

.cw-submit-btn:hover {
  opacity: 0.9;
}

/* フッター注釈 */
.cw-footer-note {
  font-size: 10px;
  color: #666;
  margin-top: 20px;
  line-height: 1.5;
}
/* ==========================================================
// 利用の流れ　TOP
// ========================================================== */

.support-section-container {
  /* 背景色は画像に合わせて薄いグレー系に設定 */
  background: url(../img/tetote/back2.png) no-repeat center / cover;
  padding: 60px 20px 0; /* 上下のパディング。レスポンシブで調整 */
}

.support-section-wrapper {
  /* 最大幅を設定し、中央に配置 */
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
}

/* ==========================================================
// 2. テキストコンテンツの設定
// ========================================================== */

.support-section-content {
  flex: 1; /* 均等にスペースを占めるように設定 */
  padding-left: 20px; /* 左側に少しパディング */
}

.support-section-subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  /* 画像のフォントの太さに近づける */
  font-weight: 500;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9),
    -2px -2px 8px rgba(255, 255, 255, 0.9);
}

.support-section-title {
  /* 画像のフォントサイズに近づける */
  font-size: 38px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9),
    -2px -2px 8px rgba(255, 255, 255, 0.9);
}

.support-section-description {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9),
    -2px -2px 8px rgba(255, 255, 255, 0.9);
}
.help-image {
  width: 450px;
  border-radius: 20px;
}
.help-image img {
  border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* iPadで適用したいCSSの記述 */
  .cw-contact-illustration {
    width: 50%;
    margin: 0 auto;
  }
}

/* ==========================================================
// 3. 画像コンテンツの設定
// ========================================================== */

.support-section-image {
  flex: 1; /* 均等にスペースを占めるように設定 */
  /* 画像が親要素を超えないようにする */
  max-width: 50%;
}

.support-section-image img {
  width: 100%;
  height: auto;
  display: block;
}
.heading04 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}

.heading04::before,
.heading04::after {
  content: "";
  width: 3px;
  height: 20px;
  background-color: #3fc1c9;
}

.heading04::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}

.heading04::after {
  margin-left: 30px;
  transform: rotate(35deg);
}
@media (max-width: 768px) {
  .support-section-container {
    padding: 25px 20px 0; /* モバイルではパディングを小さく */
  }
  .help-image {
    width: 100%;
    margin: 0;
  }
  .heading04 {
    font-size: 15px;
  }
  .support-section-wrapper {
    /* 縦並びのレイアウトに変更 */
    flex-direction: column;
    gap: 30px;
  }

  .support-section-content {
    /* 中央寄せに変更 */
    text-align: center;
    padding-left: 0;
    /* モバイルではコンテンツを上部に表示するため、
       画像の前に表示されるように順序を調整しても良い */
    order: 1;
  }

  .support-section-image {
    /* 画像を上部に表示 */
    order: 2;
    /* モバイルでは横幅を広くとる（例: 70%） */
    max-width: 80%;
  }

  .support-section-title {
    /* モバイルでのタイトルサイズを小さく */
    font-size: 28px;
    margin-bottom: 15px;
  }

  .support-section-subtitle,
  .support-section-description {
    /* モバイルでのフォントサイズを調整 */
    font-size: 14px;
  }
}
.tag-line {
  /* 1. 基本設定 */
  position: relative; /* 疑似要素の基準点とする */
  display: inline-block; /* 内容に合わせて幅を調整し、配置を制御 */

  /* 2. 見た目の設定 (白い吹き出し本体) */
  background-color: white; /* 吹き出し本体の色 */
  color: #333; /* テキストの色 */
  padding: 10px 15px; /* 内側の余白 */
  border-radius: 10px; /* 角を丸くする */
  border: 2px solid #333; /* 吹き出しの枠線 */
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 20px;

  /* 3. シャドウ (任意) */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* 4. 吹き出しの「尾」 (三角形) の作成 */
.tag-line::after {
  content: "";
  position: absolute;
  /* 尾の位置調整: 今回は下に中央から出すように設定 */
  bottom: -18px; /* 吹き出し本体の下端から離す */
  left: 50%;
  transform: translateX(-50%); /* 中央揃えにする */

  /* 尾の形の作成 (CSSで三角形を作るテクニック) */
  width: 0;
  height: 0;
  /* 枠線を利用して三角形を作る */
  border: 10px solid transparent; /* 全体の大きさ */
  border-top-color: #333; /* 上の辺だけ色を付けて、三角形を作る */

  /* 尾の中央の塗りつぶし (白い三角形) */
  border-width: 8px; /* 内側の三角形を少し小さくする */
  border-top-color: white; /* 内側の色 */
  bottom: -14px; /* 外側の枠線より少し上に配置し直す */
  z-index: 1; /* 本体のシャドウなどと重ならないように */
}

/* 5. 枠線 (外側の尾) の作成 (オプション：枠線が不要なら4の::afterだけでOK) */
.tag-line::before {
  content: "";
  position: absolute;
  bottom: -18px; /* 4の::afterの外部枠線と一致させる */
  left: 50%;
  transform: translateX(-50%);

  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #333; /* 枠線 */
}
/* ==========================================================
// LINE問い合わせ
// ========================================================== */

.linn-contact-section {
  padding: 40px 20px;
  background: #f8fbfb;
}
.linn-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
}

/* 左カラム */
.linn-contact-left {
  flex: 1;
}
.linn-badge {
  display: inline-block;
  background: #e6f7f3;
  color: #038a74;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 10px;
}
.linn-title {
  font-size: 22px;
  margin: 0 0 8px 0;
  line-height: 1.2;
  color: #08393a;
}
.linn-desc {
  margin: 0 0 16px 0;
  color: #425a5b;
}
.linn-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.linn-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.linn-btn-primary {
  background: #00c46b;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 196, 107, 0.12);
}
.linn-btn-primary:active {
  transform: translateY(1px);
}
.linn-btn-ghost {
  background: transparent;
  border: 1px solid #cfeee3;
  color: #08393a;
}

/* 右カラム */
.linn-contact-right {
  width: 220px;
  text-align: center;
}
.linn-qr-wrap {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(2, 38, 36, 0.06);
}
.linn-qr {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
}
.linn-line-info {
  margin-top: 10px;
}
.linn-line-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6f7f3;
}
.linn-line-icon {
  color: #00c46b;
}
.linn-line-name {
  font-weight: 700;
  color: #08393a;
}
.linn-small {
  font-size: 13px;
  color: #6e8383;
  margin: 6px 0 0 0;
}

/* レスポンシブ */
@media (max-width: 860px) {
  .linn-contact-inner {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .linn-contact-left {
    text-align: center;
  }
  .linn-btn-primary {
    margin: 0 auto;
  }
  .linn-contact-right {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
  .linn-qr {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .linn-title {
    font-size: 18px;
  }
  .linn-btn {
    padding: 10px 12px;
    font-size: 14px;
    margin: 0 auto;
  }
  .linn-qr-wrap {
    display: none;
  }
  .linn-line-info {
    display: none;
  }
  .linn-contact-section {
    padding: 0 15px 5px;
  }
  .linn-contact-left {
    text-align: center;
  }
}
/* ===============================
  Tab Title（アイコン付き吹き出し）
================================ */
.checkbox_item {
  display: inline-block;
  margin-right: 15px;
}

.under {
  background: linear-gradient(transparent 60%, #fffe03 60%);
}

.tab-title {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}

.tab-title::before {
  content: "\f0eb";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: #ffca2c;
  border-radius: 50%;
  transform: translateY(-50%);
}

.tab-title::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #ffca2c;
  transform: translateY(-50%);
}

/* ===============================
 その他便利な機能詳細
================================ */
.easyshift-steps-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.easyshift-step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.easyshift-step-img img {
  width: 100%;
  max-width: 360px;
}

.easyshift-step-content {
  flex: 1;
}

.easyshift-badge {
  display: inline-block;
  background: linear-gradient(#ff6b00 0, #ff8c1a 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.easyshift-step-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.easyshift-step-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.easyshift-step-list {
  list-style: none;
  padding: 0;
}

.easyshift-step-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  font-size: 16px;
}

.easyshift-step-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6b00;
  font-weight: 700;
}

/* スマホレイアウト：縦並びにするだけ（順序は固定） */
@media (max-width: 768px) {
  .easyshift-step {
    flex-direction: column;
    gap: 20px;
  }

  .easyshift-step-img img {
    max-width: 100%;
    margin: 0 auto;
  }
}

.easyshift-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Title */
.easyshift-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.easyshift-subtitle {
  color: #ff6b00;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.easyshift-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.easyshift-lead {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #666;
  text-align: left;
}

/* Step item */
.easyshift-step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

/* reverse 画像→右 / 文章→左 も対応可能 */
.easyshift-step-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image */
.easyshift-step-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
}

/* Content */
.easyshift-step-content {
  flex: 1;
}

.easyshift-step-badge {
  background: #6dbf45;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.easyshift-step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.easyshift-step-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .easyshift-step-item {
    flex-direction: column !important;
    text-align: left;
  }

  .easyshift-step-img img {
    max-width: 100%;
  }
  .easyshift-subtitle {
    font-size: 16px;
    text-align: left;
  }
  .easyshift-title {
    text-align: left;
    font-size: 23px;
  }
}
