@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');
@import url('https://fonts.googleapis.com/css2?family=Vibur&display=swap');

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


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

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

	--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: 400;
	-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: var(--primary-color);
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

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



/*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: 74px;	/*ヘッダーの高さ*/
	}

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

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

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

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

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




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

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

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

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


/*トップページとサブページのヘッダー設定
---------------------------------------------------------------------------*/

header.page01{
	background: var(--primary-color);
	position: fixed;z-index: 10;
}
header.page{
	background-color: rgba(255,255,255,0.00);
	position: fixed;z-index: 10;
}


.mv {
	height: 500px;
	position: absolute;
	color: #fff;
	background: rgba(255,255,255,0.00);
}
/* スクロールしたらヘッダーメニューのフォントカラー変更 */
.page.pageColorScroll {
  background: var(--primary-color);
  transition: background 0.4s ease-out;
}


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
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: 220px;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*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: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-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: 0px;		/*角を丸くする指定*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下、左右へ。*/
	background: var(--primary-color);		/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);					/*背景色。冒頭のbase-colorを読み込みます。*/
	border-bottom: 1px solid var(--base-color);
}

/*子メニュー*/
.small-screen #menubar ul ul a {
	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を読み込みます。*/
	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-color:#A04345;	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	border-radius: 0px 0px 0px 2px;		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

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

	#menubar_hdr {
		display: none;
		transform: scale(1.2);	/*1.5倍のサイズに。お好みで。*/
	}

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




/*バー１本あたりの設定*/
#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(--base-inverse-color);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#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;	/*２本目は使わないので非表示にする*/
}


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

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

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

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

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


main h3{
	margin: 0;padding: 0;
	font-size: 1.2rem;		/*文字サイズ。240%。*/
	font-weight: 600;		/*太字に*/
	margin-top: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	position: relative;
    color: rgba(62,60,60,1.00);
}

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

	main h3 {
		font-size: 1.8rem;		/*文字サイズ。220%。*/
	}

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

/*フッター
---------------------------------------------------------------------------*/
footer {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	padding: 3rem 2rem;	/*フッター内の余白*/
	text-align: center;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
footer a {
	color: #FFFFFF;
	text-decoration: none;	/*下線を消す*/
}

/*マウスオン時*/
footer a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.8;
}

/*フッター直下の1つ目ブロック（ロゴブロック）*/
footer div:nth-of-type(1) {
	text-align: center;
	margin-bottom: 1.5rem;
}

/*フッター直下の２つ目ブロック（メニューブロック）*/
footer div:nth-of-type(2) {
	display: block;
}

/*画面700px以上の追加指定*/
@media screen and (min-width:700px) {
	footer {
		padding: 4rem 2rem;
	}
}

footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 1rem;
	font-size: 0.85rem;
}

/*SP: メニューを縦並び中央*/
footer ul li {
	margin-bottom: 1rem;
}

/*PC: メニューを横並び中央*/
@media screen and (min-width:700px) {
	footer ul {
		display: inline-flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 2rem;
		margin-bottom: 1.5rem;
	}
	footer ul li {
		margin-bottom: 0;
	}
}

/*Copyright部分*/
footer small {
	display: block;
	padding-top: 1rem;
}

footer .logo {
	width: 120px;
	margin: 0 auto 1rem;
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {
	footer .logo {
		width: 120px;
		margin: 0 auto 1.5rem;
	}
}

/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.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;	/*アイコンサイズ*/
}


/*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;		/*テキストをセンタリング*/
	border: 2px solid var(--primary-color);
}

/*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を読み込みます。*/
	border: 2px solid var(--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-pattern2 {
	background-image: url("../images/bg_pattern2.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;
}


/*list-c2（お問い合わせ、資料請求）
---------------------------------------------------------------------------*/

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

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


/*ボックス１個あたり*/
.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: 0px;	/*角を丸くする指定*/
}

	/*画面幅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;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	/*2つ目のボックス（資料請求）*/
	.list-c2 .list:nth-of-type(2) {
		border-radius: 0px;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.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%にすると逆に移動します。*/
}

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

/*その他
---------------------------------------------------------------------------*/
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.dn {display: none !important;}


/*テキストサイズ小さい
---------------------------------------------------------------------------*/
.s-size {
	font-size: 0.8rem;
	color: #5C5C5C;
}

.s-size-w {
	font-size: 0.8rem;
	color: #FFF;
}




/*ヘッダーの背景色をmainから変える
---------------------------------------------------------------------------*/
.header-default {
    color: #000000;
  }

.page01 {
	position: fixed;
}

/*---------------------------------------------------------------------------
---------------------------------------------------------------------------
追加
---------------------------------------------------------------------------
---------------------------------------------------------------------------*/

/* ブロック共通の基本設定 */
.section-container {
  padding: 80px 20px;
  background-color: var(--base-color);
  color: var(--base-inverse-color);
 font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
  line-height: 1.8;
}

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

.accent-text {
  color: var(--primary-color);
	font-weight: 800;		/*太字に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}



/*[hero] 
---------------------------------------------------------------------------*/
/* ================================================================
   HERO AREA 修正版
================================================================ */
#hs-hero {
  position: relative;
  /* 共通のsectionパディングをリセットして高さを制御しやすくします */
  padding: 0 !important; 
  margin: 0;
  
  /* 高さの設定：min-heightにすることでコンテンツ量が増えても崩れません */
  min-height: 700px; 
  height: 700px; /* 厳密に700pxに固定したい場合 */
  
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
  /* 背景画像の設定 */
  background-image: url('../images/office01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* パララックス効果で高級感を演出 */
}

/* 白カバー：清潔感のある 0.85 透過 */
.hero-overlay {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); 
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 100px 20px; /* 上下のヘッダー分などを考慮した余白 */
  text-align: center;
}



/* タイトル等の調整 */
.hero-title {
  color: var(--base-inverse-color) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  line-height: 1.4 !important;
  margin-bottom: 30px !important;
  font-weight: 700 !important;
}

/* ボタン：赤背景に白文字で視認性を確保 */
.btn-cta {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--primary-inverse-color) !important;
  padding: 20px 60px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(173, 71, 72, 0.2);
  transition: 0.3s ease;
}

/* スマホ時でも最低限の清潔感を保つ設定 */
@media screen and (max-width: 768px) {
  #hs-hero {
    min-height: 500px; /* スマホでは少し高さを抑える */
    height: auto;
    background-attachment: scroll; /* スマホでは固定背景を解除（挙動安定のため） */
  }
  .hero-inner {
    padding: 80px 20px;
  }
}


/*[intoro] 
---------------------------------------------------------------------------*/

.intro-block {
  text-align: center;
}
.intro-title {
  font-size: 1.75rem;
  margin-bottom: 30px;
  line-height: 1.4;
}
.intro-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.under-line {
  background: linear-gradient(transparent 70%, rgba(173, 71, 72, 0.2) 70%);
  font-weight: bold;
}
.solution-message {
  display: inline-block;
  border: 2px solid var(--primary-color);
  padding: 20px 40px;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--primary-color);
  background-color: #fff;
}
@media (max-width: 768px) {
  .pc-only { display: none; }
  .intro-title { font-size: 1.4rem; }
}

/*[TROUBLE] 
---------------------------------------------------------------------------*/
.trouble-grid{
  display:flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.trouble-item{
  position: relative;
  padding: 1em 1.5em;
  letter-spacing: 0.2rem;
  border: 0px solid var(--primary-color);
  background-color: #ddd;
  margin: 8px;
  color: var(--base-inverse-color);
  border-radius: 5px;
  font-weight: 600;

}



/*[value] 
---------------------------------------------------------------------------*/
.value-block {
  background-color: #f9f9f9; /* 導入ブロックと差をつけるため、ごく薄いグレーを推奨 */
}
.section-label {
  color: var(--primary-color);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
}
.value-main-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-item {
  background: var(--base-color);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}
.value-number {
  color: rgba(173, 71, 72, 0.1);
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.value-item-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 15px;
  z-index: 1;
}
.value-item-desc {
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr; }
}

/*[price] 
---------------------------------------------------------------------------*/
/* 料金ブロック全体 */
.price-block {
  background-color: var(--base-color);
}
.price-main-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}
.price-sub-text {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 60px;
}

/* グリッドレイアウト */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  align-items: stretch;
}

/* 共通カードスタイル */
.price-card {
  border: 2px solid #CBCBCB;
  padding: 50px 30px 30px;
  text-align: center;
  position: relative;
  background: #fff;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-5px);
}

/* オプション用色違い */
.price-card-op {
  border: 2px solid #eee;
  padding: 50px 30px 30px;
  text-align: center;
  position: relative;
  background: #F7F7F7;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* おすすめカードの強調 */
.price-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(173, 71, 72, 0.1);
}
.recommend-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  padding: 5px 20px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
}

.recommend-badge-g {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #E7E7E7;
  color: var(--primary-color);
  padding: 5px 20px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
}
.recommend-badge-w {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 2px solid #eee;
  color: #A0A0A0;
  padding: 5px 20px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
}

/* カード内パーツ */
.plan-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.plan-catch {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 25px;
}
.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--base-inverse-color);
  margin-bottom: 10px;
  border-top: 1px solid #eee;
  padding-top: 25px;
}
.price-amount .tax-in { font-size: 0.8rem; margin-right: 5px; }
.price-amount .unit { font-size: 1.2rem; margin-left: 5px; }

.price-delivery {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 0.9rem;
  /* margin-top: auto;  ←これを削除またはコメントアウト */
  margin-top: 30px;      /* 代わりに固定の余白を追加 */
  flex-grow: 1;          /* リストのエリア自体は広げたままにする（枠線を維持するため） */
}
.price-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 20px;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ================================================================
   OPTIONS BLOCK 修正版
================================================================ */
.options-block {
  background-color: var(--base-color);
  border-top: 1px solid #eee;
}

.options-lead {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.option-category {
  margin-bottom: 80px;
}

.category-name {
  font-size: 1.2rem;
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
  margin-bottom: 20px;
  font-weight: bold;
}

.category-note {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

/* テーブルスタイル */
.option-table {
  width: 100%;
  border-collapse: collapse;
}

.option-table tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.option-table tr:hover {
  background-color: rgba(173, 71, 72, 0.02);
}

.option-table th,
.option-table td {
  padding: 20px 15px;
  text-align: left;
  vertical-align: middle;
}

.option-table th {
  width: 30%;
  font-weight: bold;
  color: var(--base-inverse-color);
}

.option-table td {
  color: #555;
  font-size: 0.95rem;
}

.option-table .price {
  width: 150px;
  text-align: right;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.1rem;
  white-space: nowrap;
}

.option-table .price span {
  font-size: 0.8rem;
  margin-left: 4px;
}

/* 特定の行の強調（独自ドメインフォームなど） */
.option-table tr.highlight {
  background-color: rgba(173, 71, 72, 0.04);
}

/* 保守プラン用グリッド */
.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.maintenance-item {
  border: 1px solid #ddd;
  padding: 30px;
  background: #f9f9f9;
}

.maintenance-item h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--base-inverse-color);
}

.maintenance-item .m-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.maintenance-item ul {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  color: #666;
}

.maintenance-item ul li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.maintenance-item ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* 注釈エリア */
.options-footer-note {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .option-table, .option-table tr, .option-table th, .option-table td {
    display: block;
    width: 100%;
  }
  .option-table tr { padding: 15px 0; }
  .option-table th { padding-bottom: 5px; }
  .option-table td { padding-top: 5px; padding-bottom: 5px; }
  .option-table .price { text-align: left; font-size: 1.2rem; }
  .maintenance-grid { grid-template-columns: 1fr; }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-main-title { font-size: 1.5rem; }
  .option-item { flex-direction: column; gap: 5px; }
}

/*[ConoHaWing] 
---------------------------------------------------------------------------*/
.benefit-block {
  background-color: #f9f9f9;
}
.benefit-box {
  background: var(--base-color);
  border: 1px solid #ddd;
  padding: 60px 40px;
  border-radius: 4px;
}
.benefit-header {
  text-align: center;
  margin-bottom: 40px;
}
.benefit-label {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.benefit-title {
  font-size: 1.8rem;
  margin-top: 10px;
  color: var(--base-inverse-color);
}
.benefit-lead {
  text-align: center;
  margin-bottom: 50px;
}
.benefit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.benefit-icon {
  font-size: 2rem;
}
.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.benefit-item p {
  font-size: 0.9rem;
  margin: 0;
}
.benefit-note {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}
@media (max-width: 768px) {
  .benefit-content { grid-template-columns: 1fr; }
  .benefit-box { padding: 40px 20px; }
}


/*[flow] 
---------------------------------------------------------------------------*/
.minimal-title {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  color: var(--base-inverse-color);
}
.flow-list-minimal {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.flow-list-minimal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}
.flow-step {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}
.step-num {
  width: 50px;
  height: 50px;
  background-color: var(--base-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  z-index: 1;
}
.flow-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--base-inverse-color);
}
.flow-step p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/*[QA] 
---------------------------------------------------------------------------*/



.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.faq-item dt {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}
.faq-item dt::before {
  content: "Q";
  color: var(--primary-color);
}
.faq-item dd {
  margin: 0;
  padding-left: 30px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}


/*[CTA] 
---------------------------------------------------------------------------*/
.cta-block {
  background-color: var(--primary-color); /* ヘッダー・フッターと同じ赤 */
  color: var(--primary-inverse-color); /* 白文字 */
  padding: 100px 20px;
    text-align: center;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}
.limit-badge {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  margin: 0 auto;
  max-width: 500px;
  border: 1px solid #fff;
  font-size: 14px;
}
.limit-badge span {
  font-weight: bold;
  color: #fff;
  border-right: 1px solid #fff;
  margin-right: 10px;
  padding-right: 10px;
}

/* ボタンデザイン */
.main-cta-button {
  display: block;
  background: var(--base-color);
  color: var(--primary-color);
  padding: 20px 100px;
  margin: 2rem auto;
  max-width: 500px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 4px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.main-cta-button:hover {
  transform: translateY(-5px);
  background: #fdfdfd;
}
.sub-arrow {
  display: block;
  font-size: 0.85rem;
  font-weight: normal;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-title { font-size: 1.8rem; }
  .limit-badge span { border-right: none; display: block; border-bottom: 1px solid #fff; padding-bottom: 5px; margin-bottom: 5px; margin-right: 0; padding-right: 0;}
}