@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");



/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {right: -200px;}
	100% {right: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/* ======================================================== 
   全体の設定
========================================================= */
*, *::before, *::after {
	box-sizing: border-box;
}


html, body {
	font-size: 17px;
}

body {
  margin: 0; padding: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  -webkit-text-size-adjust: none;
  background: #fff;
  color: #333;
  line-height: 1.8;
}


/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {

	html, body {
		font-size: 15px;
	}

} /* END */

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}


/*section
---------------------------------------------------------------------------*/
section {
	padding: 0 1vw;	
	margin: 1vw 0;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
	text-decoration: none;
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.2s both;  /*0.2(2つ目の数字)秒待機後、0.2(1つ目の数字)秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}


/* ============================
   ヘッダー（ロゴ＋サイトタイトル）
============================ */
header.header {
    display: flex;
    justify-content: flex-start;   /* 左寄せで自然なレイアウト */
    align-items: center;
    gap: 2rem;                     /* ロゴとタイトルの間隔 */
    height: 100px;                /* お好みで調整 */
    padding-inline: 2rem;         /* 左右の余白 */
}

/* ロゴブロック */
header.header .logo {
    margin: 0;
    flex-shrink: 0;               /* ロゴが縮まないようにする */
}

header.header .logo img {
    display: block;
    width: 250px;                 /* ロゴの幅（お好みで） */
}

/* h1（サイトタイトル） */
header.header .site-title {
    font-size: 1.0rem;            /* 高級感のある大きさ */
    font-weight: 600;             /* しっかりした印象 */
    margin: 0;                    /* 余白をリセット */
    line-height: 1.2;
    white-space: nowrap;          /* 改行させない（高級サイトでよく使う） */
}


/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
  header.header .site-title {
    display: none;   /* スマホでは h1 を非表示 */
  }

  header.header {
    justify-content: center;   /* ロゴを中央に */
    height: auto;
    padding-inline: 1rem;
  }

  header.header .logo img {
    width: 180px;   /* スマホ向けにロゴを少し縮小 */
  }
}



/* ======================================================== 
   ハンバーガーメニュー（右側スライド・黒背景・白バー）
========================================================= */
/* ラッパー */
.menu-wrapper {
  position: relative;
}

/* チェックボックス（非表示） */
#menu-toggle {
  display: none;
}

/* ハンバーガーアイコン（黒背景・白バー・大きめ） */
.menu-icon {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;      /* 黒背景 */
  border-radius: 10px;
}

/* 1本のバー＋擬似要素で3本線を作る */
.menu-bar,
.menu-bar::before,
.menu-bar::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #fff;      /* 白バー */
  border-radius: 3px;
  position: absolute;
  transition: 0.4s;
}

.menu-bar {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-bar::before {
  top: -10px;
  left: 0;
}

.menu-bar::after {
  top: 10px;
  left: 0;
}

/* チェック時：ハンバーガー → X（必ず中央で交差） */
#menu-toggle:checked + .menu-icon .menu-bar {
  background: transparent;
}

#menu-toggle:checked + .menu-icon .menu-bar::before {
  top: 0;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-icon .menu-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1500;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（右側スライド・グレー背景・白文字） */
.menu {
  position: fixed;
  top: 0;
  right: -40%;        /* ← 画面幅の80%ぶん隠す */
  width: 40%;         /* ← 画面幅の80%をメニューにする */
  height: 100%;
  background: #444;   /* グレー背景 */
  color: #fff;        /* 白文字 */
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 2000;
  overflow-y: auto;   /* ← 下までスクロールできる */
  padding-bottom: 40px;
}

#menu-toggle:checked ~ .menu {
  right: 0;           /* ← 開いたとき右0へ */
}


/* メニュー内のリスト */
.menu ul {
  list-style: none;
  padding: 60px 20px;
  margin: 0;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  transition: opacity 0.3s;
}

.menu a:hover {
  opacity: 0.7;
}


/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width:768px) {
.menu {
  right: -80%;        /* ← 画面幅の80%ぶん隠す */
  width: 80%;         /* ← 画面幅の80%をメニューにする */

}


}/* end */












/* ======================================================== 
   メイン画像
========================================================= */
.mainimg * {margin: 0;padding: 0;}
.mainimg picture {display: block;width: 100%;height: 100%;}

/*メイン画像全体*/
.mainimg {
	background: #f0f8fe;
	position: relative;
}

/*画像ブロック*/
.mainimg .image {
	position: relative;
}

/*画像上に重ねた商品アップ*/
.mainimg .mainimg-main {
	display: block;
	width: 35%;	/*幅*/
	position: absolute;
	right: 0;		/*画像ブロックに対しての右からの配置場所*/
	bottom: -10%;	/*画像ブロックに対しての下からの配置場所。マイナスがついているので本来と逆の方向に。*/
}

/*テキストブロック*/
.mainimg .text {
	position: absolute;
	left: 10%;	/*メイン画像ブロック全体に対して左からの配置場所*/
	top: 50%;
	transform: translateY(-50%);
	width: 30%;	/*ブロックの幅*/
	color: #333;
	font-weight: bold;	/*太字*/
}



/* 画像中央のタイトル */
.mainimg .mainimg-title {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7); /* 半透明黒背景 */
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 6px; /* 高級感UP */
  width: auto;
  z-index: 10;
}

.mainimg .mainimg-title h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.mainimg .mainimg-title .mainimg-conent {
  font-size: 1.2rem;
  margin: 0;
  color: #00ffff !important;	/* cyan */
  font-size: 60%;font-weight: bold;
}

/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
	@media (max-width:768px) {

	/*テキストブロック*/
	.mainimg .text {
		position: static;	/*絶対配置をやめて、写真の下に通常表示させる*/
		transform: none;
		width: 90%;	/*幅。お好みで。*/
		margin: 0 auto 2rem;	/*左右中央、下に2文字分の余白。*/
		text-align: center;		/*テキストのセンタリング*/
	}

  .mainimg .image {
    position: relative;
  }

  .mainimg .mainimg-title {
    font-size: 1.4rem;
    padding: 0.8rem 1.4rem;

    width: 90%;        /* 横幅を広げる */
    left: 50%;         /* 中央基準 */
    transform: translateX(-50%); /* 横方向だけ中央に */
    top: 50%;          /* 必要なら中央のまま */
    text-align: center;
  }

}/* end */



/*画像で起こしたキャッチコピー*/
.mainimg .text-message {
	margin-bottom: 2%;	/*下からの配置。微調整なのでお好みで。*/
	margin-left: -10%;	/*左からの配置。微調整なのでお好みで。マイナスがついているので本来の向きと逆の方向に。*/
}

	/*画面幅768px以下の追加指定*/
	@media (max-width:768px) {

	/*画像で起こしたキャッチコピー*/
	.mainimg .text-message {
		margin-bottom: 6%;
		margin-left: 0;
	}

	}/*追加指定ここまで*/


/*h2とpのテキストにフチをつける*/
.mainimg .text h2,.mainimg .text p {
	position: relative;
	-webkit-text-stroke: 6px #fff;	/*ここが縁の幅と色の指定*/
	paint-order: stroke fill;
}




.button-01{
  display: inline-block;
  padding: 1em 2em;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  border: solid 1px #ff8c00;
  background: #ed6d35;
  border-radius: 30px;
  max-width: 300px;
  text-align: center; 
}

.button-01 a {
  text-decoration: none;

}
.button-01:hover {
  background: #333;
  color: #fff;
}

/* =================================================
   無料見積 フローティングCTA
================================================= */

.floating-cta{
  position:fixed;
  right:0;
  top:20vh;
  z-index:9999;
}

.btn-mitsumori{
  display:block;

  background:#ff9800;
  color:#fff;

  padding:1.2rem 0.8rem;

  font-weight:700;
  text-align:center;

  writing-mode:vertical-rl;
  text-orientation:upright;

  border-radius:8px 0 0 8px;

  box-shadow:0 4px 10px rgba(0,0,0,.18);

  text-decoration:none;

  animation:yurayura 2s ease-in-out infinite;
}

/* ホバー */

.btn-mitsumori:hover{
  opacity:.9;
}

/* ゆらゆら */

@keyframes yurayura{

  0%{
    transform:translateX(0);
  }

  20%{
    transform:translateX(-6px);
  }

  40%{
    transform:translateX(0);
  }

  60%{
    transform:translateX(-6px);
  }

  80%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(0);
  }

}

/* ==============================
   スマホ
============================== */

@media screen and (max-width:768px){

  .floating-cta{
    top:30vh;
  }

  .btn-mitsumori{
    padding:1rem 0.7rem;
    font-size:14px;
  }

}


/* =========================================================
   Google口コミ 全体コンテナ（画面全体の90%・中央配置）
========================================================= */
.aim-google-wrap {
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 14px;
    padding: 35px 20px;
    background: #fff;
    box-sizing: border-box;
}

/* テキストの基本設定 */
.aim-google-wrap p {
    margin: 0 0 1.2em;
    color: #800000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.aim-google-wrap p:last-child {
    margin-bottom: 0;
}

/* 画像の基本設定 */
.aim-google-wrap img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* 色変更用の専用クラス */
.aim-txt-red {
    color: #e02b7b; /* スクショのピンク寄りの赤に調整、または #ff0000 等 */
}

/* 青文字ブロック用のスタイル（pタグに直接指定してスッキリ化） */
.aim-google-wrap p.aim-txt-blue {
    color: #00008b;
    font-size: 20px; /* リストや見出しとメリハリをつけるため標準サイズに */
    line-height: 1.8;
    margin: 25px 0;
}

.aim-google-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px auto;
    max-width: 600px;
}

.aim-google-list li {
    display: flex;
    align-items: center; /* PCではチェックと文字を中央揃え */
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 22px;     /* PCでの大きめサイズ */
    font-weight: 700;
    line-height: 1.7;
    text-align: left;
    color: #333333;
}

/* チェックアイコン */
.aim-google-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../pict/pink_check.png") no-repeat center / contain;
    flex-shrink: 0;
}


/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px) {
    .aim-google-wrap {
        width: 92%; /* スマホ画面では少しだけ横幅を広げて窮屈さを回避 */
        padding: 24px 16px;
    }

    /* 上下の説明文・青文字のスマホ調整 */
    .aim-google-wrap p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .aim-google-wrap p.aim-txt-blue {
        font-size: 14px; /* スマホでは一回り小さくして読みやすく */
        line-height: 1.7;
        margin: 20px 0;
    }
    
    /* リスト全体のスマホ調整 */
    .aim-google-list {
        margin: 0 auto 20px auto;
        padding: 0 4px;
    }

    /* 箇条書きのスマホ調整 */
    .aim-google-list li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
        align-items: flex-start; /* 2行になってもチェックマークを「1行目の頭」に固定 */
        gap: 8px;
    }

    /* チェックアイコンのスマホ微調整 */
    .aim-google-list li::before {
        width: 18px;
        height: 18px;
        margin-top: 3px; /* 1行目の文字の高さに合わせる */
    }

} /* END */


/* h2.ai_logo
========================================================= */
h2.ai_logo {
	position: relative;
	display: flex;          /* ロゴと文字を横並びにする */
	justify-content: center; /* 横方向の中央配置 */
	align-items: center;     /* 縦方向の中央配置 */
	gap: 0.4em;             /* ロゴと文字の間の隙間 */
	
	padding: 0.6em 1.0em;
	line-height: 1.4;
	color: #1c305c;                   /* 留紺 とめこん */
	border-top: solid 2px #000080;    /* navy */
	border-bottom: solid 2px #000080; /* navy */
	background: #d7eaff;              /* lightcyan */
	
	font-size: 2em;                   /* 見出し全体のサイズ（PC版） */

	/* ★完全解決：親要素(mainの70%)を無視して、画面全体に対して大きく広げる魔法の設定 */
	width: 85vw;              /* 1つ目のスクショ（お客様の声）と同じ大きさに合わせるため、親より大きく広げる */
	max-width: 1200px;        /* 広がりすぎ防止の安全弁 */
	
	/* 親要素の枠から外に均等にはみ出させて、完全に画面の中央に固定する設定 */
	margin-left: 50% !important;
	transform: translateX(-50%);
	margin-bottom: 2rem;
}

/* 疑似要素（::before）で文字の左側に丸いロゴマークを合成 */
h2.ai_logo::before {
	content: "";
	display: inline-block;
	flex-shrink: 0;                   /* 画面が狭くなってもロゴが絶対に潰れないように固定 */
	
	/* 画像の指定 */
	background-image: url("../head_img/ai_logo110.png");
	background-repeat: no-repeat;
	background-size: contain;         /* 枠内に画像を綺麗に収める */
	
	width: 1.4em;
	height: 1.4em;
}


/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {

	/* スマホ画面でははみ出しを解除し、画面幅（92%）にぴったり合わせる */
	h2.ai_logo {
		width: 100%;
		max-width: none;
		margin-left: 0 !important;
		transform: none;
		font-size: 1.4em; /* スマホ用に文字とロゴのサイズをバランスよく縮小 */
	}

} /* END */


/* =========================================================
   CTAエリア：全体コンテナ（画面全体の90%・最大1100px・中央配置）
   ========================================================= */
.aim-cta-wrap {
    width: 90%;          /* 画面幅の90%に制限 */
    max-width: 1100px;   /* PCで広がりすぎないように安全弁を設定（サービス一覧と同期） */
    margin: 40px auto;   /* 左右autoで中央配置 */
    box-sizing: border-box;
}

/* ヘッダーテキストエリア */
.tworow-cta-header {
    text-align: center;
    margin-bottom: 20px;
}

.tworow-badge {
    /* 必要に応じて既存のスタイルを維持 */
}

.tworow-lead-red {
    margin-top: 8px;
    color: #cc0000;
    font-weight: bold;
}

/* =========================================================
   【PCファースト】標準スタイル（PC・タブレット環境：3列横並び）
   ========================================================= */
.cta-banner-container {
    display: flex;
    flex-direction: row;  /* 標準で横並び */
    justify-content: space-between;
    gap: 16px;            /* バナー間の左右の隙間 */
    width: 100%;
}

/* 各バナー（リンク要素） */
.cta-banner-item {
    display: block;
    flex: 1;              /* 3つのバナーを完全に均等幅にする */
    text-decoration: none;
    transition: transform 0.2s ease;
}

/* 画像のレスポンシブ設定 */
.cta-banner-item img {
    display: block;
    width: 100%;          /* バナー幅いっぱいにピタッと表示 */
    height: auto;         /* 画像の比率を崩さない */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

/* マウスホバー時の浮き上がり演出 */
.cta-banner-item:hover {
    transform: translateY(-3px);
}

.cta-banner-item:hover img {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}


@media (max-width: 767px) {
    .cta-banner-container {
        flex-direction: column;   /* 縦並びに上書き */
        gap: 12px;                /* スマホ用の上下の隙間に調整 */
    }

    .cta-banner-item {
        flex: none;               /* 均等幅設定を解除 */
        width: 100%;
    }
}


/* =========================================================
   お悩みエリア：全体コンテナ
========================================================= */
.nayami-wrap{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

.nayami-image{
    text-align:center;
    margin-bottom:35px;
}

.nayami-image img{
    width:100%;
    max-width:900px;
    height:auto;
    display:block;
    margin:auto;
}

.nayami-list{
    max-width:860px;
    margin:0 auto 40px;
    border:2px solid #8e9b66;
    border-radius:10px;
    background:#fffefb;
    overflow:hidden;
}

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

.nayami-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:10px 22px;
    font-size:20px;
    line-height:1.8;
    border-bottom:1px dashed #d8d8d8;
}

.nayami-list li:last-child{
    border-bottom:none;
}

.nayami-list i{
    color:#e7823a;
    font-size:20px;
    margin-top:8px;
    flex-shrink:0;
}

.nayami-catch{
    text-align:center;
    margin-bottom:35px;
}

.nayami-catch img{
    width:100%;
    max-width:700px;
    height:auto;
}

.nayami-text{
    max-width:860px;
    margin:auto;
    text-align:center;
}

.nayami-text h5{
    font-size:24px;
    color:#dc143c;
    margin-bottom:20px;
}

.nayami-text p{
    font-size:18px;
    line-height:2;
    margin-bottom:18px;
}

/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media (max-width:768px){
.nayami-list li{
    padding:15px;
    font-size:15px;
    line-height:1.7;
}

.nayami-list i{
    font-size:15px;
}

.nayami-text h3{
    font-size:26px;
}

.nayami-text p{
    font-size:16px;
    text-align:left;
}

} /* END */


/* ==========================================================================
   選ばれる理由セクション：全体コンテナ（画面全体の90%・中央配置）
   ========================================================================== */
.aim-reason-wrap {
    width: 90%;          /* 【修正】コメントの通り画面全体の90%に設定 */
    max-width: 1200px;   /* 【追加】PCで広がりすぎないように最大幅を設定（お好みで調整してください） */
    margin: 40px auto;   /* 【条件】左右autoで中央配置 */
    box-sizing: border-box;
    color: #333333;
}

/* メイン画像エリア */
.aim-reason-banner {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}

.aim-reason-banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;     /* 【修正】120%だとコンテナをはみ出すため100%に修正 */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* 理由カードのコンテナ（縦並び1列） */
.reason-container {
    display: flex;
    flex-direction: column;
    gap: 24px;           /* カード同士の間隔 */
    width: 80%;         /* 【修正】60%から100%に変更し、バナーと横幅を統一 */
    margin: 0 auto;      /* 【修正】中央配置に設定 */
}

/* 各カードのスタイル */
.reason-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

/* カードのヘッダー部分 */
.reason-header {
    margin-bottom: 12px;
}

/* 数字（01, 02, 03） */
.reason-num {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #506d2f;      /* 柔らかいグリーン系 */
    line-height: 1;
    margin-bottom: 6px;
}

/* 見出し（H3） */
.reason-card h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    color: #2d3748;
    margin: 0;
}

/* カードの本文 */
.reason-body {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    text-align: left;    /* 左寄せで可読性を担保 */
}

.reason-body p {
    margin: 0;
}

/* テキスト強調 */
.highlight-red {
    color: #e53e3e;
    font-weight: bold;
}

.highlight-bold {
    font-weight: bold;
}

/* --------------------------------------------------------------------------
   理由3：料金の数式ビジュアル（formula-box）
   -------------------------------------------------------------------------- */
.formula-box {
    margin-top: 20px;
    padding: 14px;
    background-color: #f7fafc;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;     /* スマホ時の自動折り返しを有効化 */
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 数式の各ブロック */
.f-block {
    display: inline-block;
    padding: 8px 12px;
    background: #edf2f7;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* 記号（＋、－、＝） */
.f-sign {
    font-size: 18px;
    font-weight: bold;
    color: #718096;
}

/* 買取金額（赤） */
.red-block {
    background-color: #fed7d7;
    color: #c53030;
}

/* 合計金額（目立つ色） */
.total-block {
    background-color: #cbd5e0;
    color: #1a202c;
    border: 2px solid #4a5568;
}


/* スマホ 768px以下 */
/* ========================================== */
@media (max-width: 767px) {
    .aim-reason-wrap {
        width: 92%;      /* スマホ画面で横幅を僅かに広げて見やすく */
        margin: 30px auto;
    }

    .reason-card {
        padding: 18px 16px; /* スマホ環境で内側の窮屈感を解消 */
    }

    .reason-card h3 {
        font-size: 16px;    /* 画面幅に合わせたフォント縮小 */
    }

    .reason-body {
        font-size: 14px;
    }

    /* 数式ボックスのスマホ表示微調整 */
    .formula-box {
        gap: 4px;
        padding: 10px;
    }

    .f-block {
        font-size: 12px;
        padding: 6px 8px;
    }

    .f-sign {
        font-size: 14px;
    }
} /* END */


/* ==========================================================================
   サービス一覧：全体コンテナ（ヘッダー帯に負けないワイド設計に拡張）
   ========================================================================== */
.amsv-section-container {
    width: 100%;           /* 【追加】横幅いっぱいに広げて子要素を制御しやすくする */
    margin: 20px auto;     /* 左右autoで中央配置 */
    box-sizing: border-box;
    text-align: center;
    display: flex;         /* 【追加】子要素（grid）を確実に中央配置するためのFlexbox化 */
    flex-direction: column;/* 【追加】縦並びにする */
    align-items: center;   /* 【追加】中身を水平方向の中央に配置 */
}

/* 上部リードテキスト */
.amsv-section-lead {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 35px;
    line-height: 1.5;
    width: 100%;           /* 【追加】100%幅にしてテキストのセンタリングを維持 */
}

/* カードの配置グリッド */
.amsv-cards-grid {
    width: 100%;           /* 【追加】基本は幅100% */
    max-width: 1200px !important;
    margin: 0 auto;        /* 【追加】左右にautoを指定して自身を中央配置 */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 【確約】PCはきれいに横3等分 */
    gap: 30px;                             /* カードが大きくなるため間隔もゆったり調整 */
    box-sizing: border-box;
}

/* 各サービスカード本体 */
.amsv-card-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.amsv-card-thumb {
    margin: 0;
    padding: 0;
    width: 100%;
}

.amsv-card-thumb a {
    display: block;
    width: 100%;
}

.amsv-card-thumb img {
    width: 100%;          /* ★カードの横幅に対して100%ピッタリに広げる */
    height: auto;         /* ★余計な高さ固定を撤廃！画像の比率をそのまま正しく表示 */
    display: block;
}

/* ==========================================================================
   テキスト＆下部バナーボタンエリア
   ========================================================================== */
.amsv-card-body {
    padding: 22px 20px 10px;
    flex: 1;              /* 説明文の量に関わらず、下部ボタンの位置を綺麗に揃える */
    text-align: left;
}

/* サービスタイトル（H4） */
.amsv-title-text {
    margin: 0 0 12px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b0000;       /* 深紅 */
    line-height: 1.4;
}

/* 先頭の肉球アイコン */
.amsv-has-paw::before {
    content: "\f1b0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ed6d35;       /* オレンジ */
    margin-right: 6px;
    font-size: 1.1rem;
    display: inline-block;
}

/* 説明テキスト */
.amsv-desc-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333333;
}

/* ==========================================================================
   下部テキストボタンの配置枠（CSSボタンへ刷新）
   ========================================================================== */
.amsv-action-btn {
    padding: 0 20px 22px;
    margin: 0;
    text-align: center;
    margin-top: auto;         /* カードの最下部に常時固定 */
}

/* ボタン本体の装飾 */
.amsv-action-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;             /* 押しやすい高さを確保 */
    background: linear-gradient(135deg, #ed6d35 0%, #e05313 100%); /* 肉球アイコンに合わせた親しみやすいオレンジ */
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 24px;      /* 柔らかい丸みのあるシルエット */
    box-shadow: 0 4px 10px rgba(237, 109, 53, 0.2);
    position: relative;
    transition: all 0.3s ease; /* アニメーションを滑らかに */
    box-sizing: border-box;
}

/* ボタン右側の矢印アイコン（ Font Awesome がない環境でも動くCSS矢印 ） */
.amsv-action-btn a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

/* ボタンホバー時の動き */
.amsv-action-btn a:hover {
    opacity: 0.9;
    transform: translateY(-2px); /* 上にフワッと浮き上がる */
    box-shadow: 0 6px 15px rgba(237, 109, 53, 0.35); /* 影を強くして浮遊感を出す */
}

/* ホバー時に矢印を少し右に動かす小技 */
.amsv-action-btn a:hover::after {
    transform: translate(3px, 0) rotate(45deg);
}

/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px) {
    .amsv-section-container {
        width: 95%;       /* スマホ画面いっぱいに横幅を広げてダイナミックに */
        margin: 35px auto;
    }

    /* ★スマホ時に横2個（2列）の3段へ強制指定 */
    .amsv-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;        /* 2列が窮屈にならないための絶妙な隙間 */
    }

    /* 画像の高さ制限はスマホでも完全に不要（自動計算） */
    .amsv-card-thumb img {
        height: auto;     
    }

    .amsv-card-body {
        padding: 12px 10px 6px;
    }

    .amsv-title-text {
        font-size: 0.95rem; 
        margin-bottom: 6px;
    }

    .amsv-has-paw::before {
        font-size: 0.85rem;
        margin-right: 4px;
    }

    .amsv-desc-text {
        font-size: 0.8rem;  
        line-height: 1.4;
    }

    .amsv-action-btn {
        padding: 0 10px 12px;
    }

} /* END */


/* =================================================
   grid multi
================================================= */
.grid_multi{
  width: min(94%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.clmn-list{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-weight: 800;
  text-align: center;
  padding-bottom: 14px;
}

.clmn-list img{
  display: block;
  width: 100%;
  margin-bottom: 10px;
}


/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px){
  .grid_multi{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

} /* END */


/* ======================================================== 
   FAQ よく頂く質問
========================================================= */
.faq-section{
  width: min(94%, 1000px);
  margin: 0 auto;
}

.faq-lead{
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #333; /* 文字色を少し濃く */
}

.faq-box{
  max-width: 900px;
  margin: 0 auto;
}

.faq-item{
  /* ?? 枠線をはっきりとした濃いめのグレーに変更 */
  border: 2px solid #a0a0a0;
  border-radius: 12px;
  margin-bottom: 14px;
  /* ?? 閉じている時は真っ白にしてスッキリ見せる */
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06); /* 影も少しだけクッキリ */
  transition: background-color 0.3s ease;
}

/* ?? 【追加】質問が開いている時だけ、背景にアイメモリア様らしい上品な淡い緑を敷く */
.faq-item[open] {
  background: #f4faf9; 
  border-color: #005a5a; /* 開いている時は枠線もロゴに合わせた深い色に */
}

.faq-item summary{
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.65;
  color: #222; /* 質問の文字色を真っ黒に近くして視認性アップ */
}

/* ?? 「Q.」の色をロゴに合わせた深く力強いグリーンに変更 */
.faq-item summary::before {
  content: "Q. ";
  color: #005a5a; 
  margin-right: 4px;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::after{
  content: "＋";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  /* ?? プラスボタンの色も濃くして目立たせる */
  color: #005a5a;
  font-weight: bold;
}

/* ?? マイナスボタンの色 */
.faq-item[open] summary::after{
  content: "－";
  color: #005a5a;
}

.faq-item p{
  padding: 0 18px 18px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.9;
  color: #8b0000; /* 回答の濃い赤はそのまま活かします */
  margin: 0;
}

/* ?? 「A.」の文字 */
.faq-item p::before {
  content: "A. ";
  font-size: 1.2rem;
  margin-right: 4px;
}

/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px){
  .faq-item summary{
    font-size: 1rem;
    padding: 14px 42px 14px 14px;
  }

  .faq-item p{
    font-size: .95rem;
    padding: 0 14px 16px;
  }

} /* END */



/* =================================================
   service area 営業エリア
================================================= */

/* 全体ラップ */
.area-list-wrap {
  margin-top: 2rem;
}

/* 地域タイトル */
.area-title {
  color: #b00000; /* 赤系 */
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.8rem 0 0.8rem;
}

/* 2列リスト */
.area-two-column {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

/* 各項目 */
.area-two-column li {
  border-bottom: 1px dotted #ddd;
  padding-bottom: 6px;
}

.area-city {
  font-weight: 600;
  color: #333;
  display: block;
}

.area-comment {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  display: block;
}

.area-bg {
  background: #eae5e3; /* 素色 そしょく */
  padding: 1rem;
  border-radius: 6px;
}


/* スマホ */
@media screen and (max-width: 768px) {
  .area-two-column {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   インボイス登録店案内バナー 
========================================================= */

.invoice-banner {
  max-width: 850px; /* ★PCで貧相に見えないよう、横幅を「700px ?? 850px」に拡大 */
  margin: 2.5rem auto; /* 前後の余白を少し広げてゆったりと配置 */
  border: 2px solid #506d2f !important; /* 上品なleavesの緑枠 */
  border-radius: 6px; /* PCの大画面に合わせて角丸を少しシャープに（8px ?? 6px） */
  background-color: #ffffff !important;
  overflow: hidden; 
}

/* 上段：メインメッセージエリア（PCで窮屈にならない余白） */
.invoice-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* アイコンと文字の間隔を少し広げてPC向けに */
  padding: 1.8rem 2rem; /* ★上下左右の余白を広げ、横長の開放感を出します */
  background-color: #fbf9f5 !important; /* 温かみのあるベージュ */
}

/* Font Awesome アイコンの設定 */
.invoice-fa-icon {
  font-size: 2rem; /* ★PC基準の大きくて見やすいサイズに固定 */
  color: #506d2f !important; 
  line-height: 1;
  flex-shrink: 0; 
}

/* メインテキスト（PCでパッと1行で綺麗に読めるサイズ） */
.invoice-title {
  margin: 0;
  font-size: 1.6rem; /* ★PCでダイナミックかつ上品に映える文字サイズ */
  font-weight: 700;   
  color: #2d3824 !important; /* 深いオリーブ黒 */
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* 下段：登録番号エリア（PCで1行にすっきり収まる帯） */
.invoice-sub {
  background-color: #3b5222 !important; /* 上品なアース深緑 */
  padding: 1rem 2rem; /* 横に引き締まったスマートな帯にします */
  display: flex;
  flex-direction: row; /* ★PCメインなので、最初から「横並び」を基準にします */
  justify-content: center;
  align-items: center;
  gap: 30px; /* 「事業者名」と「登録番号」の間隔を広げてPC向けに */
}

/* 「適格請求書発行事業者」の文字 */
.invoice-label {
  color: #e2edd5 !important; /* 上品なライトベージュ */
  font-size: 1rem; /* PCで見やすい標準サイズ */
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* 登録番号 */
.invoice-number {
  color: #ffffff !important; 
  font-size: 1.3rem; /* PCで数字がハッキリ視認できるサイズ */
  font-weight: 700;
  letter-spacing: 0.08em; /* 数字を少し間を空けて読みやすく */
}

/* スマホ表示への安全対策 */
/* ========================================================= */
@media (max-width: 768px) {
  .invoice-banner {
    margin: 1.5rem auto;
  }
  .invoice-main {
    padding: 1.2rem 1rem;
    gap: 10px;
  }
  .invoice-fa-icon {
    font-size: 1.5rem;
  }
  .invoice-title {
    font-size: 1.2rem;
  }
  .invoice-sub {
    flex-direction: column; /* スマホの時は自動で縦並びにして崩れを防ぐ */
    gap: 6px;
    padding: 0.8rem 1rem;
  }
  .invoice-label {
    font-size: 0.85rem;
  }
  .invoice-number {
    font-size: 1.1rem;
  }
}


/* =================================================
   挨拶ブロック（最適化版）
================================================= */

/* 全体リセット（必要最小限） */
.flex-aisatsu-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* コンテナ */
.flex-aisatsu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
  margin-bottom: 80px;
}

/* カード（PC：横並び） */
.flex-aisatsu-container .aisatsu-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #fff;
  padding: 0;
}

/* 画像エリア（左） */
.flex-aisatsu-container .aisatsu-card figure {
  flex: 0 0 40%;
  max-width: 40%;
}

.flex-aisatsu-container .aisatsu-card figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキストエリア（右） */
.flex-aisatsu-container .text-parts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 1rem 1rem 0;
}

/* 見出し */
.flex-aisatsu-container .text-parts h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #800000;
  line-height: 1.3;
}

.flex-aisatsu-container .text-parts h4.pl-icon-paw::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  color: #663300;
  margin-right: 6px;
  font-size: 1.1rem;
}

/* 本文 */
.flex-aisatsu-container .text-parts p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

/* リスト */
.flex-aisatsu-container .text-parts ul {
  padding-left: 20px;
}

.flex-aisatsu-container .text-parts li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* =================================================
   スマホ（縦並び）
================================================= */
@media screen and (max-width: 767px) {

  .flex-aisatsu-container .aisatsu-card {
    flex-direction: column;
    gap: 1.2rem;
  }

  .flex-aisatsu-container .aisatsu-card figure {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .flex-aisatsu-container .text-parts {
    padding: 0 10px 15px 10px;
  }

  .flex-aisatsu-container .text-parts h4 {
    font-size: 1.15rem;
  }

  .flex-aisatsu-container .text-parts p,
  .flex-aisatsu-container .text-parts li {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

/* =======================================
   共通
======================================= */
.additional_table,
.additional_table * {
    box-sizing: border-box;
}

/* =======================================
   PC（ベース）
======================================= */

.additional_table {
    border-collapse: collapse;
    width: 900px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
}

.additional_table tr {
    background: #fff;
    border-bottom: 2px solid #fff;
}

/* ストライプ */
.additional_table tbody tr:nth-child(even) {
    background: #eee;
}

.additional_table th,
.additional_table td {
    padding: .75em 1em;
    vertical-align: middle;
}

/*----------------*/

.additional_table thead tr {
    background: #506d2f;
    color: #fff;
}

.additional_table thead th {
    font-size: .85em;
    font-weight: bold;
    padding: 1em;
}

.additional_table thead th:nth-child(1),
.additional_table thead th:nth-child(2) {
    text-align: left;
}

.additional_table thead th:nth-child(3) {
    text-align: right;
}

/*----------------*/

.additional_table tbody th {
    text-align: left;
    font-size: .85em;
    color: #333;
}

.additional_table .txt {
    text-align: left;
    font-size: .8em;
    color: #555;
}

.additional_table .price {
    text-align: right;
    color: #FF7043;
    font-weight: bold;
    font-size: .9em;
}

/* =======================================
   スマホ
======================================= */

@media (max-width:768px){

    .additional_table{
        display:block;
        width:100%;
        border:0;
    }

    .additional_table thead{
        display:none;
    }

    .additional_table tbody{
        display:block;
        width:100%;
    }

    .additional_table tr{
        display:block;
        width:100%;
        margin-bottom:1.5em;
        border:1px solid #506d2f;
        background:#fff !important;
    }

    .additional_table tbody th{
        display:block;
        width:100%;
        padding:1em;
        background:#506d2f;
        color:#fff;
        text-align:left;
        font-size:.95em;
        font-weight:bold;
        border-right:none;
    }

    .additional_table td{
        display:block;
        width:100%;
        position:relative;
        padding:1.2em 1em 1.2em 6.5em;
        border-right:none;
        border-bottom:1px dotted #bbb;
        text-align:right;
        font-size:.85em;
    }

    .additional_table td::before{
        content:attr(data-label);
        position:absolute;
        left:15px;
        top:50%;
        transform:translateY(-50%);
        font-weight:bold;
        color:#555;
    }

    .additional_table td:last-child{
        border-bottom:0;
    }

    .additional_table .txt{
        text-align:right;
        color:#333;
    }

    .additional_table .price{
        text-align:right;
        color:#FF7043;
        font-size:1em;
        font-weight:bold;
    }

}

/* =================================================
   ゴミ屋敷・異常事態ブロック（gomi-com）
================================================= */

/* 外枠ボックス */
.gomi-com {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 30px;
  margin: 40px auto;
  max-width: 900px;
}

/* 見出し（h5） */
.gomi-com .gomi_title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b00000;
  margin-bottom: 15px;
  border-left: 6px solid #b00000;
  padding-left: 10px;
}

/* 説明文 */
.gomi-com p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* ゴミ屋敷の問題点リスト */
.gomi-com .gomi_ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

.gomi-com .gomi_ul li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #333;
}

/* 強調文 */
.gomi-com strong {
  color: #b00000;
  font-weight: 700;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .gomi-com {
    padding: 20px;
  }

  .gomi-com .gomi_title {
    font-size: 1.25rem;
  }

  .gomi-com p,
  .gomi-com .gomi_ul li {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

/* =================================================
    新発想：一本軸タイムライン（PC・スマホ統合版）
================================================= */
.reason-timeline {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #07162c 0%, #0b2545 40%, #134074 100%);
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  border-radius: 24px;
}

/* ヘッダーデザイン */
.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-header .subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #64ffda;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.timeline-header .main-title {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}

.timeline-header .lead-text {
  font-size: 1.1rem;
  color: #8da2bb;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* タイムライン全体のコンテナ（PCでも中央ではなく左寄りに軸を固定） */
.timeline-wrapper {
  position: relative;
  max-width: 800px; /* PCでの読みやすさを考慮した幅 */
  margin: 0 auto;
  padding: 40px 0 40px 40px; /* 左側にラインが走るスペースを確保 */
}

/* 常に左側を通る繊細な光のライン */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px; /* バッジ（44px）の真ん中に合わせて調整 */
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(100, 255, 218, 0.1), #64ffda, rgba(100, 255, 218, 0.1));
}

/* 各アイテムの並び（左右交互を廃止し、すべて左基準に統一） */
.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  padding-left: 40px; /* ライン・バッジからの余白 */
  box-sizing: border-box;
  text-align: left !important; /* 常に左揃え */
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* タイムライン上の光るドット（常に左側に固定） */
.time-badge {
  position: absolute;
  top: 0;
  left: 0; /* 左端に固定 */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #07162c;
  border: 2px solid #64ffda;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
}

.time-badge span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #64ffda;
  font-family: 'Courier New', Courier, monospace;
}

/* コンテンツエリア：ガラス質感のカード */
.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(100, 255, 218, 0.3);
  transform: translateX(5px); /* 上ではなく、視線の流れに合わせて「右」に微細にスライド */
}

.timeline-content h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.timeline-content p {
  margin: 0;
  font-size: 1rem;
  color: #b0c4de;
  line-height: 1.85;
  text-align: justify;
}

/* =================================================
    レスポンシブ（スマホ・タブレット調整）
================================================= */
@media (max-width: 768px) {
  .reason-timeline {
    padding: 60px 15px;
    border-radius: 0;
  }

  .timeline-header {
    margin-bottom: 40px;
  }

  .timeline-wrapper {
    padding: 20px 0 20px 30px; /* スマホ用に左のスペースを少しタイトに */
  }

  .timeline-wrapper::before {
    left: 16px; /* スマホ用バッジ（36px）の中心に合わせる */
  }

  .timeline-item {
    padding-left: 25px;
    margin-bottom: 35px;
  }

  /* スマホ時はバッジを少しコンパクトにして文字とのバランスを取る */
  .time-badge {
    width: 34px;
    height: 34px;
  }
  
  .time-badge span {
    font-size: 0.85rem;
  }

  .timeline-content {
    padding: 22px 20px;
  }

  .timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* =================================================
    注意事項セクション（完全リニューアル）
================================================= */
.attention-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #f8fafc; /* 薄いグレーを敷いて白いカードを際立たせる */
  border-radius: 16px;
}

/* 注意事項コンテナ */
.attention-container {
  margin-top: 40px;
}

/* リスト全体の初期化 */
.attention-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px; /* カード同士の間隔 */
}

/* 基本のカードスタイル */
.attention-item, 
.attention-item-alert, 
.attention-item-warn {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  border-left: 6px solid #801a1a; /* アイメモリア様のロゴ・既存色に合わせた深みのある赤 */
}

/* 4番（ミルフィーユ）のカードだけ少し警戒を促す配色に */
.attention-item-alert {
  border-left-color: #d97706; /* 警告のオレンジ */
  background: #fffdfa;
}

/* 5・6番（追加料金・不可）のカード */
.attention-item-warn {
  border-left-color: #dc2626; /* 強めの赤 */
  background: #fffafb;
}

/* コンテンツ部分 */
.attention-content {
  width: 100%;
}

/* カード内のミニ見出し */
.attention-content strong {
  display: block;
  font-size: 1.15rem;
  color: #1f2937;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* 固有の色付け */
.attention-item-alert .attention-content strong { color: #b45309; }
.attention-item-warn .attention-content strong { color: #b91c1c; }

/* カード内の本文 */
.attention-content p {
  margin: 0;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.75;
}

/* テキスト装飾（ハイライト） */
.highlight {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #e2e8f0 60%); /* 自然なアンダーライン */
  color: #111827;
}

.highlight-red {
  font-weight: 700;
  color: #dc2626;
  background: linear-gradient(transparent 60%, #fffee0 60%);
}

/* =================================================
    スマートフォン用（767px以下）
================================================= */
@media (max-width: 767px) {
  .attention-section {
    padding: 40px 15px;
    border-radius: 0;
  }

  .attention-item, 
  .attention-item-alert, 
  .attention-item-warn {
    padding: 20px 18px;
    border-left-width: 5px;
  }

  .attention-content strong {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .attention-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* =========================================================
   空き家片付けの流れ
========================================================= */
.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #8EB83C;
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #8EB83C;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #8EB83C;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #506d2f;
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #506d2f;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #506d2f;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}


/* =================================================
   会社概要
================================================= */

/* ベースのスタイル（必要に応じて調整してください） */
.company-profile {
  width: 100%;
  background-color: #eae5e3; /* 素色 そしょく */
  padding: 50px 20px;
  box-sizing: border-box;
  color: #32454D;
  line-height: 1.8;
}

.table-container {
  max-width: 850px; /* テーブルの最大幅 */
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 0; /* 上下の余白 */
}

/*-----------------------------------
  テーブル本体のデザイン
-----------------------------------*/
.profile-table {
  width: 90%; /* コンテナ内で少し小さくして左右の余白を作る */
  margin: 0 auto;
  border-collapse: collapse; /* 隙間をなくす */
}

.profile-table th,
.profile-table td {
  padding: 20px;
  text-align: left;
  position: relative;
  vertical-align: top;
}

.profile-table th {
  width: 200px; /* PCでの項目幅 */
  font-weight: bold;
}

/* 下線（共通） */
.profile-table tr {
  border-bottom: 1px solid #565656;
}

/* 最後の行だけ下線を消す */
.profile-table tr:last-child {
  border-bottom: none;
}

/*-----------------------------------
  thの右側の縦線（疑似要素）
-----------------------------------*/
.profile-table th::after {
  content: "";
  display: block;
  width: 2px;
  height: 50%; /* 線の高さ（余白を作るポイント） */
  background-color: #565656;
  position: absolute;
  right: 0;
  top: 25%; /* 中央に配置 */
  border-radius: 40px;
}

/*-----------------------------------
  スマホ対応（レスポンシブ）
-----------------------------------*/
@media screen and (max-width: 768px) {
  .profile-table {
    width: 90%;
  }

  /* テーブル要素をブロック化して縦積みにする */
  .profile-table tr,
  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .profile-table tr {
    margin-bottom: 5px;
    border-bottom: 1px solid #565656;
  }

  .profile-table tr:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .profile-table th {
    padding: 10px 0 5px;
    width: 100%;
  }

  .profile-table td {
    padding: 0 0 10px;
  }

  /* スマホではth右の縦線を消す */
  .profile-table th::after {
    display: none;
  }
}



/* ======================================================== 
   悪徳業者 
========================================================= */
/* 全体のラッパー */
.fraud-alert-wrapper {
  background-color: #f8f9fa;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* コンテナ */
.alert-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 30px;
}

/* バッジ（見出し） */
.alert-badge {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background-color: #4169e1;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

/* ダークリアリティボックス（悪徳業者の手口） */
.dark-reality-box {
  background-color: #212529;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.dark-reality-box h4 {
  font-size: 1.2rem;
  color: #ffc107;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.dark-reality-box .danger-text {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 12px;
  font-weight: bold;
}

/* チェック・バッドリスト */
.check-bad-list {
  margin-top: 25px;
  background-color: #2c3034;
  padding: 20px;
  border-radius: 6px;
}

.check-bad-list h5 {
  font-size: 1rem;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.check-bad-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-bad-list li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.check-bad-list li span {
  color: #ff6b6b;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ソリューションボックス（解決策・アイメモリアの訴求） */
.solution-box {
  text-align: center;
  padding: 10px 0;
}

.solution-lead {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 5px;
}

.brand-call {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 15px;
}

.brand-call span {
  color: #0056b3;
  font-size: 1.5rem;
}

.promise-text {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------------------------------
   スマホ対応（画面幅が768px以下の場合）
------------------------------------------ */
@media screen and (max-width: 768px) {
  .fraud-alert-wrapper {
    padding: 20px 10px; /* 左右の余白を狭くして広く使う */
  }

  .alert-container {
    padding: 20px 15px;
  }

  .alert-badge {
    font-size: 1.2rem;
    padding: 10px 15px;
  }

  .dark-reality-box {
    padding: 20px 15px;
  }

  .dark-reality-box h4 {
    font-size: 1.05rem;
  }

  .dark-reality-box .danger-text {
    font-size: 0.95rem;
  }

  .check-bad-list {
    padding: 15px;
  }

  .check-bad-list h5 {
    font-size: 0.9rem;
  }

  .check-bad-list li {
    font-size: 0.85rem;
  }

  .solution-lead {
    font-size: 0.9rem;
  }

  .brand-call {
    font-size: 1.1rem;
  }

  .brand-call span {
    font-size: 1.3rem;
  }

  .promise-text {
    font-size: 0.85rem;
    text-align: left; /* スマホでは左寄せのほうが読みやすい場合もあります */
  }
}


/* ========================================================
   ▼ ねこの手サポート セクション用スタイル
======================================================== */

/* 全体を囲むコンテナ */
.neconote-container {
  width: 100%;
  max-width: 1100px;      /* スクショの読みやすい横幅に制限 */
  margin: 40px auto;     /* 上下に余白をあけて中央揃え */
  padding: 20px;
  box-sizing: border-box;

}

/* 上下の画像共通設定 */
.neconote-img-top img,
.neconote-img-bottom img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 下のバナー（リンク）のホバー演出 */
.neconote-img-bottom a {
  display: block;
  transition: opacity 0.2s ease;
}
.neconote-img-bottom a:hover {
  opacity: 0.8;
}

/* 中間のテキストエリア */
.neconote-text-body {
  text-align: center;    /* 文字をすべて中央揃えに */
  padding: 24px 0;       /* 上下の余白 */
  line-height: 1.6;
}

/* ?? 【最重要】赤文字を大きくする設定 */
.text-attention-red {
  color: #e6007e;        /* スクショの鮮やかな赤紫（ピンク寄り）のカラー */
  font-size: 24px;       /* 文字を大きく */
  font-weight: bold;     /* 太字 */
  margin: 0 0 20px 0;    /* 下の文字との隙間 */
}

/* 通常の本文（黒文字） */
.text-main {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 24px 0;
}

/* 下側のピンク太文字 */
.text-accent-pink {
  color: #e6007e;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

/* 改行コントロール用の基本設定 */
.pc-only { display: none; }

/* ?? PC環境（画面幅 768px 以上）での微調整 */
@media (min-width: 768px) {
  .text-attention-red {
    font-size: 28px;     /* PCでは赤文字をさらに大きく */
  }
  .text-main {
    font-size: 16px;     /* 本文も少し大きく */
  }
  .text-accent-pink {
    font-size: 22px;
  }
  .pc-only {
    display: inline;     /* PCの時だけ指定の位置で改行させる */
  }
}

/* =================================================
   ねこの手List（肉球先頭固定・中央揃え対応版）
================================================= */

ul.neko_list {
  width: min(94%, 900px);
  font-size: 1.15rem;
  font-weight: 700;
  border: 1px dashed #506d2f; /* leaves */
  background: #fbf9f5;
  padding: 14px 24px; /* 左右の余白を少しだけ最適化 */
  margin: 0 auto;
  border-radius: 12px;
  list-style: none; /* 親要素側で一括でリストマーカーを消去 */
}

ul.neko_list li {
  line-height: 1.7;
  padding: 0.75em 0; /* ★左側の余白（2em）を削除してスッキリ */
  border-bottom: 1px dashed #c8decb;
  text-align: center; /* ★画像通りにテキストを中央揃えにします */
}

ul.neko_list li:last-child {
  border-bottom: none;
}

/* ★肉球を文字の直前にくっつける指定 */
ul.neko_list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f1b0";
  color: #d04f97;
  
  /* 固定配置をやめ、文字の一部として扱う */
  display: inline-block;
  position: static; 
  
  /* 文字との間にちょうどいい隙間を作る */
  margin-right: 12px; 
  
  /* 縦方向の位置を文字の中心に微調整 */
  vertical-align: middle; 
}


/* スマホ 768px以下 */
/* ========================================== */
@media (max-width: 768px){
  ul.neko_list{
    width: 100%;
    font-size: 1.05rem;
    padding: 10px 12px;
  }
}


/* ねこの手料金 */
/* ======================================= */
.neko_table{
  table-layout: fixed;
  width: min(94%, 900px);
  margin: 0 auto;
  background: #fff;
  color: #333;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.neko_table th,
.neko_table td{
  border: 1px solid #ccc;
  word-break: break-word;
  padding: 12px 10px;
  line-height: 1.7;
}

.neko_table th{
  background: #e6afcf;
  text-align: center;
  font-weight: 600;
  width: 30%;
}

.neko_table td{
  text-align: left;
}

@media (max-width: 767px){
  .neko_table{
    width: 100%;
    font-size: .95rem;
  }

  .neko_table th,
  .neko_table td{
    padding: 10px 8px;
  }
}

/* =================================================
    neko grid (PC: 横4個×2段 / スマホ: 横2個×4段)
================================================= */
.neko_grid {
  width: min(94%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ?? PC・タブレット: 横4個 */
  gap: 20px;                             /* マス目同士の間隔 */
}

.clmn-list {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-weight: 800;
  text-align: center;
  padding-bottom: 14px;
}

.clmn-list img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px) {
  .neko_grid {
    width: 94%; /* 左右に少しだけ余白を持たせると綺麗に見えます（お好みで100%でも可） */
    grid-template-columns: repeat(2, 1fr); /* ?? スマホ: 横2個 */
    gap: 12px;                             /* スマホ画面に合わせて隙間を少し狭く */
  }
} /* END */


/* =================================================
   number list (.neko_number)
================================================= */
ol.neko_number {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding: 0.3em 0.8em;
  border: solid 2px #ffb107;
width: 100%;
  max-width: 800px;      /* 横幅を800pxくらいに制限 */
  margin: 0 auto;        /* 左右中央に配置 */
  box-sizing: border-box;
}

ol.neko_number li {
  border-bottom: dashed 1px orange;
  position: relative;
  padding: 0.5em 0.5em 0.5em 30px;
  line-height: 1.5em;
}

ol.neko_number li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #ffb107;
  color: white;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

ol.neko_number li:last-of-type {
  border-bottom: none; /*最後のliの線だけ消す*/
}


/* =======================================
   ねこの手 List dl
======================================= */
/* リスト全体のスタイル */
.info-list {
  border: 1px solid #ccc;
  padding: 24px 80px;
  color: #333333;
  max-width: 800px;
  margin: 0 auto; 
}

/* 各項目ごとの上下の余白 */
.info-item {
  margin-bottom: 16px;
}
.info-item:last-child {
  margin-bottom: 0;
}

/* 見出し（・付きの黒太字） */
.info-list dt {
  color: #800000;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 4px;
  position: relative;
  padding-left: 24px; /* 独自の・（ドット）を置くための左余白 */
}

/* 擬似要素で「・」を再現 */
.info-list dt::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* 説明文（インデントと少し小さめの文字） */
.info-list dd {
  margin-left: 22px; /* 見出しの文字開始位置と揃えるためのインデント */
  font-size: 18px;
  line-height: 1.6;
}

/* 口コミ レビュー */
/* ======================================= */
/* 全体の共通設定 */
.review-container,
.review-container * {
  box-sizing: border-box;
}

.review-container {
  max-width: 850px;
  margin: 0 auto;
  font-family: sans-serif;
  padding: 15px;
}

/* 口コミカード（外枠） */
.review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* アコーディオンのヘッダー */
.review-summary {
  display: block;
  padding: 20px 20px 15px 20px;
  cursor: pointer;
  outline: none;
  position: relative;
}
.review-summary::-webkit-details-marker {
  display: none;
}

/* ヘッダー内部の配置 */
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px; /* 星とテキストの距離を適度にキープ */
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 投稿者アイコン（画像用） */
.user-icon-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f0f0f0;
  display: block;
}

.user-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.user-name {
  font-weight: bold;
  color: #2d3748;
  font-size: 15px;
  line-height: 1.2;
}

/* 星5個 */
.star-rating {
  color: #ffb703;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* カテゴリタグ */
.category-badge {
  background-color: #edf2f7;
  color: #4a5568;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
}

/* ＋とーのアコーディオンアイコン */
.toggle-icon {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: auto;
}
.toggle-icon::before,
.toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #1a202c;
  transition: transform 0.25s ease;
}
/* 横線 */
.toggle-icon::before {
  top: 13px; left: 4px; width: 20px; height: 3px;
}
/* 縦線 */
.toggle-icon::after {
  top: 4px; left: 13px; width: 3px; height: 20px;
}

/* アコーディオンが開いているとき（縦線を消してマイナスにする） */
.review-card[open] .toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* ★閉じている時：頭から3行分だけ表示し、末尾に「...」を自動付与する設定 */
.review-card .review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* ★ここで3行に制限 */
  overflow: hidden;      /* はみ出た分を隠す */
  text-overflow: ellipsis; /* これが「...」を出す魔法のプロパティ */
}

/* ★開いた（open）時：制限を解除して全行をきれいに見せる */
.review-card[open] .review-text {
  display: block;
  overflow: visible;
  color: #2d3748;
}

/* 開いたときの下側コンテナ */
.review-content-body {
  padding: 0 20px 20px 20px;
}

/* 返信エリア */
.reply-box {
  background-color: #f8fafc;
  border-left: 4px solid #fd6767;
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
  animation: fadeIn 0.3s ease;
}

.reply-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* 返信の「店」マークアイコン（画像向けに修正） */
.reply-staff-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  object-fit: cover; /* 画像が歪まないように調整 */
}

.reply-owner {
  font-weight: bold;
  color: #fd6767;
  font-size: 14px;
}

.reply-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}


/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
  .review-header {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .category-badge {
    grid-column: 1 / -1;
    width: max-content;
    margin-top: 4px;
  }
}


/* 費用相場 */
/* ======================================= */
.g_table{
  table-layout: fixed;
  width: min(94%, 900px);
  margin: 0 auto;
  background: #fff;
  color: #333;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 12px;
}

.g_table th,
.g_table td{
  border: 1px solid #ccc;
  word-break: break-word;
  padding: 12px 10px;
  line-height: 1.7;
}

.g_table th{
  background: #f5f8fb;
  text-align: center;
  font-weight: 600;
  width: 30%;
}

.g_table td{
  text-align: left;
}

@media (max-width: 767px){
  .g_table{
    width: 100%;
    font-size: .95rem;
  }

  .g_table th,
  .g_table td{
    padding: 10px 8px;
  }
}

/* 特殊清掃：費用相場テーブル */
.tokusyu_price{
  table-layout: fixed;
  width: min(94%, 900px);
  margin: 0 auto;
  background: #fff;
  color: #333;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 12px;
}

.tokusyu_price td{
  border: 1px solid #ccc;
  word-break: break-word;
  padding: 12px 10px;
  line-height: 1.7;
  text-align: left;
}

/* 左側の項目セルに薄い背景色を付ける */
.tokusyu_price td.label{
  background: #f7f9fc;   /* 薄いグレー＋青みの背景色 */
  font-weight: 600;
  width: 40%;
}

@media (max-width: 767px){
  .tokusyu_price{
    width: 100%;
    font-size: .95rem;
  }

  .tokusyu_price td{
    padding: 10px 8px;
  }
}

/* =================================================
   孤独死コラム：手順フロー（完全新規クラス）
================================================= */
.flow-column-area {
  padding: 40px 20px;
  background: #fff;
  font-family: sans-serif;
}

.flow-main-logo {
  font-size: 24px;
  color: #333;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

/* スクショの枠線を再現 */
.flow-step-box {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #333333; /* カチッとした黒系の細い枠線 */
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
}

/* タイトル部分（h2を使わないルールに変更） */
.flow-step-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* タイトルの左右にある金色の飾り線を再現 */
.flow-step-title::before,
.flow-step-title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #c59b27; /* スクショのゴールドカラー */
}

/* リスト全体のコンテナ */
.flow-step-list {
  list-style: none; /* デフォルトの数字をリセット */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px; /* リスト同士の縦の隙間 */
}

/* 各リストアイテム（擬似要素の土台） */
.flow-step-list li {
  position: relative;
  padding-left: 50px; /* 左側に数字と矢印のスペースを確保 */
  line-height: 1.7;
  font-size: 16px;
  color: #222;
  text-align: left;
  min-height: 32px;
  display: flex;
  align-items: center; /* 数字とテキストの縦ベースラインを中央に揃える */
}

/* 1. 自動カウンタで数字の丸を作る（スクショ通りの濃い赤茶） */
.flow-step-list {
  counter-reset: flow-counter; /* カウンタを初期化 */
}

.flow-step-list li::before {
  counter-increment: flow-counter; /* 1ずつカウントアップ */
  content: counter(flow-counter); /* 数字を表示 */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 縦中央配置 */
  width: 30px;
  height: 30px;
  background-color: #800000; /* スクショの深い赤 */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* 2. 下に向かって伸びる縦ラインと「↓」矢印の設計 */
.flow-step-list li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 8px; /* 丸の中心（30pxの半分付近）に合わせる調整 */
  top: 100%; /* 丸のすぐ下からスタート */
  font-size: 14px;
  color: #800000; /* 線と矢印のカラーを統一 */
  font-weight: bold;
  height: 24px; /* 次のリストまでの隙間（gapと同じ値） */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
  margin-top: -2px; /* 少し上に食い込ませて隙間を無くす */
}


/* =================================================
   スマホ用レスポンシブ（768px以下）
================================================= */
@media (max-width: 768px) {
  .flow-step-box {
    padding: 30px 15px;
    margin: 0 10px;
    border-radius: 8px;
  }

  .flow-step-title {
    font-size: 18px;
    margin-bottom: 25px;
    gap: 8px;
  }

  .flow-step-title::before,
  .flow-step-title::after {
    width: 30px; /* スマホでは線を少し短く */
  }

  .flow-step-list {
    gap: 28px; /* スマホでは矢印の余白を少しだけ広げる */
  }

  .flow-step-list li {
    padding-left: 42px; /* スペースを微調整 */
    font-size: 14px; /* スマホで見やすい文字サイズ */
  }

  .flow-step-list li::before {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .flow-step-list li:not(:last-child)::after {
    left: 6px;
    height: 28px;
    font-size: 12px;
  }
}

/* =================================================
   メールフォーム contact_table
================================================= */
table {border-collapse:collapse;}

#formWrap {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  border: solid 1px #3498db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 1.6;
  font-size: 95%;
}

#formWrap h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 8px;
}

.form-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

table.formTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

table.formTable td, 
table.formTable th {
  border: 1px solid #e2e8f0;
  padding: 15px;
  vertical-align: middle;
}

table.formTable th {
  width: 30%;
  font-weight: 600;
  background: #f8fafc;
  color: #4a5568;
  text-align: left;
}

/* 必須バッジ */
.required {
  background: #e53e3e;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* 入力要素のモダン化 */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

form textarea {
  height: 120px;
  resize: vertical;
}

/* ボタンのデザイン */
.form-buttons {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
}

form input[type="submit"],
form input[type="reset"] {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn {
  background: #1e90ff;
  color: #fff;
}

.submit-btn:hover {
  background: #2980b9;
}

.reset-btn {
  background: #e2e8f0;
  color: #4a5568;
}

.reset-btn:hover {
  background: #cbd5e0;
}

.form-note {
  font-size: 0.8rem;
  color: #a0aec0;
  text-align: center;
  margin-top: 15px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  #formWrap {
    width: 90%;
    padding: 15px;
    margin: 20px auto;
  }
  
  table.formTable th, 
  table.formTable td {
    width: auto;
    display: block;
  }
  
  table.formTable th {
    border-bottom: none;
    padding-bottom: 5px;
  }
  
  table.formTable td {
    border-top: none;
    padding-top: 5px;
    margin-bottom: 10px;
  }
  
  .form-buttons {
    flex-direction: column;
  }
  
  form input[type="submit"],
  form input[type="reset"] {
    width: 100%;
  }
}


/* =================================================
   作業事例 case-card
================================================= */
.case-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  padding: 20px;
  margin: 24px auto;
  max-width: 1080px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* タイトル */
.case-card-header {
 border-bottom: 2px solid #800000;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.case-title {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: #1b4b7a;
}

.case-area,
.case-category {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* 基本情報（表） */
.case-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.case-info-table th,
.case-info-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e3e3e3;
}

.case-info-table th {
  width: 160px;
  background: #f1f8ff;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.case-info-table td {
  color: #444;
}

/* 基本情報ブロック */
.case-summary {
  margin-bottom: 20px;
}

/* 作業内容詳細 */
.case-details {
  margin-bottom: 20px;
}

.before-grid,
.after-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* PCは必ず5列 */
  gap: 12px;
}

/* スマホ・タブレットでは1列表示 */
@media (max-width: 768px) {
  .before-grid,
  .after-grid {
    grid-template-columns: 1fr;
  }
}


.list-7 {
    list-style-type: none;
    padding: 1em;
    border: 2px solid #2589d0;
}

.list-7 li {
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding: .3em;
}

.list-7 li::before {
    transform: rotate(-45deg);
    width: .4em;
    height: .4em;
    border-bottom: 3px solid #2589d0;
    border-right: 3px solid #2589d0;
    content: '';
}


/* =================================================
   ba-cards
================================================= */
.ba-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
  max-width: 1200px;    /* ← h2 と同じくらいの幅にする */
}

.ba-card {
  background: #f5f5f5;
  border-radius: 10px;
  padding-top: 6px;
  padding: 5px ;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ba-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0; 
  margin-bottom: 4px;
  color: #333;
  text-align: center;
}

.ba-flex {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.ba-before, .ba-after {
  width: 50%;
}

.ba-label {
  background: #778899;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
  text-align: center;
}

.ba-label.after {
  background: #ffa500;
}

.ba-before img,
.ba-after img {
  width: 100%;
  border-radius: 6px;
  display: block;
}


/* ▼ お客様の声（全体の枠） */
.case-voice-block {
  background: #fff8f0;              /* 淡いクリーム色で高級感 */
  border: 1px solid #ffbc7a;        /* 上品なオレンジ枠 */
  border-radius: 10px;              /* 角丸で柔らかい印象 */
  padding: 20px 22px;
  margin: 32px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* ほんのり影 */
}

/* ▼ 見出し（アイコン付き） */
.case-section-title2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #800000;                   /* 深赤で統一 */
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ▼ お客様の声テキスト */
.case-voice {
  background: #f7eadf;              /* 淡いベージュ背景 */
  border-left: 4px solid #ffbc7a;   /* 左ラインで強調 */
  padding: 14px 16px;
  margin: 0;
  line-height: 1.8;
  color: #444;
  font-size: 0.95rem;
  border-radius: 6px;
}


/* =================================================
   貴重品発見ギャラリー
================================================= */

/* ギャラリー全体 */
.important-gallery {
  margin: 40px auto;
  padding: 0 20px;
}

/* カード一覧（最大6列・枚数に応じて自動調整） */
.important-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

/* カード本体 */
.important-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 画像ラップ */
.important-img-wrap {
  position: relative;
}

/* 画像 */
.important-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ラベル（画像上に表示） */
.important-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.95); /* 白背景（ほぼ不透明） */
  color: #000; /* 黒文字 */
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 4px;
  font-weight: bold;
}



/* =================================================
   作業事例一覧
================================================= */
/* 全体ラッパー */
.case-wrapper {
  margin: 40px 0;
  padding: 20px;
  background: #fff;
}

/* 対応エリアボックス */
.case-area-box {
  margin-bottom: 30px;
  padding: 16px 20px;
  background: #fff8f0;
  border: 1px solid #e6d5b8;
  border-radius: 8px;
}

/* 対応エリアタイトル */
.case-area-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 作業事例一覧タイトル */
.case-list-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* リスト（2列グリッド） */
.case-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  padding-left: 0;
  list-style: none;
}

/* 各項目 */
.case-item {
  margin: 0;
}

/* 通常リンク */
.case-link {
  display: block;
  padding: 8px 6px;
  text-decoration: none;
  color: #0056a3;
  font-size: 15px;
  border-left: 4px solid #0099ff;
  background: #fff;
  border-radius: 4px;
  transition: background 0.25s ease, border-left-color 0.25s ease;
}

/* ホバー */
.case-link:hover {
  background: #cce5ff;
  border-left-color: #0077cc;
}

/* 市名 */
.case-city {
  font-weight: bold;
}

/* サービス名 */
.case-service {
  font-size: 13px;
  color: #555;
}

/* 準備中リンク */
.case-link-disabled {
  display: block;
  padding: 8px 6px;
  text-decoration: none;
  color: #777;
  font-size: 15px;
  border-left: 4px solid #ccc;
  background: #f7f7f7;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0.7;
  cursor: default;
}





/* NAPテーブル（PC） */
.nap_table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  overflow: hidden;
}

.nap_table th,
.nap_table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e3e3e3;
  vertical-align: top;
}

.nap_table th {
  width: 180px;
  background: #f7f9fc;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.nap_table td {
  color: #444;
}

/* 最終行の線を消す */
.nap_table tr:last-child th,
.nap_table tr:last-child td {
  border-bottom: none;
}

/* ▼スマホ（768px以下）では縦1列にする */
@media (max-width: 768px) {
  .nap_table th,
  .nap_table td {
    display: block;
    width: 100%;
  }

  .nap_table th {
    background: #f7f9fc;
    border-bottom: none;
    padding-bottom: 4px;
  }

  .nap_table td {
    padding-top: 0;
    margin-bottom: 12px;
  }
}



/* =================================================
   市町村
================================================= */

.case-local-info {
  margin-top: 32px;
  padding: 20px;
  background: #fff8f0;
  border: 1px solid #e6d5b8;
  border-radius: 8px;
}

.case-section-subtitle {
  font-size: 1rem;
  margin: 12px 0 6px;
  color: #800000;
}

.niiza-list {
  padding-left: 2em; /* 左スペース */
  margin-top: 8px;
  line-height: 1.7;
}

.niiza-list li {
  margin-bottom: 4px;
}

/* =========================================================
   業務提携ページ専用：提携内容カードレイアウト
========================================================= */
.tieup-content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

/* リード文 */
.tieup-content-lead {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3.5rem;
  font-weight: 500;
}

/* カードを並べるグリッド（PC時は2列） */
.tieup-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 11fr);
  gap: 2.5rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* 個別のカードデザイン */
.tieup-content-card {
  background: #d6e9ca;
  border: 1px solid #e0e5df; /* ほんのり緑がかった上品なグレー */
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* マウスホバーで少し浮き上がる演出 */
.tieup-content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* カード内のヘッダー部分 */
.tieup-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #506d2f; /* アイメモリア様のイメージカラー（深緑） */
  padding-bottom: 0.8rem;
}

/* ナンバリングラベル */
.tieup-card-label {
  font-size: 1.4rem;
  font-weight: 800;
  color: #506d2f;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1;
}

/* 各項目のタイトル */
.tieup-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.3;
}

/* 各項目の説明文 */
.tieup-card-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  margin: 0 !important;
  padding: 0 !important;
  text-align: justify;
}

/* 改行コントロール用 */
.pc-only { display: inline; }

/* =========================================================
   スマホ専用設定（画面幅768px以下）
========================================================= */
@media (max-width: 768px) {
  .tieup-content-section {
    padding: 2.5rem 1rem;
  }
  
  .tieup-content-lead {
    text-align: left; /* スマホでは左寄せが見やすい */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .pc-only { display: none; } /* スマホでは変な位置での改行を防ぐ */

  /* スマホでは縦1列に切り替え */
  .tieup-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tieup-content-card {
    padding: 1.5rem 1.2rem;
  }

  .tieup-card-header h3 {
    font-size: 1.1rem;
  }
  
  .tieup-card-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}


/* =================================================
   pagetop
================================================= */
button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 80px;
  right: -80px;
  bottom: 10%;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: #008000;
  transition: .2s;
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
}

button i{
  position: absolute;
  font-size: 30px;
  color: #FFF;
  top: 15px;
  font-weight: 300;
}

button p{
  margin: 0;
  font-size: 15px;
  bottom: 13px;
  position: absolute;
}

.is-active {
  opacity: 1;
  visibility: visible;
}

button.is-active {
  right: -2px;
}

/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {

  /* ページトップボタンをスマホで非表示 */
  button {
    display: none !important;

  }

}

/* *****************************************************
  footer
********************************************************* */
footer {
	background: #2a2922 !important; /* bark */
	color: #ffffff !important;      /* 文字色 */
	padding: 4rem 2rem;
	width: 100%;
}

footer * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.ft-wrapper {
  width: 80%;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto; 
}


/* 共通ブロック */
.ft-block {
  flex: 1;
  min-width: 260px;
}

/* タイトル */
.ft-title {
  color: #33ff66;    /* 若緑 わかみどり */
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* 会社ロゴ */
.ft-logo {
  font-size: 1.5rem;
  color: #ffa500;
  margin-bottom: 1rem;
}

/* 住所 */
.ft-address {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* リスト共通 */
.ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-item {
  margin-bottom: 0.4rem;
}

/* 通常リンク */
.ft-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.ft-link:hover {
  color: #33ccff;
}

/* 準備中リンク */
.ft-link-disabled {
  color: #999;
  pointer-events: none;
  font-size: 0.95rem;
  opacity: 0.6;
}

/* コピーライト */
.ft-copy {
  background: #7d5642;
  text-align: center;
  padding: 1.5rem 0;
}

.ft-copy small {
  color: #fff;
  font-size: 0.8rem;
}

/* 緑色テキスト（アイコン用） */
.yellow {
  color: #ffff00 !important;
  font-size: 100%;
  font-weight: 500;
}

/* アイコン専用（余白調整） */
.ft-icon {
  margin-right: 0.4rem;
}

/* リンクの基本スタイル */
.ft-link-base {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

/* ホバー時の色（濃いゴールド） */
.ft-link-hover:hover {
  color: #ffd700;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .ft-wrapper {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }
}




/* =================================================
   スマホ下固定CTA
================================================= */

.sp-cta {
    display: none;
}

/* スマホ用768px以下 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {

    .sp-cta {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.18);
    }

    /* 共通デザイン */
    .sp-cta a {
        flex: 1; /* ← 3分割でも均等に並ぶ */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 58px;
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
        transition: opacity 0.25s ease;
    }

    .sp-cta a:hover {
        opacity: 0.92;
    }

    .sp-cta a i {
        font-size: 18px;
    }

    /* 固有色 */
    .sp-cta-tel { background: #d63b3b; }
    .sp-cta-line { background: #06c755; }
    .sp-cta-top { background: #333; } /* ページトップ */

    /* CTAの高さ分の余白 */
    body {
        padding-bottom: 58px;
    }
}





/* Font装飾 */
/* ======================================= */
.red {color: #ff4500 !important;font-size: 100%;font-weight: bold;}	/* orangered */
.red_b {color: #ff4500 !important;font-size: 120%;font-weight: bold;}	/* orangered */
.red_c {color: #e6007e !important;font-size: 180%;font-weight: bold;}	/* pinkred */
.orange_a {color: #ffa500 !important;font-size: 100%;font-weight: bold;}	/* orange */
.blue {color: #0000cd !important;font-size: 100%;font-weight: bold;}	/* mediumblue */
.blue_b {color: #00008b !important;font-size: 120%;font-weight: bold;}	/* darkblue */
.pink_b {color: #c71585 !important;font-size: 120%;font-weight: bold;}	/* mediumvioletred */
.aqua {color: #00ffff !important;font-size: 100%;font-weight: bold;}	/* cyan */
.aqua_s {color: #00ffff !important;font-size: 60%;font-weight: bold;}	/* cyan */
.aqua {color: #00ffff !important;font-size: 100%;font-weight: bold;}	/* cyan */
.pink {color: #ff66cc !important;font-size: 100%;font-weight: 600;}	/* pink */
.green {color: #98fb98 !important;font-size: 100%;font-weight: 500;}	/* lightgreen */
.cyuki {color: #ffff00 !important;font-size: 100%;font-weight: 500;}	/* 中黄 ちゅうき */


/*その他
---------------------------------------------------------------------------*/
.color-check, .color-check a {color: #c3547b !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 100%;display: block;}
.wl {width: 100%;display: block;}
.padding-x {padding: 0 var(--content-space-l);}
.mt0 {margin-top: 0px !important;}
.mt20 {margin-top: 20px !important;}
.mt1rem {margin-top: 1rem !important;}
.mt3rem {margin-top: 3rem !important;}
.mb0 {margin-bottom: 0px !important;}
.mb1rem {margin-bottom: 1rem !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.8);color: #fff; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.look .color-check {color: yellow !important;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.large_b {font-size: 1.2em; letter-spacing: 0.1em;font-weight: bold;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.is-clip {overflow: hidden;}

.marker {background: linear-gradient(transparent 70%, yellow 70%);}

/*大きな画面の場合*/
.large-screen .ws {width: 50%;}
.large-screen .sh {display: none;}
.large-screen .pc {display: block;}
