/* 初期化
***********************************************************************/
input:focus {}

/* CSS: Basicスタイル指定なし
***********************************************************************/
/*ラジオと、チェックボックスはlabelがセットでないと表示されないので後ほど（labelなしが多数ある）*/

/* input type="text" のみ */
input[type="text"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/* background-color: transparent; */
	background-image: none;
	border: 1px solid #999;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	padding: 0.4em 0.8em;
	margin: .3em;
}

input[type="text"]:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

/* input type="password" のみ */
input[type="password"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: none;
	border: 1px solid #999;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	padding: 0.4em 0.8em;
	margin: .3em;
}

/* input type="radio" のみ */
input[type="radio"] {
	-ms-transform: scale(1.6, 1.6);
	-webkit-transform: scale(1.6, 1.6);
	transform: scale(1.6, 1.6);
}

/* input type="checkbox" のみ
<input type="checkbox" name="bid2[]" value="16001050000189" class="js_item_checkbox_children" data-bukken_name="ザサンクレイドル日本橋レジデンス">
*/
input[type="checkbox"] {
	-ms-transform: scale(1.6, 1.6);
	-webkit-transform: scale(1.6, 1.6);
	transform: scale(1.6, 1.6);
}

/* input type="reset" のみ */
input[type="reset"] {
}

/* input type="submit" のみ */
input[type="submit"] {
}

textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	font-weight: 500;
	height: 100px;
	padding: 0.4em 0.8em;
	margin: .3em;
	width: 100%;
}

textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

/* selectボックス */
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #fff url(../images/common/form-css-arrow.png) no-repeat center right 5px/16px 16px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 0;
	color: #222;
	cursor: pointer;
	font-family: inherit;
	font-weight: 500;
	padding: 0.8em 2em 0.8em 0.8em;
	margin: .3em;
}

select::-ms-expand {
	display: none;
}

select:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}



/* フォーム スタイル指定があるもの
***********************************************************************/
.text_input {
	padding: 7px;
	border: solid 1px #999;
	width: 300px;
	background: #fff;
	font-size: 13px;
	margin: .3em;
}

.selectbox {
	border: solid 1px #999;
	min-width: 100px;
}

/* 非推奨（できれば.cta_button_inputを使う */
.button {
	border-radius: 5px;
	background: #42ae9b;
	border: none;
	color: #fff;
	cursor: pointer;
	display: block;
	font-weight: bold;
	font-size: 16px;
	padding: 10px;
	margin-bottom: .5em;
	margin-top: .5em;
	min-width: 120px;
	text-align: center;
}

/*
* ラジオボタン .radio
* <label><input class="radio" type="radio" name="radio-name"><span>ラジオ１</span></label>
*/
.radio {
	display: none;
}

.radio + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.2em 0;
	padding: 0 1em 0 2em;
	position: relative;
	font-size: 14px;
	font-weight: 500;
}

.radio + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 2px solid #999;
	border-radius: 50%;
	content: "";
	display: block;
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.radio + span::after {
	-webkit-transform: translateY(-50%);
	background: #42ae9b;
	border: 2px solid transparent;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 4px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 8px;
}

.radio:checked + span::after {
	opacity: 1;
}

/*
* チェックボックス .checkbox
* <label><input class="checkbox" type="checkbox" name="check-name"><span>チェック１</span></label>
*/
.checkbox {
	display: none;
}

.checkbox + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.2em 0;
	padding: 0 0 0 2em;
	position: relative;
}

.checkbox + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 2px solid #999;
	border-radius: 2px;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em;
}

.checkbox + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #42ae9b;
	border-left: 3px solid #42ae9b;
	content: "";
	display: block;
	height: 0.6em;
	left: 0;
	margin-top: -0.2em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 1em;
}

.checkbox:checked + span::after {
	opacity: 1;
}

.checkbox:disabled + span {
	color: #cccccc;
	cursor: default;
}

.checkbox:disabled + span::before {
	background: #f6f6f6;
	border-color: #cccccc;
}

/*
* チェックボックス .regular_checkbox
* ※主に販売情報の部分で使用
* <input type="checkbox" data-id="00" data-type="hoge" id="hoge" name="hoge" class="regular_checkbox la_item_checkbox_children">
* <label for="hoge"></label>
*/
.regular_checkbox {
	display: none;
	display: inline\9;
	/* ie8 hack */
}

.regular_checkbox + label {
	background-color: #FFF;
	border: 2px solid #cacece;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.00), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.00);
	padding: 8px;
	border-radius: 3px;
	display: inline-block;
	display: none\9;
	/* ie8 hack */
	position: relative;
}

.regular_checkbox:disabled + label {
	background: #cacece;
}

/* 『チェックした市区町村を検索』のみ適用 */
.tab .cb_list_A .regular_checkbox + label {
	margin: 3px 5px 0 0;
}

.regular_checkbox + label:active,
.regular_checkbox:checked + label:active {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.00), inset 0px 1px 3px rgba(0, 0, 0, 0.0);
}

.regular_checkbox:checked + label {
	background-color: #42ae9b;
	border: 2px solid #42ae9b;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.00), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.00), inset 15px 10px -12px rgba(255, 255, 255, 0.0);
	color: #99a1a7;
}

.regular_checkbox:checked + label:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: -6px;
	left: 2px;
	color: #fff;
}


/**************************************
/ レスポンシブフォーム
**************************************/
/* 共通 */
.form_responsive_area {}

.fra_bg {
	background: #DDD;
	padding: 7px;
}

.fra_info_title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

.fra_info_sub_title {
	font-size: 14px;
	font-weight: bold;
	background: #f6f6f6;
	padding: 5px;
	margin-bottom: 5px;
}

.fra_info_box {
	margin-bottom: 10px;
}

.fra_info_box b {
	color: #FF0000;
}

.fra_attention_box div {
	font-weight: bold;
	color: #d00;
	padding: 5px;
	background: #fcc;
	margin-bottom: 3px;
}

.error_style {
	font-weight: bold;
	color: #d00;
	padding: 2px;
}

.fra_item {
	margin-bottom: .5em;
	background: #FFF;
	display: table;
	width: 100%;
}

.frai_A {
	width: 30%;
	margin: 0;
	text-align: center;
	vertical-align: text-top;
	display: table-cell;
	background: #fafcfe;
}

.frai_B {
	width: 69%;
	padding-left: 1%;
	background: #FFF;
	display: table-cell;
	vertical-align: middle;
	line-height: 1.4;
}



.frai_A .info1 {}

.frai_A .info2 {
	margin-top: 5px;
}

.frai_A .info3 {
	margin-top: 4px;
}

.frai_B .form1 {
	margin-top: 8px;
}


/*
ラップのないデフォルト状態のフォーム？
#entryFormArea

パスワードを忘れた方 / 新規登録用フォーム / 口コミ投稿フォーム / 販売お届け /
賃貸お届け /  /  /  /  /  /  /
***********************************************************************/

#entryFormArea {
	margin-bottom: 3em;
}

/* 下書き保存の口コミ削除ボタン */
#entryFormArea .confirm_not_posted_review_delete a.cta_button_a {
	margin: 0 0 0 20px;
	padding: 7px 12px;
	font-size: 13px;
}

/*タイトルにあたる部分と仮定 .frai_A*/
#entryFormArea .frai_A{
	padding: 0;
}

#entryFormArea .frai_A p{
	background: #fafcfe;
	padding: 1em;
	font-weight: bold;
	margin-right: 1em;
	letter-spacing: .03em;
	text-align: right;
}

/* 必須.must */
#entryFormArea .frai_A .must,
#entryFormArea th .must {
	font-size: 80%;
	background: #d00;
	color: #fff;
	padding: 3px;
	margin-left: 5px;
}

/* エラー（項目内） .noteTxt */
#entryFormArea .noteTxt {
	margin: 5px;
	font-weight: bold;
	color: #d00;
	font-size: 110%;
	padding: .5em 1em;
	margin: .8em .3em 1em .2em;
	background: #fcc;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

/* エラーメッセージ.message */
#entryFormArea .message {
	margin: .5em 0 2em;
	padding: 10px;
	border: 1px solid #d00;
	color: #d00;
	font-size: 120%;
	font-weight: bold;
		-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

/* 注意書き .topAttentionArea*/
#entryFormArea .topAttentionArea {
	background: #fafafa;
	margin: 3em 0;
	padding: 2em;
	border: 1px solid #d00;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}

#entryFormArea .topAttentionArea h5 {
	font-weight: bold;
	font-size: 110%;
	margin: .7em;
}

#entryFormArea .topAttentionArea p {
	font-size: 13px;
	margin: 1em;
}


/*タイトル*/
#entryFormArea .section h5 {
	padding: 1em;
	margin: 0;
	border-top: 1px solid #333;
	color: #203054;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
}

#entryFormArea .section h5 .must {
	font-size: 70%;
	background: #d00;
	color: #fff;
	padding: 3px;
	margin-left: 10px;
}


/*
.box を使用しているフォーム
口コミ投稿フォーム /
*/
#entryFormArea .section .box {
	/* border: 1px solid #DDD; */
	padding: 10px;
	margin-bottom: 2em;
}

#entryFormArea .section .box p {
	/* line-height: 1.4em; */
}

#entryFormArea .section .box ul {
	width: 600px;
}

#entryFormArea .section .box ul li {
	float: left;
	line-height: 1.4em;
}

#entryFormArea .submitBlock {
	text-align: center;
}

#entryFormArea .submitBlock .confirm {
	margin: 10px;
	color: #203054;
	font-weight: bold;
	font-size: 120%;
}

#entryFormArea .footerAttentionBlock {
	margin: 20px 10px;
	font-size: 110%;
}

#entryFormArea .footerAttentionBlock p span {
	color: #d00;
}

#entryFormArea .kiyakuBlock {
	height: 150px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px 10px 20px;
}

#entryFormArea .kiyakuBlock p {
	margin: 1em;
	font-size: 13px;
}

#entryFormArea .kiyakuBlock h3 {
	background: #fff;
	color: #203054;
	font-weight: bold;
	padding: .3em .5em;
	margin: 0;
	border-left: 8px solid #203054;
	border-bottom: 1px solid #203054;
}

#entryFormArea .kiyakuBlock h4 {
	margin-top: 15px;
	border: 0 solid #fff;
	border-bottom: 1px solid #203054;
	padding: 2px 0 2px 2px;
}

#entryFormArea .kiyakuBlock ol {
	padding: 0 3em;
	margin: .5em 0;
}

#entryFormArea .kiyakuBlock ol li {
	font-size: 90%;
	/* font-weight: bold; */
	margin: 1em 0;
}

#entryFormArea .js_input_error_block #check_error_list {
	display: block;
	margin: 0 auto;
	padding: 12px 0;
	width: 55%;
	border-radius: 5px;
	background: #d00;
	color: #fff;
	text-align: center;
	font-size: 16px;
}

#entryFormArea .js_input_error_block #check_error_list:hover {
	text-decoration: none;
	background: #d45c5c;
}

#entryFormArea .input_error_message {
	position: fixed;
	content: '';
	top: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
	height: 100%;
	background: url('/images/common/alpha_black_60.png');
}

#entryFormArea .input_error_message .error_area {
	position: relative;
	margin: 15% auto 0;
	padding: 8px 12px;
	width: 450px;
	height: auto;
	border-radius: 3px;
	border: 5px solid #a00;
	background: #d00;
	color: #fff;
}

#entryFormArea .input_error_message .error_area a {
	position: absolute;
	right: -12px;
	top: -12px;
	display: inline-block;
	padding: 2px 4px;
	background: #fff;
	border: 1px solid #d00;
	border-radius: 25px;
	color: #d00;
	font-size: 22px;
	text-align: center;
	line-height: 1;
}

#entryFormArea .input_error_message .error_area a:hover {
	text-decoration: none;
}

#entryFormArea .input_error_message .error_area ul li {
	margin-bottom: 2px;
	padding-left: 1.2em;
	text-indent: -1.2em;
	text-align: left;
	list-style-position: inside;
}

#entryFormArea .input_error_message ul li:before {
	content: '・';
	display: inline-block;
	margin-left: 1em;
	font-size: 14px;
}

#entryFormArea #completeArea {
	text-align: center;
}

#entryFormArea #completeArea p {
	margin: 20px 10px 30px;
	font-size: 120%;
}


/* entryFormArea用
他のページの下部にある会員フォーム .entryFormArea
https://www.mansion-review.jp/knowhow/manga/
***********************************************************************/
.entryFormArea {
	border: 3px solid #d2d9eb;
	padding: 20px;
	margin: 1em 0;
}


/*
共通フォーム内レイアウト .form_inr_layout
since 2019/6/27
住み替え検討エリアを押下時にでてくる
*/
.form_inr_layout {
	background: #fafcfe;
	margin: 1em 0;
	border: 3px solid #d2d9eb;
	display: table;
	width: 100%;
	min-height: 63px;
}

.form_inr_layout .layout_title {
	/* float: left; */
	width: 23%;
	display: table-cell;
	padding: 22px 1%;
	background: #fafcfe;
	font-weight: bold;
	min-height: 80px;
	font-size: 13px;
	/* text-align: center; */
}

.form_inr_layout .layout_title .nini {
	font-size: 80%;
	background: #42ae9b;
	color: #fff;
	padding: 1px 3px;
	margin: 0 5px;
}

.form_inr_layout .layout_title .title_edit_attention_txt {
	font-size: 11px;
	font-weight: bold;
	margin: 1.5em 0;
	color: #666;
	text-align: left;
}


.form_inr_layout .layout_body {
	/* overflow: hidden; */
	/* zoom: 1; */
	display: table-cell;
	width: 73%;
	background: #fff;
	padding: 10px 1%;
	vertical-align: middle;
}

/* --------------------------------------------------------------------
* ホームズ資料請求用スタイル
* 住み替え検討エリアを押下時にでてくる
*  --------------------------------------------------------------------
*/

/* ホームズ君バナー付レイアウト
***********************************************************************/

.homes_shiryo_request {
	color: #ce3139;
	text-align: left;
	margin-top: 1em;
	display: block;
}

.homes_shiryo_request_wrap_for_pc {
	margin: 1em 0;
}

.homes_shiryo_request_wrap_for_pc .homes_shiryo_banner {
	float: right;
	width: 380px;
	margin: 0 0 0 20px;
}

.homes_shiryo_request_wrap_for_pc .homes_shiryo_request_sentence {
	overflow: hidden;
	zoom: 1;
}

/* 全てをチェック 部分.action_check
***********************************************************************/
.new_registration_block .action_check{
	background: #fff;
	width: 100%;
	display: block;
}

.ranking_check_link{
	clear: both;
	margin: 1em 0 1.4em;
}

/* 王冠・順位・チェックボックス・画像部分 .left_float
***********************************************************************/
.ranking_check_link .left_float{
	padding: 0 10px;
}
.ranking_check_link .left_float span{
	font-size: 20px!important;
	display:block;
	margin-bottom:.3em;
}
.ranking_check_link .left_float checkbox{
}

.new_registration_block p.ranking_check_info{
	letter-spacing: .02em;
	font-size: 14px;
}
.new_registration_block .border-radius,
#entryFormArea .action_check .border-radius {
	border-radius: 8px;
}
.speech-bubble {
	padding: 5px;
	position: relative;
	border: 3px solid #A2D5DC;
	background-color: #F4FDFF;
	font-size: 16px;
}
.tail:before {
	border-top-width: 16px;
	border-right-width: 16px;
	border-bottom-width: 0;
	border-left-width: 16px;
	border-color: #A2D5DC transparent;
	border-style: solid;
	display: block;
	position: absolute;
	bottom: -16px;
	left: 43px;
	width: 0;
	height: 0;
	content: "";
}
.tail-inner:after {
	border-top-width: 16px;
	border-right-width: 16px;
	border-bottom-width: 0;
	border-left-width: 16px;
	border-color: #F4FDFF transparent;
	border-style: solid;
	display: block;
	position: absolute;
	bottom: -12px;
	left: 43px;
	width: 0;
	height: 0;
	content: "";
}
.ranking_check_link li {
	border-bottom: 1px solid #ccc;
	padding: 1em 0;
}
.ranking_check_link .check_link_name{
	font-size: 16px;
}
.ranking_check_link .mansion_info{
	text-align: left;
	font-size: 12px;
	line-height: 1.6;
}
.ranking_check_link div.innerData{
	text-align: left;
}
.ranking_check_link div.innerDate_info {
	display: flex;
	align-items: center;
	padding: 3px 2px 2px;
}
.ranking_check_link .innerDate_summary {
	display: flex;
	align-items: center;
}
.innerDate_item {
	font-size: 15px;
	margin: 0 15px 0 0;
	width: auto;
	line-height: 0;
	font-weight: bold;
	color: #F82058;
	vertical-align: middle;
}
.innerDate_item .innerDate_item_title {
	font-size: 11px;
	border:1px solid #F82058;
	color: #F82058;
	text-align: center;
	padding: 1px 4px;
	margin: 0;
	display: inline-block;
	line-height: 1.3;
}
.innerDate_item .fa-star, .innerDate_item .fa-star-half-alt {
	font-size: 12px;
}
.innerDate_item .innerDate_item_num {
	font-size: 14px;
	margin-bottom: 6px;
	font-weight: bold;
	color: #F82058;
	vertical-align: middle;
}
.ranking_unit {
	display: flex;
}
.ranking_unit .rank_item {
	margin-left: 5px;
}
.ranking_unit .rank_num {
	font-weight: bold;
	color: #F82058;
}
.tail_top:before {
	border-top-width: 0;
	border-right-width: 16px;
	border-bottom-width: 16px;
	border-left-width: 16px;
	border-color: #A2D5DC transparent;
	border-style: solid;
	display: block;
	position: absolute;
	top: -16px;
	left: 43px;
	width: 0;
	height: 0;
	content: "";
}
.tail_top-inner:after{
	border-top-width: 0;
	border-right-width: 16px;
	border-bottom-width: 16px;
	border-left-width: 16px;
	border-color: #F4FDFF transparent;
	border-style: solid;
	display: block;
	position: absolute;
	top: -12px;
	left: 43px;
	width: 0;
	height: 0;
	content: "";
}
.bt_half_right {
	width: 350px;
	float: right;
}

.new_registration_block .selectbox{
	margin-bottom: 6px;
}


/* input_common_admin.tpl用
https://www.mansion-review.jp/setting/
***********************************************************************/
.input_common_admin {
}
.input_common_admin table.inputTbl {
	margin: 10px 0;
}
.input_common_admin table.inputTbl th,
.input_common_admin table.inputTbl td {
	padding: 8px 12px;
}
.input_common_admin table.inputTbl th {
	width: 200px;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.4em;
}
.input_common_admin table.inputTbl th .attention {
	font-weight: normal;
	font-size: 90%;
	color: #f60;
}
.input_common_admin table.address_edit,
.input_common_admin table.mail_edit {
	width: 400px;
	border: 2px solid #ddd;
}
.input_common_admin table.address_edit th {
	width: 100px;
	border: 0;
	background: #fff;
}
.input_common_admin table.mail_edit th {
	width: 30px;
	border: 0;
	background: #fff;
}
.input_common_admin table.address_edit td,
.input_common_admin table.mail_edit td {
	border: 0;
}

.input_common_admin .section {
	margin: 10px 0;
}

.input_common_admin .edit_attention{
	font-size: 11px;
	font-weight: bold;
}

/* （setting）confirm.tpl用
https://www.mofu.mansion-review.jp/setting/#entry
***********************************************************************/
.setting_confirm .section {
	margin: 10px 0;
}


/* input_common_admin_regist.tpl用
https://www.mansion-review.jp/regist/#entry
***********************************************************************/

.input_common_admin_regist .form_inr_layout_wrap {
	padding: 1px 13px;
	/* border: 1px solid #fafcfe; */
	background: #fafcfe;
	box-sizing: border-box;
}

.input_common_admin_regist .form_inr_layout .layout_title {
	/* width: 162px; */
}

.input_common_admin_regist .ruleArea {
	margin-top: 20px;
}

.input_common_admin_regist .ruleArea label {
	font-size: 15px;
}

.input_common_admin_regist .section {
	margin: 10px 0;
}




/*インプットフォームの長さ*/
.xxxx-short {
	width: 30px;
}

.xxx-short {
	width: 50px;
}

.xx-short,
.xxx-short2{
	width: 100px;
}

.x-short {
	width: 150px;
}

input.ti_short {
	width: 200px;
}

input.ti_medium {
	width: 300px;
}

input.ti_large {
	width: 400px;
}

input.ti_full {
	width: 100%;
}

input.short {
	width: 200px;
}

input.medium {
	width: 300px;
}

input.large {
	width: 400px;
}

/* このマンションの比較口コミを書く
https://www.mansion-review.jp/mansion/XXXXXX.html
***********************************************************************/
.kfa_container_edit_login .kfai_A {
	background-color: #f9f9f9;
	position: relative;
	width: 200px;
}

.kfa_container_edit_login .kfai_A {
	font-size: 110%;
	font-weight: bold;
	text-align: right;
	vertical-align: middle;
}

.shinchiku_review_form_container .kfa_info_title{
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 5px;
}

.shinchiku_review_form_container .kfai_A {
	padding: .5em;
	background-color: #fafcfe;
	position: relative;
	text-align: right;
	vertical-align: middle;
}

.shinchiku_review_form_container .kfai_B{
	width: 68%;
}

.shinchiku_review_form_container .kfai_A p {
	font-family:'YakuHanJP',"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-weight: 600;
}

.shinchiku_review_form_container .kfai_B .shinchiku_review_form_notes{
	font-size: 11px;
}

.shinchiku_review_form_container .kfai_B .form1{
	border: solid 2px #42ae9b;
}

.shinchiku_review_form_container dl.supplement_search dt {
	border: solid 2px #42ae9b;
	margin-left: .3em;
}

.shinchiku_review_form_container dl.supplement_search dt input[type="text"]:focus {
	border: none;
}

.shinchiku_review_form_container dl.supplement_search dd button {
	display: block;
	width: 60px;
	height: 34px;
	color: #fff;
	line-height: 20px;
	text-align: center;
	background-color: #42ae9b;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

.shinchiku_review_form_container .ta_kfai_riyu {
	border: solid 2px #42ae9b;
}

.shinchiku_review_form_container .cb_right_inner {
	margin-left: 25px;
}

.shinchiku_review_form_container .cb_left{
	margin-block: 4px 0px;
}


/* このマンションの比較口コミを書く
https://www.mansion-review.jp/mansion/XXXXXX.html
***********************************************************************/
.regist_area .kfa_item {
	margin-bottom: .5em;
}

.regist_area .kfai_A {
	background: #fafcfe;
	padding: 1em .5em 1em;
	font-weight: bold;
	letter-spacing: .03em;
	text-align: right;
}

.regist_area .kfai_A p {
	font-weight: bold;
}

.regist_area .kfai_A p .must {
	margin-left: 2px;
}

.regist_area .kfai_B {
	width: calc(70% - 15px);
}

.regist_area .kfai_B input {
	padding: 7px;
	border: solid 2px #42ae9b;
	background: #fff;
	font-size: 13px;
	margin: .3em;
}


/* このマンションの比較口コミを書く 確認モーダル
https://www.mansion-review.jp/mansion/XXXXXX.html
***********************************************************************/
.kfa_container_confirm .kfa_item{
	margin-bottom: .5em;
}

.kfa_container_confirm .kfa_item .kfai_A{
	padding: .5em;
	background-color: #fafcfe;
	position: relative;
	font-size: 15px;
	font-weight: bold;
	text-align: right;
	/* width: 200px; */
	vertical-align: middle;
}

.kfa_container_confirm .kfa_item .kfai_B{
	width: calc(70% - 25px);
	text-align: left;
	vertical-align: top;
	font-weight: 500;
	padding: .5em;
}


/* このマンションの比較口コミを書く 投稿後の会員登録・ログインフォーム
https://www.mansion-review.jp/mansion/XXXXXX.html 25/11/27
***********************************************************************/
.shinchiku_review_form_container .kfa_info_sub_title{
	background: #fafcfe;
}

.shinchiku_review_form_container .rla_login_area .input_login_mailaddress input,
.shinchiku_review_form_container .rla_login_area .input_login_password input{
	background: #fff;
	margin: .3em;
	padding-block: 7px;
	padding-inline: 10px 0;
	font-size: 13px;
	border: solid 2px #42ae9b;
}

.shinchiku_review_form_container .rla_regist_area .ruleArea a{
	margin-left: 5px;
}


