@charset "utf-8";



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


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


@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;500;700&display=swap');

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");
@import url("mainimg.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #df9020;			/*テンプレートのテーマカラー*/
	--primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/

	--secondary-color: #df9020;			/*テンプレートのサブカラー*/
	--secondary-inverse-color: #fff;	/*secondary-colorの対となる色*/
	
	--accent-color: #FFA500;			/*テンプレートのアクセントカラー*/
	--accent-inverse-color: #fff;		/*accent-colorの対となる色*/

	/*余白の一括管理用。主に左右の余白に使っています。4rem＝4文字分。*/
	--content-space: 4rem;
	
}


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


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


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}

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


body {
	margin: 0;padding:0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #555;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

/*リセット*/
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: var(--content-space);	/*section内の余白。css冒頭のcontent-spaceを読み込みます。*/
}


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

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


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 64px;
	z-index: 9999;
	padding: 0 var(--content-space);
	color: #fff;
	background: transparent;
	transition: background 0.35s ease, box-shadow 0.35s ease;
}
header a {color: inherit;}

/*ロゴ（黒ロゴ固定・スクロール前後でサイズ位置を変えない）*/
#logo {
	position: fixed;
	top: 0;
	left: 20px;
	z-index: 10000;
	margin: 0;
	padding: 0;
	height: 64px;
	line-height: 1;
	display: flex;
	align-items: center;
}
#logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	height: 64px;
}
#logo img,
#site-logo {
	display: block;
	width: 150px !important;
	height: auto;
	transform: none !important;
	transition: none !important;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*ヘッダーブロック*/
	header {
		display: flex;
		justify-content: space-between;
		gap: 2rem;
		align-items: center;
	}

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


/*header-box（ヘッダー右側にあるボタン）
---------------------------------------------------------------------------*/
/*ボックス全体*/
#header-box * {margin: 0;padding: 0;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	#header-box {
		margin-right: 30px;	/*ハンバーガーアイコンと重ならないように適当な余白*/
	}

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


/*ボタンが入ったボックス*/
#header-box .btn {
	list-style: none;
	display: flex;
	gap: 1rem;	/*ボタン同士の間に空けるスペース。１文字分。*/
}

/*メニュー１個あたり（ここにない設定は、下の方にある「btn共通設定」にあります。）*/
#header-box .btn a {
	display: block;text-decoration: none;
	padding: 0.5rem 2rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;		/*角を少し丸くする*/
}

/*ボタンに使用しているアイコン*/
#header-box .btn i {
	margin-right: 1rem;		/*アイコンの右側に１文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

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

	/*ボタンが入ったボックス*/
	#header-box .btn {
		display: inline-block;
	}
	
	/*ボタン１個あたり*/
	#header-box .btn li {
		margin-bottom: 0.5rem;
	}

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


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
#menubar {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 100px var(--content-space) 50px;
	background: #4e5d66;
	z-index: 99999;
}

/*メニュー１個あたり*/
#menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: flex;
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;

	right: 0;
	top: 0;

	width: 70px;
	height: 70px;

	background: transparent;

	border-radius: 0;

	transition:
		background 0.3s,
		backdrop-filter 0.3s;
}
/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #4e5d66;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;

	width: 35px;
	height: 2px;

	background: #fff;

	transition:
		transform 0.3s,
		opacity 0.3s,
		background 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 26px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 42px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}

/* 白背景になった時の三本線 */
body.header-white #menubar_hdr span {
	background: #222 !important;
}

/* ハンバーガー背景は常に透明 */
#menubar_hdr,
#menubar_hdr.ham {
	background: transparent !important;
}

/*ヘッダーにある１行のお知らせ
---------------------------------------------------------------------------*/
.new-top * {margin: 0;padding: 0;}

/*ブロック全体*/
.new-top {
	position: absolute;
	top: 80vh;	/*上から80%の場所に配置*/
	z-index: 1;
	width: 80vw;	/*幅は80%*/
	margin-left: 10vw;	/*左に10%空ける*/
	display: flex;
	align-items: center;
	padding: 1rem;	/*ボックス内の余白。1文字分。*/
	background: #fff;	/*背景色。*/
	border-radius: 5px;	/*角を丸くする*/
}

/*マウスオン時に透明度を80%に*/
.new-top a:hover {
	opacity: 0.8;
}

/*「お知らせ」の見出し*/
.new-top h2 {
	font-size: 1rem;
	font-weight: normal;
	background: #555;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 3px;	/*角を少しだけ丸く*/
	margin-right: 1rem;	/*右に空けるスペース。テキストブロックとの間に空けるスペースです。*/
	padding: 0 1rem;	/*見出し内の余白。上は0で、左右に１文字分。*/
}

/*テキストのブロック*/
.new-top .text {
	flex: 1;
	
	/*以下4行は、末尾を...として１行にまとめる為のスタイル*/
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*ブロック右側にある「一覧」*/
.new-top .new-list {
	align-self: flex-end;
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*トップページ以外のコンテンツ*/
body:not(.home) #contents {
	padding-top: 10rem;		/*上に10文字分の余白を空ける*/
	padding-bottom: 10rem;	/*下に10文字分の余白を空ける*/
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


/*p要素（段落タグ）
---------------------------------------------------------------------------*/
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	gap: 1.2rem;
}

/*見出し内のspan（小さな装飾文字と上部のアクセントライン）*/
main h2 span.small {
	display: inline-block;
	border-top: 2px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ90%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 0.8rem;
	margin-top: 1rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出しをセンタリングする場合*/
main h2.c {
	align-items: center;
}



/*2カラムブロック　※900px未満では１カラム（私たちのこだわりブロック）
---------------------------------------------------------------------------*/
.list-half * {margin: 0;padding: 0;}

/*背景画像*/
#kodawari {
	background: url("../images/bg-kodawari.png") no-repeat left top / 50vw;	/*left(左)、top(上)に配置し、幅は画面幅の50%に。*/
}

/*２カラムを囲むブロック*/
.list-half .list {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける*/
}

/*ブロック内のh4見出し*/
.list-half .list h4 {
	font-size: 1.4rem;	/*文字サイズを1.4倍*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

/*ブロック内のh4内のspan（小さな装飾文字）*/
.list-half .list h4 span {
	display: block;
	opacity: 0.5;	/*透明度50%*/
	font-weight: normal;
	font-size: 0.5em;	/*文字サイズを親要素の50%*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く*/
}

/*画像ブロック共通*/
.list-half .image-l img, .list-half .image-r img {
	border-radius: 50px;	/*角を丸くする指定。*/
	box-shadow: 10px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*２カラムを囲むブロック*/
	.list-half .list {
		flex-direction: row;			/*子要素を横並びにする*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	}

	/*画像ブロック共通*/
	.list-half .image-l, .list-half .image-r {
		width: 50%;			/*画像の幅*/
	}

	/*画像を右に配置する場合*/
	.list-half .image-r {
		margin-left: 2rem;	/*画像の左側に空けるスペース*/
	}

	/*画像を左に配置する場合*/
	.list-half .image-l {
		order: -1;
		margin-right: 2rem;	/*画像の右側に空けるスペース*/
	}

	/*テキストブロック*/
	.list-half .text {
		flex: 1;
	}

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


/*list-grid7（サービス紹介ブロック）
---------------------------------------------------------------------------*/
.list-grid7 .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid7 .list {
    display: grid;
	position: relative;
	border-radius: 5px;		/*角を少しだけ丸く*/
	background: #fafafa;	/*背景色*/
	color: #555;			/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 2rem;			/*ボックス内の余白。２文字分。*/
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース。2文字分。*/
}

/*ボックス内のh4見出し*/
.list-grid7 .list h4 {
	text-align: center;		/*テキストをセンタリング*/
	font-size: 1.3rem;		/*文字サイズ130%*/
	margin-bottom: 0.5rem;	/*下に0.5文字分の余白を空ける*/
	color: #4e5d66;	/*文字色。css冒頭のprimary-colorを読み込みます。*/
}

/*h4内のspan（小さな装飾文字）*/
.list-grid7 .list h4 span {
	display: block;
	font-weight: normal;	/*デフォルトだと太字なので標準に*/
	font-size: 0.7em;		/*文字サイズを70%*/
}

/*ボックス内のp要素*/
.list-grid7 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/*ボックス内のfigure画像*/
.list-grid7 .list figure {
	margin: 0 auto;
	margin-bottom: 1rem;	/*画像の下に空けるスペース*/
}


	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体を囲むブロック*/
	.list-grid7 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem	/*ブロックの間に空けるマージン的な指定。２文字分。*/
	}

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


/*ご利用の流れ
---------------------------------------------------------------------------*/
.flow-box * {margin: 0;padding: 0;}

/*背景画像*/
#flow {
	background: url("../images/bg-flow.png") no-repeat right top / 50vw;	/*right(右)、top(上)に配置し、幅は画面幅の50%に。*/
}

/*ステップボックス１個あたりの設定*/
.flow-box {
	position: relative;
	margin-bottom: 4rem;	/*下に空けるスペース、2文字分。ステップボックス同士のスペースです。*/
}

/*ボックス内のh3見出し（大きな端末で左側に配置される背景色つきの見出し）*/
.flow-box .title h3 {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
	text-align: center;	/*テキストをセンタリング*/
	padding: 2rem;		/*見出し内の余白。２文字分。*/
	margin-bottom: 2rem;	/*見出しの下に空けるスペース。２文字分。*/
}

/*h3内のspan（小さな装飾文字）*/
.flow-box .title h3 span {
	display: block;
	font-size: 0.7em;	/*文字サイズ。親要素の70%。*/
}

/*「STEP01」〜「STEP04」のテキスト*/
.flow-box .step-num {
	display: inline-block;
	position: absolute;
	left: 0px;
	top: -50px;	/*本来の場所から上に50pxずらす*/
	width: 100%;
	font-size: 3rem;	/*文字サイズ300%*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.flow-box {
		display: flex;
		align-items: flex-start;
		gap: 5rem;	/*左右のブロック同士の間に空けるスペース。５文字分。*/
	}
	
	/*「STEP01」〜「STEP04」のテキスト*/
	.flow-box .step-num {
		top: -100px;		/*本来の場所から上に100pxずらす*/
		font-size: 5rem;	/*文字サイズ500%*/
		opacity: 0.15;		/*透明度。色が15%出た状態。*/
	}

	/*h3見出しが入ったブロック（大きな端末で左側に配置される背景色つきの見出しを囲むブロック）*/
	.flow-box .title {
		width: 30%;	/*幅*/
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}

	/*ボックス内のh3見出し（大きな端末で左側に配置される背景色つきの見出し）*/
	.flow-box .title h3 {
		margin-right: auto;
		border-radius: 0 100px 100px 0;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	}

	/*大きな端末で右側に配置されるテキストブロックを囲むボックス*/
	.flow-box .text {
		flex: 1;
	}

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


/*ステップボックス
---------------------------------------------------------------------------*/
ul.step {
	margin: 0 !important;padding: 0 !important;
	list-style: none;
}

/*ステップ１個あたり*/
ul.step li {
	border: 2px solid var(--primary-color);	/*枠線の幅、線種、varは色の指定で、css冒頭のprimary-colorを読み込みます。*/
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース。２文字分。ボックス同士に空ける余白です。*/
	position: relative;
}

/*「▼」のマーク*/
ul.step li::after {
	content: "▼";	/*このテキストを出す*/
	transform: scaleX(2);	/*２倍の大きさ*/
	position: absolute;
	left: 50%;	/*左からの配置場所。厳密に中央ではありませんが、テキストが小さいので問題ないかと。*/
	bottom: -2rem;	/*下からの配置場所。本来の場所より上に２文字分の場所。*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	opacity: 0.3;	/*透明度。色が30%出た状態。*/
}

/*最後のステップボックスには「▼」を出さない*/
ul.step li:last-child::after {
	content: "";
}


/*list-yoko-scroll（お客様の声ブロック）
---------------------------------------------------------------------------*/
.list-yoko-scroll * {margin: 0; padding: 0;}

/*横スクロールブロック全体*/
.list-yoko-scroll {
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	scrollbar-width: none;	/* Firefox用 */
	scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
	padding-top: 30px;
	padding-bottom: 30px;
	margin-right: calc(-1 * var(--content-space));
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
	width: 60%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	flex-shrink: 0;
	scroll-snap-align: start;
	margin-right: 2rem;	/*ふきだしごとの間に空けるスペース。２文字分。*/
	position: relative;
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	border-radius: 1rem;	/*角を丸くする指定*/
	padding: 2rem;			/*ボックス内の余白。２文字分。*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*ブロック内の１個あたり*/
	.list-yoko-scroll .list {
		width: 28%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	}

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


/*偶数版目のふきだしだけ、下に30pxずらす*/
.list-yoko-scroll .list:nth-of-type(even) {
	transform: translateY(30px);
}

/*ふきだしぐち（▲の形）*/
.list-yoko-scroll .list::before {
	content: "▲";	/*このテキストを出す*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
	font-size: 30px;	/*サイズ*/
	position: absolute;
	left: 30%;	/*ふきだしの左からの配置場所。お好みで。*/
	top: -40px;	/*ふきだしの上からの配置場所*/
}

/*ふきだし内の.text（テキスト）ブロック*/
.list-yoko-scroll .list .text {
	font-size: 0.85rem;	/*文字サイズ85%*/
	line-height: 1.5;	/*行間*/
}


/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	font-size: 1.3rem;	/*文字サイズ130%*/
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定。*/
}

/*質問*/
.faq dt {
	display: flex;
	align-items: flex-start;
	border-top: 1px solid rgba(255,255,255,0.3);	/*上の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定。*/
	padding: 1rem;		/*ブロック内の余白。１文字分。*/
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

/*「＋」アイコン（閉じている場合）*/
.faq dt::before {
	content: "＋";	/*アイコン画像の指定*/
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
	background: #4e5d66;		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: #fff;	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	width: 2rem;		/*幅*/
	line-height: 2rem;	/*高さ*/
	text-align: center;
	border-radius: 50%;	/*円形にする*/
	transform: translateY(5px);	/*アイコンの上下バランスの微調整*/
}

/*「ー」アイコン（開いている場合）*/
.faq dt.active::before {
	content: "ー";	/*アイコン画像の指定*/
}

/*回答*/
.faq dd {
	margin: 0 1rem 1rem 4rem;	/*ボックスの外側にとる余白。上、右、下、左への順番。*/
	padding: 1rem 2rem;	/*ボックスの内側の余白。上下に1文字、左右に２文字分。*/
	background: #4e5d66;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 5px;	/*角を丸くする指示*/
}


/*btn共通設定（ヘッダーと、フッターの上のボックス内にあるボタンの共通設定）
---------------------------------------------------------------------------*/
.btn a {
	display: block;text-decoration: none;
	background: #4e5d66;	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*マウスオン時*/
.btn a:hover {
	background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}


/* =========================
   お問い合わせBOX
========================= */

.btn-box {
	max-width: 700px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ul */
.btn-box .btn {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: auto;
	padding: 0;
	margin: 0;
}

/* 各ボックス */
.btn-box .btn li {
	width: 100%;
	list-style: none;
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	border: 1px solid #eee;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

/* アイコン */
.btn-box .btn li i {
	font-size: 3rem;
	color: #4e5d66;
	margin-bottom: 1.2rem;
	display: block;
}

/* 上の説明 */
.btn-box .sub-title {
	font-size: 1.1rem;
	color: #555;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

/* 電話番号 */
.btn-box .tel-number {
	display: block;
	width: 100%;
	max-width: 100%;
	font-size: clamp(1.4rem, 5vw, 3.6rem);
	font-weight: 700;
	line-height: 1.2;
	color: #222;
	letter-spacing: -0.03em;
	margin: 0 auto 1rem;
	text-align: center;
	white-space: nowrap;
	word-break: keep-all;
	overflow: visible;
}

/* スマホ */
@media screen and (max-width:600px){

	.btn-box {
		width: 100%;
		max-width: 100%;
		padding: 1rem 0.6rem;
	}

	.btn-box .btn li {
		padding: 1.5rem 0.5rem;
	}

	.btn-box .tel-number {
		font-size: clamp(1.55rem, 7vw, 1.9rem);
		letter-spacing: -0.06em;
	}
}


/* 営業時間 */
.btn-box .time {
	font-size: 1rem;
	color: #666;
}

/* メールボタン */
.btn-box .mail-btn {
	display: block;
	background: linear-gradient(135deg,#df9020,#f6a13a);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
	padding: 1.2rem;
	border-radius: 14px;
	margin-top: 1.5rem;
	box-shadow: 0 5px 15px rgba(223,144,32,0.3);
}

/* 24時間受付 */
.btn-box .mail-note {
	margin-top: 1rem;
	font-size: 1.1rem;
	color: #555;
	letter-spacing: 0.05em;
}

/* スマホ */
@media screen and (max-width:600px){

	.btn-box {
		padding: 1rem;
		border-radius: 14px;
	}

	.btn-box .btn li {
		padding: 1.5rem 1rem;
	}

	.btn-box .sub-title {
		font-size: 1rem;
	}

	.btn-box .tel-number {
		font-size: 2.5rem;
	}

	.btn-box .mail-btn {
		font-size: 1.2rem;
		padding: 1rem;
	}

}


/*フッター
---------------------------------------------------------------------------*/
#footer * {margin: 0;padding: 0;}
#footer ul {list-style: none;}

/*ブロック全体*/
#footer {
	background: #ffffff;		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: #555;	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: var(--content-space);	/*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
}

#footer h2 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #4e5d66;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	position: relative;
}

#footer h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: #df9020;
	margin: 14px auto 0;
}

#footer h2 span {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: #999;
	margin-top: 0.5rem;
}

#footer table {
  border-collapse: separate;
  border-spacing: 0 8px; /* 行と行の間にスペース */
}

#footer table td,
#footer table th {
  padding: 12px 16px;
  background: #f9f9f9;
  border-radius: 6px;
}

/*ロゴやSNSアイコンが入ったブロック*/
#footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
}

/*メニューブロック*/
#footer div.footer2 {
    flex: 1;
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

	#footer {
		display: flex;
		gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
	}

	/*ロゴやSNSアイコンが入ったブロック*/
	#footer div.footer1 {
		text-align: left;
		width: 100%;
	    max-width: 1200px;
	    margin: 0 auto;
	}

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

#footer .footer1 img {
	width: 450px;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {
  #footer .footer1 img {
		width: 340px;
		max-width: 90%;
		margin: 0 auto;
	}
}



/*Copyright部分*/
#footer small {
	display: block;
	text-align: right;
	margin-top: 2rem;
}


/*SNSアイコン
---------------------------------------------------------------------------*/
#footer .sns {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}

#footer .sns i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*Google Map用
---------------------------------------------------------------------------*/
#footer .iframe {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
#footer .iframe iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background: #4e5d66;		/*背景色。css冒頭のsecondary-colorを読み込みます。*/
	color: #fff;	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}


/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*共通設定*/
.bg-slideup {
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
}

/*slideup1画像*/
.slideup1 {
    background-image: url("../images/bg-slideup1.jpg");	/*背景画像の読み込み*/
	color: #fff;
	border-radius: 10vw 10vw 0 0;
}

/*slideup2画像*/
.slideup2 {
    background-image: url("../images/bg-slideup2.jpg");	/*背景画像の読み込み*/
	position: relative;
}



/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 2px;		/*角を丸くする指定*/
	padding: 0 1rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.85);	/*85%のサイズに縮小*/
	border: 1px solid #777;	/*枠線の幅、線種、色*/
}

/*icon-bg1。サンプルテンプレートでは「重要」と書いてあるマーク*/
.new .icon-bg1 {
	border-color: transparent;	/*枠線を透明に*/
	background: #cd0000;		/*背景色*/
	color: #fff;				/*文字色*/
}

/*icon-bg2。サンプルテンプレートでは「サービス」と書いてあるマーク*/
.new .icon-bg2 {
	border-color: transparent;				/*枠線を透明に*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

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


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*fadeInのキーフレーム設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual {background-image: none;}
.manual {
	padding: 5rem;
}
.manual h2,.manual h3 {
	margin-top: 3rem;
}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

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

.price-box {
    margin-top: 40px;
}

.price-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.price-table th {
    background: #f5f5f5;
}

.price-note {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    text-align: center;
}


.lead {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center; /* ←これ追加 */
}


#formWrap {
	max-width: 900px;
	margin: 50px auto;
	padding: 50px 40px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e7eb;
}

#formWrap h3 {
	margin: 0 0 15px;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: #222;
	letter-spacing: 0.05em;
}

#formWrap > p {
	margin: 0 0 30px;
	text-align: center;
	color: #666;
	line-height: 1.8;
	font-size: 0.95rem;
}

.formTable {
	width: 100%;
	border-collapse: collapse;
}

.formTable tr {
	border-bottom: 1px solid #eaeaea;
}

.formTable th,
.formTable td {
	padding: 20px 10px;
	vertical-align: top;
}

.formTable th {
	width: 30%;
	font-weight: 700;
	color: #222;
	font-size: 0.95rem;
	text-align: left;
}

.formTable td {
	width: 70%;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.8;
}

/* 入力欄共通 */
.formTable input[type="text"],
.formTable input[type="email"],
.formTable input[type="tel"],
.formTable select,
.formTable textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 1rem;
	color: #333;
	background: #f8fafc;
	border: 1px solid #dcdfe4;
	border-radius: 10px;
	outline: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

/* フォーカス時 */
.formTable input[type="text"]:focus,
.formTable input[type="email"]:focus,
.formTable input[type="tel"]:focus,
.formTable select:focus,
.formTable textarea:focus {
	border-color: #2c7be5;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(44, 123, 229, 0.12);
}

/* テキストエリア */
.formTable textarea {
	min-height: 180px;
	resize: vertical;
}

/* ラジオ・チェックボックス */
.formTable input[type="radio"],
.formTable input[type="checkbox"] {
	margin-right: 8px;
	transform: scale(1.1);
}

.formTable label {
	margin-right: 20px;
	cursor: pointer;
}

/* 必須表記を目立たせるなら使える */
.required {
	display: inline-block;
	margin-left: 8px;
	padding: 3px 8px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	background: #e53935;
	border-radius: 999px;
	vertical-align: middle;
}

/* ボタンエリア */
#formWrap p[align="center"] {
	margin-top: 35px;
	text-align: center;
}

/* 送信・リセットボタン */
#formWrap input[type="submit"],
#formWrap input[type="reset"] {
	appearance: none;
	border: none;
	padding: 14px 32px;
	margin: 0 8px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* 送信ボタン */
#formWrap input[type="submit"] {
	background: #FFA500;
	color: #fff;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

#formWrap input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
}

/* リセットボタン */
#formWrap input[type="reset"] {
	background: #f3f4f6;
	color: #333;
	border: 1px solid #d1d5db;
}

#formWrap input[type="reset"]:hover {
	background: #e5e7eb;
	transform: translateY(-2px);
}

/* 注意書き */
#formWrap p:last-child {
	margin-top: 25px;
	font-size: 0.85rem;
	color: #888;
	text-align: center;
	line-height: 1.7;
}

/* =========================
   レスポンシブ
========================= */
@media screen and (max-width: 768px) {
	#formWrap {
		padding: 35px 20px;
		margin: 30px 15px;
		border-radius: 16px;
	}

	.formTable,
	.formTable tbody,
	.formTable tr,
	.formTable th,
	.formTable td {
		display: block;
		width: 100%;
	}

	.formTable tr {
		padding: 15px 0;
	}

	.formTable th {
		padding: 0 0 10px;
		font-size: 0.95rem;
	}

	.formTable td {
		padding: 0;
	}

	#formWrap input[type="submit"],
	#formWrap input[type="reset"] {
		width: 100%;
		margin: 8px 0;
	}
}

.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}


.main-copy {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;

  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0;
}

.main-copy h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    letter-spacing: 0.05em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.main-copy h2 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

.main-copy p {
  font-size: 18px;
  letter-spacing: 1px;
}


@media (max-width: 768px) {
  .main-copy h2 {
    font-size: 20px;
  }

  .main-copy p {
    font-size: 14px;
  }
}

.main-copy h2,
.main-copy p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}


#concept1 .text,
#concept2 .text,
#concept3 .text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

#concept1 .text p,
#concept2 .text p,
#concept3 .text p {
  line-height: 1.8;
}

#concept1 .text h4,
#concept2 .text h4,
#concept3 .text h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

#concept1,
#concept2,
#concept3 {
  padding: 80px 20px;
}


/* 会社概要全体 */
.company-box {
	max-width: 1600px;
	margin: 50px auto 0;
}

/* 見出し */
.company-box h3 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border-left: 3px solid var(--primary-color);
  padding-left: 12px;
  font-weight: 500;
  color: #333;
}

/* テーブル */
.company-table {
  width: 100%;
  font-size: 1.1rem;
}

/* 行 */
.company-table tr {
  border-bottom: 1px solid #e5e5e5;
  transition: 0.3s;
}

/* ホバー */
.company-table tr:hover {
  background: #fafafa;
}

/* 左（項目） */
.company-table th {
  width: 220px;
  text-align: left;
  padding: 22px 15px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
  vertical-align: top;
}

/* 右（内容） */
.company-table td {
  padding: 22px 15px;
  line-height: 2;
  color: #333;
}

/* リンク */
.company-table a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.company-table a:hover {
  color: var(--accent-color);
}

/* 最後の線消す */
.company-table tr:last-child {
  border-bottom: none;
}

/* =========================
   スマホ最適化（重要）
========================= */
@media screen and (max-width: 600px) {

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .company-table th {
    font-size: 0.8rem;
    color: #888;
  }

  .company-table td {
    padding-bottom: 18px;
  }

  .company-table tr {
    margin-bottom: 15px;
    display: block;
  }

}


#message .text {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

#message p {
  margin-bottom: 20px;
}

/* =========================
   代表あいさつ レスポンシブ文字サイズ
========================= */

#message .text p {
	font-size: clamp(0.95rem, 2vw, 1.15rem);
	line-height: 2.2;
	letter-spacing: 0.03em;
	word-break: keep-all;
	overflow-wrap: break-word;
}

/* タブレット */
@media screen and (max-width:900px){

	#message .text p {
		font-size: clamp(0.9rem, 2.8vw, 1.05rem);
		line-height: 2.1;
	}

}

/* スマホ */
@media screen and (max-width:600px){

	#message .text p {
		font-size: clamp(0.82rem, 3.7vw, 0.98rem);
		line-height: 2;
		letter-spacing: 0.02em;
		padding: 0 0.4rem;
	}

}

/* 小さいスマホ */
@media screen and (max-width:390px){

	#message .text p {
		font-size: 0.8rem;
		line-height: 1.9;
	}

}


.demo-fade {
	position: relative;
	width: min(100%, 980px);
	height: clamp(260px, 62vw, 620px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
	background: #fff;
}

.demo-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	animation: demoFade 3s infinite ease-in-out;
}

.demo-slide1 {
	animation-delay: 0s;
}

.demo-slide2 {
	animation-delay: 1.5s;
}

.demo-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.demo-caption-1 {
	position: absolute;
	left: 50%;
	bottom: 36px;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	padding: 0.8rem 2rem;
	border-radius: 999px;
	font-size: 1.1rem;
	letter-spacing: 0.08em;
	z-index: 2;
}

.demo-caption-2 {
	position: absolute;
	left: 50%;
	bottom: 36px;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.65);
	color: #000;
	padding: 0.8rem 2rem;
	border-radius: 999px;
	font-size: 1.1rem;
	letter-spacing: 0.08em;
	z-index: 2;
}

.demo-note {
	max-width: 900px;
	margin: 2rem auto 0;
	text-align: center;
}

@keyframes demoFade {
	0% {
		opacity: 0;
	}
	12% {
		opacity: 1;
	}
	45% {
		opacity: 1;
	}
	58% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.demo-fade {
		border-radius: 18px;
		height: clamp(220px, 58vw, 420px);
	}

	.demo-caption {
		font-size: 0.95rem;
		padding: 0.6rem 1.4rem;
		bottom: 24px;
	}
}

.demo-fade + .demo-fade {
	margin-top: 60px;
}


/* =========================
   demo2-fade（4枚フェード）
========================= */

.demo2-fade {
	position: relative;
	width: min(100%, 980px);
	height: clamp(260px, 62vw, 620px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
	background: #fff;
}

.demo2-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	animation: demoFade 6s infinite ease-in-out;
}

.demo2-slide1 {
	animation-delay: 0s;
}

.demo2-slide2 {
	animation-delay: 1.5s;
}

.demo2-slide3 {
	animation-delay: 3s;
}

.demo2-slide4 {
	animation-delay: 4.5s;
}

.demo2-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.demo2-caption {
	position: absolute;
	left: 50%;
	bottom: 36px;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	padding: 0.8rem 2rem;
	border-radius: 999px;
	font-size: 1.1rem;
	letter-spacing: 0.08em;
	z-index: 2;
}

.demo2-note {
	max-width: 900px;
	margin: 2rem auto 0;
	text-align: center;
}

@keyframes demoFade {
	0% {
		opacity: 0;
	}
	8% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	33% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.demo2-fade {
		border-radius: 18px;
		height: clamp(220px, 58vw, 420px);
	}

	.demo2-caption {
		font-size: 0.95rem;
		padding: 0.6rem 1.4rem;
		bottom: 24px;
	}
}


/* =========================================
   コンセプトエリア
========================================= */

#concept1,
#concept2,
#concept3,
#concept4{
	position: relative;
	padding: 9rem var(--content-space);
	overflow: hidden;
}

#concept1,
#concept3 {
	background: linear-gradient(135deg, #f6f7f8 0%, #ffffff 55%, #eef1f3 100%);
}

#concept2,
#concept4{
	background: #fff;
}

#concept1::before,
#concept2::before,
#concept3::before,
#concept4::before{
	position: absolute;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(4rem, 10vw, 10rem);
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1;
	color: rgba(78, 93, 102, 0.055);
	white-space: nowrap;
	pointer-events: none;
	z-index: 0;
}

#concept1::before {
	content: "MISSION";
}

#concept2::before {
	content: "VISION";
}

#concept3::before {
	content: "VALUE";
}

#concept4::before {
	content: "MESSAGE";
}

#concept1 > *,
#concept2 > *,
#concept3 > *,
#concept4 > * {
	position: relative;
	z-index: 1;
}

/* 見出し */
#concept1 h2,
#concept2 h2,
#concept3 h2,
#concept4 h2{
	margin-bottom: 4rem;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #1f2a30;
	text-align: center;
}

#concept1 h2 span.small,
#concept2 h2 span.small,
#concept3 h2 span.small,
#concept4 h2 span.small{
	margin-top: 1.2rem;
	padding-top: 1.2rem;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #df9020;
	opacity: 1;
	border-top: 1px solid #df9020;
}

/* カード */
#concept1 .list-half,
#concept2 .list-half,
#concept3 .list-half,
#concept4 .list-half{
	max-width: 980px;
	margin: 0 auto;
}

#concept1 .list-half .list,
#concept2 .list-half .list,
#concept3 .list-half .list,
#concept4 .list-half .list{
	position: relative;
	display: block;
	margin: 0 auto;
	padding: clamp(2.4rem, 5vw, 5rem);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(78, 93, 102, 0.12);
	border-radius: 28px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
	overflow: hidden;
}

/* カード左上のアクセント */
#concept1 .list-half .list::before,
#concept2 .list-half .list::before,
#concept3 .list-half .list::before,
#concept4 .list-half .list::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	background: linear-gradient(180deg, #df9020, #4e5d66);
}

/* カード内の薄い装飾 */
#concept1 .list-half .list::after,
#concept2 .list-half .list::after,
#concept3 .list-half .list::after,
#concept4 .list-half .list::after{
	content: "";
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(223, 144, 32, 0.08);
}

/* テキスト */
#concept1 .text,
#concept2 .text,
#concept3 .text,
#concept4 .text{
	position: relative;
	z-index: 1;
}

#concept1 .text h4,
#concept2 .text h4,
#concept3 .text h4,
#concept4 .text h4{
	margin-bottom: 1.8rem;
	font-size: clamp(1.45rem, 3vw, 2.25rem);
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.08em;
	color: #18242b;
}

#concept1 .text h4 span,
#concept2 .text h4 span,
#concept3 .text h4 span,
#concept4 .text h4 span{
	display: block;
	margin-top: 0.8rem;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	color: #df9020;
	opacity: 1;
	text-transform: uppercase;
}

#concept1 .text p,
#concept2 .text p,
#concept3 .text p,
#concept4 .text p{
	margin: 0;
	font-size: clamp(0.98rem, 1.5vw, 1.08rem);
	line-height: 2.35;
	letter-spacing: 0.06em;
	color: #4f5d64;
}

/* Valueだけ少し読みやすく */
#concept3 .text h4:not(:first-child) {
	margin-top: 3.5rem;
	padding-top: 2.2rem;
	border-top: 1px solid rgba(78, 93, 102, 0.12);
}

/* ホバー時 */
#concept1 .list-half .list,
#concept2 .list-half .list,
#concept3 .list-half .list,
#concept4 .list-half .list{
	transition: transform 0.45s ease, box-shadow 0.45s ease;
}

#concept1 .list-half .list:hover,
#concept2 .list-half .list:hover,
#concept3 .list-half .list:hover,
#concept4 .list-half .list:hover{
	transform: translateY(-8px);
	box-shadow: 0 38px 100px rgba(0, 0, 0, 0.12);
}

/* スマホ調整 */
@media screen and (max-width: 700px) {
	#concept1,
	#concept2,
	#concept3,
	#concept4{
		padding: 6rem 1.5rem;
	}

	#concept1 h2,
	#concept2 h2,
	#concept3 h2,
	#concept4 h2{
		margin-bottom: 3rem;
		letter-spacing: 0.08em;
	}

	#concept1::before,
	#concept2::before,
	#concept3::before,
	#concept4::before{
		top: 1.5rem;
		font-size: 3.8rem;
		letter-spacing: 0.08em;
	}

	#concept1 .list-half .list,
	#concept2 .list-half .list,
	#concept3 .list-half .list,
	#concept4 .list-half .list{
		padding: 2.4rem 2rem;
		border-radius: 20px;
	}

	#concept1 .text h4,
	#concept2 .text h4,
	#concept3 .text h4,
	#concept4 .text h4{
		letter-spacing: 0.04em;
	}

	#concept1 .text p,
	#concept2 .text p,
	#concept3 .text p,
	#concept3 .text p{
		line-height: 2.1;
		letter-spacing: 0.03em;
	}
}


/* サイン画像 */
.signature {
    margin-top: 2rem;
    text-align: right;
}

.signature img {
    width: 220px; /* サイズ調整 */
    max-width: 60%;
    height: auto;
    display: inline-block;

    /* 少し傾けてリアル感 */
    transform: rotate(-4deg);

    /* 高級感出す影 */
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));

    opacity: 0.95;
}

.signature img {
    mix-blend-mode: multiply; /* 紙に書いた感じになる */
}

/* スマホ */
@media screen and (max-width: 600px) {
    .signature img {
        width: 160px;
        transform: rotate(-3deg);
    }
}


/* FAQ スマホ最適化 */
@media screen and (max-width: 600px) {

	.faq {
		font-size: 1rem;
	}

	.faq dt {
		padding: 1rem 0.5rem;
		line-height: 1.6;
	}

	.faq dd {
		margin: 0 0.5rem 1rem 0.5rem;
		padding: 1rem;
		font-size: 0.95rem;
		line-height: 1.8;
		border-radius: 10px;
	}

}

/* =========================================================
   CSS最適化・上書き調整
   - スマホの横はみ出し防止
   - お問い合わせBOXの影・電話番号の見切れ修正
   - 代表あいさつの文字サイズを画面幅に合わせて調整
   - FAQ・表・フッターのスマホ表示を安定化
========================================================= */

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: clip;
}

#container,
#contents,
main,
section {
	max-width: 100%;
}

section {
	padding-inline: clamp(1rem, 4vw, var(--content-space));
}

p {
	margin-inline: 0;
}

/* 見出しのスマホ最適化 */
main h2 {
	font-size: clamp(1.7rem, 5vw, 2.4rem);
	line-height: 1.45;
	text-align: center;
}

main h2 span.small {
	font-size: clamp(0.72rem, 2.4vw, 0.9rem);
}

/* 代表あいさつ：変な位置で改行されにくく、画面幅に追従 */
#message .text {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

#message .text p {
	font-size: clamp(0.9rem, 2.2vw, 1.08rem);
	line-height: 2.15;
	letter-spacing: 0.025em;
	word-break: normal;
	line-break: strict;
	overflow-wrap: normal;
}

/* お問い合わせBOX：影の重なりとスマホの見切れを整理 */
.btn-box {
	width: min(100%, 700px);
	margin-inline: auto;
	padding: clamp(1rem, 3vw, 2rem);
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.btn-box .btn {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 0;
	margin: 0;
}

.btn-box .btn li {
	width: 100%;
	list-style: none;
	padding: clamp(1.25rem, 4vw, 2rem) clamp(0.8rem, 3vw, 1.5rem);
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	text-align: center;
	box-shadow: none;
}

.btn-box .btn li i {
	font-size: clamp(2.2rem, 7vw, 3rem);
	color: #4e5d66;
	margin-bottom: 1rem;
	display: block;
}

.btn-box .sub-title {
	font-size: clamp(0.9rem, 3vw, 1.1rem);
	color: #555;
	letter-spacing: 0.06em;
	margin-bottom: 0.8rem;
}

.btn-box .tel-number {
	display: block;
	width: 100%;
	max-width: 100%;
	font-size: clamp(1.55rem, 8.2vw, 3.4rem);
	font-weight: 700;
	line-height: 1.15;
	color: #222;
	letter-spacing: -0.055em;
	text-align: center;
	white-space: nowrap;
	word-break: keep-all;
	overflow: visible;
}

.btn-box .time {
	font-size: clamp(0.85rem, 2.8vw, 1rem);
	color: #666;
}

.btn-box .mail-btn {
	display: block;
	width: 100%;
	margin-top: 1.3rem;
	padding: clamp(0.9rem, 3vw, 1.2rem);
	border-radius: 14px;
	background: linear-gradient(135deg, #df9020, #f6a13a);
	color: #fff;
	font-size: clamp(1.05rem, 4vw, 1.4rem);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(223, 144, 32, 0.25);
}

.btn-box .mail-note {
	margin-top: 0.9rem;
	font-size: clamp(0.9rem, 3vw, 1.1rem);
	color: #555;
	letter-spacing: 0.04em;
}

/* 料金表・会社概要表の横はみ出し防止 */
.price-box,
.company-table,
#footer table {
	max-width: 100%;
}

.price-table,
.company-table,
#footer table {
	width: 100%;
}

.price-table th,
.price-table td,
.company-table th,
.company-table td,
#footer table th,
#footer table td {
	word-break: break-word;
}

/* 画像フェード枠のスマホ安定化 */
.demo-fade,
.demo2-fade {
	max-width: 100%;
	overflow: hidden;
}

/* フッターロゴ中央寄せ */
#footer .footer1 img {
	display: block;
	width: min(450px, 90vw);
	margin-inline: auto;
}

.signature {
	text-align: right;
}

.signature img {
	width: clamp(150px, 42vw, 220px);
	max-width: 70%;
	height: auto;
}

@media screen and (max-width: 600px) {
	section {
		padding-inline: 1rem;
	}

	#contents ul,
	#contents ol {
		margin-inline: 1rem;
	}

	#message .text p {
		font-size: clamp(0.82rem, 3.45vw, 0.95rem);
		line-height: 1.95;
		letter-spacing: 0.01em;
	}

	.btn-box {
		padding: 1rem 0.75rem;
		border-radius: 16px;
	}

	.btn-box .btn li {
		padding: 1.4rem 0.55rem;
	}

	.btn-box .tel-number {
		font-size: clamp(1.55rem, 7.6vw, 2.15rem);
		letter-spacing: -0.075em;
	}

	.faq {
		font-size: 1rem;
	}

	.faq dt {
		padding: 1rem 0.5rem;
		line-height: 1.6;
	}

	.faq dd {
		margin: 0 0 1rem;
		padding: 1rem;
		font-size: 0.95rem;
		line-height: 1.8;
		border-radius: 10px;
	}
}

@media screen and (max-width: 390px) {
	.btn-box .tel-number {
		font-size: clamp(1.42rem, 7.3vw, 1.75rem);
	}

	#message .text p {
		font-size: 0.8rem;
		line-height: 1.9;
	}
}


/* =========================
   スクロール後ヘッダー
========================= */
header.header-white,
body.header-white header {
	height: 64px;
	padding-top: 0;
	padding-bottom: 0;
	background: rgba(255,255,255,0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

header.header-white a {
	color: #333;
}

/* スクロール後もロゴは同じ位置・同じサイズ */
header.header-white #logo,
body.header-white #logo {
	top: 0;
	left: 20px;
	height: 64px;
}

header.header-white #logo a,
body.header-white #logo a {
	height: 64px;
}

header.header-white #logo img,
body.header-white #logo img,
header.header-white #site-logo,
body.header-white #site-logo {
	width: 150px !important;
	transform: none !important;
}

/* ハンバーガーはヘッダーより前面へ */
#menubar_hdr {
	z-index: 10001;
}

/* スマホ時のロゴ位置 */
@media screen and (max-width:600px) {
	header,
	header.header-white,
	body.header-white header {
		height: 58px;
		padding-top: 0;
		padding-bottom: 0;
	}

	#logo,
	header.header-white #logo,
	body.header-white #logo {
		top: 0;
		left: 12px;
		height: 58px;
	}

	#logo a,
	header.header-white #logo a,
	body.header-white #logo a {
		height: 58px;
	}

	#logo img,
	#site-logo,
	header.header-white #logo img,
	body.header-white #logo img,
	header.header-white #site-logo,
	body.header-white #site-logo {
		width: 150px !important;
		transform: none !important;
	}

	#menubar_hdr {
		width: 58px;
		height: 58px;
	}

	#menubar_hdr span {
		left: 14px;
		width: 30px;
	}

	#menubar_hdr span:nth-of-type(1) {
		top: 22px;
	}
	#menubar_hdr span:nth-of-type(2) {
		top: 29px;
	}
	#menubar_hdr span:nth-of-type(3) {
		top: 36px;
	}
}

/* 代表あいさつだけ横幅を広げる */
#message .list-half {
	max-width: 1500px;
	margin: 0 auto;
}

#message .text {
	max-width: 1500px;
	margin: 0 auto;
}

#message p {
	font-size: 1.1rem;
	line-height: 2.4;
}


.ceo-name{
	margin-top: 3rem;
	text-align: right;
}

.ceo-name .position{
	display: block;
	font-size: 0.9rem;
	color: #777;
	letter-spacing: 0.15em;
	margin-bottom: 0.3rem;
}

.ceo-name .name{
	display: block;
	font-size: 1.6rem;
	color: #555;
	letter-spacing: 0.12em;
	font-weight: 500;
}


/* =========================================
   除草作業エリア
========================================= */

#weedcontrol {
	position: relative;
	padding: 9rem var(--content-space);
	overflow: hidden;
}

#weedcontrol::before {
	content: "BEFORE\A AFTER";
	white-space: pre;
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 8rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.05em;
	color: rgba(78,93,102,0.05);
	z-index: 0;
	pointer-events: none;
	text-align: center;
	width: 100%;
}

#weedcontrol > * {
	position: relative;
	z-index: 1;
}

#weedcontrol h2 {
	position: relative;
	z-index: 1;
	margin-top: 60px;
	margin-bottom: 4rem;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #1f2a30;
	text-align: center;
}

#weedcontrol h2 span.small {
	margin-top: 1.2rem;
	padding-top: 1.2rem;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #df9020;
	opacity: 1;
	border-top: 1px solid #df9020;
}

@media screen and (max-width: 700px) {
	#weedcontrol {
		padding: 6rem 1.5rem;
	}

	#weedcontrol::before {
		top: 1.5rem;
		font-size: 3.8rem;
		letter-spacing: 0.08em;
	}

	#weedcontrol h2 {
		margin-bottom: 3rem;
		letter-spacing: 0.08em;
	}
}


/* =========================================
   料金案内
========================================= */

#plan {
	position: relative;
	padding: 9rem var(--content-space);
	overflow: hidden;
}

#plan::before {
	content: "PRICE\A INFO";
	white-space: pre;
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 8rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.05em;
	color: rgba(78,93,102,0.05);
	z-index: 0;
	pointer-events: none;
	text-align: center;
	width: 100%;
}

#plan > * {
	position: relative;
	z-index: 1;
}

#plan h2 {
	position: relative;
	z-index: 1;
	margin-top: 60px;
	margin-bottom: 4rem;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #1f2a30;
	text-align: center;
}

#plan h2 span.small {
	margin-top: 1.2rem;
	padding-top: 1.2rem;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #df9020;
	opacity: 1;
	border-top: 1px solid #df9020;
}

@media screen and (max-width: 700px) {
	#plan {
		padding: 6rem 1.5rem;
	}

	#plan::before {
		top: 1.5rem;
		font-size: 3.8rem;
		letter-spacing: 0.08em;
	}

	#plan h2 {
		margin-bottom: 3rem;
		letter-spacing: 0.08em;
	}
}

#plan .red{
  color: #c0392b;
  font-weight: 700;
}

#plan h4{
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 20px;
}

#plan h4::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #cfcfcf;
}


/* =========================
   会社概要 横幅拡張版
========================= */

#footer {
	padding-left: 20px;
	padding-right: 20px;
}

#footer div.footer1 {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
}

.company-box {
	width: 100%;
	max-width: 1800px;
	margin: 50px auto 0;
}

.company-table {
	width: 100%;
	font-size: 1.1rem;
	table-layout: fixed;
}

.company-table th {
	width: 280px;
	padding: 24px 20px;
	font-size: 1rem;
}

.company-table td {
	padding: 24px 20px;
	font-size: 1rem;
	line-height: 2;
}

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

	#footer {
		padding-left: 15px;
		padding-right: 15px;
	}

	.company-table th,
	.company-table td{
		display:block;
		width:100%;
	}

	.company-table th{
		padding-bottom:5px;
	}

	.company-table td{
		padding-top:0;
	}
}


/* =========================
   ENDロゴ 中央配置 修正版
========================= */

.endlogo{
	width: 100%;
	text-align: center;
	margin-top: -40px; /* 上に移動 */
	padding: 0 30px 60px;
}

.endlogo img{
	display: block;
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
}

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

	.endlogo{
		margin-top: -20px;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 40px;
	}

	.endlogo img{
		max-width: 100%;
	}

}


/* 代表あいさつ横幅拡張 */
#message .list {
	display: block;
}

#message .text {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

#message p {
	font-size: 1.05rem;
	line-height: 2.2;
}


/* お問い合わせページだけ三本線を黒にする */
body.contact-page #menubar_hdr span {
	background: #222 !important;
}


/* =========================
   プライバシーポリシー
========================= */

.privacy-wrap{
	max-width:1000px;
	margin:0 auto;
}

.privacy-lead{
	background:#f8f9fa;
	padding:35px;
	border-radius:20px;
	margin-bottom:40px;
	text-align:center;
}

.privacy-lead p{
	margin:0;
	line-height:2.2;
}

.privacy-box{
	background:#fff;
	border:1px solid #e5e5e5;
	border-radius:18px;
	padding:35px;
	margin-bottom:25px;
	box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.privacy-box h3{
	margin:0 0 20px;
	padding-left:15px;
	border-left:4px solid #df9020;
	font-size:1.3rem;
	color:#4e5d66;
}

.privacy-box h4{
	margin:25px 0 10px;
	color:#df9020;
	font-size:1rem;
}

.privacy-box ul{
	margin:0;
	padding-left:20px;
}

.privacy-box li{
	margin-bottom:8px;
	line-height:1.9;
}

.privacy-box p{
	line-height:2;
	margin:0;
}

.contact-info{
	background:linear-gradient(
	135deg,
	#4e5d66 0%,
	#5d6c75 100%
	);
	color:#fff;
}

.contact-info h3{
	color:#fff;
	border-left:4px solid #df9020;
}

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

	.privacy-lead,
	.privacy-box{
		padding:25px 20px;
	}

	.privacy-box h3{
		font-size:1.1rem;
	}

}


/* 代表あいさつ */
#concept4 .text {
	text-align: center;
}

#concept4 .text p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

#concept4 .ceo-name {
	text-align: center;
	margin-top: 2rem;
}


/* 代表者名 */
.ceo-name{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	margin-top: 2.5rem;
	width: 100%;
}

.ceo-name .position{
	font-size: 0.75rem;
	color: #333;
	letter-spacing: 0.1em;
}

.ceo-name .name{
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: #333;
}


/* 代表あいさつ本文 */
#concept4 .text p{
	font-size: clamp(0.95rem, 2.8vw, 1.1rem);
	line-height: 2.2;
	word-break: keep-all;
	overflow-wrap: break-word;
}


/* =========================================
   BEFORE AFTER 透かし文字調整
========================================= */

/* セクション全体 */
#weedcontrol{
	position: relative;
	overflow: hidden;
}

/* 透かし文字 */
#weedcontrol::before{
	content: "BEFORE\A AFTER";
	white-space: pre;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: 0.08em;
	color: rgba(78,93,102,0.06);
	pointer-events: none;
	z-index: 0;
}

/* タイトルを前面に */
#weedcontrol h2{
	position: relative;
	z-index: 1;
}

/* コンテンツを前面に */
#weedcontrol > *{
	position: relative;
	z-index: 1;
}

/* =========================
   PC
========================= */
@media screen and (min-width:900px){

	#weedcontrol::before{
		top: 90px;          /* ←透かし文字を下げる */
		font-size: 7rem;
	}

	#weedcontrol h2{
		margin-bottom: 7rem;
	}
}

/* =========================
   タブレット
========================= */
@media screen and (max-width:899px){

	#weedcontrol::before{
		top: 60px;
		font-size: 5rem;
	}

	#weedcontrol h2{
		margin-bottom: 5rem;
	}
}

/* =========================
   スマホ
========================= */
@media screen and (max-width:600px){

	#weedcontrol::before{
		top: 45px;
		font-size: 3.5rem;
		line-height: 0.85;
	}

	#weedcontrol h2{
		margin-bottom: 4rem;
	}
}

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

	#concept4 .text{
		max-width: 100%;
		padding: 0 10px;
	}

	#concept4 .text p{
		font-size: clamp(0.9rem, 3.5vw, 1rem);
		line-height: 2;
		letter-spacing: 0.02em;
	}
}

#concept4 .text{
	max-width: 900px;
	margin: 0 auto;
}


/* =========================================
   BEFORE AFTER 重なり防止（完成版）
========================================= */

#weedcontrol{
	position: relative;
	overflow: hidden;
}

/* PC */
@media screen and (min-width:900px){

	#weedcontrol::before{
		top: 130px !important;
		font-size: 7rem;
		line-height: 0.85;
	}

	#weedcontrol h2{
		padding-top: 90px;
		margin-bottom: 4rem;
	}
}

/* 大画面 */
@media screen and (min-width:1800px){

	#weedcontrol::before{
		top: 170px !important;
		font-size: 8rem;
	}

	#weedcontrol h2{
		padding-top: 150px;
	}
}

/* タブレット */
@media screen and (max-width:899px){

	#weedcontrol::before{
		top: 70px;
		font-size: 5rem;
	}

	#weedcontrol h2{
		padding-top: 40px;
	}
}

/* スマホ */
@media screen and (max-width:600px){

	#weedcontrol::before{
		top: 50px;
		font-size: 3.5rem;
		line-height: 0.9;
	}

	#weedcontrol h2{
		padding-top: 20px;
	}
}

/* =========================================================
   透かし文字 最終調整
   - BEFORE AFTER と h2 の間隔を自然に調整
   - 電気測定に WORK SCENE 透かし文字を追加
   - SERVICE PLAN の透かし文字と見出し間隔を調整
========================================================= */

/* 共通：透かし文字セクション */
#weedcontrol,
#emergencyservice,
#plan{
	position: relative;
	overflow: hidden;
}

#weedcontrol > *,
#emergencyservice > *,
#plan > *{
	position: relative;
	z-index: 1;
}

/* BEFORE AFTER */
#weedcontrol::before{
	content: "BEFORE\A AFTER";
	white-space: pre;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 800;
	line-height: .9;
	letter-spacing: .08em;
	color: rgba(78,93,102,.055);
	text-align: center;
	pointer-events: none;
	z-index: 0;
	width: 100%;
}

/* WORK SCENE */
#emergencyservice::before{
	content: "WORK\A SCENE";
	white-space: pre;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 800;
	line-height: .9;
	letter-spacing: .08em;
	color: rgba(78,93,102,.055);
	text-align: center;
	pointer-events: none;
	z-index: 0;
	width: 100%;
}

/* SERVICE PLAN */
#plan::before{
	content: "PRICE\A INFO";
	white-space: pre;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 800;
	line-height: .9;
	letter-spacing: .08em;
	color: rgba(78,93,102,.055);
	text-align: center;
	pointer-events: none;
	z-index: 0;
	width: 100%;
}

#weedcontrol h2,
#emergencyservice h2,
#plan h2{
	position: relative;
	z-index: 1;
	margin-top: 0 !important;
}

#weedcontrol h2 span.small,
#emergencyservice h2 span.small,
#plan h2 span.small{
	margin-top: 2.4rem !important;
	padding-top: 1.4rem !important;
}

/* PC */
@media screen and (min-width:900px){

	#weedcontrol,
	#emergencyservice,
	#plan{
		padding-top: 11rem !important;
	}

	#weedcontrol::before,
	#emergencyservice::before,
	#plan::before{
		top: 5.2rem !important;
		font-size: clamp(6.2rem, 8vw, 8.4rem) !important;
	}

	#weedcontrol h2,
	#emergencyservice h2,
	#plan h2{
		padding-top: 7.2rem !important;
		margin-bottom: 5rem !important;
	}
}

/* 大画面 */
@media screen and (min-width:1400px){

	#weedcontrol,
	#emergencyservice,
	#plan{
		padding-top: 12rem !important;
	}

	#weedcontrol::before,
	#emergencyservice::before,
	#plan::before{
		top: 5.8rem !important;
		font-size: 8.2rem !important;
	}

	#weedcontrol h2,
	#emergencyservice h2,
	#plan h2{
		padding-top: 8rem !important;
		margin-bottom: 5.5rem !important;
	}
}

/* 超大画面 */
@media screen and (min-width:1800px){

	#weedcontrol,
	#emergencyservice,
	#plan{
		padding-top: 12.5rem !important;
	}

	#weedcontrol::before,
	#emergencyservice::before,
	#plan::before{
		top: 6.2rem !important;
		font-size: 8.8rem !important;
	}

	#weedcontrol h2,
	#emergencyservice h2,
	#plan h2{
		padding-top: 8.5rem !important;
	}
}

/* タブレット */
@media screen and (max-width:899px){

	#weedcontrol,
	#emergencyservice,
	#plan{
		padding-top: 8rem !important;
	}

	#weedcontrol::before,
	#emergencyservice::before,
	#plan::before{
		top: 3.2rem !important;
		font-size: 5rem !important;
	}

	#weedcontrol h2,
	#emergencyservice h2,
	#plan h2{
		padding-top: 4.8rem !important;
		margin-bottom: 4.5rem !important;
	}

	#weedcontrol h2 span.small,
	#emergencyservice h2 span.small,
	#plan h2 span.small{
		margin-top: 1.8rem !important;
		padding-top: 1.1rem !important;
	}
}

/* スマホ */
@media screen and (max-width:600px){

	#weedcontrol,
	#emergencyservice,
	#plan{
		padding-top: 6.5rem !important;
	}

	#weedcontrol::before,
	#emergencyservice::before,
	#plan::before{
		top: 2.2rem !important;
		font-size: 3.5rem !important;
		letter-spacing: .06em;
	}

	#weedcontrol h2,
	#emergencyservice h2,
	#plan h2{
		padding-top: 3.2rem !important;
		margin-bottom: 3.5rem !important;
	}

	#weedcontrol h2 span.small,
	#emergencyservice h2 span.small,
	#plan h2 span.small{
		margin-top: 1.4rem !important;
		padding-top: .9rem !important;
	}
}


/* =========================================
   WORK SCENE 背景
========================================= */

#emergencyservice{
	background: #f7f7f7;
	position: relative;
}

/* 上下の余白を少し広めに */
#emergencyservice{
	padding-top: 6rem;
	padding-bottom: 6rem;
}


/* =========================================
   料金表 強化版
========================================= */

/* テーブル外枠 */
.price-table{
	border-collapse: collapse;
	border: 3px solid #222;
}

/* セル */
.price-table th,
.price-table td{
	border: 3px solid #222;
}

/* 見出し */
.price-table th{
	font-weight: 700;
	color: #111;
}

/* 料金列 */
.price-table td:nth-child(2){
	font-weight: 800;
	color: #111;
	font-size: 2rem;
	line-height: 1.2;
}

/* 円だけ小さく */
.price-table td:nth-child(2){
	font-feature-settings: "palt";
}

/* 割引表示 */
.price-table .red{
	font-size: 0.9rem;
	font-weight: 700;
}

/* スマホ */
@media screen and (max-width:600px){

	.price-table td:nth-child(2){
		font-size: 1.4rem;
	}

}


/* =========================================
   料金表 完全版
========================================= */

.price-table{
	border-collapse: collapse;
	width: 100%;
	border: 3px solid #222;
	background: #fff;
}

.price-table th,
.price-table td{
	border: 3px solid #222;
	padding: 18px;
	vertical-align: middle;
}

.price-table th{
	background: #f5f5f5;
	color: #111;
	font-weight: 700;
	font-size: 1.05rem;
}

/* 金額 */
.price{
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	color: #111;
}

/* 円 */
.yen{
	font-size: 1rem;
	font-weight: 700;
	margin-left: 2px;
}

/* 割引 */
.red{
	font-weight: 700;
}

/* スマホ */
@media screen and (max-width:600px){

	.price{
		font-size: 1.5rem;
	}

	.yen{
		font-size: 0.9rem;
	}

}

/* =========================================
   料金表 割引表示
========================================= */

.price-table .discount,
.price-table small{
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.4;
	display: block;
	margin-top: 4px;
	color: #666;
}

/* 割引率だけ目立たせる */
.price-table .discount .red{
	font-size: 0.85rem;
	font-weight: 700;
	color: #d80000;
}


/* おすすめサービス・注意事項 */
.price-note {
	max-width: 1800px;
	margin: 30px auto 0;
	padding: 10px 0;

	border-top: 2px solid #222;
	border-bottom: 2px solid #222;

	text-align: center;
	line-height: 2;
}

.price-note-list{
	font-size:0.8rem;
	padding: 10px;
}


/* =========================
   エンドロゴ
========================= */

.endlogo{
	margin-top: 9rem; /* PCは約3倍 */
	text-align: center;
}

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

	.endlogo{
		margin-top: 6rem; /* スマホは約2倍 */
	}

}


/* =========================
   スマホ時 ハンバーガー×位置修正
========================= */
@media screen and (max-width:600px){

	#menubar_hdr{
		width:58px;
		height:58px;
	}

	#menubar_hdr span{
		left:14px;
		width:30px;
		height:2px;
	}

	#menubar_hdr span:nth-of-type(1){
		top:23px;
	}

	#menubar_hdr span:nth-of-type(2){
		top:29px;
	}

	#menubar_hdr span:nth-of-type(3){
		top:35px;
	}

	#menubar_hdr.ham span:nth-of-type(1){
		transform:translateY(6px) rotate(-45deg);
	}

	#menubar_hdr.ham span:nth-of-type(2){
		opacity:0;
	}

	#menubar_hdr.ham span:nth-of-type(3){
		transform:translateY(-6px) rotate(45deg);
	}
}


/* プライバシーポリシー */
.footer-policy{
	text-align:center;
	margin:50px auto 10px;
}

.footer-policy a{
	display:inline-block;
	text-decoration:none;
	color:#999;              /* copyrightと同色 */
	font-size:1rem;          /* 会社概要と同サイズ */
	font-weight:400;
	padding-bottom:1px;
	border-bottom:1px solid #ccc;
	transition:0.3s;
}

.footer-policy a:hover{
	color:#666;
	border-color:#999;
}

.endlogo{
	margin-top:0;
}


#weedcontrol{
	padding-bottom: 0 !important;
}

#panelcleaning{
	padding-top: 0 !important;
	margin-top: 60px;
}


#cablerecovery{
	padding-bottom: 0 !important;
}

#cablerecovery{
	padding-top: 0 !important;
	margin-top: 20px;
}
/* =========================================================
   demo-fade / demo2-fade 白チラつき修正 完全上書き
   - 2枚スライドは1枚目を常時下に敷き、2枚目だけフェード
   - 4枚スライドは専用keyframesで常にどれか1枚が表示されるように調整
   - 既存の @keyframes demoFade 重複による上書きを回避
========================================================= */

.demo-fade,
.demo2-fade {
	background: transparent !important;
}

/* 2枚フェード */
.demo-slide {
	position: absolute;
	inset: 0;
	opacity: 1;
	animation: none !important;
}

.demo-slide1 {
	opacity: 1 !important;
	z-index: 1;
}

.demo-slide2 {
	opacity: 0;
	z-index: 2;
	animation: demoFadeTwo 3s infinite ease-in-out !important;
}

.demo-slide img,
.demo2-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes demoFadeTwo {
	0% {
		opacity: 0;
	}
	38% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	88% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* 4枚フェード */
.demo2-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	animation-duration: 6s !important;
	animation-iteration-count: infinite !important;
	animation-timing-function: ease-in-out !important;
	animation-delay: 0s !important;
}

.demo2-slide1 {
	z-index: 1;
	animation-name: demo2FadeOne !important;
}

.demo2-slide2 {
	z-index: 2;
	animation-name: demo2FadeTwo !important;
}

.demo2-slide3 {
	z-index: 3;
	animation-name: demo2FadeThree !important;
}

.demo2-slide4 {
	z-index: 4;
	animation-name: demo2FadeFour !important;
}

@keyframes demo2FadeOne {
	0%, 22% {
		opacity: 1;
	}
	28%, 94% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes demo2FadeTwo {
	0%, 18% {
		opacity: 0;
	}
	25%, 47% {
		opacity: 1;
	}
	53%, 100% {
		opacity: 0;
	}
}

@keyframes demo2FadeThree {
	0%, 43% {
		opacity: 0;
	}
	50%, 72% {
		opacity: 1;
	}
	78%, 100% {
		opacity: 0;
	}
}

@keyframes demo2FadeFour {
	0%, 68% {
		opacity: 0;
	}
	75%, 97% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.demo-caption-1,
	.demo-caption-2,
	.demo2-caption {
		font-size: 0.95rem;
		padding: 0.6rem 1.4rem;
		bottom: 24px;
	}
}

/* ===== ケーブル盗難復旧・盗難対策工事 6枚スライド 修正版 ===== */
/* demo-fade6も通常のdemo-fadeと同じ「画像を重ねてフェード」方式に統一 */
#cablerecovery .demo-fade6 {
	position: relative;
	width: min(100%, 980px);
	height: clamp(260px, 62vw, 620px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
	background: transparent !important;
	isolation: isolate;
}

#cablerecovery .demo-fade6 + .demo-fade6 {
	margin-top: 60px;
}

#cablerecovery .demo-fade6 .cable-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 1;
	animation-duration: 9s; /* 1枚あたり1.5秒 × 6枚 */
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
	animation-delay: 0s !important;
	will-change: opacity;
}

#cablerecovery .demo-fade6 .slide1 {
	opacity: 1;
	z-index: 2;
	animation-name: cableFade6Slide1;
}

#cablerecovery .demo-fade6 .slide2 { animation-name: cableFade6Slide2; }
#cablerecovery .demo-fade6 .slide3 { animation-name: cableFade6Slide3; }
#cablerecovery .demo-fade6 .slide4 { animation-name: cableFade6Slide4; }
#cablerecovery .demo-fade6 .slide5 { animation-name: cableFade6Slide5; }
#cablerecovery .demo-fade6 .slide6 { animation-name: cableFade6Slide6; }

#cablerecovery .demo-fade6 img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#cablerecovery .demo-caption-1,
#cablerecovery .demo-caption-2 {
	z-index: 5;
}

/* 6枚を同じ9秒タイムラインで制御。各切り替えを約0.36秒重ねて自然にフェード */
@keyframes cableFade6Slide1 {
	0%, 16.666% { opacity: 1; z-index: 2; }
	20.666%, 96% { opacity: 0; z-index: 1; }
	100% { opacity: 1; z-index: 2; }
}

@keyframes cableFade6Slide2 {
	0%, 16.666% { opacity: 0; z-index: 1; }
	20.666%, 33.333% { opacity: 1; z-index: 2; }
	37.333%, 100% { opacity: 0; z-index: 1; }
}

@keyframes cableFade6Slide3 {
	0%, 33.333% { opacity: 0; z-index: 1; }
	37.333%, 50% { opacity: 1; z-index: 2; }
	54%, 100% { opacity: 0; z-index: 1; }
}

@keyframes cableFade6Slide4 {
	0%, 50% { opacity: 0; z-index: 1; }
	54%, 66.666% { opacity: 1; z-index: 2; }
	70.666%, 100% { opacity: 0; z-index: 1; }
}

@keyframes cableFade6Slide5 {
	0%, 66.666% { opacity: 0; z-index: 1; }
	70.666%, 83.333% { opacity: 1; z-index: 2; }
	87.333%, 100% { opacity: 0; z-index: 1; }
}

@keyframes cableFade6Slide6 {
	0%, 83.333% { opacity: 0; z-index: 1; }
	87.333%, 96% { opacity: 1; z-index: 2; }
	100% { opacity: 0; z-index: 1; }
}

@media screen and (max-width: 768px) {
	#cablerecovery .demo-fade6 {
		border-radius: 18px;
		height: clamp(220px, 58vw, 420px);
	}
}

/* =========================================================
   demo-fade6 白背景チラつき対策（最終上書き）
   - 1枚目を常時背景として敷く
   - 2〜6枚目だけを上に重ねてフェード
   - 切り替わり中に一瞬すべて透明になる状態を防止
========================================================= */
#cablerecovery .demo-fade6 {
	background: #000 !important;
	position: relative !important;
	overflow: hidden !important;
}

#cablerecovery .demo-fade6 .cable-slide {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	animation-duration: 9s !important;
	animation-timing-function: linear !important;
	animation-iteration-count: infinite !important;
	animation-fill-mode: both !important;
	animation-delay: 0s !important;
	backface-visibility: hidden;
	transform: translateZ(0);
}

/* 1枚目は常に下に表示して、白背景が見える隙間を完全に防ぐ */
#cablerecovery .demo-fade6 .slide1 {
	opacity: 1 !important;
	z-index: 1 !important;
	animation: none !important;
}

/* 2〜6枚目を上に重ねる */
#cablerecovery .demo-fade6 .slide2,
#cablerecovery .demo-fade6 .slide3,
#cablerecovery .demo-fade6 .slide4,
#cablerecovery .demo-fade6 .slide5,
#cablerecovery .demo-fade6 .slide6 {
	opacity: 0;
	z-index: 2 !important;
}

#cablerecovery .demo-fade6 .slide2 { animation-name: cableFade6Overlay2 !important; }
#cablerecovery .demo-fade6 .slide3 { animation-name: cableFade6Overlay3 !important; }
#cablerecovery .demo-fade6 .slide4 { animation-name: cableFade6Overlay4 !important; }
#cablerecovery .demo-fade6 .slide5 { animation-name: cableFade6Overlay5 !important; }
#cablerecovery .demo-fade6 .slide6 { animation-name: cableFade6Overlay6 !important; }

/* 1枚1.5秒目安。前後を少し重ね、白チラつきを防止 */
@keyframes cableFade6Overlay2 {
	0%, 14% { opacity: 0; }
	18%, 30% { opacity: 1; }
	34%, 100% { opacity: 0; }
}

@keyframes cableFade6Overlay3 {
	0%, 30% { opacity: 0; }
	34%, 47% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

@keyframes cableFade6Overlay4 {
	0%, 47% { opacity: 0; }
	51%, 64% { opacity: 1; }
	68%, 100% { opacity: 0; }
}

@keyframes cableFade6Overlay5 {
	0%, 64% { opacity: 0; }
	68%, 80% { opacity: 1; }
	84%, 100% { opacity: 0; }
}

@keyframes cableFade6Overlay6 {
	0%, 80% { opacity: 0; }
	84%, 96% { opacity: 1; }
	100% { opacity: 0; }
}

#cablerecovery .demo-fade6 img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}
