@charset "UTF-8";

html,
body, 
img,
div, span, object, iframe, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em,  ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* ─────────────────────────────────────────
   1. CSS変数（デザイントークン）
───────────────────────────────────────── */
:root {
  /* カラー */
  --color-primary:      #0066CC;  /* メインブルー */
  --color-primary-dark: #004E99;  /* ホバー・ダーク */
  --color-accent:       #FF6600;  /* アクセントオレンジ（主要CTA） */
  --color-accent-dark:  #E05500;  /* オレンジホバー */
  --color-emergency:    #DC3545;  /* 緊急・電話ボタン */
  --color-emergency-dark:#B02A37;
  --color-line:         #06C755;  /* LINE緑 */
  --color-line-dark:    #05A847;
  --color-success:      #28A745;
  --color-warning:      #FFC107;
  --color-bg:           #F8F9FA;  /* 背景グレー */
  --color-bg-white:     #FFFFFF;
  --color-bg-dark:      #1A1A2E;  /* フッター背景 */
  --color-text:         #333333;  /* 本文 */
  --color-text-light:   #666666;  /* サブテキスト */
  --color-text-muted:   #999999;
  --color-border:       #DEE2E6;
  --color-star:         #FFC107;  /* 星評価 */
  --color-badge-hot:    #FF4500;  /* 人気バッジ */

  /* タイポグラフィ */
  --font-family:        'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-size-xs:       0.75rem;   /* 12px */
  --font-size-sm:       0.875rem;  /* 14px */
  --font-size-base:     1rem;      /* 16px */
  --font-size-md:       1.125rem;  /* 18px */
  --font-size-lg:       1.25rem;   /* 20px */
  --font-size-xl:       1.5rem;    /* 24px */
  --font-size-2xl:      1.875rem;  /* 30px */
  --font-size-3xl:      2.25rem;   /* 36px */
  --font-size-4xl:      3rem;      /* 48px */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold:   700;
  --font-weight-black:  900;
  --line-height-tight:  1.3;
  --line-height-base:   1.7;
  --line-height-loose:  2.0;

  /* スペーシング */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  64px;
  --space-4xl:  96px;

  /* ボーダー */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full:9999px;

  /* シャドウ */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 40px rgba(0,0,0,0.14);
  --shadow-cta: 0 4px 15px rgba(255,102,0,0.35);
  --shadow-phone: 0 4px 15px rgba(37, 28, 164, 0.35);

  /* トランジション */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.4s ease;

  /* レイアウト */
  --container-max:     1200px;
  --container-narrow:  800px;
  --header-height-pc:  72px;
  --header-height-sp:  60px;
  --mobile-footer-h:   64px;

  /* zインデックス */
  --z-base:     1;
  --z-dropdown: 100;
  --z-header:   1000;
  --z-modal:    2000;
  --z-toast:    3000;
}

/* ─────────────────────────────────────────
   元データ
───────────────────────────────────────── */


body {
	color: #333;
	line-height: 1.8;
	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
	display: flex;
	flex-direction: column;
	height: 100svh;
}

body * {
	box-sizing: border-box;
}

body .wrapper {
	margin-bottom: auto;
}

.home body {
  padding-top: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
	display: block;
}

nav ul {
	list-style: none;
}

a {
  color: var(--color-bg-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, select {
	vertical-align: middle;
}

.wrapper {
	margin-top: 0px;
	margin-bottom: 50px;
}


p:last-child {
	margin-bottom: 0;
}

/* h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
} */

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--olor-bg-white);
}

h1 {
	font-size: 1rem;
  color: #0394c9;

}

h3 {
  padding-left: 15px; /* 線と文字の隙間 */
  border-left: 6px solid #0394c9; /* 線の太さ、種類、色 */
  line-height: 1.2; /* 縦棒と文字の高さのバランス調整 */
  margin-top: 50px;
	font-size: 1.5rem;
}

h4 {
	border-bottom: 1px solid #ccc;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

ul {
	list-style: none;
}

/* a {
	color: #333;
	text-decoration: none;
}

@media (hover: hover) {
	a:hover {
		text-decoration: underline;
	}
} */


/* --------------------------------------------
 * 　基本ブロック幅
 * -------------------------------------------- */
.blContainer {
	width: 92%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

/* --------------------------------------------
 * 　見出し
 * -------------------------------------------- */
.sectionHeading {
	font-size: 1.75rem;
	font-weight: bold;
	margin-bottom: 20px;
}

/* --------------------------------------------
 *  サブタイトル
 * -------------------------------------------- */
.sub-title {
	font-size: 1.75rem;
	font-weight: bold;
	margin-bottom: 20px;
  text-align: center;
  line-height: 0.7;
}

.sub-title-min {
	font-size: 1rem;
  color: #ea580c;
}

/* --------------------------------------------
 * 　テーブル
 * -------------------------------------------- */
.table {
	width: 100%;
  border: 1px solid #ccc;
  }

.table-header {
	width: 200px;
	text-align: left;
	padding: 10px;
  background-color: #ea580c;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.table-data {
	width: calc(100% - 100px);
	padding-top: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
  padding: 20px;
}

.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    padding-bottom: 10px;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.company-area {
  display: flex;
    gap: 20px;
}

.company-area-vertical {
  width: 700px;
  display: flex;
  flex-direction: column; /* この中だけ縦並びにする */
  gap: 10px; /* 縦並びのアイテム間に余白 */
}

.company-area-img {
  width: 30%;
  margin-top: -60px;
}


/* --------------------------------------------
 * 　ページネーション
 * -------------------------------------------- */
.navigation.pagination {
	margin-top: 30px;
}

.navigation.pagination .nav-links .prev {
	border: none !important;
}

.navigation.pagination .nav-links .next {
	border: none !important;
}

.navigation.pagination .nav-links .current {
	padding: 6px 11px;
	background: #333;
	border: 1px solid #333;
	border-radius: 3px;
	color: #ffffff;
}

.navigation.pagination .nav-links a {
	padding: 6px 11px;
	border: 1px solid #333;
	border-radius: 3px;
}

.navigation.pagination .nav-links a:hover {
	background: #333;
	border: 1px solid #333;
	color: #ffffff;
	text-decoration: none;
}


/* --------------------------------------------
 * 　施工事例
 * -------------------------------------------- */

.works {
  padding-bottom: 20px;
}

.works-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.works-item {
	flex: 0 0 calc((100% - 80px) / 3);
	background: #f4f9ff;
	padding: 20px 20px 17px;
}

.works-img {
	margin-bottom: 8px;
}

.works-date {
	font-size: 0.8125rem;
	margin-bottom: 3px;
}

.works-title {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.works-goList {
	display: inline-block;
	margin-top: 20px;
}

.worksPost-title {
	font-size: 1.75rem;
	font-weight: bold;
	margin-bottom: 30px;
}

.worksPost-infomation {
	font-size: 0.875rem;
	margin-bottom: 20px;
}

.worksPost-infomation p {
  width: 100px;
  background-color: #878787; /* gray-50 */
  color: #FFFFFF;
  text-align: center;
  padding: 5px;
}

.worksPost-infomation span {
  padding: 5px;
}

.worksPost-location {
	font-size: 0.875rem;
	margin-bottom: 20px;
  display: flex;
}

.worksPost-plan {
	font-size: 0.875rem;
	margin-bottom: 20px;
  display: flex;
}

.worksPost-date {
	font-size: 0.875rem;
	margin-bottom: 20px;
  display: flex;
}

.news-goList {
	display: inline-block;
	margin-top: 20px;
  margin-bottom: 20px;
  color: #ea580c;
} */


/* --------------------------------------------
 * 　お知らせ
 * -------------------------------------------- */
.article-date {
	font-size: 0.8125rem;
}

.article-category {
	font-size: 0.8125rem;
	margin-bottom: 20px;
}

.article-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 30px;
}

/* --------------------------------------------
 * 　404
 * -------------------------------------------- */
.page404 {
	text-align: center;
	padding-top: 12vh;
	padding-bottom: 15vh;
}

.page404-heading {
	font-size: 2.5rem;
	font-weight: bold;
	color: #aaa;
	margin-bottom: 30px;
}

.page404-message a {
	text-decoration: underline;
}

/* --------------------------------------------
 * 　フォーム
 * -------------------------------------------- */
.screen-reader-response {
	display: none;
}

.wpcf7-not-valid-tip {
	color: #f02525;
}

.wpcf7-response-output {
	margin-top: 5px;
	text-align: center;
	color: #f02525;
}

.form {
	width: 100%;
	max-width: 860px;
	margin-right: auto;
	margin-left: auto;
}

.form-privacy {
	text-align: center;
}

.form-submit {
	width: 200px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

.form-submit input {
	width: 100%;
	padding: 1em;
	background: #333;
	color: #fff;
	border: none;
}

.form-submit input:hover {
	cursor: pointer;
}

.formTable {
	width: 100%;
}

.formTable-header {
	width: 220px;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: middle;
}

.formTable-header span {
	color: #fff;
	margin-left: 10px;
	font-size: 0.6875rem;
	font-weight: normal;
	padding: 0.3em;
	background: #f02525;
}

.formTable-data {
	width: calc(100% - 220px);
	padding-top: 10px;
	padding-bottom: 10px;
}

.formTable input {
	width: 100%;
	height: 50px;
	padding: 0.5em;
}

.formTable textarea {
	width: 100%;
	height: 200px;
	padding: 0.5em;
}

/* --------------------------------------------
 * 　ブロックエディタ
 * -------------------------------------------- */
.wp-block-gallery {
	margin-top: 30px;
	margin-bottom: 30px;
}


/* ─────────────────────────────────────────
   5. ヒーローセクション（TOPページ）
───────────────────────────────────────── */

.hero__inner {
  max-width: 690px;
  text-align: center;
  margin-top: -63px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero__inner {
    width: 100%;
    font-size: 10px;
    padding: 2px;
  }
}


.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center; 
  }


/* ─────────────────────────────────────────
   6. CTAボタン（統一設計）
───────────────────────────────────────── */

/* ベーススタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  /* -webkit-appearance: none; */
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* サイズ */
.btn--sm  { font-size: var(--font-size-sm);  padding: 8px 20px; }
.btn--md  { font-size: var(--font-size-base); padding: 14px 28px; }
.btn--lg  { font-size: var(--font-size-lg);  padding: 18px 36px; }
.btn--xl  { font-size: var(--font-size-xl);  padding: 22px 48px; }
.btn--full { width: 100%; }

/* PRIMARY: オレンジ（メイン）*/
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #FF8533);
  color: #fff;
  box-shadow: var(--shadow-cta);
  padding: 5px 10px;
  border: 2px solid #ffffff;
  border-radius: var(--radius-sm);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,102,0,0.45);
}

/* PHONE: 青（電話）*/
.btn--phone {
  background: linear-gradient(135deg, var(--color-primary), #3526ba);
  color: #fff;
  box-shadow: var(--shadow-phone);
  padding: 5px 10px;
  border: 2px solid #ffffff;
  border-radius: var(--radius-sm);
}
.btn--phone:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  box-shadow: 0 6px 20px rgba(39, 60, 151, 0.45);
}

/* LINE: 緑 */
.btn--line {
  background: linear-gradient(135deg, var(--color-line), #08E25F);
  color: #fff;
  box-shadow: 0 4px 15px rgba(6,199,85,0.35);
  padding: 5px 10px;
  border: 2px solid #ffffff;
  border-radius: var(--radius-sm);
}
.btn--line:hover {
  background: linear-gradient(135deg, var(--color-line-dark), var(--color-line));
  color: #fff;
  box-shadow: 0 6px 20px rgba(6,199,85,0.45);
}

/* SECONDARY: ブルーアウトライン */
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* SECONDARY WHITE: 白アウトライン（ダーク背景上） */
.btn--secondary-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--secondary-white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* EMERGENCY: 緊急用（点滅） */
.btn--emergency {
  background: var(--color-emergency);
  color: #fff;
  animation: pulse-emergency 2s infinite;
}
@keyframes pulse-emergency {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,53,69,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(220,53,69,0); }
}

/* ボタンアイコン */
.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────
   26. スタッフ紹介カード
───────────────────────────────────────── */
/* .staff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.staff-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.staff-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.staff-card__body {
  padding: var(--space-lg);
}
.staff-card__role {
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}
.staff-card__name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--space-sm);
}
.staff-card__qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.staff-card__message {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: var(--line-height-base);
}

@media (max-width: 1023px) {
  .staff-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .staff-cards { grid-template-columns: 1fr; }
} */

/* ─────────────────────────────────────────
   29. ユーティリティ
───────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-primary   { color: var(--color-primary); }
.text-accent    { color: var(--color-accent); }
.text-emergency { color: var(--color-emergency); }
.text-success   { color: var(--color-success); }
.text-muted     { color: var(--color-text-muted); }
.text-white     { color: #fff; }
.text-bold      { font-weight: var(--font-weight-bold); }
.text-black     { font-weight: var(--font-weight-black); }
.text-sm        { font-size: var(--font-size-sm); }
.text-lg        { font-size: var(--font-size-lg); }
.text-xl        { font-size: var(--font-size-xl); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.d-none { display: none; }
@media (max-width: 767px) {
  .d-none-sp { display: none; }
}
@media (min-width: 768px) {
  .d-none-pc { display: none; }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────
   ここからfigma
───────────────────────────────────────── */

/* 固定ヘッダー */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 50;
}

.header-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴエリア */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.2rem;

}

.company-name {
}

.company-tagline {
  font-size: 1rem;
  color: #f97316;
  font-weight: bold;
}

/* デスクトップ用連絡先 */
.header-contact {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .header-contact {
    display: flex;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0394c9; /* blue-600 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: #1d4ed8; /* blue-700 */
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.phone-time {
  font-size: 0.75rem;
  color: #4b5563; /* gray-600 */
}

.phone-number-top {
  font-weight: bold;
  font-size: 1.25rem;
}

.header-cta-button {
  background: linear-gradient(to right, #f97316, #f97316); /* from-pink-500 to-pink-600 */
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.header-cta-button:hover {
  background: linear-gradient(to right, #f97316, #f97316); /* from-pink-600 to-pink-700 */
}

.cta-button-icon {
  width: 1rem;
  height: 1rem;
}

/* モバイル用ボタン */
.header-mobile-buttons {
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-mobile-buttons {
    display: none;
  }
}

.mobile-phone-button {
  padding: 0.5rem;
  border: 1px solid #0394c9; /* blue-600 */
  color: #0394c9;
  background-color: #ffffff;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-phone-button:hover {
  background-color: #eff6ff; /* blue-50 */
}

.mobile-button-icon {
  width: 1rem;
  height: 1rem;
}

.mobile-cta-button {
  background-color: #f97316; /* orange-500 */
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-cta-button:hover {
  background-color: #ea580c; /* orange-600 */
}

/* ナビゲーション */
.header-nav {
 border-top: 1px solid #e5e7eb; /* gray-200 */
  background-color: #0394c9; /* gray-50 */
}

.header-nav-container {
   display: flex;
   max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  justify-content: center;

}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s ease-in-out;
}

.burger {
  cursor: pointer;
  display: none;
  margin-left: auto;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: rgb(255, 255, 255);
  margin: 5px;
  align-items: right;
  transition: all 0.5s ease-in-out;
}

.nav-active {
  transform: translateX(0%) !important;
}

@media screen and (max-width: 768px) {
   body {
    overflow-x: hidden;
   }

  .nav-list {
    position: absolute;
    right: 0;
    height: 60vh;
    top: 16vh;
    background-color:#0394c9;
    flex-direction: column;
    align-items: center;
    width: 30%;
    transform: translateX(100%);
    padding-top: 5px;
  }

  .nav-list li{
    opacity: 0;
  }

  .burger {
    display: block;
  }
}

@keyframes navListFade {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
}
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);;
  }

.toggle .line2 {
  opacity: 0;
  }

.toggle .line3 {
  transform: rotate(405deg) translate(-5px, -6px);
  }

/* スクロールバーを非表示（オプション） */
.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-link {
  font-size: 0.875rem;
  color: #ffffff; 
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
}

.nav-link:hover {
  color: #8088b5; 
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}


/* 緊急対応バナー */
.emergency-banner {
  background-color: #0394c9; /* red-600 */
  color: #ffffff;
  /* padding-top: 0.5rem;
  padding-bottom: 0.5rem; */
}

.emergency-banner-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.emergency-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .emergency-banner-content {
    flex-direction: row;
    /* gap: 2rem; */
  }
}

/* 緊急メッセージ */
.emergency-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.emergency-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.emergency-title-top {
  font-weight: bold;
  font-size: 1rem;
}

.emergency-subtitle {
  font-size: 0.875rem;
}

/* 緊急電話ボタン */
.emergency-button {
  background-color: #ffffff;
  color: #dc2626; /* red-600 */
  font-weight: bold;
  padding: 0.2rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  transition: background-color 0.3s ease;
}

@media (min-width: 1024px) {
  .emergency-button {
    padding: 0.2rem 1rem;
  }
}

.emergency-button:hover {
  background-color: #f3f4f6; /* gray-100 */
}

.emergency-phone-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* 受付時間の注記 */
.emergency-note {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.1rem;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .emergency-note {
    display: none;
  }
  }


/* モバイル用 */
@media (max-width: 768px) {
  .emergency-title-top {
    font-size: 0.8rem;
  }

  .emergency-button {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 768px) {
  .emergency-banner-content {
    display: flex;
  }

@media (max-width: 768px) {
  .emergency-subtitle {
    display: none;
  }
}
  .emergency-button {
    width: 100%;
    justify-content: center;
  }

}
/* モバイル用ボタン */
.emergency-mobile-buttons {
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .emergency-mobile-buttons {
    display: none;
  }
}

.emergency-mobile-phone-button {
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 10px;
  height: 10px;
}

.emergency-mobile-phone-button:hover {
  background-color: #eff6ff; /* blue-50 */
}

.emergency-mobile-button-icon {
  width: 1rem;
  height: 1rem;
}

.emergency-mobile-cta-button {
  background-color: #f97316; /* orange-500 */
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.emergency-mobile-cta-button:hover {
  background-color: #ea580c; /* orange-600 */
}

/* アンカー */
.anchor {
  text-align: center;
  margin-top: 20px;
}

.anchor-text {
  color: #888888;
  padding: 7px;
  margin: 0 5px;
  background-color: #ffffff;
  border: 1px solid #888888;
}

@media (max-width: 768px) {
  .anchor-text {
    font-size: 0.7rem;
    border: none;
    margin: 0 2px;

  }
}


/* 選ばれる3つの理由セクション */
#reasons {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}

.reasons-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: -130px;
}

/* ヘッダー部分 */
.reasons-header {
  text-align: center;
}

.reasons-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .reasons-title {
    font-size: 2.25rem;
  }
}

.reasons-title-highlight {
  color: #0394c9; /* blue-600 */
}

.reasons-title-orange {
  color: #ea580c; /* blue-600 */
}

.reasons-subtitle {
  color: #4b5563; /* gray-600 */
}

/* 3つのカードグリッド */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 各カード */
.reason-card {
  background-color: #f6fafe;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.reason-card:hover {
  border-color: #93c5fd; /* border-blue-300 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* バッジ */
.reason-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f97316; /* orange-500 */
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  white-space: nowrap;
}

/* アイコンコンテナ */
.reason-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

/* .reason-icon-circle {
  width: 5rem;
  height: 5rem;
  background-color: #ffffff; 
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.reason-icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 50px;
  color: #2a3f94;
}

/* カードタイトル */
.reason-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

/* カード説明文 */
.reason-description {
  color: #374151; /* gray-700 */
  text-align: center;
  line-height: 1.625;
}

/* -----------------------*/
/* 料金プラン */
/* -----------------------*/
#pain {
}

.pain-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: -130px;
}

/* ヘッダー部分 */
.pain-header {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f6fafe;
}

.pain-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pain-title {
    font-size: 2.25rem;
  }
}

.pain-title-highlight {
  color: #0394c9; /* blue-600 */
}

.pain-title-orange {
  color: #ea580c; /* blue-600 */
}

.pain-subtitle {
  color: #4b5563; /* gray-600 */
}

.pain-table {
  width: 90%;
  margin: auto;
  background-color: #ffffff;
}

.pain-table-td {
  border: 1px solid #1f2937;
  padding: 5px;
}

.pain-table-maker {
  background-color: #f88242;
  color: #ffffff;
}

.pain-table-L {
  background-color: #0394c9;
  color: #ffffff;
}

.pain-table-title {
  background-color: #505557;
  color: #ffffff;
}

/* 実績数値グリッド */
.stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 各実績ボックス */
.stat-box {
  text-align: center;
  padding: 1rem;
  background-color: #f9fafb; /* gray-50 */
  border-radius: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0394c9; /* blue-600 */
}

.stat-label {
  font-size: 1rem;
  color: #f97316; /* gray-600 */
}

.fas {
  color: rgb(254, 254, 255);       /* 色を変える */
  font-size: 40px;   /* 大きさを変える */
}

.fas {
  color: rgb(254, 254, 255);       /* 色を変える */
  font-size: 20px;   /* 大きさを変える */
}

.fas-orange {
  color: #f97316;       /* 色を変える */
  font-size: 40px;   /* 大きさを変える */
}

.fas-green {
  color: #05b494;       /* 色を変える */
  font-size: 20px;   /* 大きさを変える */
}

.fas-red {
  color: #f91616;       /* 色を変える */
  font-size: 20px;   /* 大きさを変える */
}

.fas-blue {
  color: #0394c9;       /* 色を変える */
  font-size: 30px;   /* 大きさを変える */
}

.fas-blue-min {
  color: #0394c9;       /* 色を変える */
  font-size: 15px;   /* 大きさを変える */
}

.fas-blue-card {
  color: #0394c9;       /* 色を変える */
  font-size: 50px;   /* 大きさを変える */
}

.fas-blue-comment {
  color: #0394c9;       /* 色を変える */
  font-size: 30px;   /* 大きさを変える */
}

.fas-yello {
  color: #FFD900;       /* 色を変える */
  font-size: 15px;   /* 大きさを変える */
}

/* 対応エリアセクション */
.area-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}

.area-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ヘッダー */
.area-header {
  text-align: center;
  margin-bottom: 3rem;
}

.area-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .area-title {
    font-size: 2.25rem;
  }
}

.area-title-highlight {
  color: #0394c9; /* blue-600 */
}

.area-subtitle {
  color: #4b5563; /* gray-600 */
}

/* グリッドレイアウト */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 左側：地図エリア */
.map-area {
  background: linear-gradient(to bottom right, #f6fafe, #ffffff); /* from-pink-50 to-white */
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.map-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.map-icon-circle {
  /* width: 8rem;
  height: 8rem; */
  background: linear-gradient(to bottom right, #0394c9, #0394c9); /* from-blue-600 to-pink-600 */
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-icon {
  width: 4rem;
  height: 4rem;
  color: #ffffff;
}

.map-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.map-description {
  text-align: center;
  color: #374151; /* gray-700 */
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.location-box {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 2px solid #0394c9; /* border-pink-500 */
}

.location-title {
  text-align: center;
  font-weight: bold;
  color: #0394c9; /* text-pink-600 */
  margin-bottom: 0.5rem;
}

.location-address {
  text-align: center;
  color: #374151; /* gray-700 */
  line-height: 1.625;
}

/* 右側：エリア一覧 */
/* .area-list-wrapper {
}
 */

 
  /* 親コンテナ */
.area-list-header {
  background-color: #0394c9; /* blue-600 */
  color: #ffffff;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.1px;
}

.area-list-title {
  font-weight: bold;
  font-size: 1.25rem;
  text-align: center;
}

.area-list {
  background-color: #ffffff;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.area-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb; /* border-gray-200 */
  transition: background-color 0.3s ease;
}

.area-item:hover {
  background-color: #eff6ff; /* hover:bg-blue-50 */
}

.area-item-last {
  border-bottom: none;
}

.area-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a; /* green-600 */
  flex-shrink: 0;
}

.area-name {
  font-weight: bold;
}

.area-time {
  font-size: 0.875rem;
  color: #4b5563; /* gray-600 */
  background-color: #f3f4f6; /* gray-100 */
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* 緊急対応ボックス */
.emergency-box {
  margin-top: 1.5rem;
  background-color: #fff7ed; /* orange-50 */
  border: 2px solid #fed7aa; /* border-orange-200 */
  border-radius: 0.5rem;
  padding: 1rem;
}

.emergency-title {
  text-align: center;
  font-weight: bold;
  color: #ea580c; /* orange-600 */
  margin-bottom: 0.5rem;
}

.emergency-text {
  text-align: center;
  font-size: 0.875rem;
  color: #374151; /* gray-700 */
  line-height: 1.625;
}

/* 注意書き */
.area-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563; /* gray-600 */
}

.area-note p {
  margin: 0;
}

/* 対応の特徴グリッド */
.features-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-box {
  text-align: center;
  background-color: #f9fafb; /* gray-50 */
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.feature-emoji {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ea580c;
}

.feature-description {
  font-size: 0.875rem;
  color: #696969; /* gray-600 */
}

/* お客様の声セクション */
.testimonials-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom right, #f6fafe, #f6fafe); /* from-pink-50 to-blue-50 */
}

.testimonials-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ヘッダー */
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 2.25rem;
  }
}

.testimonials-title-highlight {
  color: #0394c9; /* blue-600 */
}

.testimonials-subtitle {
  color: #4b5563; /* gray-600 */
}

/* お客様の声グリッド */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* お客様の声カード */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
  position: relative;
}

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

/* 引用符アイコン */
.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  color: #0394c9; /* pink-200 */
}

/* 星評価 */
.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffc800; /* pink-400 */
}

/* コメント */
.testimonial-comment {
  color: #374151; /* gray-700 */
  margin-bottom: 1rem;
  line-height: 1.625;
}

/* 顧客情報 */
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb; /* border-gray-200 */
}

.customer-img {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;

}
.customer-name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.customer-info {
  font-size: 0.8rem;
  color: #4b5563; /* gray-600 */
}

.testimonial-date {
  font-size: 0.7rem;
  color: #6b7280; /* gray-500 */
}

/* 統計情報 */
.satisfaction-stats {
  margin-top: 3rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.stats-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: bold;
  color: #0394c9; /* blue-600 */
  margin-bottom: 0.5rem;
}

/* stat-label=4つの理由と同じ */


.stats-note {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280; /* gray-500 */
  margin-top: 1.5rem;
}

/* 施工の流れ */
.flow-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
  background: linear-gradient(to bottom right, #f6fafe, #ffffff); /* from-blue-50 to-white */
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.flow-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.flow-grid {
  display: grid;
    grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .flow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step {
  text-align: center;
}

.flow-number {
  width: 10rem;
  height: 10rem;
  display: block;
  margin: 0 auto;
}

.flow-step-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.flow-step-description {
  font-size: 0.875rem;
  color: #4b5563; /* gray-600 */
}

/* よくある質問セクション */
.faq-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom right, #f6fafe, #ffffff); /* from-pink-50 to-white */
}

.faq-container {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ヘッダー */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 2.25rem;
  }
}

.faq-title-highlight {
  color: #0394c9; /* blue-600 */
}

.faq-subtitle {
  color: #4b5563; /* gray-600 */
}

/* FAQ項目リスト */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ項目 */
.faq-item {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* 質問ボタン */
.faq-question-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question-button:hover {
  background-color: #f9fafb; /* gray-50 */
}

.faq-question-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.faq-q-badge {
  background-color: #0394c9; /* blue-600 */
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-question-text {
  font-weight: bold;
  flex: 1;
}

.faq-chevron {
  width: 1.5rem;
  height: 1.5rem;
  color: #9ca3af; /* gray-400 */
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

/* 回答エリア */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

.faq-answer-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 0;
}

@media (min-width: 768px) {
  .faq-answer-content {
    padding-left: 3rem;
  }
}

.faq-a-badge {
  background: linear-gradient(to right, #f97316, #f97316); /* from-pink-500 to-pink-600 */
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-answer-text {
  color: #374151; /* gray-700 */
  line-height: 1.625;
  flex: 1;
}

/* その他の質問ボックス */
.faq-contact-box {
  margin-top: 3rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-contact-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.mobile-break {
  display: inline;
}

@media (min-width: 768px) {
  .mobile-break {
    display: none;
  }
}

.faq-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .faq-contact-buttons {
    flex-direction: row;
  }
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-contact-btn-phone {
  background-color: #0394c9; /* blue-600 */
  color: #ffffff;
}

.faq-contact-btn-phone:hover {
  background-color: #1d4ed8; /* blue-700 */
}

.faq-contact-btn-mail {
  background: linear-gradient(to right, #f97316, #f97316); /* from-pink-500 to-pink-600 */
  color: #ffffff;
}

.faq-contact-btn-mail:hover {
  background: linear-gradient(to right, #f97316, #f97316); /* from-pink-600 to-pink-700 */
}

/* お問い合わせセクション */
.contact-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}

.contact-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ヘッダー */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-title-highlight {
  color: #0394c9; /* blue-600 */
}

.contact-subtitle {
  color: #4b5563; /* gray-600 */
}

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

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 電話ボックス */
.contact-phone-box {
  background: linear-gradient(to bottom right, #0394c9, #0394c9); /* from-blue-600 to-blue-700 */
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.phone-box-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.phone-link {
  display: block;
  background-color: #ffffff;
  color: #0394c9; /* blue-600 */
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.phone-link:hover {
  background-color: #f9fafb; /* gray-50 */
}

.phone-link-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.phone-time {
  font-size: 0.875rem;
  color: #4b5563; /* gray-600 */
}

.phone-number {
  font-size: 1.875rem;
  font-weight: bold;
}

.phone-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-check {
  font-size: 1.5rem;
}

.feature-title-phone {
  font-weight: bold;
}

.contact-feature-description {
  font-size: 0.875rem;
  opacity: 0.9;
  color: #ffffff; /* gray-600 */
}

/* LINEボックス */
.contact-line-box {
  background-color: #22c55e; /* green-500 */
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.line-box-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.line-box-description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.line-button {
  background-color: #ffffff;
  color: #22c55e; /* green-500 */
  width: 100%;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.line-button:hover {
  background-color: #f3f4f6; /* gray-100 */
}

/* 会社情報ボックス */
.contact-company-box {
  background-color: #f9fafb; /* gray-50 */
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.company-box-title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151; /* gray-700 */
}

.info-label {
  font-weight: bold;
}

/* お問い合わせフォーム */
.contact-form {
  background-color: #f9fafb; /* gray-50 */
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.required {
  color: #ef4444; /* red-500 */
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 0.5rem;
  background-color: #ffffff;
  font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0394c9; /* blue-500 */
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  resize: vertical;
  font-family: inherit;
}

.form-submit-button {
  width: 100%;
  background: linear-gradient(to right, #f97316, #f97316); /* from-pink-500 to-pink-600 */
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.form-submit-button:hover {
  background: linear-gradient(to right, #f97316, #f97316); /* from-pink-600 to-pink-700 */
}

.submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.form-note {
  font-size: 0.75rem;
  color: #4b5563; /* gray-600 */
  text-align: center;
}

.privacy-note {
  font-size: 0.75rem;
  color: #4b5563; /* gray-600 */
  margin-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

.desktop-break {
  display: none;
}

@media (min-width: 768px) {
  .desktop-break {
    display: inline;
  }
}

/* 最終CTAセクション */
.final-cta-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color:#0394c9;
  color: #ffffff;
}

.final-cta-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ヘッダー */
.final-cta-header {
  text-align: center;
  margin-bottom: 3rem;
}

.final-cta-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.25rem;
  }
}

.mobile-br {
  display: inline;
}

@media (min-width: 768px) {
  .mobile-br {
    display: none;
  }
}

.final-cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* CTAカードグリッド */
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .final-cta-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 100px;
  }
}

/* CTAカード */
.cta-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  text-decoration: none;

}

.cta-card-phone {
  color: #0394c9; /* blue-600 */
}

.cta-card-phone:hover {
  color: #0394c9; /* blue-600 */
}

.cta-card-line {
  background-color: #22c55e; /* green-500 */
  color: #ffffff;
  cursor: pointer;
}

.cta-card-mail {
  background-color: #f97316; /* green-500 */
  color: #ffffff; /* pink-600 */
}

.cta-card-mail:hover {
  color: #ffffff; /* blue-600 */
}

.cta-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.cta-card:hover .cta-icon-circle {
  transform: scale(1.1);
}

.cta-icon-gradient {
  background: linear-gradient(to bottom right, #0394c9, #0394c9); /* from-blue-600 to-pink-600 */
  color: #ffffff;
}

.cta-icon-gradient a:hover {
  color: #ffffff;
}

.cta-icon-line {
  background-color: #ffffff;
  color: #22c55e; /* green-500 */
  font-size: 2.25rem;
}

.cta-icon-mail {
  background-color: #ffffff;
  color: #f97316; /* green-500 */
  font-size: 2.25rem;
}

.cta-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.cta-card-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  padding-top: 30px;
}


.cta-card-description {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.cta-card-phone .cta-card-description {
  color: #4b5563; /* gray-600 */
}

.cta-card-line .cta-card-description {
  opacity: 0.9;
}

.cta-card-mail .cta-card-description {
  color: #ffffff; /* gray-600 */
}

.cta-phone-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.cta-phone-time {
  font-size: 0.875rem;
  color: #4b5563; /* gray-600 */
}

.cta-line-button {
  background-color: #ffffff;
  color: #22c55e; /* green-500 */
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-line-button a {
  color: #22c55e; /* green-500 */
}

.cta-line-button:hover {
  background-color: #f3f4f6; /* gray-100 */
}

.cta-line-time {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.cta-mail-button {
  background: linear-gradient(to right, #ffffff, #ffffff); /* from-pink-500 to-pink-600 */
  color: #f97316;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.cta-mail-time {
  font-size: 0.875rem;
  color: #ffffff; /* gray-600 */
  margin-top: 0.5rem;
}

/* 補助金ボックス */
.cta-subsidy-box {
  margin-top: 3rem;
  background-color: #ffffff;
  color: #0394c9; /* pink-600 */
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-subsidy-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cta-subsidy-description {
  color: #374151; /* gray-700 */
}

/* 安心ポイント */
.cta-points-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-points-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cta-point {
  text-align: center;
}

.cta-point-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.cta-point-text {
  font-weight: bold;
}

/* フッター */
.footer {
  background-color: #111827; /* gray-900 */
  color: #ffffff;
  padding-left: 30px;
}

.footer-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 会社情報 */
.footer-company-name {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-company-description {
  font-size: 0.875rem;
  color: #9ca3af; /* gray-400 */
  line-height: 1.625;
}

/* セクションタイトル */
.footer-section-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

/* サービスリンク */
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #9ca3af; /* gray-400 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* お問い合わせ */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af; /* gray-400 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #ffffff;
}

.footer-contact-icon {
  width: 1rem;
  height: 1rem;
}

.footer-contact-hours {
  font-size: 0.75rem;
  color: #6b7280; /* gray-500 */
  margin-top: 1rem;
}

/* 営業情報 */
.footer-info-list {
  font-size: 0.875rem;
  color: #9ca3af; /* gray-400 */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info-label {
  color: #6b7280; /* gray-500 */
}

/* ボトムバー */
.footer-bottom {
  border-top: 1px solid #1f2937; /* gray-800 */
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6b7280; /* gray-500 */
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: #6b7280; /* gray-500 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #ffffff;
}

/* トップに戻るボタン */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #0394c9; /* blue-600 */
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 40;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #1d4ed8; /* blue-700 */
}


/* ─────────────────────────────────────────
   下層ページcss　Genspark
───────────────────────────────────────── */

/* --------------------------------------------
 * 　サブページヘッダー
 * -------------------------------------------- */
.subpageHeader {
	font-size: 1.75rem;
	font-weight: bold;
	background: #ffffff;
	margin-bottom: 10px;
	padding-bottom: 30px;
  text-align: center;
}

.subpageHeader-inner {
	padding-top: 0px;
}


/* ─────────────────────────────────────────
   21. 下層ページ ヒーロー（ページヘッダー）
───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-bg-white), var(--color-bg-white));
  color: #000000;

}
.page-hero--emergency {
  background: linear-gradient(135deg, var(--color-bg-white), var(---color-bg-white));
}
.page-hero__heading {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-black);
  color: #000000;
  margin-bottom: var(--space-sm);
}
.page-hero__lead {
  font-size: var(--font-size-md);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
}
.page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (max-width: 767px) {
  .page-hero__heading { font-size: var(--font-size-xl); }
}

/* ─────────────────────────────────────────
   17. メーカー
───────────────────────────────────────── */
.page-lead {
    display: flex;

}

.page-lead img {
  width: 15%;
  height: 15%;
}

/* ─────────────────────────────────────────
  サービスページ
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   　メーカー
───────────────────────────────────────── */
.page-lead {
    display: flex;
}

.page-lead img {
  width: 15%;
  height: 15%;
}


/* ─────────────────────────────────────────
   　フロー（工事の流れ）
───────────────────────────────────────── */
.flow-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-sm);
}
.flow-step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-bg-white);
}
.flow-step__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
}
.flow-step__desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  line-height: var(--line-height-base);
}

@media (max-width: 767px) {
  .flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  .flow-steps::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .flow-step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-md);
    align-items: flex-start;
    padding: 0;
  }
  .flow-step__number { flex-shrink: 0; }
}

/* ─────────────────────────────────────────
   22. 症状チェックリスト
───────────────────────────────────────── */
.symptom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.symptom-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}
.symptom-item:hover {
  border-color: var(--color-primary);
  background: rgba(0,102,204,0.04);
}
.symptom-item.is-checked {
  border-color: var(--color-accent);
  background: rgba(255,102,0,0.05);
}
.symptom-item__checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.symptom-item.is-checked .symptom-item__checkbox {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.symptom-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.symptom-item__text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

@media (max-width: 767px) {
  .symptom-list { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────
   23. 料金テーブル（3段階）
───────────────────────────────────────── */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-tier {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}
.pricing-tier--light { background: #EEF9EE; }
.pricing-tier--mid   { background: #FFF8EE; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); }
.pricing-tier--heavy { background: #FEEEEE; }
.pricing-tier__label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-md);
}
.pricing-tier--light  .pricing-tier__label { background: #C6EFC6; color: #1A6C1A; }
.pricing-tier--mid    .pricing-tier__label { background: #FFE4B2; color: #8B4C00; }
.pricing-tier--heavy  .pricing-tier__label { background: #FFCDD2; color: #B71C1C; }
.pricing-tier__price  {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-black);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}
.pricing-tier__example {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}
.pricing-tier__free-badge {
  display: inline-block;
  margin-top: var(--space-sm);
  background: var(--color-success);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

@media (max-width: 767px) {
  .pricing-tiers { grid-template-columns: 1fr; }
  .pricing-tier--mid { border-left: none; border-right: none; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
}


/* ─────────────────────────────────────────
   24. メーカーロゴ一覧
───────────────────────────────────────── */
.maker-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}
.maker-logo-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-xl);
  transition: all var(--transition-fast);
  opacity: 0.6;
}
.maker-logo-item:hover {
  border-color: var(--color-primary);
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
  text-decoration: none;
}
.maker-logo-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.product {
  padding: 60px 20px;
}

.product h4 {
  padding-top: 30px;
}

.product-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  min-height: 180px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.product-card img {
  padding-top: 80px;
}

.product-text {
  width: 140px;
}

.product-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-text p {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags span {
  display: inline-block;
  border: 1px solid #333;
  font-size: 12px;
  padding: 4px 8px;
}

.capacity {
  margin-top: 7px;
  padding-top: -2px;
  background: #c9c9c9;
  font-size: 13px;
  text-align: center;
}

.capacity-L {
  text-align: center;
}

.product-img img {
  width: 80px;
  height: auto;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   25. 信頼バッジ・資格表示
───────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}
.trust-badge__icon {
  font-size: 1.5rem;
}

/* 保証バッジ */
.warranty-badge {
  text-align: center;
  background: linear-gradient(135deg, #0A1628, #0D2244);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.warranty-badge__years {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  color: #FFE066;
  line-height: 1;
}
.warranty-badge__label {
  font-size: var(--font-size-md);
  opacity: 0.9;
}


/* ─────────────────────────────────────────
   errerコード情報
───────────────────────────────────────── */

.errer {
  border: 1px solid var(--color-border);
  padding: 5px 20px;
}

.errer th {
  padding: 5px 20px;
  width: 120px;
  border: 1px solid var(--color-border);
  background-color: #ffc9b7;
  color: #ef4444;
}

.errer-content {
  padding: 5px 20px;
  border: 1px solid var(--color-border);
  width: 180px;
}

.errer-reason {
  padding: 5px 20px;
  border: 1px solid var(--color-border);
  width: 300px;
}

.errer-handle {
  padding: 5px 20px;
  border: 1px solid var(--color-border);
  width: 500px;
}