@charset "shift_jis";

/*-----------------------------------------------
	編集可能なファイルです。
-----------------------------------------------*/
body {
	margin: 90px auto 0 !important;
	font-family: 游ゴシック体, Yu Gothic, YuGothic, ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic !important;

}

.form th span.form_required,
.form th span.form_any {
	text-align-last: auto;
}

.info_ma {
	width: 1000px;
}

.pan_wrap {
	text-align: left;
	margin: 5px 0;
}

.pan_wrap div {
	display: inline-block;
	font-size: 12px;
	line-height: 24px;
	position: relative;
	margin-right: 14px;
}

.pan_wrap div a {
	display: inline-block;
	padding: 0 5px 0px 5px;
	height: 28px;
	line-height: 28px;
	text-decoration: none;
	color: #747772;
	background: #e6ecf5;
	font-size: 12px;
}

.pan_wrap div:after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	border-style: solid;
	border-color: transparent;
	border-left-color: #e6ecf5;
	border-width: 14px 12px;
	width: 0;
	height: 0;
}

.pan_wrap div:last-child:after {
	border: none;
}

.container {
	font-family: PT Serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.625;
	-webkit-text-size-adjust: 100%;
	background: rgba(255, 255, 255, .7);
	color: #6c6d74;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h2.cms_h2 {
	margin: 10px auto 20px auto;
	position: relative;
	padding-bottom: 0.7em;
	border-bottom: 4px solid #DDD;
	display: inline-block;
	width: 100%;
	line-height: 25px;
}

h2.cms_h2:after {
	position: absolute;
	content: ' ';
	border-bottom: solid 4px #042455;
	bottom: -4px;
	width: 13%;
	display: block;
	left: 0px;
}

.c_container {
	width: 1100px;
	margin: 100px auto 20px;
}

.maincontents {
	width: 780px;
	float: left;
}

.side {
	width: 300px;
	float: right;
}

.cms_back {
	text-align: left;
	margin: 10px auto 10px auto;
	padding: 0px 0px 0px 0px;
}

.cms_back a {
	color: #004CD3;
	line-height: 18px;
}

.cms_back a:hover {
	text-decoration: none;
	color: #999999;
}

.tag_li_box a {
	border: 1px solid #042455;
	color: #042455;
}

.tag_li_box a:hover {
	background: #042455;
	color: #e5efec;
}

.paper_inq_wrap {
	background-color: #f4f6f8;
	border: solid 4px #042455;
}

.paper_inq_ti {
	background-color: #042455;
}

.paper_ma_download a {
	border: solid 1px #042455;
}

.paper_ma_download a:hover {
	background: #c4c4c4;
}


.pc_off {
	display: none;
}

h1 {
	position: fixed;
	z-index: 105;
	font-size: 10px;
	color: #333;
	top: 0;
	left: 20px;
}

.common_header {
	background: #fff;
	position: fixed;
	/* メガメニューの基準点 */
	width: 100%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	top: 0;
	z-index: 100;
}

.h_inner {
	margin: 0 auto;
	padding: 0 20px;
	height: 90px;
	/* ヘッダーの高さ */
}

.h_main_list {
	display: flex;
	justify-content: center;
	gap: 5px;
	font-size: 13px;
	letter-spacing: 2px;
	height: 100%;
	align-items: center;
	font-family: Montserrat;
}

.h_main_list>li {
	cursor: pointer;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;

}

.h_main_list>li>a {
	color: #b4b5ba;
	transition: color 0.3s;
	padding: 0 5px;
	white-space: nowrap;
}

/* ホバー時のテキスト色 */
.h_main_list>li:hover>a {
	color: #333;
}

/* メガメニューの基本設定 */
.megamenu {
	background: #fff;
	width: 100%;
	position: absolute;
	width: 300px;

	/* ★ 変更箇所：ヘッダーの高さ（90px）に合わせるため、topを 80px から 90px（または 100%）に変更しました。 */
	top: 90px;

	left: 0;
	right: 0;
	z-index: 999;

	/* ★ 非表示状態の設定 */
	visibility: hidden;
	opacity: 0;
	/* ★ 高さを0にして隠す */
	/* overflow: hidden; */
	/* ★ はみ出た中身を隠す */
	pointer-events: none;
	/* ★ 閉じている時はクリック不可 */

	/* ★ transitionで「ゆっくり降りてくる」動きを制御 */
	transition:
		opacity 0.5s ease,
		max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.5s,
		padding 0.6s ease;
}

/* ★ ホバー時にメニューを表示する設定 */
.h_main_list>li:hover .megamenu {
	visibility: visible;
	opacity: 1;
	padding: 40px 0;
	pointer-events: auto;
}

.mega_li {
	position: relative;
	z-index: 10;
}

.h_main_list .megamenu::after {
	content: "";
	width: 200vw;
	height: 100%;
	display: block;
	background: #fff;
	position: absolute;
	top: 0;
	z-index: 5;
	left: -100vw;
	right: 0;
}

.h_main_list>li:hover .megamenu::after {}

/* メガメニュー内リスト */
.mega_li {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mega_li li:not(:last-of-type) {
	padding-bottom: 10px;
}

.mega_li li a {
	font-size: 14px;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
	display: block;
	color: #b4b5ba;
}

.mega_li li a:hover {
	opacity: 0.7;
	text-decoration: underline;
}

/* お問い合わせリスト */
.h_inq_list {
	display: flex;
	justify-content: right;
	align-items: center;
	gap: 15px;
	margin: -55px 15px 0 0;
}

.h_inq_list li {
	display: flex;
	align-items: center;
}

.h_inq_list img {
	width: 24px;
	height: auto;
	filter: grayscale(100%);
	transition: filter 0.3s;
}

.h_inq_list li:hover img {
	filter: grayscale(0%);
}

.h_inq_list li:last-of-type,
.h_inq_list li:last-of-type a {
	/* ← aタグが生成された場合にも効くように追加 */
	font-size: 20px;
	color: #320000 !important;
	font-family: 游明朝, YuMincho, ヒラギノ明朝 ProN W3, Hiragino Mincho ProN, メイリオ, Meiryo, HG明朝E, ＭＳ Ｐ明朝, ＭＳ 明朝;
	text-decoration: none;
	/* 下線がついてしまうのを防ぐ */
}

/* common */
.pc_off {
	display: none;
}

.w1200 {
	width: 1200px;
	margin: auto;
}

.w1000 {
	width: 1000px;
	margin: auto;
}

.txt01 {
	font-size: 42px;
	line-height: 1.2;
	font-family: 游明朝, YuMincho, ヒラギノ明朝 ProN W3, Hiragino Mincho ProN, メイリオ, Meiryo, HG明朝E, ＭＳ Ｐ明朝, ＭＳ 明朝;
}

.txt02 {
	font-size: 36px;
	font-weight: inherit;
	color: #2d2e33;
	text-transform: inherit;
	font-family: 'Playfair Display', serif;
}

.txt03 {
	font-size: 28px;
	line-height: 1.4;
	color: #2d2e33;
}

.txt04 {
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 游ゴシック体, Yu Gothic, YuGothic, ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic;
	font-style: italic;
}

p {
	margin: 0;
}

a {
	text-decoration: none;
}

/* オススメ住宅設備（一覧）*/
.gallery_list {
	padding: 120px 0;
}

.cms_facility_list {
	background: #f7f7f7;
}

.cms_facility_list_tit {
	background: url(/img_cms/facility/list_tit_bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0;
}

.cms_facility_list_tit p {
	text-align: center;
	color: #fff;
	font-size: 42px;
	font-family: 游明朝, YuMincho, ヒラギノ明朝 ProN W3, Hiragino Mincho ProN, メイリオ, Meiryo, HG明朝E, ＭＳ Ｐ明朝, ＭＳ 明朝;
}

.cms_facility_list_tit p span {
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
}

.cms_facility_list_list {
	padding-top: 120px;
	background: #f7f7f7;
	overflow: hidden;
}

.cms_facility_list_list li {
	margin-bottom: 35px;
	width: fit-content;
	opacity: 0;
	transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.cms_facility_list_list li {
	margin-right: auto;
	transform: translateX(-100px);
}

.cms_facility_list_list li:nth-child(6n+4),
.cms_facility_list_list li:nth-child(6n+5),
.cms_facility_list_list li:nth-child(6n+6) {
	margin-left: auto;
	margin-right: 0;
	transform: translateX(100px);
}

.cms_facility_list_list li.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.cms_facility_list_list li:not(:last-of-type) {
	margin-bottom: 35px;
}

.cms_facility_list_list li:nth-child(n+4):nth-child(-n+6) {
	margin: 0 0 35px auto;
}

.cms_facility_list_list li a {
	width: 900px;
	height: 430px;
	padding: 40px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #e5e5e7;
	display: flex;
	gap: 40px;
	align-items: center;
	transition: all .3s ease-in-out;
}

.cms_facility_list_list li a:hover {
	border: 1px solid #000;
}

.cms_facility_list_list li a img {
	width: 390px;
	height: 347px;
	object-fit: cover;
}

.cms_facility_list_name {
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	letter-spacing: 2px;
	color: #333;
}

.cms_facility_list_name span {
	color: #b4b5ba;
	display: block;
	font-size: 14px;
	font-weight: 400;
	padding-top: 2px;
}

.cms_facility_list_about {
	font-size: 16px;
	font-weight: 400;
	color: #6c6d74;
	padding-top: 15px;
}

/* オススメ住宅設備（詳細）*/
.facility_sho_top_img img {
	width: 100% !important;
	height: 500px !important;
	object-fit: cover;
}

.facility_sho_main {
	padding-top: 60px;
	width: 900px;
	margin: auto;
}

.facility_sho_main_top {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

.facility_sho_main_top_img {
	width: 540px;
	height: 316px;
}

.facility_sho_main_top_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.facility_sho_main_top_txt01 {
	font-size: 28px;
	line-height: 1.4;
	position: relative;
	padding-bottom: 20px;
	font-family: 'Playfair Display', serif;
	color: #333;
}

.facility_sho_main_top_txt01::after {
	content: "";
	width: 100px;
	height: 1px;
	background: #e5e5e7;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}

.facility_sho_main_top_txt02 {
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-top: 40px;
	color: #333;
}

.facility_sho_main_bottom {
	display: flex;
	align-items: flex-start;
	gap: 140px;
	padding-top: 60px;
}

.facility_sho_main_features {
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #333;
}

.facility_sho_main_features span {
	font-size: 16px;
	font-weight: 400;
	color: #6c6d74;
	display: block;
	font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}

.facility_sho_main_bottom_about {
	font-size: 16px;
	font-weight: 400;
	color: #6c6d74;
	font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}

.facility_sho_bottom {
	background: #f7f7f7;
	padding: 70px 0;
	margin-top: 70px;
}

.facility_sho_bottom_list {
	display: flex;
	justify-content: space-between;
}

.facility_sho_bottom_list li {
	width: 370px;
}

.facility_sho_bottom_img {
	width: 100%;
	height: 280px;
}

.facility_sho_bottom_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.facility_sho_bottom_list .facility_sho_main_top_txt01 {
	padding-top: 20px;
	position: unset;
}

.facility_sho_bottom_list_txt02 {
	font-size: 13px;
	line-height: 1.4;
	color: #b4b5ba;
	font-family: Montserrat;
	font-weight: 500;
	letter-spacing: 2px;
}

.facility_sho_bottom_list .facility_sho_main_bottom_about {
	padding-top: 20px;
}


/* 施工事例（一覧） */
.gallery_list_tit {
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	color: #333;
}

.gallery_list_flex {
	display: flex;
	gap: 35px 0;
	flex-wrap: wrap;
	padding-top: 60px;
}

.gallery_list_flex li {
	margin-right: 25px;

	&:nth-child(4n) {
		margin-right: 0;
	}
}

.gallery_list_flex li a {
	width: 270px;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #e5e5e7;
	transition: all .3s ease-in-out;
	display: block;
}

.gallery_list_flex li a:hover {
	border-color: #3f3f41;
}

.gallery_list_flex li a img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.gallery_list_flex li a p {
	font-size: 13px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #333;
	padding-top: 10px;
}

/* 施工事例（詳細） */
.gallery_sho {
	padding: 120px 0;
}

.ga_sho_tit {
	color: #3f3f41 !important;
	font-size: 28px;
	line-height: 1.4;
	font-family: Playfair Display;
	padding-top: 15px;
}

.gallery_sho ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px 0;
	padding-top: 20px;
}

.gallery_sho ul li {
	width: 210px;
	height: 140px;
	overflow: hidden;
}

.gallery_sho ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease-in-out;
}

.gallery_sho ul li:hover img {
	transform: scale(1.1);
}


/* 商品情報 */
.lineup {
	margin-top: 80px;
}

.lineup_tit_bg {
	width: 100%;
	height: 600px;
	overflow: hidden;
}

.lineup_tit_bg img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	opacity: 0.5;
}

.lineup_top {
	width: 100%;
	height: 600px;
	display: grid;
	place-content: center;
	margin-top: -600px;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.lineup_tit {
	font-size: 6rem;
	font-weight: inherit;
	color: #2d2e33;
	font-family: 'Playfair Display', serif;
}

.lineup_tit span {
	font-size: 20px;
	line-height: 1.5;
	font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	display: block;
}

.lineup_top_txt {
	font-size: 42px;
	font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", メイリオ, Meiryo, HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝";
	color: #2d2e33;
}

.lineup_top_com {
	padding-bottom: 40px;
	font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}

.lineup_conts01_flex {
	display: flex;
	gap: 30px;
	padding-top: 30px;
}

.lineup_conts01 ul li:nth-child(even) {
	flex-direction: row-reverse;
}

.lineup_conts01_img {
	flex-shrink: 0;
	width: 580px;
	object-fit: contain;
}

.lineup_type {
	padding-top: 60px;
	overflow: hidden;
}

.lineup_com {
	font-size: 48px;
	line-height: 1.2;
	color: #e44e56;
	text-align: center;
	width: fit-content;
	position: relative;
	display: block;
	margin: auto;
}

.lineup_com::before,
.lineup_com::after {
	content: "";
	position: absolute;
	top: calc(50% - (calc(.6px + .03em) / 2));
	width: 2000px;
	border-bottom: calc(.6px + .03em) solid #e5e5e7;
}

.lineup_com::before {
	right: 100%;
	margin-right: calc(5px + .3em);
}

.lineup_com::after {
	left: 100%;
	margin-left: calc(5px + .3em);
}

.lineup_type_conts {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	padding-top: 30px;
}

.lineup_type_l .txt01 {
	color: #2d2e33;
}

.lineup_type_l .txt01::before {
	content: "";
	display: inline-block;
	position: relative;
	top: calc(-.1 * 1em);
	vertical-align: middle;
	height: calc(4px + .7em);
	margin-right: calc(5px + .2em);
	border-left: calc(5px + .1em) solid #e5e5e7;
}

.lineup_type_l .txt04 {
	padding-top: 30px;
}

.lineup_type_l_txt {
	padding-top: 20px;
}

.lineup_type_img {
	width: 470px;
	flex-shrink: 0;
}

.lineup_type_img img {
	display: block;
	margin: auto;
}

.lineup_type_img img:not(:first-of-type) {
	padding-top: 20px;
}

.lineup_type .lineup_type_conts:not(:first-of-type) {
	padding-top: 100px;
}

.lineup_type_note {
	padding-top: 50px;
}

.lineup_cubo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.lineup_cubo_txt {
	width: 500px;
}

.lineup_cubo_txt .txt02 {
	border-bottom: 1px solid #e5e5e7;
	margin-bottom: 15px;
	padding-bottom: 5px;
}

.lineup_cubo img {
	width: 500px !important;
}

.lineup_green_conts {
	padding-top: 60px;
	overflow: hidden;
}

.lineup_green_conts>img {
	padding-top: 20px;
}

.lineup_green_conts .txt02 {
	/* position: relative; */
	display: flex;
	align-items: center;
	gap: 10px;
}

.lineup_green_conts .txt02::before {
	content: "";
	width: 25px;
	height: 25px;
	display: block;
	background: #66cdaa;
	margin-top: 5px;
}

.lineup_green_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-top: 30px;
}

.lineup_green_conts ul li:not(:last-of-type) {
	padding-bottom: 50px;
	border-bottom: 1px solid #e5e5e7;
}

.lineup_green_conts ul li:nth-child(even) .lineup_green_flex {
	flex-direction: row-reverse;
}

.lineup_green_side_img {
	width: 350px;
	flex-shrink: 0;
}

.lineup_green_center_img {
	width: 800px;
	display: block;
	margin: auto;
	padding-top: 40px;
}

.lineup_green_center {
	text-align: center;
}

.lineup_green_center>p {
	padding-top: 30px;
}

.lineup_green_center txt03 {}

.lineup_green_device_img img {
	display: block;
	margin: auto;
	padding-top: 30px;
}

.lineup_green_device_img_mini img {
	width: 500px;
}

.lineup_green_device_flex {
	display: flex;
	justify-content: space-between;
}

.lineup_green_device_flex li {
	width: 580px;
	padding: 40px;
	box-sizing: border-box;
	background: rgb(45, 46, 51);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.lineup_green_device_img img {
	display: block;
	margin: auto;
	padding-top: 30px;
}

.lineup_green_device_img_mini img {
	width: 500px;
}

.lineup_green_device_flex {
	display: flex;
	justify-content: space-between;
	text-align: left;
	padding-top: 60px;
}

.lineup_green_device_flex li {
	width: 580px;
	padding: 40px;
	box-sizing: border-box;
	background: rgb(45, 46, 51);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.lineup_green_device_flex .txt03 {
	color: #fff;
	padding: 0;
	font-size: 20px;
	padding-bottom: 10px;
}

.lineup_green_device_flex img {
	width: 230px;
}

.lineup_gree_youtube {
	display: block;
	margin: auto;
	padding-top: 40px;
}

.lineup_gree_youtube iframe {}

.lineup_btn_flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.lineup_green_gray li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 50px;
}

.lineup_green_gray li:not(:last-of-type) {
	padding-bottom: 50px;
}

.lineup_green_gray li:nth-child(even) {
	flex-direction: row-reverse;
}

.lineup_gray_bg {
	width: 785px;
	padding: 70px 40px;
	box-sizing: border-box;
	background: #f7f7f7;
}

.lineup_gray_bg .txt03 {
	font-family: 'Playfair Display', serif;
}

.lineup_gray_bg_txt {
	padding-top: 20px;
}

.lineup_green_gray img {
	width: 380px !important;
}



.lineup_reason {
	background: #f7f7f7;
	padding: 140px 0;
	margin-top: 130px;
}

.lineup_reason .txt02 {}

.lineup_reason .txt03 {

	color: #e44e56 !important;

	font-family: 游明朝, YuMincho, ヒラギノ明朝 ProN W3, Hiragino Mincho ProN, メイリオ, Meiryo, HG明朝E, ＭＳ Ｐ明朝, ＭＳ 明朝;

	padding-top: 10px;
}

.lineup_reason li:not(:last-of-type) {
	padding-bottom: 30px;
}

.lineup_re_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;

}

.lineup_re_img {
	position: relative;
}

.lineup_re_img p {
	position: absolute;
	top: 34%;
	left: 0;
	right: 0;
	margin: auto;
	background: rgba(255, 255, 255, .64);
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 20px;
	color: #2d2e33;
	width: fit-content;
}

.lineup_btn_container {
	display: block;
	margin: auto;
}

.lineup_btn {
	font-size: 13px;
	background-color: #f7f7f7;
	color: #6c6d74;
	border: 1px solid #f7f7f7;
	padding: 10px 20px;
	box-sizing: border-box;
	transition: all .3s ease-in-out;
	display: block;
	margin: auto;
	width: fit-content;
	margin-top: 20px;
}

.lineup_btn:hover {
	color: #000;
	background: #fff;
}

.lineup_green_gray02 li:not(:first-of-type) {
	padding-top: 50px;
}

.lineup_green_gray_flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 50px;
}

.lineup_green_gray_flex p {
	padding-top: 20px;
}

.lineup_green_gray_flex img {
	width: 300px !important;
}

.lineup_green_gray_list {
	display: flex;
	justify-content: space-between;
	width: 900px;
	margin: auto;
}

.lineup_green_gray_list li {
	text-align: center;
	width: 200px;
	border: unset !important;
}

.lineup_green_gray_tit {
	color: #2d2e33;
	font-size: 20px;
	line-height: 1.4;
	font-family: Montserrat;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.lineup_green_gray_bottom_img {
	margin: auto;
	display: block;
	padding-top: 30px;
}

/* ==========================================================================
   変数未挿入時：親要素・対象ブロックの自動非表示CSS
   ========================================================================== */

/* 1. 最上部タイトル背景 (%%NOPOPITEM85%% が空の場合) */
.lineup_tit_bg:empty {
	display: none !important;
}

/* 2. リード文ブロック (%%ITEM4%% が空の場合、親の .lineup_top_com を非表示) */
.lineup_top_com:has(> .txt04:empty) {
	display: none !important;
}

/* 3. コンテンツ画像・テキスト (%%NOPOPITEM5%% または %%ITEM6%% が空の場合、liごと非表示) */
.lineup_conts01_flex:has(.lineup_conts01_img:empty),
.lineup_conts01_flex:has(.txt04:empty) {
	display: none !important;
}

/* 4. 返済タイププラン (プラン名 %%ITEM10%%/%%ITEM14%%、または画像が空の場合にその行ごと非表示) */
.lineup_type_conts:has(.txt01:empty),
.lineup_type_conts:has(.lineup_type_img:empty) {
	display: none !important;
}

/* 5. CUBOプランブロック (画像 %%NOPOPITEM87%%、またはタイトル %%ITEM88%% が空の場合に非表示) */
.lineup_cubo:has(.lineup_cubo_img:empty),
.lineup_cubo:has(.lineup_cubo_txt .txt02:empty) {
	display: none !important;
}

/* 6. グリーンコンテンツセクション (見出し %%ITEM19%% / %%ITEM26%% / %%ITEM33%% が空ならセクション丸ごと非表示) */
.txt02:empty::before {
	content: none;
}

/* 7. グレーの仕様一覧リスト (タイトル %%ITEM39%% 等、または説明 %%ITEM41%% 等が空なら li ごと非表示) */
.lineup_green_gray li:has(.txt03:empty),
.lineup_green_gray li:has(.lineup_gray_desc:empty) {
	display: none !important;
}

/* 8. グリーンデバイス一覧 (タイトル、または画像が空の場合に li ごと非表示) */
.lineup_green_device_flex li:has(.lineup_green_device_txt .txt03:empty),
.lineup_green_device_flex li:has(.lineup_green_device_item_img:empty) {
	display: none !important;
}

.lineup_type_l:has(.lineup_type_l_txt:empty) {
	display: none;
}

.lineup_green_gray:has(li:empty) {}

/*--フォーム--*/

.form_section {
	width: 1000px;
	margin: 110px auto 40px;
}

/*--スタッフ紹介一覧--*/

.staff_ori_bg {
	position: absolute;
	width: 100%;
	height: 380px;
	right: 0;
	left: 0;
	display: grid;
	place-content: center;
	background: url(../img/staff/staff_bg.png)no-repeat;
	background-size: cover;

	& h2 {
		font-family: 游明朝,
			YuMincho,
			"ヒラギノ明朝 ProN W3",
			"Hiragino Mincho ProN",
			メイリオ,
			Meiryo,
			HG明朝E,
			"ＭＳ Ｐ明朝",
			"ＭＳ 明朝";
		color: #fff;
		font-size: 42px;
		text-align: center;
		margin: 0;
	}

	& p {
		margin-top: 20px;
		color: #fff;
		font-size: 20px;
		text-align: center;
	}

}

.staff_ori_box {
	margin-top: 450px;

	& li:not(:last-child) {
		margin-bottom: 50px;
	}
}

.staff_ori_box1 {
	display: flex;
	align-items: center;
	gap: 70px;
}

.staff_ori_box1_l {
	width: 300px;
	height: 300px;
	border-radius: 100%;
	overflow: hidden;

	& img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
}

.staff_ori_box1_r {
	width: 630px;
}

.staff_ori_title {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	overflow: hidden;

	& span {
		font-size: 20px;
		position: relative;

		&::before,
		&::after {
			content: "";
			position: absolute;
			top: calc(50% - (calc(.6px + .03em) / 2));
			width: 2000px;
			border-bottom: calc(.6px + .03em) solid #e5e5e7;
		}

		&::before {
			right: 100%;
			margin-right: calc(5px + .3em);
		}

		&::after {
			left: 100%;
			margin-left: calc(5px + .3em);
		}
	}

}

.staff_ori_txt {
	margin-bottom: 40px;
	font-size: 16px;
	color: #6c6d74;
}

/*--お客様の声一覧--*/

.voice2_ma {
	width: 1200px;
}

/*--お客様の声詳細--*/


.voice2_ma_shosai {
	display: flex;
	justify-content: space-between;
}

.voice_ori_txt {
	width: 33%;

	& span {
		display: block;
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 20px;
	}
}

.voice2_ma_shosai_photo {
	width: 33%;

	& img {
		height: 100% !important;
		object-fit: cover;
	}
}

/*-----------------------------------------------
     /recruit/ 採用情報「募集要項」
-----------------------------------------------*/


.entry_list {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	letter-spacing: 0.5px;
	margin: 0;
}

.entry_list img {
	display: block;
	margin: auto;
}

.entry_list ul {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	width: 1000px;
	margin: 50px auto 0;
}

.entry_list ul li {
	margin-bottom: 50px;
}

.entry_list ul li a {
	display: block;
	width: 480px;
	padding: 20px 30px 30px;
	box-sizing: border-box;
	position: relative;
	height: 100%;
	border: solid 1px #ccc;
	border-radius: 5px;
	color: #000;
}

.entry_list ul li a:hover {
	background: #fff;
}

.entry_list ul li:nth-child(2n) {
	margin-left: 36px;
}

.entry_list h2 {
	font-size: 18px;
	line-height: 32px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	text-align: center;
	z-index: 10;
	color: #000;
}

.entry_shosai h2 span {}

.entry_shosai h2 span:before {
	content: "【";
}

.entry_shosai h2 span:after {
	content: "】";
}

.entry_list table {
	width: 100%;
	border: solid 1px #bfbfbf;
	border-collapse: collapse;
}

.entry_list table th,
.entry_list table td {
	font-size: 12px;
	line-height: 24px;
	text-align: left;
	border: solid 1px #bfbfbf;
	border-collapse: collapse;
	padding: 10px;
	background: #fff;
}

.entry_list table th {
	width: 60px;
	background: #eeeeee;
}

.entry_more {
	width: 180px;
	color: #383635;
	font-weight: normal;
	text-align: center;
	background: #FFF;
	border: solid 2px #383635;
	text-align: center;
	margin: 30px auto 0;
	padding: 20px;
	font-size: 16px;
}

.entry_list ul li a:hover .entry_more {
	color: #FFF;
	background: #383635;
	border: solid 2px #383635;
}

/*採用エントリーフォーム　詳細*/
.entry_shosai {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	letter-spacing: 0.5px;
	margin: 50px 0px 0px 0px;
}

.entry_shosai img {
	display: block;
	margin: auto;
}

.entry_shosai h2 {
	font-size: 20px;
	line-height: 32px;
	margin: 50px 0px 0px 0px;
	padding: 50px 50px 0px 50px;
	border-top: solid 1px #333;
}

.entry_shosai p {
	font-size: 16px;
	line-height: 24px;
	padding: 0px 50px 50px 50px;
	border-bottom: solid 1px #333;
}

.entry_shosai table {
	width: 100%;
	border: solid 1px #bfbfbf;
	border-collapse: collapse;
	margin-top: 50px;
}

.entry_shosai table th,
.entry_shosai table td {
	font-size: 16px;
	line-height: 24px;
	text-align: left;
	border: solid 1px #bfbfbf;
	border-collapse: collapse;
	padding: 15px 20px;
}

.entry_shosai table th {
	width: 160px;
	background: #eeeeee;
}

.entry_b {
	text-align: center;
}

.entry_shosai a {
	margin: 30px 10px;
	padding: 20px;
	display: inline-block;
	font-size: 16px;
}

.entry_shosai a:nth-child(2) {
	width: 130px;
	color: #383635;
	font-weight: normal;
	text-align: center;
	background: #FFF;
	border: solid 2px #383635;
	padding: 10px;
	font-size: 12px;
}

.entry_shosai a:nth-child(2):hover {
	color: #FFF;
	background: #383635;
	border: solid 2px #383635;
}

.entry_shosai a:nth-child(1) {
	width: 300px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	background: #2799fb;
	border: solid 2px #2799fb;
}

.entry_shosai a:nth-child(1):hover {
	color: #2799fb;
	background: #fff;
	border: solid 2px #2799fb;
}

.recruit_ori_main {
	width: 100%;
	height: 500px;
	display: grid;
	place-content: center;
	background: url(../img/recruit/main_bg.webp) no-repeat;
	background-size: cover;
	margin: 50px 0 0;

	& h2 {
		color: #fff;
		font-size: 36px;
		text-align: center;
		margin: 0;
	}

	& .recruit_ori_main_txt01 {
		color: #fff;
		font-size: 18px;
		text-align: center;
		margin: 20px 0;
		font-weight: bold;
	}

	& .recruit_ori_main_txt02 {
		color: #fff;
		font-size: 14px;
		text-align: center;
		width: 1000px;
		margin: 0 auto;
		line-height: 1.8;
		text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
	}

}

.recruit_tag {
	width: 1000px;
	margin: 0 auto;
}

.recruit_tag ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	box-sizing: border-box;
	background: #e2e5f1;
	border-radius: 5px;
	padding: 30px 80px 20px 80px;
	margin-top: 40px;
}

.recruit_tag ul li {
	margin: 0 10px 10px 0;
}

.recruit_tag ul li:last-child {
	margin: 0;
}

.recruit_tag ul li a {
	display: block;
	font-size: 14px;
	font-weight: bold;
	background: #fff;
	padding: 15px 30px;
	text-align: center;
	color: #000;
	position: relative;
	z-index: 10;
	transition: all 0.2s;
	border-radius: 5px;
}

.recruit_tag ul li a:hover {
	background: #333;
	color: #fff;
}

.recruit_con_joblabel {
	display: inline-block;
	background: #042455;
	padding: 0px 15px;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	line-height: 3em;
	position: absolute;
	right: 20px;
	top: 0;
	border-radius: 0 0 5px 5px;
}

.recruit_con_tag p {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 1em auto;
}

.recruit_con_tag p>label {
	color: #03A9F4;
	margin-right: 0.5em;
	margin-bottom: 0.5em;
}

.recruit_con_tag p>label:before {
	content: "#";
}

.entry_ti {
	font-size: 14px;
	letter-spacing: 0.05em;
}

/*---------/ 採用エントリーフォーム-------*/

/*---------ブログ-------*/
.blog_ma {
	width: unset;
}

/*---------/ ブログ-------*/

/*---------インフォメーション-------*/
.info_list_txt {
	font-size: 15px;
	color: #333;
	line-height: 1.6;
}

/*---------/ インフォメーション-------*/


/* 問合せ・来店フォーム */
.form>tbody>tr>th {
	text-align-last: left;
}

/* footer */

.f_navi {
	padding-top: 40px;
}

.footer_navi {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 35px;
}

.footer_navi p {
	width: 160px;
	font-size: 18px;
	font-weight: bold;
}

.footer_navi ul {
	display: flex;
	gap: 10px 20px;
	flex-wrap: wrap;
	width: 1000px;
}

.footer_navi ul li {}

.footer_navi ul li a {
	font-size: 14px;
	position: relative;
	color: #333;
}

.footer_navi ul li a::before {
	display: block;
	content: "";
	width: 1px;
	height: 17px;
	background-color: #000;
	transform: rotate(30deg);
	position: absolute;
	right: -13px;
	top: 1px;
}

.footer_navi ul li a:hover {
	text-decoration: underline;
}

.footer_navi ul li:last-child a::before {
	display: none;
}

/*--リキャプチャ機能--*/

.g-recaptcha {
	margin: 20px auto;
	display: flex;
	justify-content: center;
}

/*--/リキャプチャ機能--*/