/*========================
ヘッダー
========================*/
header {
	padding-top: 0.3rem;
	padding-bottom: 0.5rem;
	padding-left: 0.3rem;
	padding-right: 0.2rem;
	background-color: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
	transition: all 0.6s ease;
}
@media screen and (max-width: 499px) {
	header {
		height: 0.6rem;
	}
}
/* ロゴ */
.header_logo {
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	padding: 0.3rem;
	border-bottom: 5px solid #1c1c1c;
}

@media screen and (max-width: 499px) {
	.header_logo {
		padding: 0.15rem;
		width: 0.80rem;
	}
}

.header_logo .logo_scr {
	width: 1.22rem;
	display: none;
}

header.scr .logo_scr {
	display: block;
}

header.scr .logo_def {
	display: none;
}



header h1 {
	text-align: right;
	font-size: 0.12rem;
	position: relative;
	top:-0.1rem;
}

@media screen and (max-width: 499px) {
	header h1 {
		position: relative;
		top: -2rem;
	}
}

header.hide {
	transform: translateY(-100px);
	opacity:0;
}

@media screen and (max-width: 499px) {
	header {
		padding-top: 0.16rem;
		padding-bottom: 0.16rem;
	}

	header.hide {
		transform: translateY(-80px);
		opacity: 0;
	}
}


header nav {
	position: absolute;
	top: 0.5rem;
	right: 0.20rem;
}

@media screen and (max-width: 499px) {
	header nav {
		position: absolute;
		top: 0;
		left: 0;
		height: 105vh;
		transform: none;
		width: 100%;
		box-sizing: border-box;
		background-color: rgba(28, 28, 28, 0.9);
		box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(10px);
	}
}

header nav ul {
	display: flex;
}

@media screen and (max-width: 499px) {
	header nav ul {
		display: block;
		padding-top: 0.1rem;
		padding-bottom: 0.1rem;
		width: 50%;
		margin: auto;
		margin-top: 0.8rem;
	}
}

header nav li {
	padding-left: 0.2rem;
}

@media screen and (max-width: 499px) {
	header nav li {
		padding-left: 0;
	}
}

header nav li a {
	font-size: 0.16rem;
	color: #222;
	text-decoration: none;
	line-height: 1.5;
	display: block;
	letter-spacing: 0.075em;
	position: relative;
}

header nav li a:hover {
	color: #c08f33;
}

header nav li a::after {
	content: "";
	display: block;
	position: relative;
	top:0.02rem;
	width: 0;
	height: 1px;
	background-color: #FFF;
	transition: all 0.6s ease;
}

header nav li a:hover::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #00a99d;
}

@media screen and (max-width: 499px) {
	header nav li a {
		font-size: 0.18rem;
		font-weight: bold;
		color: #fff;
		padding-top: 0.2rem;
		padding-bottom: 0.2rem;
	}
	header nav li a::before {
		content: '▶';
		padding-right: 0.1rem;
		font-size: 0.12rem;
		color: rgba(213, 164, 36, 0.5);
	}
}


/*========================
フッター
========================*/
footer {
	background-color: #1c1c1c;
	padding-top: 0.40rem;
	padding-bottom: 0.4rem;
}

@media screen and (max-width: 499px) {
	.footer_box_left {
		width: 100%;
		text-align: center;
	}
}

/* ロゴ */
.footer_box_left_logo {
	margin-bottom: 0.2rem;
}

/* TEL*/
.footer_box_left_tel {
	margin-bottom: 0.2rem;
}
.footer_box_left_tel a {
	font-size: 0.36rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

.footer_box_left_tel a::before {
	content: url(../img/footer_tel_icon.png);
	padding-right: 0.1rem;
	vertical-align: middle;
}

/* テキスト */
.footer_box_left_text {
	color: #fff;
	font-size: 0.14rem;
	line-height: 1.65;
}

.footer_box_left_text span::after {
	content: "：";
}
@media screen and (max-width: 499px) {
	.footer_box_left_text span {
		display: block;
	}
	.footer_box_left_text span::after {
		content:none;
	}
}

/*========================
コピーライト
========================*/
#copyright {
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.copyright_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 499px) {
	.copyright_left  {
		margin-bottom: 0.2rem;
		width: 100%;
	}
	.copyright_left .flex_box {
		justify-content: center;
	}
}

.copyright_left li {
	padding-left: 0.15rem;
}

.copyright_left li a {
	color: #333;
	text-decoration: none;
	border-right: 1px solid #333;
	padding-right: 0.15rem;
	font-size: 0.14rem;
}

.copyright_left li a:hover {
	opacity: 0.8;
}

.copyright_right {
	font-size: 0.14rem;
}
@media screen and (max-width: 499px) {
	.copyright_right {
		width: 100%;
		text-align: center;
	}
}


/*========================
タイトル
========================*/
.title {
	font-size: 0.3rem;
	font-weight: bold;
	text-align: center;
}

.title_sub {
	display: block;
	font-size: 0.16rem;
	color: #9f7a5e;
	margin-bottom: 0.1rem;
}

/*========================
サイドナビ
========================*/
#side_nav {
	position: fixed;
	top: 20%;
	right: 0;
	z-index: 10;
}

@media screen and (max-width: 499px) {
	#side_nav {
		top:inherit;
		right:inherit;
		left: 0.10rem;
		bottom:0.10rem;
		width: calc(100% - 0.20rem);
	}
	
	#side_nav ul {
		display: flex;
		justify-content: space-between;
	}
}

#side_nav li {
	width: 50px;
	height: 190px;
	margin-bottom: 0.2rem;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	overflow: hidden;
}

@media screen and (max-width: 499px) {
	#side_nav li {
		width: 49.8%;
		height: 56px;
		margin-bottom: 0;
	}

	#side_nav li:last-child {
		width: 49.8%;
		margin-bottom: 0;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
	}
}

#side_nav li a {
	display: block;
	height: 100%;
	text-indent: -9999px;
}

/* メールで問い合わせる */
#side_nav li:first-child a {
	background-color: #2B2920;
	background-image: url(../img/side_mail.png);
	background-position: right center;
	background-size: cover;
}

@media screen and (max-width: 499px) {
	#side_nav li:first-child a {
		background-image: url(../img/side_mail_sp.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: auto 0.16rem;
	}
}

/* 電話で問い合わせる */
#side_nav li:last-child a {
	background-color: #D5A424;
	background-image: url(../img/side_tel.png);
	background-position: right center;
	background-size: cover;
}

@media screen and (max-width: 499px) {
	#side_nav li:last-child a {
		background-image: url(../img/side_tel_sp.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: auto 0.21rem;
	}
}

#side_nav li a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 499px) {
	#side_nav li a:hover {
		opacity: 1;
	}
}



/*========================
コロナ予防
========================*/
#corona {
	background-image: url(../img/corona_bg.png);
	background-repeat: repeat-x;
	margin-top: 1rem;
}
@media screen and (max-width: 499px) {
	#corona {
		background-position: bottom;
		margin-top: 1.5rem;
	}
}

.corona_box {
	background: #fff;
	position: relative;
	top: -0.3rem;
}

.corona_box_inner {
	border: 3px solid #c7ac3f;
	background: rgba(199,172,63,0.2);
}

.corona_box_title {
	width: 25%;
	box-sizing: border-box;
	padding-top: 0.43rem;
	padding-bottom: 0.3rem;
	padding-left: 0.2rem;
}
@media screen and (max-width: 499px) {
	.corona_box_title {
		width: 100%;
		padding-left: 0;
		text-align: center;
	}
}


.corona_box_title h2 {
	font-size: 0.2rem;
	font-weight: bold;
	color: #c08f33;
	line-height: 1.3;
}

.corona_box_text {
	width: 75%;
	box-sizing: border-box;
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
}
@media screen and (max-width: 499px) {
	.corona_box_text {
		width: 100%;
		padding-top: 0;
	}
}

.corona_box_text p {
	font-size: 0.16rem;
	line-height: 1.65;
}
/*========================
マンションリフォームのお悩みを解決します！
========================*/
#onayami {
	margin-top: 0.8rem;
}

#onayami h2 {
	font-size: 0.33rem;
	font-weight: bold;
	line-height: 1.65;
	/* color: #00a99d; */
	text-align: center;
	/* border-bottom: 2px solid #00a99d; */
	padding-bottom: 0.2rem;
	margin-bottom: 0.4rem;
	position: relative;
	font-family: "Noto Serif JP";
}
@media screen and (max-width: 499px) {
	#onayami h2 {
		font-size: 0.28rem;
		margin-bottom: 0.2rem;
	}
}

.onayami_icon {
	position: absolute;
	top: -0.44rem;
}
@media screen and (max-width: 499px) {
	.onayami_icon {
		display: none;
	}
}



/*
コンテンツ領域
*/
.onayami_cont {
	background: linear-gradient(180deg,#fff 0%,#fff 3rem,#787878 3rem,#787878 100%);
	padding-bottom: 0.5rem;
}
@media screen and (max-width: 499px) {
	.onayami_cont {
		background: linear-gradient(180deg,#fff 0%,#fff 1rem,#787878 1rem,#787878 100%);
		padding-bottom: 0.5rem;
	}
}

/*
イメージ
*/
.onayami_img {
	text-align: center;
}

/*
リスト
*/
.onayami_list {
	margin-top: -1.3rem;
}
@media screen and (max-width: 499px) {
	.onayami_list {
		margin-top: -0.5rem;;
	}
}

.onayami_list ul.flex_box {
	align-items: flex-end;
}
@media screen and (max-width: 499px) {
	.onayami_list ul.flex_box {
		justify-content: center;
	}
}

.onayami_list li {
	width: 20%;
	text-align: center;
}
@media screen and (max-width: 499px) {
	.onayami_list li {
		width: 48%;
		padding-left: 1%;
		padding-right: 1%;
	}
}

/*========================
選ばれる理由
========================*/
#features {
	margin-top: 0.5rem;
	background-image: url(../img/feeatures_back.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 0.8rem;
}

#features .in1000 {
	max-width: 12rem;
}

.features_wapper {
	padding-bottom: 0.8rem;
	margin-top: 1rem;
	position: relative;
	z-index: 0;
}

/*
コンテンツ
*/
.features_cont {
	position: relative;
	top: -0.3rem;
}

.features_cont_box {
	width: 32%;
	background: #fff;
	border: 2px solid #CCB17B;
	box-sizing: border-box;
	padding: 0.30rem 0.2rem;
	border-radius: 3px;
	box-shadow:0px 0px 10px -3px #000000;
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 499px) {
	.features_cont_box {
		width: 100%;
	}
}


/* 背景オレンジ */
.features_cont_box.bg_or {
	background: #fbf4e7;
}

/* no */
.features_cont_box .no {
	font-size: 0.16rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.15rem;
}

/* タイトル */
.features_cont_box h3 {
	font-size: 0.22rem;
	font-weight: bold;
	color: #CCB17B;
	text-align: center;
	margin-bottom: 0.15rem;
	line-height: 1.3;
}

/* リスト */
.features_cont_box ul {
	list-style-type: disc;
	list-style-position: inside;
	margin-bottom: 0.15rem;
}

.features_cont_box li {
	font-size: 0.15rem;
	font-weight: bold;
	line-height: 1.65;
	text-indent: -0.15rem;
	padding-left: 0.15rem;
}

/* テキスト */
.features_cont_box p {
	font-size: 0.15rem;
	line-height: 1.8;
}
/*========================
お見積もり・ご相談全て無料
========================*/
.mitsumori {
	/* background: linear-gradient(180deg,#2B2920 0%,#2B2920 5rem,#fff 5rem,
	#fff 100%); */
	background: #2B2920;
	padding: 0.7rem 0;
	position: relative;
	/* border-top: 10px solid #a9c200; */
	font-family: "Noto Serif JP";
	text-align: center;
}
@media screen and (max-width: 499px) {
	.mitsumori {
		background: linear-gradient(180deg,#2B2920 0%,#2B2920 11rem,#fff 11rem,#fff 100%);
		padding-top: 0.3rem;
	}
}

/* 飾り */
.mitsumori .deco01 {
	position: absolute;
	top: 0;
	left: 0.3rem;
	opacity: 0.4;
}


.mitsumori .deco02 {
	position: absolute;
	top: 50%;
	right: -1rem;
	opacity: 0.2;
}

/*
上部家画像
*/
.mitsumori_top {
	position: absolute;
	width: 100%;
	top: -1rem;
	text-align: center;
}
@media screen and (min-width: 1401px) {
	.mitsumori_top {
		top: -0.9rem;
	}
}
@media screen and (max-width: 499px) {
	.mitsumori_top {
		top: -0.4rem;
	}
}

/*
最短1日施工
*/

/*
タイトル
*/
.mitsumori h2 {
	font-size: 0.24rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	letter-spacing: 2px;
}
@media screen and (max-width: 499px) {
	.mitsumori h2 {
		font-size: 0.2rem;
	}
}

.mitsumori h2 span {
	/* color: #ffff00;
	border-bottom: 5px solid #ffff00; */
	padding-bottom: 0.05rem;
}
@media screen and (max-width: 499px) {
}

.mitsumori h2::before {
	content:'';
	display: inline-block;
	background-image: url(../img/mitsumori_title_left.png);
	background-repeat: no-repeat;
	background-position: center;
	box-sizing: border-box;
	max-width: 3rem;
	width: 100%;
	height: 10px;
	position: relative;
	left: -0.15rem;
}
@media screen and (max-width: 499px) {
	.mitsumori h2::before {
		display: block;
		height: 30px;
		background-position-y: 10px;
		max-width: initial;
	}
}

.mitsumori h2::after {
	content:'';
	display: inline-block;
	background-image: url(../img/mitsumori_title_right.png);
	background-repeat: no-repeat;
	background-position: center;
	box-sizing: border-box;
	max-width: 3rem;
	width: 100%;
	height: 10px;
	position: relative;
	left: 0.15rem;
}
@media screen and (max-width: 499px) {
	.mitsumori h2::after {
		display: block;
		height: 30px;
		background-position-y: 20px;
		max-width: initial;
	}
}

/*
リード
*/
.mitsumori_lead {
	margin: auto;
	margin-top: 0.3rem;
	max-width: 8.00rem;
	width: 100%;
	position: relative;
	z-index: 1;
}

.mitsumori_lead h3 {
	font-size: 0.26rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 0.15rem;
/*	text-align: center;*/
}
@media screen and (max-width: 499px) {
	.mitsumori_lead h3 {
		font-size: 0.17rem;
		line-height: 1.65;
	}
}

.mitsumori_lead p {
	font-size: 0.16rem;
	color: #fff;
	line-height: 1.65;
	margin-bottom: 0.15rem;
}

.mitsumori_lead .area {
/*
	display: inline-block;
	background: #fff;
	font-size: 0.16rem;
	font-weight: bold;
	padding: 0.1rem 0.2rem;
	border-radius: 20px;
	margin-bottom: 0.3rem;
*/
	max-width: 5.00rem;
	width: 100%;
	margin: auto;
}

.mitsumori_lead .area h4 {
	font-size: 0.24rem;
	font-weight: bold;
	color: #fff;
	background: #4d4d4d;
	padding: 0.10rem;
	text-align: center;
}

.mitsumori_lead .area span {
	font-size: 0.18rem;
	font-weight: bold;
	background: #fff;
	padding: 0.2rem 0.10rem;
	display: block;
	text-align: center;

}

.mitsumori_lead span::after {
	/* content: "："; */
}
@media screen and (max-width: 499px) {
	.mitsumori_lead span  {
		display: block;
		margin-bottom: 0.1rem;
	}
	.mitsumori_lead span::after {
		content: none;
	}
}

/*マップ*/
.mitsumori_map {
	position: absolute;
	top: 0.35rem;
	right: 0;
}
@media screen and (max-width: 499px) {
	.mitsumori_map {
		position: static;
		margin-top: 0.30rem;
	}
}

/* 
コンタクト
*/
.mitsumori_contact {
	box-sizing: border-box;
	padding-left: 0.3rem;
	padding-right: 0.3rem;
	margin-top: 0.6rem;
}
@media screen and (max-width: 499px) {
	.mitsumori_contact {
		padding-left: 0;
		padding-right: 0;
		margin-top: 0.4rem;
	}
}

.mitsumori_contact_box {
	background: #fff;
	border-radius: 3px;
	width: 48%;
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	box-sizing: border-box;
}
@media screen and (max-width: 499px) {
	.mitsumori_contact_box {
		width: 100%;
		margin-bottom: 0.3rem;
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
}

.mitsumori_contact_box h4 {
	font-size: 0.18rem;
	text-align: center;
	border-bottom: 1px solid #000;
	padding-bottom: 0.15rem;
	margin-bottom: 0.1rem;
}

.mitsumori_contact_bottom {
	text-align: center;
	font-size: 0.16rem;
	line-height: 1.65;
}

/*
フォーム
*/
.mitsumori_contact_form_btn {
	text-align: center;
	margin-bottom: 0.15rem;
}

.mitsumori_contact_form_btn a {
	display: block;
	font-size: 0.2rem;
	font-weight: bold;
	text-decoration: none;
	background: #4d4d4d;
	border-radius: 5px;
	/* box-shadow:0px 4px 0px 0px rgba(237,90,36,0.3); */
	color: #fff;
	box-sizing: border-box;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.mitsumori_contact_form_btn a:hover {
	opacity: 0.8;
}

.mitsumori_contact_form .mitsumori_contact_bottom {
	color: #D5A424;
	font-weight: bold;
}

/*
TEL
*/
.mitsumori_contact_tel a {
	display: block;
	font-size: 0.5rem;
	font-weight: bold;
	color: #D5A424;
	text-decoration: none;
	text-align: center;
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 499px) {
	.mitsumori_contact_tel a {
		font-size: 0.3rem;
	}
}


/*========================
マンションリフォームプラン
========================*/
#reform {
	/* margin-top: 0.8rem; */
	box-sizing: border-box;
	padding: 1.00rem 0;
	position: relative;
}
@media screen and (max-width: 499px) {
	#reform {
		padding: 0.7rem 0;
	}
}

#reform .deco01 {
	position: absolute;
	top: 0;
	left: 0.3rem;
}


#reform .deco02 {
	position: absolute;
	top: 50%;
	right: -1rem;
}

#reform .title {
	position: relative;
	z-index: 1;
}
/*
リード
*/
.reform_lead {
	text-align: center;
	margin-top: 0.3rem;
	margin-bottom: 0.8rem;
	font-size: 0.16rem;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 499px) {
	.reform_lead {
		margin-bottom: 0.3rem;
	}
}

/*
コンテンツ
*/
.reform_cont {
	margin-bottom: 0.50rem;
}
.reform_cont .in1000 {
	z-index: 1;
	max-width: 12rem;
}
.reform_cont_lead {
	font-size: 0.18rem;
	font-weight: bold;
	color: #D5A424;
	line-height: 1.65;
	margin-bottom: 0.1rem;
	font-family: "Noto Serif JP";
}
@media screen and (max-width: 499px) {
	.reform_cont_lead {
		text-align: center;
		font-size: 0.15rem;
	}
}

.reform_cont h3 {
	font-size: 0.3rem;
	font-weight: bold;
	margin-bottom: 0.2rem;
	font-family: "Noto Serif JP";
}
@media screen and (max-width: 499px) {
	.reform_cont h3 {
		text-align: center;
		font-size: 0.25rem;
	}
}

.reform_cont_text {
	font-size: 0.15rem;
	line-height: 1.65;
	margin-bottom: 0.2rem;
}

.reform_cont ul {
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 499px) {
	.reform_cont ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 0.5rem;
	}
}

.reform_cont li {
	line-height: 1.65;
	font-size: 0.18rem;
}
@media screen and (max-width: 499px) {
	.reform_cont li {
		width: calc(100% / 3 );
		text-align: center;
		font-size: 0.14rem;
		border-right: 1px dotted #000;
		box-sizing: border-box;
	}
	
	.reform_cont li:last-child {
		border-right: none;
	}
}


.reform_cont li::before {
	content: url(../img/reforn_list_icon.png);
	padding-right: 0.05rem;
	vertical-align: middle;
}
@media screen and (max-width: 499px) {
	.reform_cont li::before {
		display: block;
		text-align: center;
	}
}

/* 料金 */
.reform_cont_price {
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 499px) {
	.reform_cont_price {
		width: 90%;
		margin: 0 auto;
		margin-top: -0.3rem;
	}
}



/*
プラン共通
*/
#reform {
	background: url(../img/plan_bg.jpg) no-repeat center;
	background-size: cover;
}



#reform .reform_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #F3EEDE;
    padding: 0.30rem 0.50rem;
    border-radius: 0.12rem;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap {
		padding: 0.30rem 0.20rem;
	}
}


#reform  .reform_cont.right .reform_wrap {
	flex-flow: row-reverse;
}

#reform .reform_wrap .text_wrap {
	width: 45%;
	box-sizing: border-box;
	padding-right: 0.50rem;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap .text_wrap {
		width: 100%;
		padding-right: 0;
	}
}

#reform .reform_cont.right .reform_wrap .text_wrap {
	padding-left: 0.50rem;
}
@media screen and (max-width: 499px) {
	#reform .reform_cont.right .reform_wrap .text_wrap {
		padding-left: 0;
	}
}

/* 料金 */
#reform .reform_wrap .price {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap .price {
		flex-wrap: wrap;
	}
}


#reform .reform_wrap .price dl {
	width: 48%;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap .price dl {
		width: 100%;
		margin-bottom: 0.20rem;
	}
}

#reform .reform_wrap .price dt {
	/* background: #9f7a5e; */
	border-bottom: 1px solid #000;
	text-align: center;
	box-sizing: border-box;
	padding: 0.05rem;
	font-size: 0.15rem;
	font-weight: bold;
}

#reform .reform_wrap .price dd {
	color: #D5A424;
	text-align: center;
	box-sizing: border-box;
	padding: 0.1rem;
	font-size: 0.28rem;
	font-weight: bold;
}

/* 値段ビフォーアフター */
#reform .reform_wrap .price_wrap {
	margin-bottom: 0.3rem;
}

#reform .reform_wrap .price_wrap .type {
    box-sizing: border-box;
    padding: 0.05rem;
    font-size: 0.15rem;
    font-weight: bold;
	border-bottom: 1px solid #000;
}

#reform .reform_wrap .price_wrap .kumitate {
    box-sizing: border-box;
	background: #9f7a5e;
	color: #fff;;
    padding: 0.05rem;
    font-size: 0.15rem;
    font-weight: bold;
	text-align: center;
}

#reform .reform_wrap .price_wrap .box {
	margin-top: 0.15rem;
	display: flex;
	align-items: center;
}

#reform .reform_wrap .price_wrap .box .before {
	font-size: 0.2rem;
	font-weight: bold;
	position: relative;
	top: 0.02rem;
	padding-right: 0.50rem;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap .price_wrap .box .before {
		font-size: 0.15rem;
	}
}

#reform .reform_wrap .price_wrap .box .before small {
	font-size: 0.13rem;
}


#reform .reform_wrap .price_wrap .box .before span {
	text-decoration : line-through ;
	color: #932118;
}

#reform .reform_wrap .price_wrap .box .before em {
	color: #000;
}


#reform .reform_wrap .price_wrap .box .before::after {
	content: '';
	width: 0;
	height: 0;
	display: block;;
	border-style: solid;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #D5A424;
	border-right: 0;
	position: absolute;
	right: 0.2rem;
	top: 50%;
	transform: translateY(-50%);
}

#reform .reform_wrap .price_wrap .box .after {
    color: #D5A424;
    text-align: center;
    box-sizing: border-box;
    font-size: 0.30rem;
    font-weight: bold;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap .price_wrap .box .after {
		font-size: 0.25rem;
	}
}

#reform .reform_wrap .price_wrap .kumitate_box  {
	background: #fff;
	margin-top: 0;
	padding: 0.10rem;
}

#reform .reform_wrap .price_wrap .box .kumitate_price {
    color: #D5A424;
    text-align: center;
    box-sizing: border-box;
    font-size: 0.30rem;
    font-weight: bold;
	text-align: center;
	width: 100%;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap .price_wrap .box .kumitate_price {
		font-size: 0.25rem;
	}
}

#reform .reform_wrap .ph_wrap {
	width: 55%;
}
@media screen and (max-width: 499px) {
	#reform .reform_wrap .ph_wrap {
		width: 100%;
		margin-bottom: 0.20rem;
	}
}


#reform .reform_wrap .ph_wrap img {
	border-radius: 0.12rem;
}

/*
ユニットバス工事
*/
/* .reform_bath {
	position: relative;
	margin-bottom: 3rem;
}
@media screen and (max-width: 499px) {
	.reform_bath {
		margin-bottom: 0.8rem;
	}
}

.reform_bath_cont {
	width: 3.3rem;
}
@media screen and (max-width: 499px) {
	.reform_bath_cont {
		margin: 0 auto;
	}
}


.reform_bath_back {
	position: absolute;
	width: 100%;
	top: -3rem;
	z-index: 0;
}
@media screen and (max-width: 499px) {
	.reform_bath_back {
		top: 2rem;
		z-index: 0;
	}
}

.reform_bath_back img {
	width: 100%;
	max-height: 7rem;
}

.reform_bath_img {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	width: 58%;
	height: 4.5rem;
	background-image: url(../img/reform_bath_img@2x-100.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

.reform_bath_imgSp {
	display: none;
}
@media screen and (max-width: 499px) {
	.reform_bath_img {
		display: none;
	}
	
	.reform_bath_imgSp {
		display: block;
		width: 100%;
		height: 2.5rem;
		background-image: url(../img/reform_bath_img@2x-100.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
} */

/*
システムキッチン工事
*/
/* .reform_system {
	position: relative;
	margin-bottom: 3rem;
}

.reform_system_back {
	position: absolute;
	width: 100%;
	top: -2rem;
	z-index: 0;
}
@media screen and (max-width: 499px) {
	.reform_system_back {
		top: 2rem;
	}
}

.reform_system_back img {
	width: 100%;
	max-height: 7rem;
}

.reform_system_cont {
	width: 3.3rem;
	margin-left: auto;
	margin-right: 0;
}
@media screen and (max-width: 499px) {
	.reform_system_cont {
		margin: 0 auto;
	}
}

.reform_system_img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 58%;
	height: 4.5rem;
	background-image: url(../img/reform_system_img@2x-100.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}
.reform_system_imgSp {
	display: none;
}
@media screen and (max-width: 499px) {
	.reform_system_img {
		display: none;
	}

	.reform_system_imgSp {
		display: block;
		width: 100%;
		height: 2.5rem;
		background-image: url(../img/reform_system_img@2x-100.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
} */

/*
洗面台工事
*/
/* .reform_basin {
	position: relative;
	margin-bottom: 3rem;
}
@media screen and (max-width: 499px) {
	.reform_basin {
		margin-bottom: 0.8rem;
	}
}

.reform_basin_cont {
	width: 3.3rem;
}
@media screen and (max-width: 499px) {
	.reform_basin_cont {
		margin: 0 auto;
	}
}


.reform_basin_back {
	position: absolute;
	width: 100%;
	top: -3rem;
	z-index: 0;
}
@media screen and (max-width: 499px) {
	.reform_basin_back {
		top: 2rem;
		z-index: 0;
	}
}

.reform_basin_back img {
	width: 100%;
	max-height: 7rem;
}

.reform_basin_img {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	width: 58%;
	height: 4.5rem;
	background-image: url(../img/reform_bath_img@2x-100.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

.reform_basin_imgSp {
	display: none;
}
@media screen and (max-width: 499px) {
	.reform_basin_img {
		display: none;
	}
	
	.reform_basin_imgSp {
		display: block;
		width: 100%;
		height: 2.5rem;
		background-image: url(../img/reform_bath_img@2x-100.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
} */


/*   料金 */
.reform_system .reform_cont_price {
	text-align: right;
}
@media screen and (max-width: 499px) {
	.reform_system .reform_cont_price {
		width: 90%;
		margin: 0 auto;
		margin-top: -0.3rem;
	}
}
/*========================
リフォームの流れ
========================*/
#flow {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
@media screen and (max-width: 499px) {
	#flow {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
}

.flow_wapper {
	position: relative;
	margin-bottom: 0.7rem;
}

/*
サイド
*/
.flow_side {
	position: absolute;
	top: 0;
	right: 0;
	width: 25%;
	background-image: url(../img/flow_side_img.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius:10px 0px 0px 10px ;
	z-index: 1;
}
@media screen and (max-width: 499px) {
	.flow_side {
		display: none;
	}
}

.flow_sideGr {
	position: absolute;
	bottom: -0.8rem;
	right: 0;
	width: 30%;
	height: 5rem;
	background: #f4e7cd;
	border-radius:10px 0px 0px 10px ;
	z-index: 0;
}

/*
コンテンツ
*/
.flow_box {
	width: 80%;
	margin-top: 0.5rem;
}
@media screen and (max-width: 499px) {
	.flow_box {
		width: 100%;
	}
}


/* タイトル */
.flow_box_title {
	margin-bottom: 0.2rem;
}
.flow_box_title.flex_box {
	justify-content: flex-start;
}

/* step */
.flow_box_title_step {
	font-size: 0.12rem;
	font-style: italic;
	color: #9f7a5e;
	border-top: 1px solid #9f7a5e;
	border-bottom: 1px solid #9f7a5e;
	padding: 0.05rem;
}

.flow_box_title_h3  {
	font-size: 0.22rem;
	font-weight: bold;
	padding-left: 0.15rem;
	padding-right: 0.15rem;
}
@media screen and (max-width: 499px) {
	.flow_box_title_h3  {
		font-size: 0.18rem;
		padding-left: 0.1rem;
		padding-right: 0.1rem;
		padding-top: 0.05rem;
	}
}

.flow_box_title_em {
	font-size: 0.15rem;
	font-weight: bold;
	color: #fff;
	background: #9f7a5e;
	padding: 0.05rem 0.15rem;
	border-radius: 20px;
}
@media screen and (max-width: 499px) {
	.flow_box_title_em {
		margin-top: 0.15rem;
	}
}


/* テキスト */
.flow_box_text {
	font-size: 0.16rem;
	line-height: 2;
}

.flow_box_text strong {
	color: #9f7a5e;
}

.flow_box_text .super {
	vertical-align: super;
	font-size: 0.12rem;
}

.flow_box_text .small {
	vertical-align: super;
	font-size: 0.12rem;
}

/* 下線 */
.underline {
	/* background: linear-gradient(transparent 50%, #fcee21 50%); */
	font-weight: bold;
}

/* 矢印 */
.flow_box_arrow {
	text-align: center;
	margin-top: 0.4rem;
	margin-bottom: 0.3rem;
}

/* リスト */
.flow_box_list {
	list-style-type: decimal;
	list-style-position: inside;
	padding: 0;
	margin: 0;
}

.flow_box_list li {
	font-size: 0.16rem;
	line-height: 2;
}

/*
施工数、満足度
*/
.flow_bottom {
	position: relative;
}

.flow_bottom .in1000 {
	padding-top: 0.7rem;
}
@media screen and (max-width: 499px) {
	.flow_bottom .in1000 {
		padding-top: 0.2rem;
	}
}

.flow_bottom_box {
	width: 60%;
	margin-left: auto;
	margin-right: 0;
	margin-bottom: 0.1rem;
}
@media screen and (max-width: 499px) {
	.flow_bottom_box {
		width: 100%;
	}
}


.flow_bottom_box_top {
	margin-bottom: 0.2rem;
}

.flow_bottom_box_top.flex_box{
	align-items: flex-end;
}

.flow_bottom_box_top h3 {
	font-size: 0.24rem;
	font-weight: bold;
	padding-bottom: 0.1rem;
	border-bottom: 2px solid #D5A424;
	box-sizing: border-box;
}

.flow_bottom_box_top strong {
	font-size: 0.91rem;
	color: #D5A424;
}
@media screen and (max-width: 499px) {
	.flow_bottom_box_top strong {
		font-size: 0.5rem;
		color: #D5A424;
	}
}

.flow_bottom_box_top strong span{
	font-size: 0.54rem;
	color: #000;
}
@media screen and (max-width: 499px) {
	.flow_bottom_box_top strong span{
		font-size: 0.3rem;
	}
}

/* 注意書き */
.flow_bottom_box .note {
	font-size: 0.14rem;
	text-indent: -0.14rem;
	padding-left: 0.14rem;
	line-height: 1.65;
}

/* 画像 */
.flow_bottom_img {
	position: absolute;
	top: 0.5rem;
	left: 0;
	z-index: 0;
	width: 40%;
	height: 3.3rem;
	background-image: url(../img/flow_bottom_img@2x-100.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 499px) {
	.flow_bottom_img {
		position: static;
		width: 90%;
		height: 2rem;
	}
}

/* 施工数 */
.flow_bottom_boxSekou .flow_bottom_box_top h3 {
	width: 40%;
	box-sizing: border-box;
}

.flow_bottom_boxSekou .flow_bottom_box_top strong {
	width: 60%;
	box-sizing: border-box;
	text-align: right;
}


/* 満足度 */
.flow_bottom_boxManzoku .flow_bottom_box_top h3 {
	width: 55%;
	box-sizing: border-box;
}

.flow_bottom_boxManzoku .flow_bottom_box_top strong {
	width: 45%;
	box-sizing: border-box;
	text-align: right;
}

/*========================
施工事例
========================*/
#sekoujirei {
	margin-top: 0.8rem;
	margin-bottom: 0.7rem;
}

#sekoujirei .title {
	margin-bottom: 0.5rem;
}

/*タブ*/
#sekoujirei_tab_wrapper ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sekoujirei_tab_wrapper li {
	width: calc(100% / 3);
	background: #848484;
	border-radius: 10px 10px 0 0;
	border-right: 1px solid #e5f6f8;
	box-sizing: border-box;
}
#sekoujirei_tab_wrapper li:last-child {
	border: none;
}
#sekoujirei_tab_wrapper li a {
	display: block;
	text-align: center;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
	line-height: 1.6;
	font-size: 0.2rem;
}
@media screen and (max-width: 699px) {
	#sekoujirei_tab_wrapper li a {
		box-sizing: border-box;
		font-size: 0.11rem;
		padding-left: 0.05rem;
		padding-right: 0.05rem;
	}
}

#sekoujirei_tab_wrapper li a span{
	display: block;
	border-bottom: 1px solid #fff;
	width: 80%;
	margin: 0 auto;
	font-size: 0.14rem;
	margin-bottom: 0.06rem;
	padding-bottom: 0.04rem;
}

@media screen and (max-width: 699px) {
	#sekoujirei_tab_wrapper li a span{
		font-size: 0.1rem;
	}
}

#sekoujirei_tab_wrapper li.Now {
	background: #2B2920;
}
.sekoujirei_box {
	border: 3px solid #2B2920;
	background: #fff;
	padding: 0.4rem;
	box-sizing: border-box;
}
@media screen and (max-width: 699px) {
	.sekoujirei_box {
		padding: 0.4rem 0.15rem;
	}
}

#sekoujirei .cont_wrap {
	display: flex;
}
@media screen and (max-width: 499px) {
	#sekoujirei .cont_wrap {
		flex-wrap: wrap;
	}
}

#sekoujirei .cont_wrap .sekoujirei_box_text {
	width: 50%;
}
@media screen and (max-width: 499px) {
	#sekoujirei .cont_wrap .sekoujirei_box_text {
		width: 100%;
	}
}

#sekoujirei .cont_wrap .ph_wrap {
	width: 50%;
	box-sizing: border-box;
	padding-left: 0.40rem;
}
@media screen and (max-width: 499px) {
	#sekoujirei .cont_wrap .ph_wrap {
		width: 100%;
		padding-left: 0;
		margin:0.15rem 0;
	}
}

/*タイトル*/
.sekoujirei_box_top {
	/* display: flex;
	flex-wrap: wrap;
	justify-content: space-between; */
	margin-bottom: 0.1rem;
}
.sekoujirei_box_top_title {
	/* width: 65%; */
}
.sekoujirei_box_top_maker {
	width: 35%;
	box-sizing: border-box;
	text-align: right;
}
.sekoujirei_box_top_title h3 {
	font-size: 0.36rem;
	line-height: 1.6;
}
.sekoujirei_box_top_title h3 span {
	font-size: 0.16rem;
	display: block;
	/* color: #D5A424; */
}
.sekoujirei_box_top_maker img {
	border-left: 1px solid #333;
	box-sizing: border-box;
	padding-left: 0.2rem;
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
}
@media screen and (max-width: 699px) {
	.sekoujirei_box_top_title {
		width: 100%;
	}
	.sekoujirei_box_top_title h3 {
		font-size: 0.25rem;
		border-bottom: 1px solid #333;
	}
	.sekoujirei_box_top_maker {
		width: 100%;
		text-align: left;
	}
	.sekoujirei_box_top_maker img {
		border-left: none;
		padding-left: 0;
		padding-top: 0.1rem;
		padding-bottom: 0.1rem;
	}
}

/*テキスト*/
.sekoujirei_box_text {
	margin-bottom: 0.4rem;
}

.sekoujirei_box_text p {
	font-size: 0.15rem;
	line-height: 1.65;
}

/*before after*/
.sekoujirei_box_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sekoujirei_box_img p {
	text-align: center;
	color: #932118;
	margin-bottom: 0.1rem;
	font-size: 0.2rem;
}
.sekoujirei_box_img_before {
	width: 45%;
}

.sekoujirei_box_img_arrow {
	width: 10%;
	text-align: center;
	padding-top: 2.3rem;
	box-sizing: border-box;
}
.sekoujirei_box_img_after {
	width: 45%;
}

.sekoujirei_box_img_before img,
.sekoujirei_box_img_after img {
	width:100%;
}
@media screen and (max-width: 699px) {
	.sekoujirei_box_img_before {
		width: 100%;
	}
	.sekoujirei_box_img_after {
		width: 100%;
	}
	.sekoujirei_box_img_arrow {
		width: 100%;
		text-align: center;
		padding-top: 0.2rem;
		padding-bottom: 0.2rem;
	}
}
/*========================
よくある質問
========================*/
#faq {
	background-color: #2B2920;
	position: relative;
	padding-top: 0.4rem;
	padding-bottom: 1.5rem;
	position: relative;
}

/* 飾り */
#faq .deco01 {
	position: absolute;
	top: 0;
	left: 0.3rem;
	opacity: 0.4;
}


#faq .deco02 {
	position: absolute;
	top: 50%;
	right: -1rem;
	opacity: 0.2;
}
#faq .title {
	padding-top: 0.6rem;
	padding-bottom: 0.5rem;
	color: #fff;
}

#faq .title_sub {
	color: #fff;
}

.faq_back01 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.faq_back02 {
	position: absolute;
	bottom: 1rem;
	right: 0;
	z-index: 0;
}

.faq_box {
	background: #fff;
	padding: 0.2rem;
	margin-bottom: 0.2rem;
	border-radius: 0.05rem;
}
.faq_box.open .fa-plus {
	display: none;
}
.faq_box.open .fa-minus {
	display: block;
}
.faq_box .fa-plus {
	display: block;
}
.faq_box .fa-minus {
	display: none;
}
@media screen and (max-width: 699px) {
	.faq_box {
		padding: 0.1rem;
	}
}
.faq_box_qa {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.faq_box_title {
	width: 0.3rem;
	font-size: 0.24rem;
	font-weight: 300;
	padding-top: 0.08rem;
}

.faq_box_q .faq_box_title {
	color: #9f7a5e;
}
.faq_box_a .faq_box_title {
	color: #ee5a24;
	position: relative;
	top:5px;
}
.faq_box_text {
	width: calc(100% - 0.8rem);
	font-size: 0.20rem;
	padding-top: 0.05rem;
}

.faq_box_q .faq_box_text p{
	font-size: 0.20rem;
	font-weight: bold;
	line-height: 1.65;
}
@media screen and (max-width: 499px) {
	.faq_box_q .faq_box_text p{
		font-size: 0.16rem;
	}
}


.faq_box_a .faq_box_text p{
	font-size: 0.16rem;
	line-height: 1.65;
}
@media screen and (max-width: 499px) {
	.faq_box_a .faq_box_text p{
		font-size: 0.14rem;
	}
}

.faq_box_icon {
	width: 0.2rem;
	padding-top: 0.07rem;
}
@media screen and (max-width: 699px) {
	.faq_box_title {
		width: 0.3rem;
		font-size: 0.24rem;
	}
	.faq_box_text {
		width: calc(100% - 0.5rem);
		font-size: 0.20rem;
		padding-top: 0.05rem;
		box-sizing: border-box;
		padding-right: 0.15rem;
	}
	.faq_box_icon {
		width: 0.2rem;
		padding-top: 0;
		position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0.10rem;
	}
}

.rercuitVoiceBox_Right .readMoreBtn em {
	font-style: normal;
	display: none;
}
.faq_box_icon i {
	color: #9f7a5e;
	font-size: 0.25rem;
}
.faq_box_icon i.fa-times {
	display: none;
}

.faq_box_bottom {
	display: none;
	padding-top: 0.1rem;
}
/*========================
フッターナビ
========================*/
#bottomNav {
	background: #353B3D;
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
}
@media screen and (max-width: 499px) {
	#bottomNav {
		padding-top: 0.2rem;
		padding-bottom: 0.2rem;
	}
}

#bottomNav ul.flex_box {
	justify-content: center;
}

#bottomNav li {
	padding-left: 0.15rem;
	padding-right: 0.15rem;
	box-sizing: border-box;
	border-left: 1px solid #fff;
}
@media screen and (max-width: 499px) {
	#bottomNav li {
		width: 50%;
		padding-left: 0.15rem;
		padding-right: 0.15rem;
		text-align: center;
		margin-bottom: 0.15rem;
		border-left: none;
	}

	#bottomNav li:nth-child(even) {
		border-left: 1px solid #fff;
	}
}

#bottomNav li:first-child {
	border-left: none;
}

#bottomNav li a {
	color: #fff;
	font-size: 0.14rem;
	text-decoration: none;
}

#bottomNav li a:hover {
	opacity: 0.8;
}

/*========================
フッター
========================*/
