@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=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;					/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #153A20;		/*上のbase-colorの対となる色（主にテキストカラー）*/

	--primary-color: #006B2F;			/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/

	--color-primary: #006B2F;
	--color-primary-dark: #004C22;
	--color-primary-deep: #003817;
	--color-primary-mid: #008A3A;
	--color-primary-bright: #0A8F40;
	--color-primary-light: #EAF6EE;
	--color-text-main: #153A20;
	--color-text-sub: #4A5A4A;
	--color-bg-base: #FFFFFF;
	--color-bg-soft: #F5FBF6;
	--color-border: #CFE6D5;
	--color-cta: #007A33;
	--color-cta-hover: #005F28;
	--color-shadow-green: rgba(0, 76, 34, 0.14);

	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


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


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


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

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

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

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

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

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

	html, body {
		font-size: 1vw;
	}

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


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*varは背景色のことで冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭で指定しているbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

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

/*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*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}


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

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*loading（ローディング）
---------------------------------------------------------------------------*/
@keyframes progress {
	0% {transform: scaleX(0);}
	100% {transform: scaleX(1);}
}
@keyframes loadingLogoFade {
	0% {opacity: 0; transform: translateY(8px) scale(0.98);}
	25% {opacity: 1; transform: translateY(0) scale(1);}
	72% {opacity: 1; transform: translateY(0) scale(1);}
	100% {opacity: 0; transform: translateY(-6px) scale(1.02);}
}

/*ロゴ画像*/
#loading img {
	width: min(520px, 76vw);	/*画像の幅*/
	height: auto;
	animation: loadingLogoFade 2s ease-in-out forwards;
}

/*ローディングブロック*/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;	/*背景色*/
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.45s ease 2.05s forwards;
}

/*プログレスバーの土台*/
.progress-container {
    width: 200px;		/*幅。お好みで。*/
    height: 4px;		/*高さ。お好みで。*/
    border-radius: 2px;	/*角をほんの少し丸くする*/
    background: #fff;	/*バーのベースカラー*/
    overflow: hidden;
}

/*プログレスバー*/
.progress-bar {
    width: 100%;
    height: 100%;
    background: #000;	/*進行中のバーの色*/
    animation: progress 2s linear;  /*#loadingのanimation時間に合わせて2秒に設定*/
    transform-origin: left;
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;	/*ヘッダーの高さ*/
}

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

	header {
		height: 90px;	/*ヘッダーの高さ*/
	}

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

/*ロゴ画像*/
#logo img {
	display: block;
	width: 150px;	/*ロゴの幅*/
}
#logo {
	margin: 0;padding: 0;
	padding-left: 3vw;	/*ロゴの左側に空ける余白*/
}

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

	/*ロゴ画像*/
	#logo img {
		width: 200px;	/*ロゴの幅*/
	}

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


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 100px;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;			/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

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


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: fadeIn 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
	margin-left: 1rem;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	padding: 0.3em 1em;					/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;					/*上に空けるスペース。ドロップダウン同士の隙間。*/
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	border: 1px solid var(--base-inverse-color);	/*枠線の幅、線種、varは色の指定で冒頭のbase-inverse-colorを読み込みます。*/
	border-radius: 3px;					/*角を少し丸くする指定*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}

/*メニューブロック内のロゴ画像の幅*/
#menubar .logo {
	width: 200px;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;				/*ブロック内の余白。上、左右、下への順番。*/
	background: #fff;		/*背景色*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
}
.small-screen #menubar a {
	border-radius: 5px;		/*角を丸くする指定*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下、左右へ。*/
	background: var(--color-primary-mid);		/*背景色*/
	color: var(--base-color);					/*背景色。冒頭のbase-colorを読み込みます。*/
}

/*子メニュー*/
.small-screen #menubar ul ul a {
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--color-primary-mid);	/*文字色*/
	border: 1px solid var(--color-primary-mid);	/*枠線の幅、線種、色の指定*/
	margin-left: 2rem;	/*左に空けるスペース*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: fadeIn 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	padding: 20px 15px;		/*上下、左右への余白*/
	width: 60px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 60px;			/*高さ*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-origin: right top;
	background: var(--color-primary-mid);	/*背景色*/
	border-radius: 0px 0px 0px 10px;		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

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

	#menubar_hdr {
		transform: scale(0.95);	/*サイズ調整*/
	}

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


/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid var(--base-color);	/*線の幅、線種、varは色のことで冒頭のbase-colorを読み込みます。*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: var(--color-primary-mid);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 5.8px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(7px, -7px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*メイン画像
---------------------------------------------------------------------------*/
/*ブロック全体*/
#mainimg {
	background: var(--base-color) url("../images/mainimg-rec.png?v=20260628-fv2") no-repeat center center / cover;
	width: 100%;
	padding-top: 150%;	/*アスペクト比2:3（3÷2=1.5）*/
	position: relative;
	overflow: hidden;
}

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

	#mainimg {
		background: var(--base-color) url("../images/mainimg-rec.png?v=20260628-fv2") no-repeat center center / cover;
		padding-top: 56.25%;	/*アスペクト比16:9（9÷16=0.5624）*/
	}

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

#mainimg > div {
	position: absolute;
	top: 60px;	/*header分を確保*/
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	
}

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

	#mainimg > div {
		transform: translateY(120px);
	}

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

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

	#mainimg > div {
		left: var(--space-large);
		align-items: flex-start;
		justify-content: center;
	}

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

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

	#mainimg > div {
		transform: translateY(-4rem);
	}

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

/*テキストのブロック*/
#mainimg p {margin: 0;}
#mainimg .text {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 28px;	/*文字サイズ。*/
	font-weight: 900;	/*太字に*/
	color: var(--color-text-main);
	letter-spacing: 0.03em;
	line-height: 1.32;	/*行間*/
	text-align: center;	/*テキストをセンタリング*/
	text-shadow: 0 3px 14px rgba(255,255,255,0.9);
}
.fv-catch-orange {
	color: var(--color-cta);
}
.fv-catch-green {
	color: var(--color-primary-mid);
}

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

	#mainimg .text {
		text-align: left;	/*テキストを左寄せ*/
		font-size: 3.9vw;	/*文字サイズ。*/
		line-height: 1.32;	/*行間*/
	}

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


/*ボタン*/
#mainimg .btn {
	font-size: 1rem;	/*文字サイズ*/
	font-weight: 600;	/*少し太字に*/
	margin-top: 3vw;	/*上のテキストとボタンの間のスペース。*/
	display: flex;
	gap: 1rem;	/*ボタン同士の余白*/
}
#mainimg .btn a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	/*ボタン内の余白。上下、左右へ。1rem=1文字分です。*/
	margin-bottom: 10px;	/*ボタン同士の隙間*/
}

/*マウスオン時*/
#mainimg .btn a:hover {
	opacity: 1;
	transform: scale(1.05);	/*105%に拡大*/
}

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

	/*ボタン*/
	#mainimg .btn {
		font-size: 1.4vw;	/*文字サイズ*/
	}
	
	#mainimg .btn a {
		margin: 0;
		padding: 0.6rem 3rem;	/*ボタン内の余白。上下、左右へ。1rem=1文字分です。*/
	}

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


/*1つ目のボタン（お問い合わせ）の追加設定*/
#mainimg .btn p:nth-of-type(1) a {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*2つ目のボタン（資料請求）への追加設定*/
#mainimg .btn p:nth-of-type(2) a {
	background: var(--color-primary-mid);	/*背景色*/
	color: var(--base-color);				/*文字色。冒頭のbase-colorを読み込みます。*/
	letter-spacing: 0.1em;					/*文字間隔を少しだけ広く*/
}

/*ボタン内のアイコン*/
#mainimg .btn i {
	transform: scale(1.4);	/*140%に拡大*/
	padding-right: 0.8rem;	/*アイコンとテキストとの間の余白*/
}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 1.4rem;		/*文字サイズ。240%。*/
	font-weight: 800;		/*太字に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	position: relative;
}

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

	main h2 {
		font-size: 2.4rem;		/*文字サイズ。240%。*/
	}

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


/*テキストをセンタリングする場合*/
main h2.c {
	align-items: center;
}

/*h2内のspan（小文字）*/
main h2 span {
	font-size: 0.85rem;	/*文字サイズ85%*/
	opacity: 0.5;		/*透明度。色を50%だけ出す。*/
	font-weight: normal;	/*太字ではなく標準にする*/
}

/*h2内のimg画像（「そのお悩み」という手書き風のふきだしに使っています）*/
h2 img {
	width: 100px;	/*画像の幅*/
	transform: rotate(-10deg);	/*左に10度傾ける。そのままがいいならこの１行を削除。*/
	position: absolute;
	left: -10px;	/*左からの配置場所*/
	top: -40px;	/*上からの配置場所。マイナスがついているので本来とは逆の方向に移動します。*/
}

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

	h2 img {
		width: 140px;	/*画像の幅*/
		left: 40px;		/*左からの配置場所*/
	}

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


/*フッター
---------------------------------------------------------------------------*/
footer {
	background: #fff;
	color: var(--color-text-main);
	padding: 2rem;	/*フッター内の余白。2文字分。*/
	display: flex;
	flex-direction: column-reverse;
}

footer a {
	color: var(--color-text-main);
}

/*フッター直下の1つ目ブロック（ロゴやSNSアイコンが入ったブロック）*/
footer div:nth-of-type(1) {
    text-align: center;
}

/*フッター直下の２つ目ブロック（メニューブロック）*/
footer div:nth-of-type(2) {
    flex: 1;
    display: flex;
    gap: 2rem;	/*このブロック内の直下のブロック同士に空ける余白。４文字分。*/
}


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

	footer {
		flex-direction: row;
		gap: 4rem;		/*フッター内の直下のブロック同士に空ける余白。４文字分。*/
		padding: 4rem;	/*フッター内の余白。４文字分。*/
	}

	/*フッター直下の1つ目ブロック（ロゴやSNSアイコンが入ったブロック）*/
	footer div:nth-of-type(1) {
		text-align: left;
		width: 30%;	/*幅*/
	}

	/*フッター直下の２つ目ブロック（メニューブロック）*/
	footer div:nth-of-type(2) {
		justify-content: flex-end;	/*ブロックを右に寄せる。この行を削除すれば、ロゴ画像の方によります。*/
		gap: 4rem;	/*このブロック内の直下のブロック同士に空ける余白。４文字分。*/
	}

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


footer ul {
	margin: 0;padding: 0;list-style: none;
	margin-bottom: 2rem;
}


/*Copyright部分*/
footer small {
	display: block;
	padding-top: 2rem;	/*SNSアイコンとコピーライトの間の余白調整*/
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {
	
	.icons {
		justify-content: flex-start;
	}

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

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


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


/*c2（２カラムレイアウト用）
---------------------------------------------------------------------------*/

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

	.c2 {
		display: flex;
		gap: 2rem;
	}

	/*左側のタイトルブロックの幅*/
	.c2 .title {
		width: 30%;
	}

	/*右側のテキストブロック*/
	.c2 .text {
		flex: 1;
	}

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


/*FAQ
---------------------------------------------------------------------------*/

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

	.faq {
		font-size: 1.2rem;	/*文字サイズを120%*/
	}

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

/*質問*/
.faq dt {
	display: flex;
	align-items: flex-start;
	border-radius: 3px;		/*角を少しだけ丸く*/
	margin-bottom: 1rem;	/*下に空けるスペース。質問ブロック同士の余白です。*/
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 1rem;	/*ブロック内の余白。１文字分。*/
}

/*「Q」アイコン*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";
	content: "\51";	/*アイコン画像の指定*/
	margin-right: 0.5rem;	/*右側に空けるスペース*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	border-radius: 50%;	/*角を丸くする*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	flex-shrink: 0;
	margin-top: 0.2em;	/*微調整*/
}

/*回答*/
.faq dd {
	padding: 0 1rem 1rem 3.7rem;	/*ボックス内の余白。上、右、下、左への順番。*/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.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: var(--color-primary-dark);		/*背景色*/
	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;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

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


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 5px;	/*画像の余白*/
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*テキストスライド
---------------------------------------------------------------------------*/
.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: calc(-1 * (1.6 * var(--space-large)));	/*本来の位置より上にずらす。ずらしたくなければこの１行を削除。*/
}

.text-slide {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	display: flex;
	white-space: nowrap;
    font-size: 15vw;	/*文字サイズ*/
	opacity: 0.05;		/*透明度。色が5%出た状態。*/
}

.text-slide span {
	padding: 0 20px;
}


/*btn1（ボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	text-shadow: none;display: block;text-decoration: none;
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	font-size: 1.4rem;		/*文字サイズ。140%に。*/
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右へ。*/
	border-radius: 100px;	/*角を丸くする*/
	text-align: center;		/*テキストをセンタリング*/
}

/*bg-primary-colorの上で使う場合*/
.bg-primary-color .btn1 a {
	background: var(--primary-inverse-color);		/*背景色。冒頭のprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);	/*文字色。冒頭のprimary-colorを読み込みます。*/
}

/*マウスオン時*/
.btn1 a:hover {
	opacity: 1;
	transform: scale(1.05);	/*105%に拡大*/
	background: var(--primary-inverse-color);	/*背景色。冒頭のprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。冒頭のprimary-colorを読み込みます。*/
}

/*bg-primary-colorの上で使う場合*/
.bg-primary-color .btn1 a:hover {
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
}

/*矢印アイコン*/
.btn1 a::after {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f0a9";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-left: 0.5em;		/*アイコンとテキストとの間に空けるスペース*/
}


/*bg-primary-color
---------------------------------------------------------------------------*/
.bg-primary-color {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background-color: var(--base-inverse-color);	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);	/*文字色。冒頭のbase-colorを読み込みます。*/
}


/*bg2
---------------------------------------------------------------------------*/
.bg2 {
	background: var(--color-bg-soft);	/*背景色*/
}


/*bg3
---------------------------------------------------------------------------*/
.bg3 {
	background: #fff;	/*背景色*/
}


/*パターン背景
---------------------------------------------------------------------------*/
/*bg-pattern1*/
.bg-pattern1 {
	background-image: url("../images/bg_pattern1.png");	/*背景パターンの読み込み*/
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	/*サイズ*/
}

/*bg-pattern2*/
.bg-pattern2 {
	background-image: url("../images/bg_pattern2.png");	/*背景パターンの読み込み*/
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	/*サイズ*/
}

/*bg-pattern3*/
.bg-pattern3 {
	background-image: url("../images/bg_pattern3.png");	/*背景パターンの読み込み*/
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	/*サイズ*/
}


/*ボックス下部を三角形（▼）にする場合。三角形の高さ自体はmask-imageのd=の中にある２つの「95」という数値で変更できます。小さいほど角度が大きくなります。
---------------------------------------------------------------------------*/
.arrow {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,95 L50,100 L0,95 Z' fill='%23000000'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

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

	/*三角形の高さの再設定。95を90に変更しています。*/
	.arrow {
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,90 L50,100 L0,90 Z' fill='%23000000'/%3E%3C/svg%3E");
		padding-bottom: 150px;
	}
	

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


/*背景色が切れているのが見えないように微調整*/
.arrow + section {
	padding-top: calc(var(--space-large) + 150px);
	margin-top: -150px;
}


/*list-grid-simple（制作実績ブロック）
---------------------------------------------------------------------------*/
.list-grid-simple .list * {margin: 0;padding: 0;}

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

/*ボックス１個あたり*/
.list-grid-simple .list {
    display: grid;
	position: relative;
}

/*h4見出し*/
.list-grid-simple .list h4 {
	margin-top: 0.5rem;		/*上に0.5文字分のスペースを空ける*/
	font-weight: normal;	/*太さを標準に*/
}

.case-label {
	display: inline-block;
	margin-left: 0.5em;
	padding: 0.25em 0.7em;
	border-radius: 999px;
	background: rgba(242, 138, 36, 0.12);
	color: var(--color-primary);
	font-size: 0.76em;
	font-weight: 700;
	vertical-align: middle;
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid-simple {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	}

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


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

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

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

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


/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 3rem;	/*ボックスの下に空けるスペース*/
	position: relative;
	border-radius: 5px;	/*角を少しだけ丸く*/
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	box-shadow: 2px 5px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding: 2rem;	/*ボックス内の余白。２文字分。*/
}

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

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

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


/*bg-black内のボックスへの追加設定*/
.list-grid1 .list.bg-black {
	background: #111;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*ナンバー（01〜03の飾り番号）*/
.list-grid1 .list .num {
	position: absolute;
	left: -20px;		/*左からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	top: -30px;			/*上からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	font-size: 60px;	/*文字サイズ*/
	line-height: 1;
	font-family: "MonteCarlo", cursive;	/*フォント指定*/
	opacity: 0.2;	/*透明度。色を20%出す。*/
}

/*引用符（“）の装飾*/
.list-grid1 .list h4.kazari::before {
	content: "“";	/*わかりづらいですが、中央にあるのが引用符でこの文字を出力しています。*/
	position: absolute;
	left: -1rem;	/*左からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	top: -40px;		/*上からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	opacity: 0.2;	/*透明度。色を20%出す。*/
	font-size: 60px;	/*文字サイズ*/
	line-height: 1;
}

/*ボックス内のh4見出し*/
.list-grid1 .list h4 {
	font-size: 1.4rem;	/*文字サイズを140%に*/
	line-height: 1.6;	/*行間*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
	position: relative;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.9rem;	/*文字サイズを90%に*/
	line-height: 1.6;	/*行間*/
	font-weight: normal;
}

/*bg-black内のp要素への追加設定*/
.list-grid1 .list.bg-black p {
	color: #999;	/*文字色*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure.icon {
	margin: 0 auto;
	width: 100px;		/*画像サイズ*/
	margin-top: -40px;	/*本来の場所より上にずらす*/
}

/*bg1内のfigureへの追加設定*/
.bg1 .list-grid1 .list figure.icon {
	filter: grayscale(100%) brightness(90%);	/*画像をグレースケールにし、明るさも少し暗くする。そのままの画像色を出したければこの１行を削除。*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

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

	/*ボックス内のfigure画像*/
	.list-grid1 .list figure.icon {
		width: 150px;		/*画像サイズ*/
		margin-top: -50px;	/*本来の場所より上にずらす*/
	}

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



/*list-c2（お問い合わせ、資料請求）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
		gap: 2vw;		/*ブロックの間に空けるマージン的な指定*/
	}

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


/*ボックス１個あたり*/
.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);	/*テキストの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.6は色が出た状態。*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
	border-radius: 30px;	/*角を丸くする指定*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}
	
	/*1つ目のボックス（お問い合わせ）*/
	.list-c2 .list:nth-of-type(1) {
		border-radius: 0px 30px 30px 0px;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	/*2つ目のボックス（資料請求）*/
	.list-c2 .list:nth-of-type(2) {
		border-radius: 30px 0px 0px 30px;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("../images/bg_contact.jpg") no-repeat center center / cover;
}

/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("../images/bg_request.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	line-height: 1.2;	/*行間を狭く*/
	font-family: "Jost", sans-serif;	/*フォント指定*/
	font-optical-sizing: auto;
	font-weight: 300;	/*フォントの太さ。100〜900の間で指定が可能。大きいほど太くなります。*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

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

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

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


/*テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}


/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*ブロック全体*/
.bg-slideup {
	margin-left: calc(-1 * var(--space-large));
	margin-right: calc(-1 * var(--space-large));
}

section > .bg-slideup:first-child {
	margin-top: calc(-1 * var(--space-large));
}

/*画像ボックス*/
.bg-slideup .image {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 10vw 20px;	/*上下、左右へのボックス内の余白。画面幅100% = 100vwです。*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;		/*英語テキストと日本語テキストの間のスペース。３文字分。*/
	color: #fff;	/*文字色*/
}

/* 英語テキスト */
.en-text {
	writing-mode: horizontal-tb;
	font-size: 0.8rem;	/*文字サイズ80%*/
}

/* 日本語テキスト */
.jp-text {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

/*制作実績ブロックの画像指定*/
#products .bg-slideup .image {
	background-image: url("../images/bg_works.jpg");	/*背景画像の指定*/
}

/*会社概要ブロックの画像指定*/
#company .bg-slideup .image {
	background-image: url("../images/bg_company.jpg");	/*背景画像の指定*/
}


/*list-normal1（「お客様の声」「制作の流れ」ブロックで使用）
---------------------------------------------------------------------------*/
.list-normal1 * {margin: 0;padding: 0;}

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

	/*テキストブロック*/
	.list-normal1 .text {
		flex: 1;
	}
	
	/*画像とテキストの左右を入れ替えたい場合（600px以上のみ使用可能）*/
	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}
	
	}/*追加指定ここまで*/


/*ブロック１個あたり*/
.list-normal1 .list {
	background: var(--base-color) url("../images/bg-dot.png") no-repeat right bottom / 200px;
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

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

	/*ブロック１個あたり*/
	.list-normal1 .list {
		display: flex;
		gap: 2rem;	/*画像とテキストの間のスペース。２文字分。画像がない場合はこれは適用されません。*/
	}
	
	}/*追加指定ここまで*/


/*画像ブロック*/
.list-normal1 figure {
	width: 30%;	/*幅*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

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

	#koe .list-normal1 figure {
		width: 58%;
		max-width: 190px;
	}

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


/* ReC & Co. グリーンテーマ
---------------------------------------------------------------------------*/
body {
	background: var(--color-bg-base);
	color: var(--color-text-main);
}

a:hover {
	color: var(--color-primary);
	opacity: 1;
}

#loading {
	background: var(--color-bg-base);
}
.progress-container {
	background: var(--color-primary-light);
}
.progress-bar {
	background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-mid));
}

header {
	background: rgba(255,255,255,0.82);
	border-bottom: 1px solid rgba(207,230,213,0.8);
	box-shadow: 0 12px 34px rgba(0,76,34,0.08);
	backdrop-filter: blur(14px);
}
header nav li a {
	color: var(--color-text-main);
	font-weight: 800;
}
header nav li a:hover {
	color: var(--color-primary);
}
header nav ul ul a,
.small-screen #menubar.display-block {
	background: var(--color-bg-base);
	color: var(--color-text-main);
	border-color: var(--color-border);
}
.small-screen #menubar a,
#menubar_hdr,
#menubar_hdr.ham {
	background: var(--color-primary);
	color: #fff;
}
.small-screen #menubar a:hover,
#menubar a.menubar-contact-link:hover,
.small-screen #menubar a.menubar-contact-link:hover {
	background: var(--color-cta-hover);
	color: #fff;
}
.small-screen #menubar ul ul a {
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
	border-color: var(--color-border);
}
#menubar a.menubar-contact-link,
.small-screen #menubar a.menubar-contact-link,
.small-screen #menubar ul li a.menubar-contact-link {
	background: var(--color-cta);
	color: #fff;
}

#mainimg.food11-fv {
	background: var(--color-primary-dark);
}
.food11-fv__image::after {
	background: linear-gradient(90deg, rgba(245,251,246,0.96) 0%, rgba(234,246,238,0.74) 34%, rgba(234,246,238,0.2) 62%, rgba(234,246,238,0) 100%);
}
#mainimg .text,
#mainimg.food11-fv .food11-fv__catch,
#mainimg.food11-fv .food11-fv__lead {
	color: var(--color-text-main);
	text-shadow: 0 3px 18px rgba(255,255,255,0.9);
}
.fv-catch-orange,
.fv-catch-green {
	color: var(--color-primary);
}
#mainimg.food11-fv .trust-badges li {
	background: rgba(255,255,255,0.9);
	border-color: rgba(0,107,47,0.24);
	color: var(--color-primary-dark);
}
#mainimg .btn p:nth-of-type(1) a,
#mainimg.food11-fv .food11-fv__buttons p:nth-child(1) a,
.btn1 a,
.estimate-form__button--next,
.estimate-form__button--submit,
.leaseback-diagnosis__next,
.leaseback-diagnosis__cta,
.fixed-bottom-cta__btn--mail {
	background: linear-gradient(180deg, var(--color-cta), var(--color-primary));
	color: #fff;
	box-shadow: 0 12px 26px rgba(0,107,47,0.22);
}
#mainimg .btn p:nth-of-type(2) a,
#mainimg.food11-fv .food11-fv__buttons p:nth-child(2) a,
.estimate-form__button--back,
.fixed-bottom-cta__btn--tel {
	background: linear-gradient(180deg, var(--color-primary-mid), var(--color-primary-dark));
	color: #fff;
	box-shadow: 0 12px 26px rgba(0,76,34,0.2);
}
#mainimg .btn a:hover,
#mainimg.food11-fv .food11-fv__buttons a:hover,
.btn1 a:hover,
.estimate-form__button:hover,
.leaseback-diagnosis__next:not(:disabled):hover,
.leaseback-diagnosis__cta:hover,
.fixed-bottom-cta__btn:hover {
	background: var(--color-cta-hover);
	color: #fff;
	opacity: 1;
}

main h2 {
	color: var(--color-text-main);
}
main h2 span,
.en-text,
.leaseback-diagnosis__label,
.column-page__en {
	color: var(--color-primary);
	opacity: 0.72;
}
.bg1 main h2,
.bg1 h2,
.bg-primary-color h2,
.leaseback-diagnosis h2 {
	color: #fff;
}
.bg1 h2 span,
.bg-primary-color h2 span,
.leaseback-diagnosis__label {
	color: rgba(255,255,255,0.74);
	opacity: 1;
}

.bg-primary-color {
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	color: #fff;
}
.bg1,
.leaseback-diagnosis,
section.bg1.bg-pattern1.arrow {
	background-color: var(--color-primary-dark) !important;
	color: #fff !important;
}
.bg2,
.estimate-form-section,
.column-page {
	background: var(--color-bg-soft);
}
.bg3 {
	background: var(--color-bg-base);
}

.case-label {
	background: var(--color-primary-light);
	color: var(--color-primary);
}
.list-grid1 .list,
.list-normal1 .list,
.column-page-card,
.estimate-form,
.leaseback-diagnosis__card,
.ta1 td,
.ta1 th {
	background-color: #fff;
	color: var(--color-text-main);
	border-color: var(--color-border);
	box-shadow: 0 18px 48px var(--color-shadow-green);
}
.list-grid1 .list {
	border: 1px solid var(--color-border);
}
.list-grid1 .list h4,
.list-normal1 h4,
.column-page-card h3,
.leaseback-diagnosis__question,
.leaseback-diagnosis__result-title,
.estimate-form__label,
.column-page__heading h2 {
	color: var(--color-text-main);
}
.list-grid1 .list.bg-black,
section.bg1.bg-pattern1.arrow .list-grid1 .list.bg-black {
	background: #053F20 !important;
	border-color: rgba(255,255,255,0.18);
	color: #fff !important;
	box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}
.list-grid1 .list.bg-black p,
section.bg1.bg-pattern1.arrow .list-grid1 .list.bg-black p {
	color: rgba(255,255,255,0.76) !important;
}
.list-grid1 .list .num,
.list-grid1 .list h4.kazari::before {
	color: var(--color-primary-mid);
	opacity: 0.22;
}
.bg-primary-color .list-grid1 .list {
	border-color: rgba(255,255,255,0.24);
}
.bg-primary-color .list-grid1 .list h4,
.bg-primary-color .list-grid1 .list p {
	color: var(--color-text-main);
}

.faq dt {
	background: #fff;
	color: var(--color-text-main);
	border: 1px solid rgba(207,230,213,0.9);
	box-shadow: 0 10px 28px rgba(0,76,34,0.1);
}
.faq dt::before {
	background: var(--color-primary);
	color: #fff;
}
.faq dd {
	color: rgba(255,255,255,0.88);
}

.ta1,
.ta1 tr {
	border-color: var(--color-border);
}
.ta1 caption {
	background: var(--color-primary-dark);
	color: #fff;
}
.ta1.plan,
.ta1.plan td,
.ta1.plan th {
	border-color: var(--color-border);
}
.ta1.plan th:first-child,
.ta1.plan td:first-child {
	background: #fff;
	color: var(--color-text-main);
}
.ta1.plan th:nth-child(2),
.ta1.plan td:nth-child(2) {
	background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
	color: #fff;
}
.ta1.plan th:nth-child(3),
.ta1.plan td:nth-child(3),
.ta1.plan th:nth-child(4),
.ta1.plan td:nth-child(4) {
	background: #F5FBF6;
	color: var(--color-text-main);
}
.ta1.plan th .osusume {
	background: var(--color-primary-mid);
	color: #fff;
}

.leaseback-diagnosis__card,
.estimate-form {
	border-color: var(--color-border);
}
.leaseback-diagnosis__progress,
.estimate-form,
.estimate-form__step h3,
.leaseback-diagnosis__score-value,
.leaseback-diagnosis__result-text {
	color: var(--color-text-main);
}
.leaseback-diagnosis__bar,
.estimate-form__progress-bar {
	background: #DDEBE1;
}
.leaseback-diagnosis__bar-fill,
.estimate-form__progress-bar span {
	background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-mid));
}
.leaseback-diagnosis__choice,
.estimate-form__choice span,
.estimate-form__input {
	background: #fff;
	border-color: var(--color-border);
	color: var(--color-text-main);
}
.leaseback-diagnosis__choice:hover,
.estimate-form__choice span:hover {
	border-color: var(--color-primary);
	box-shadow: 0 8px 20px rgba(0,107,47,0.12);
}
.leaseback-diagnosis__choice.is-selected,
.estimate-form__choice input:checked + span {
	background: var(--color-primary-light);
	border-color: var(--color-primary);
	color: var(--color-text-main);
	box-shadow: inset 0 0 0 2px rgba(0,107,47,0.16);
}
.leaseback-diagnosis__choice:focus-visible,
.leaseback-diagnosis__back:focus-visible,
.leaseback-diagnosis__next:focus-visible,
.leaseback-diagnosis__cta:focus-visible,
.estimate-form__choice input:focus-visible + span,
.estimate-form__input:focus {
	outline: 3px solid rgba(0,107,47,0.18);
	outline-offset: 3px;
}
.estimate-form__input:focus {
	border-color: var(--color-primary);
}
.estimate-form__percent,
.estimate-form__label span,
.leaseback-diagnosis__score-label,
.leaseback-diagnosis__score-value span,
.leaseback-diagnosis__result-label,
.column-page__categories span,
.column-page-card__meta span:last-child {
	color: var(--color-primary);
}
.estimate-form__step h3,
.leaseback-diagnosis__score,
.leaseback-diagnosis__result-label,
.column-page__categories span,
.column-page-card figure,
.column-page-card__meta span:last-child {
	background: var(--color-primary-light);
	border-color: var(--color-border);
}
.column-page__categories span:first-child {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}
.leaseback-diagnosis__back {
	background: #fff;
	border-color: var(--color-border);
	color: var(--color-primary-dark);
}
.leaseback-diagnosis__next:disabled,
.estimate-form__button:disabled {
	background: #D9E5DC;
	color: #7D8A80;
	box-shadow: none;
}

.list-c2 .list::before {
	background: rgba(0,60,28,0.72);
}
.bg-primary-color .btn1 a {
	background: #fff;
	color: var(--color-primary-dark);
}
.bg-primary-color .btn1 a:hover {
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
}

footer {
	background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-deep));
	color: #fff;
	border-top: 1px solid rgba(255,255,255,0.12);
}
footer a {
	color: rgba(255,255,255,0.88);
}
footer a:hover {
	color: #fff;
}
footer .logo img {
	filter: brightness(0) invert(1);
	opacity: 0.94;
}
footer small {
	color: rgba(255,255,255,0.78);
}

.fixed-bottom-cta {
	filter: drop-shadow(0 10px 28px rgba(0,60,28,0.24));
}
.fixed-bottom-cta__btn {
	box-shadow: none;
}

.marker {
	background: linear-gradient(transparent 56%, rgba(0,138,58,0.22) 56%);
}
.color-check,
.color-check a {
	color: var(--color-primary) !important;
}

@media screen and (max-width:800px) {
	header {
		background: rgba(255,255,255,0.9);
	}
	.food11-fv__image::after {
		background: linear-gradient(180deg, rgba(234,246,238,0.06) 0%, rgba(234,246,238,0.25) 38%, rgba(245,251,246,0.88) 78%, rgba(245,251,246,0.98) 100%);
	}
	.fixed-bottom-cta {
		filter: none;
	}
	.fixed-bottom-cta__btn {
		box-shadow: 0 -4px 18px rgba(0,76,34,0.18);
	}
}

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

	/*画像の下マージンのリセット*/
	.list-normal1 figure {
		margin-bottom: 0;
	}

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


/*h4見出し*/
.list-normal1 h4 {
	font-size: 1.2rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

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

	.list-normal1 h4 {
		font-size: 2rem;	/*文字サイズ200%*/
		line-height: 1.8;	/*行間*/
	}

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


/*h4内にアイコンを配置した場合（制作の流れの見出し左のアイコン）*/
.list-normal1.flow h4 i {
	margin-right: 1rem;	/*アイコンとテキストとの間の余白*/
}

/*名前*/
.list-normal1 .name {
	text-align: right;	/*右寄せ*/
	margin-top: 1rem;	/*上に空けるスペース*/
}

/*制作の流れで使用しているブロック間の「▼」の矢印*/
.list-normal1.flow .list::after {
	content: "▼";	/*このテキストを出力します*/
	position: absolute;
	left: 50%;		/*左からの配置場所。厳密ではありませんが、文字が小さいので問題ないかと。*/
	bottom: -2rem;	/*下からの配置場所。マイナスがつくので本来の場所とは逆向きに移動。*/
	transform: scaleX(1.5);	/*横幅を150%に*/
	opacity: 0.5;			/*透明度。色が50%出た状態。*/
}

/*最後のボックスだけ下矢印を出さない*/
.list-normal1.flow .list:last-child::after {
	content: none;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: var(--base-inverse-color);	/*背景色*/
	color: var(--base-color);				/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;				/*幅*/
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}
/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 td, .ta1 th {
	word-break: break-all;
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	text-align: left;	/*左よせにする*/
	padding: 0.5rem;	/*余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;			/*幅*/
	text-align: center;	/*テキストをセンタリング*/
}


/*テーブル（プラン）　※基本的な設定は上のta1で設定
---------------------------------------------------------------------------*/
.ta1.plan, .ta1.plan td, .ta1.plan th {
	text-align: center;
	border: 2px solid var(--base-inverse-color);	/*テーブルの枠線の幅、線種、varは色のことで冒頭のbase-inverse-colorを読み込みます*/
	padding: 0.5rem;
}

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

	.ta1.plan, .ta1.plan td, .ta1.plan th {
		font-size: 1.2rem;
		padding: 2rem 1rem;
	}

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


/*一番左側の縦列の幅*/
.ta1.plan th:first-child,
.ta1.plan td:first-child {
    width: 12rem;	/*目安としては約12文字分。*/
}

/*１行目のプランブロック*/
.ta1.plan th {
	width: auto;
	position: relative;
	overflow: hidden;
}

/*１行目のプランブロック内の「おすすめ」表示*/
.ta1.plan th .osusume {
	position: absolute;
	left: 0px;
	top: 0px;
	background: var(--color-primary-mid);	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.8rem;		/*文字サイズ80%*/
	width: 120px;
	text-align: center;
	padding-top: 43px;
	padding-bottom: 2px;
	transform: rotate(-45deg) translate(-18px, -60px);
}

/*１行目のプランブロック内のアイコン（王冠マーク）*/
.ta1.plan th i {
	display: block;
	font-size: 1.4rem;	/*サイズ*/
}

/*比較項目列*/
.ta1.plan th:first-child,
.ta1.plan td:first-child {
	background: #fff;
	color: var(--color-text-main);
}

/* ReC & Co.列 */
.ta1.plan th:nth-child(2) {
	background: var(--color-cta);
	color: #fff;
}
.ta1.plan td:nth-child(2) {
	background: var(--color-cta);
	color: #fff;
}

/* A社列 */
.ta1.plan th:nth-child(3) {
	background: var(--color-primary-light);
	color: var(--color-text-main);
}
.ta1.plan td:nth-child(3) {
	background: var(--color-primary-light);
	color: var(--color-text-main);
}

/* B社列 */
.ta1.plan th:nth-child(4) {
	background: var(--color-primary-light);
	color: var(--color-text-main);
}
.ta1.plan td:nth-child(4) {
	background: var(--color-primary-light);
	color: var(--color-text-main);
}

/*１行目の金額*/
.plan th > span {
	display: block;
	font-size: 1.6rem;	/*文字サイズを160%*/
	font-family: "Oswald", sans-serif;	/*フォント指定*/
	font-optical-sizing: auto;
	font-weight: 700;	/*太さ。200〜900まで指定できます。数値が大きいほど太くなる。*/
}

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

	/*１行目の金額*/
	.plan th > span {
		font-size: 2.4rem;	/*文字サイズを240%*/
	}

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


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

	.scroll .ta1.plan {width: 700px;}
	.scroll {overflow-x: auto;}

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


/*調整用スタイル
---------------------------------------------------------------------------*/
.padding0 {
	padding: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual #container {
	all: unset;
}
.manual {
	background: #fff;
	color: #333;
	padding: 5vw;
}
.manual .look {background: #eee;}
.manual h2 {
	margin-top: 2rem;
	font-size: 2rem;
	text-align: center;
}
.manual h3 {
	line-height: 3;
	margin-top: 2rem;
}
.manual h3 span {
	background: linear-gradient(transparent 60%, rgba(0,138,58,0.22));
}
.manual h3 + p {margin-top: -0.5rem;}
.manual.margin-left {padding-left: 300px;}

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

	.manual.margin-left {padding-left: 4vw;}

	}/*画面幅900px以上の追加指定ここまで*/


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: var(--color-primary) !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;}
.mb-space-large {margin-bottom: var(--space-large) !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);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;}
.inline-block {display: inline-block !important;}
.relative {position: relative;}
.marker {background: linear-gradient(transparent 50%, rgba(0,138,58,0.22));}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

/*「こんなお悩みありませんか？」セクション*/
section.bg1.bg-pattern1.arrow {
	background-color: var(--base-inverse-color) !important;
	background-image: url("../images/bg_pattern1.png") !important;
	background-repeat: repeat !important;
	background-position: center top !important;
	background-size: 10px !important;
	color: var(--base-color) !important;
}
section.bg1.bg-pattern1.arrow .list-grid1 .list.bg-black {
	background: #053F20 !important;
	color: #fff !important;
}
section.bg1.bg-pattern1.arrow .list-grid1 .list.bg-black p {
	color: #999 !important;
}
section.bg1.bg-pattern1.arrow .color-check,
section.bg1.bg-pattern1.arrow .color-check a {
	color: var(--primary-color) !important;
}

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

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

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

	/*画面419px以下のFV位置調整*/
	@media screen and (max-width:419px) {

	#mainimg > div {
		top: 300px !important;
		transform: none !important;
	}

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


/*food11型FV
---------------------------------------------------------------------------*/
#mainimg.food11-fv {
	background: #fff;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 0;
	min-height: 0;
	margin-left: 0;
	margin-right: 0;
	left: auto;
	right: auto;
	padding: 0;
	padding-top: 150%;
	overflow: hidden;
	box-sizing: border-box;
}
#mainimg.food11-fv > div {
	position: absolute !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
	max-width: 100% !important;
	height: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	display: block !important;
	flex-direction: initial !important;
	align-items: initial !important;
	transform: none !important;
	box-sizing: border-box;
}
#mainimg.food11-fv > .food11-fv__image {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	min-height: 0;
	margin-left: 0 !important;
	margin-right: 0 !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	overflow: hidden;
	box-sizing: border-box;
}
.food11-fv__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.78) 32%, rgba(255,255,255,0.18) 62%, rgba(255,255,255,0) 100%);
	pointer-events: none;
}
.food11-fv__image picture,
.food11-fv__image img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-width: 0;
	margin-left: 0;
	margin-right: 0;
	left: auto;
	right: auto;
	box-sizing: border-box;
}
.food11-fv__image img {
	object-fit: cover;
	object-position: center center;
}
#mainimg.food11-fv > .food11-fv__text {
	position: absolute !important;
	left: 7% !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: min(44%, 620px) !important;
	height: auto !important;
	z-index: 2;
}
#mainimg.food11-fv .food11-fv__catch {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: clamp(42px, 4.2vw, 78px);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.03em;
	color: var(--color-text-main);
	text-shadow: 0 3px 14px rgba(255,255,255,0.9);
	margin: 0 0 1.5rem;
}
#mainimg.food11-fv .food11-fv__lead {
	color: var(--color-text-main);
	font-size: clamp(16px, 1.3vw, 22px);
	font-weight: 700;
	line-height: 1.8;
	text-shadow: 0 2px 10px rgba(255,255,255,0.85);
	margin: 0 0 1.2rem;
}
#mainimg.food11-fv .trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0 0 1.6rem;
	padding: 0;
	list-style: none;
}
#mainimg.food11-fv .trust-badges li {
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(90, 166, 40, 0.24);
	border-radius: 999px;
	background: rgba(255,255,255,0.84);
	color: #27402e;
	font-size: 0.88rem;
	font-weight: 800;
	text-shadow: none;
}
#mainimg.food11-fv .food11-fv__buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
#mainimg.food11-fv .food11-fv__buttons p {
	margin: 0;
	min-width: 0;
}
#mainimg.food11-fv .food11-fv__buttons a {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	min-width: 210px;
	padding: 1rem 2.4rem;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}
#mainimg.food11-fv .food11-fv__buttons p:nth-child(1) a {
	background: var(--color-cta);
}
#mainimg.food11-fv .food11-fv__buttons p:nth-child(2) a {
	background: var(--color-primary-mid);
}

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

	#mainimg.food11-fv {
		width: 100%;
		max-width: 100%;
		height: 0;
		min-height: 0;
		padding: 0;
		padding-top: 150%;
		margin-left: 0;
		margin-right: 0;
		left: auto;
		right: auto;
		box-sizing: border-box;
	}
	#mainimg.food11-fv > .food11-fv__image {
		width: 100% !important;
		max-width: 100% !important;
		height: 100% !important;
		min-height: 0;
		margin-left: 0 !important;
		margin-right: 0 !important;
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		box-sizing: border-box;
	}
	.food11-fv__image::after {
		background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.34) 38%, rgba(255,255,255,0.9) 82%, rgba(255,255,255,0.98) 100%);
	}
	#mainimg.food11-fv > .food11-fv__text {
		left: 6% !important;
		right: 6% !important;
		top: auto !important;
		bottom: 7% !important;
		width: auto !important;
		transform: none !important;
		text-align: left;
	}
	#mainimg.food11-fv .food11-fv__catch {
		font-size: clamp(34px, 10vw, 52px);
		line-height: 1.28;
		margin-bottom: 1rem;
	}
	#mainimg.food11-fv .food11-fv__lead {
		font-size: 15px;
		line-height: 1.7;
		margin-bottom: 1.4rem;
	}
	#mainimg.food11-fv .food11-fv__buttons {
		gap: 0.8rem;
		flex-direction: column;
	}
	#mainimg.food11-fv .food11-fv__buttons p {
		flex: none;
	}
	#mainimg.food11-fv .food11-fv__buttons a {
		min-width: auto;
		width: 100%;
		padding: 1rem 0.8rem;
		white-space: nowrap;
	}

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

@media screen and (min-width:801px) {

	#mainimg.food11-fv {
		padding: 0;
		padding-top: 56.25%;
		height: 0;
		min-height: 0;
	}

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

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

	#mainimg.food11-fv .food11-fv__buttons {
		flex-direction: column;
	}
	#mainimg.food11-fv .food11-fv__buttons p {
		flex: none;
	}

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


/*固定下部CTA
---------------------------------------------------------------------------*/
body.has-fixed-bottom-cta {
	padding-bottom: 112px;
}

.fixed-bottom-cta {
	position: fixed;
	left: 50%;
	bottom: max(16px, env(safe-area-inset-bottom));
	transform: translateX(-50%);
	width: min(920px, calc(100% - 32px));
	display: flex;
	gap: 12px;
	z-index: 90;
	pointer-events: auto;
	box-sizing: border-box;
}

.fixed-bottom-cta__btn {
	flex: 1;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7em;
	color: #fff;
	text-decoration: none;
	font-family: inherit;
	font-weight: 800;
	font-size: clamp(16px, 1.5vw, 22px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.16);
	box-sizing: border-box;
}

.fixed-bottom-cta__btn:hover {
	color: #fff;
}

.fixed-bottom-cta__btn--mail {
	background: var(--color-cta);
}

.fixed-bottom-cta__btn--tel {
	background: var(--color-primary-mid);
}

#menubar a.menubar-contact-link,
.small-screen #menubar a.menubar-contact-link,
.small-screen #menubar ul li a.menubar-contact-link {
	background: var(--color-cta);
	color: #FFFFFF;
}

.embedded-contact-form {
	scroll-margin-top: 90px;
}

.estimate-form-section {
	background: #fff;
}

.estimate-form-section,
.estimate-form-section *,
.fixed-bottom-cta,
.fixed-bottom-cta *,
#mainimg.food11-fv .food11-fv__buttons,
#mainimg.food11-fv .food11-fv__buttons *,
#menubar a {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.fixed-bottom-cta__btn,
#mainimg.food11-fv .food11-fv__buttons a,
.estimate-form__button,
#menubar a {
	font-weight: 800;
}

.estimate-form-section i,
.estimate-form-section .fa,
.estimate-form-section .fa-solid,
.estimate-form-section .fa-regular,
.fixed-bottom-cta i,
.fixed-bottom-cta .fa,
.fixed-bottom-cta .fa-solid,
.fixed-bottom-cta .fa-regular,
#mainimg.food11-fv .food11-fv__buttons i,
#mainimg.food11-fv .food11-fv__buttons .fa,
#mainimg.food11-fv .food11-fv__buttons .fa-solid,
#mainimg.food11-fv .food11-fv__buttons .fa-regular,
#menubar i,
#menubar .fa,
#menubar .fa-solid,
#menubar .fa-regular {
	font-family: "Font Awesome 6 Free";
}

.estimate-form-section .fa-solid,
.fixed-bottom-cta .fa-solid,
#mainimg.food11-fv .food11-fv__buttons .fa-solid,
#menubar .fa-solid {
	font-weight: 900;
}

.estimate-form-section .fa-regular,
.fixed-bottom-cta .fa-regular,
#mainimg.food11-fv .food11-fv__buttons .fa-regular,
#menubar .fa-regular {
	font-weight: 400;
}

.estimate-form-section > p {
	text-align: center;
}

.estimate-form {
	max-width: 1100px;
	margin: 2rem auto 0;
	padding: clamp(1.5rem, 4vw, 3.5rem);
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(36,48,68,0.1);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	color: var(--color-text-main);
}

.estimate-form__progress {
	margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.estimate-form__progress-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 1rem;
}

.estimate-form__step-label,
.estimate-form__percent {
	margin: 0;
	font-weight: 600;
	line-height: 1.2;
}

.estimate-form__step-label {
	font-size: clamp(1.15rem, 2.3vw, 1.45rem);
}

.estimate-form__percent {
	font-size: clamp(1.1rem, 2.1vw, 1.4rem);
	color: var(--color-cta);
}

.estimate-form__progress-bar {
	overflow: hidden;
	height: 14px;
	background: #e5e7eb;
	border-radius: 999px;
}

.estimate-form__progress-bar span {
	display: block;
	width: 33%;
	height: 100%;
	background: linear-gradient(90deg, var(--color-cta), var(--color-primary-mid));
	border-radius: inherit;
	transition: width 0.25s ease;
}

.estimate-form__step {
	display: none;
}

.estimate-form__step.is-active {
	display: block;
}

.estimate-form__step h3 {
	margin: 0 0 2rem;
	padding: 1rem 1.25rem;
	border: 1px solid rgba(242,138,36,0.45);
	border-radius: 14px;
	background: var(--color-bg-soft);
	color: var(--color-text-main);
	font-size: clamp(1rem, 1.6vw, 1.12rem);
	font-weight: 600;
	line-height: 1.6;
}

.estimate-form__field {
	margin-bottom: 1.75rem;
}

.estimate-form__label {
	display: block;
	margin: 0 0 0.75rem;
	color: var(--color-text-main);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5;
}

.estimate-form__label span {
	margin-left: 0.35em;
	color: var(--color-cta);
	font-size: 0.85em;
}

.estimate-form__choices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.estimate-form__choices--small {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 520px;
}

.estimate-form__choice {
	position: relative;
	cursor: pointer;
}

.estimate-form__choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.estimate-form__choice span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 0.9rem 1rem;
	border: 2px solid var(--color-cta);
	border-radius: 14px;
	background: #fff;
	color: var(--color-text-main);
	font-weight: 600;
	text-align: center;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.estimate-form__choice input:focus-visible + span {
	outline: 3px solid rgba(90,166,40,0.3);
	outline-offset: 3px;
}

.estimate-form__choice input:checked + span {
	background: var(--color-primary-light);
	border-color: var(--color-primary-mid);
	color: var(--color-text-main);
	box-shadow: inset 0 0 0 2px rgba(90,166,40,0.18);
}

.estimate-form__input {
	width: 100%;
	min-height: 64px;
	padding: 0.85rem 1.1rem;
	border: 2px solid #d8dde5;
	border-radius: 14px;
	background: #fff;
	color: var(--color-text-main);
	font: inherit;
	font-weight: 500;
	box-sizing: border-box;
}

.estimate-form__input::placeholder {
	color: #8b939e;
}

.estimate-form__input:focus {
	border-color: var(--color-primary-mid);
	outline: 3px solid rgba(90,166,40,0.16);
}

.estimate-form__input:disabled {
	background: #f3f4f6;
	color: #a0a7b0;
}

.estimate-form__note {
	margin: 1.5rem 0 0;
	color: #6b7280;
	text-align: center;
	font-weight: 500;
	line-height: 1.8;
}

.estimate-form__buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2.25rem;
}

.estimate-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 68px;
	padding: 1rem 1.25rem;
	border: 0;
	border-radius: 14px;
	color: #fff;
	font: inherit;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.estimate-form__button:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.estimate-form__button--next,
.estimate-form__button--submit {
	background: linear-gradient(180deg, var(--color-cta), var(--color-primary));
}

.estimate-form__button--back {
	background: var(--color-primary-mid);
}

.estimate-form__button {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-weight: 600;
}

/*コラム一覧ページ*/
.column-page {
	background: #fff;
	padding: clamp(110px, 11vw, 160px) 0 clamp(80px, 9vw, 120px);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	color: var(--color-text-main);
}

.column-page__inner {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.column-page__heading {
	text-align: center;
	margin-bottom: clamp(30px, 5vw, 54px);
}

.column-page__en {
	margin: 0 0 0.5em;
	color: #9aa1ad;
	letter-spacing: 0.32em;
	font-weight: 700;
	line-height: 1.4;
}

.column-page__heading h2 {
	margin: 0 0 0.45em;
	color: var(--color-text-main);
	font-size: clamp(38px, 6vw, 72px);
	font-weight: 900;
	line-height: 1.2;
}

.column-page__heading p:not(.column-page__en) {
	margin: 0;
	color: var(--color-text-main);
	font-weight: 700;
	line-height: 1.8;
}

.column-page__categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: clamp(34px, 5vw, 54px);
}

.column-page__categories span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.45em 1.2em;
	background: var(--color-primary-light);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-primary-mid);
	font-weight: 900;
	line-height: 1.4;
}

.column-page__categories span:first-child {
	background: var(--color-cta);
	border-color: var(--color-cta);
	color: #fff;
}

.column-page__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 32px);
}

.column-page-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(36,48,68,0.08);
}

.column-page-card a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.column-page-card figure {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--color-primary-light);
}

.column-page-card figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.column-page-card__body {
	padding: clamp(20px, 3vw, 26px);
}

.column-page-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
	color: #8a93a3;
	font-size: 14px;
	font-weight: 800;
}

.column-page-card__meta span:last-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	background: var(--color-primary-light);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-primary-mid);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.4;
}

.column-page-card h3 {
	margin: 0 0 12px;
	color: var(--color-text-main);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 900;
	line-height: 1.55;
}

.column-page-card p {
	margin: 0;
	color: var(--color-text-main);
	font-weight: 600;
	line-height: 1.8;
	font-size: 15px;
}

/*空き家売却診断*/
.leaseback-diagnosis {
	background-color: var(--base-inverse-color);
	background-image: url("../images/bg_pattern1.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;
	padding: clamp(70px, 8vw, 120px) 0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	color: #fff;
}

.leaseback-diagnosis__inner {
	width: min(1080px, calc(100% - 40px));
	margin: 0 auto;
}

.leaseback-diagnosis__heading {
	text-align: center;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.leaseback-diagnosis__label {
	display: block;
	margin: 0 0 0.85em;
	padding: 0;
	background: transparent;
	color: rgba(255,255,255,0.58);
	border-radius: 0;
	font-size: 0.85rem;
	font-weight: 400;
	letter-spacing: 0.28em;
	line-height: 1.4;
}

.leaseback-diagnosis__title {
	margin: 0 0 0.55em;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.1em;
}

.leaseback-diagnosis__lead {
	margin: 0;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.7;
}

.leaseback-diagnosis__note {
	margin: 0.6rem 0 0;
	color: rgba(255,255,255,0.66);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.7;
}

@media screen and (min-width:700px) {

	.leaseback-diagnosis__title {
		font-size: 2.4rem;
	}

}

.leaseback-diagnosis__card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 22px;
	box-shadow: 0 18px 50px rgba(36,48,68,0.1);
	padding: clamp(1.5rem, 4vw, 3rem);
}

.leaseback-diagnosis__progress {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.8rem;
	color: var(--color-text-main);
	font-weight: 800;
	font-size: clamp(1rem, 2vw, 1.25rem);
}

.leaseback-diagnosis__bar {
	overflow: hidden;
	height: 12px;
	background: #e7e8ea;
	border-radius: 999px;
	margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.leaseback-diagnosis__bar-fill {
	display: block;
	width: 16.666%;
	height: 100%;
	background: linear-gradient(90deg, var(--color-cta), var(--color-primary-mid));
	border-radius: inherit;
	transition: width 0.25s ease;
}

.leaseback-diagnosis__step {
	display: none;
}

.leaseback-diagnosis__step.is-active {
	display: block;
}

.leaseback-diagnosis__question {
	margin: 0 0 1.5rem;
	color: var(--color-text-main);
	font-size: clamp(1.2rem, 2.4vw, 1.65rem);
	font-weight: 800;
	line-height: 1.55;
	text-align: center;
}

.leaseback-diagnosis__choices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.leaseback-diagnosis__choice {
	min-height: 62px;
	padding: 1rem;
	background: #fff;
	border: 2px solid var(--color-border);
	border-radius: 14px;
	color: var(--color-text-main);
	font: inherit;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.5;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.leaseback-diagnosis__choice:hover {
	border-color: var(--color-primary-mid);
	transform: translateY(-1px);
}

.leaseback-diagnosis__choice.is-selected {
	background: var(--color-primary-mid);
	border-color: var(--color-primary-mid);
	color: #fff;
}

.leaseback-diagnosis__choice:focus-visible,
.leaseback-diagnosis__back:focus-visible,
.leaseback-diagnosis__next:focus-visible,
.leaseback-diagnosis__cta:focus-visible {
	outline: 3px solid rgba(90,166,40,0.3);
	outline-offset: 3px;
}

.leaseback-diagnosis__nav {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: clamp(1.8rem, 4vw, 3rem);
}

.leaseback-diagnosis__back,
.leaseback-diagnosis__next,
.leaseback-diagnosis__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0.9rem 1.8rem;
	border-radius: 999px;
	font: inherit;
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.leaseback-diagnosis__back {
	background: #fff;
	border: 2px solid var(--color-border);
	color: var(--color-text-main);
}

.leaseback-diagnosis__next,
.leaseback-diagnosis__cta {
	background: var(--color-cta);
	border: 2px solid var(--color-cta);
	color: #fff;
}

.leaseback-diagnosis__next:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.leaseback-diagnosis__back:hover,
.leaseback-diagnosis__next:not(:disabled):hover,
.leaseback-diagnosis__cta:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.leaseback-diagnosis__result {
	text-align: center;
}

.leaseback-diagnosis__result-label {
	display: inline-flex;
	margin: 0 0 1rem;
	padding: 0.35rem 1rem;
	background: var(--color-primary-light);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-primary-mid);
	font-weight: 900;
	line-height: 1.4;
}

.leaseback-diagnosis__score {
	margin: 0 auto 24px;
	padding: 22px 24px;
	max-width: 420px;
	border-radius: 18px;
	background: var(--color-primary-light);
	border: 1px solid var(--color-border);
	text-align: center;
}

.leaseback-diagnosis__score-label {
	margin: 0 0 6px;
	color: var(--color-primary-mid);
	font-weight: 900;
	font-size: 16px;
	line-height: 1.5;
}

.leaseback-diagnosis__score-value {
	margin: 0;
	color: var(--color-text-main);
	font-weight: 900;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.1;
}

.leaseback-diagnosis__score-value span {
	color: var(--color-cta);
}

.leaseback-diagnosis__result-title {
	margin: 0 0 1rem;
	color: var(--color-text-main);
	font-size: clamp(1.55rem, 3.5vw, 2.4rem);
	font-weight: 900;
	line-height: 1.45;
}

.leaseback-diagnosis__result-text {
	max-width: 760px;
	margin: 0 auto 2rem;
	color: var(--color-text-main);
	font-weight: 700;
	line-height: 1.9;
}

.leaseback-diagnosis__cta {
	min-width: min(100%, 320px);
}

body.has-fixed-bottom-cta footer {
	padding-bottom: 8rem;
}

#mainimg.food11-fv .food11-fv__buttons {
	display: none !important;
}

@media screen and (min-width:801px) {

	header > nav > ul {
		display: none !important;
	}

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

/* 空き家買取版: FV CTAとPCナビを表示 */
#mainimg.food11-fv .food11-fv__buttons {
	display: flex !important;
}

@media screen and (min-width:801px) {
	header > nav > ul {
		display: flex !important;
	}
}

@media screen and (max-width:800px) {
	#mainimg.food11-fv .food11-fv__catch {
		font-size: clamp(28px, 8.4vw, 40px);
		line-height: 1.22;
	}
	#mainimg.food11-fv .food11-fv__lead {
		font-size: 14px;
		line-height: 1.55;
		margin-bottom: 0.8rem;
	}
	#mainimg.food11-fv .trust-badges {
		gap: 0.4rem;
		margin-bottom: 0.9rem;
	}
	#mainimg.food11-fv .trust-badges li {
		padding: 0.34rem 0.62rem;
		font-size: 0.78rem;
	}
}

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

	body.has-fixed-bottom-cta {
		padding-bottom: 72px;
	}

	.estimate-form {
		padding: 1.25rem;
		border-radius: 12px;
	}

	.estimate-form__progress-head {
		align-items: center;
	}

	.estimate-form__choices,
	.estimate-form__choices--small {
		grid-template-columns: 1fr;
		gap: 0.8rem;
		max-width: none;
	}

	.estimate-form__choice span {
		min-height: 58px;
	}

	.estimate-form__input {
		min-height: 58px;
	}

	.estimate-form__buttons {
		flex-direction: column;
	}

	.estimate-form__button {
		min-height: 60px;
		font-size: 1.1rem;
	}

	.top-column__inner {
		width: min(100% - 30px, 960px);
	}

	.top-column__news {
		padding: 20px;
	}

	.top-column__button {
		max-width: none;
	}

	.column-page {
		padding-bottom: calc(80px + 3rem);
	}

	.column-page__inner {
		width: min(100% - 30px, 1120px);
	}

	.column-page__categories {
		justify-content: flex-start;
	}

	.column-page__list {
		grid-template-columns: 1fr;
	}

	.column-page-card__body {
		padding: 20px;
	}

	.leaseback-diagnosis {
		padding-bottom: calc(80px + 3rem);
	}

	.leaseback-diagnosis__inner {
		width: min(100% - 30px, 1080px);
	}

	.leaseback-diagnosis__card {
		padding: 1.25rem;
		border-radius: 16px;
	}

	.leaseback-diagnosis__choices {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.leaseback-diagnosis__choice {
		min-height: 58px;
	}

	.leaseback-diagnosis__nav {
		flex-direction: column;
	}

	.leaseback-diagnosis__back,
	.leaseback-diagnosis__next,
	.leaseback-diagnosis__cta {
		width: 100%;
		min-height: 56px;
	}

	footer {
		padding-top: 2.5rem;
		padding-bottom: 7rem;
	}

	footer small {
		padding-top: 0.75rem;
	}

	.fixed-bottom-cta {
		left: 0;
		bottom: 0;
		transform: none;
		width: 100%;
		max-width: 100%;
		gap: 0;
	}

	.fixed-bottom-cta__btn {
		min-height: 64px;
		font-size: 16px;
		box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
	}

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


/* ReC & Co. グリーンテーマ最終上書き
---------------------------------------------------------------------------*/
body,
.column-page,
.estimate-form-section {
	background: var(--color-bg-base);
	color: var(--color-text-main);
}

header {
	background: rgba(255,255,255,0.82);
	border-bottom: 1px solid rgba(207,230,213,0.8);
	box-shadow: 0 12px 34px rgba(0,76,34,0.08);
	backdrop-filter: blur(14px);
}
header nav li a {
	color: var(--color-text-main);
	font-weight: 800;
}
header nav li a:hover {
	color: var(--color-primary);
}

.bg1,
.leaseback-diagnosis,
section.bg1.bg-pattern1.arrow {
	background-color: var(--color-primary-dark) !important;
	color: #fff !important;
}
.bg-primary-color {
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	color: #fff;
}
.bg2 {
	background: var(--color-bg-soft);
}
.bg3 {
	background-color: var(--color-bg-base);
}
main h2,
.column-page__heading h2,
.list-grid1 .list h4,
.list-normal1 h4,
.column-page-card h3,
.leaseback-diagnosis__question,
.leaseback-diagnosis__result-title,
.estimate-form__label {
	color: var(--color-text-main);
}
.bg1 h2,
.bg-primary-color h2,
.leaseback-diagnosis h2 {
	color: #fff;
}
main h2 span,
.column-page__en {
	color: var(--color-primary);
	opacity: 0.72;
}
.bg1 h2 span,
.bg-primary-color h2 span,
.leaseback-diagnosis__label {
	color: rgba(255,255,255,0.74);
	opacity: 1;
}

.food11-fv__image::after {
	background: linear-gradient(90deg, rgba(245,251,246,0.96) 0%, rgba(234,246,238,0.74) 34%, rgba(234,246,238,0.2) 62%, rgba(234,246,238,0) 100%);
}
#mainimg.food11-fv .food11-fv__catch,
#mainimg.food11-fv .food11-fv__lead {
	color: var(--color-text-main);
	text-shadow: 0 3px 18px rgba(255,255,255,0.9);
}

.btn1 a,
#mainimg .btn p:nth-of-type(1) a,
#mainimg.food11-fv .food11-fv__buttons p:nth-child(1) a,
.fixed-bottom-cta__btn--mail,
.estimate-form__button--next,
.estimate-form__button--submit,
.leaseback-diagnosis__next,
.leaseback-diagnosis__cta {
	background: linear-gradient(180deg, var(--color-cta), var(--color-primary));
	color: #fff;
	box-shadow: 0 12px 26px rgba(0,107,47,0.22);
}
#mainimg .btn p:nth-of-type(2) a,
#mainimg.food11-fv .food11-fv__buttons p:nth-child(2) a,
.fixed-bottom-cta__btn--tel,
.estimate-form__button--back {
	background: linear-gradient(180deg, var(--color-primary-mid), var(--color-primary-dark));
	color: #fff;
}
.btn1 a:hover,
.fixed-bottom-cta__btn:hover,
.estimate-form__button:hover,
.leaseback-diagnosis__next:not(:disabled):hover,
.leaseback-diagnosis__cta:hover {
	background: var(--color-cta-hover);
	color: #fff;
	opacity: 1;
}

.list-grid1 .list,
.list-normal1 .list,
.column-page-card,
.estimate-form,
.leaseback-diagnosis__card {
	background: #fff;
	color: var(--color-text-main);
	border: 1px solid var(--color-border);
	box-shadow: 0 18px 48px var(--color-shadow-green);
}
.list-grid1 .list.bg-black,
section.bg1.bg-pattern1.arrow .list-grid1 .list.bg-black {
	background: #053F20 !important;
	border-color: rgba(255,255,255,0.18);
	color: #fff !important;
}
.list-grid1 .list.bg-black p,
section.bg1.bg-pattern1.arrow .list-grid1 .list.bg-black p {
	color: rgba(255,255,255,0.76) !important;
}

.ta1 caption {
	background: var(--color-primary-dark);
	color: #fff;
}
.ta1,
.ta1 tr,
.ta1.plan,
.ta1.plan td,
.ta1.plan th {
	border-color: var(--color-border);
}
.ta1.plan th:first-child,
.ta1.plan td:first-child,
.ta1 td,
.ta1 th {
	background: #fff;
	color: var(--color-text-main);
}
.ta1.plan th:nth-child(2),
.ta1.plan td:nth-child(2) {
	background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
	color: #fff;
}
.ta1.plan th:nth-child(3),
.ta1.plan td:nth-child(3),
.ta1.plan th:nth-child(4),
.ta1.plan td:nth-child(4) {
	background: var(--color-primary-light);
	color: var(--color-text-main);
}
.ta1.plan th .osusume {
	background: var(--color-primary-mid);
}
.ta1.plan.blur {
	filter: none;
	transform: none;
	opacity: 1;
}

.estimate-form__percent,
.estimate-form__label span,
.leaseback-diagnosis__score-label,
.leaseback-diagnosis__score-value span,
.leaseback-diagnosis__result-label,
.column-page__categories span,
.column-page-card__meta span:last-child {
	color: var(--color-primary);
}
.estimate-form__progress-bar,
.leaseback-diagnosis__bar {
	background: #DDEBE1;
}
.estimate-form__progress-bar span,
.leaseback-diagnosis__bar-fill {
	background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-mid));
}
.estimate-form__step h3,
.leaseback-diagnosis__score,
.leaseback-diagnosis__result-label,
.column-page__categories span,
.column-page-card figure,
.column-page-card__meta span:last-child {
	background: var(--color-primary-light);
	border-color: var(--color-border);
}
.estimate-form__choice span,
.estimate-form__input,
.leaseback-diagnosis__choice {
	background: #fff;
	border-color: var(--color-border);
	color: var(--color-text-main);
}
.estimate-form__choice input:checked + span,
.leaseback-diagnosis__choice.is-selected {
	background: var(--color-primary-light);
	border-color: var(--color-primary);
	color: var(--color-text-main);
	box-shadow: inset 0 0 0 2px rgba(0,107,47,0.16);
}
.estimate-form__input:focus,
.leaseback-diagnosis__choice:hover {
	border-color: var(--color-primary);
	outline-color: rgba(0,107,47,0.18);
}

.faq dt {
	background: #fff;
	color: var(--color-text-main);
	border: 1px solid rgba(207,230,213,0.9);
	box-shadow: 0 10px 28px rgba(0,76,34,0.1);
}
.faq dt::before {
	background: var(--color-primary);
	color: #fff;
}
.faq dd {
	color: rgba(255,255,255,0.88);
}

footer {
	background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-deep));
	color: #fff;
	border-top: 1px solid rgba(255,255,255,0.12);
}
footer a {
	color: rgba(255,255,255,0.88);
}
footer a:hover {
	color: #fff;
}
footer .logo img {
	filter: brightness(0) invert(1);
	opacity: 0.94;
}
footer small {
	color: rgba(255,255,255,0.78);
}

@media screen and (max-width:800px) {
	header {
		background: rgba(255,255,255,0.9);
	}
	.food11-fv__image::after {
		background: linear-gradient(180deg, rgba(234,246,238,0.06) 0%, rgba(234,246,238,0.25) 38%, rgba(245,251,246,0.88) 78%, rgba(245,251,246,0.98) 100%);
	}
}


/* FV画像は無加工で表示
---------------------------------------------------------------------------*/
#mainimg,
#mainimg.food11-fv {
	background-color: var(--color-primary-dark) !important;
	background-image: url("../images/mainimg-rec.png?v=20260628-fv2") !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: cover !important;
	background-blend-mode: normal !important;
	opacity: 1 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
}

#mainimg.food11-fv::before,
#mainimg.food11-fv::after,
.food11-fv__image::before,
.food11-fv__image::after {
	content: none !important;
	display: none !important;
	background: none !important;
	opacity: 0 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
}

.food11-fv__image,
.food11-fv__image picture,
.food11-fv__image img {
	opacity: 1 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
	background-blend-mode: normal !important;
}

#mainimg.food11-fv .food11-fv__catch,
#mainimg.food11-fv .food11-fv__lead {
	color: #fff !important;
	text-shadow: 0 3px 16px rgba(0,35,16,0.7), 0 1px 2px rgba(0,0,0,0.38) !important;
}


/* ヘッダー白背景・FV開始位置調整
---------------------------------------------------------------------------*/
header {
	background: #fff !important;
	background-color: #fff !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	border-bottom: 1px solid #EEF2EF !important;
}

#mainimg.food11-fv {
	margin-top: 60px !important;
}

@media screen and (min-width:700px) {
	#mainimg.food11-fv {
		margin-top: 90px !important;
	}
}

@media screen and (min-width:600px) and (max-width:1024px) and (orientation: portrait) {
	#mainimg,
	#mainimg.food11-fv {
		background-image: url("../images/mainimg-tablet.png?v=20260628-tablet") !important;
		padding-top: 133.333% !important;
	}
	#mainimg.food11-fv > .food11-fv__text {
		top: 44% !important;
		width: min(54%, 520px) !important;
	}
}
