@charset 'UTF-8';

#wrapper {
	padding: 132px 0 100px;
}
@media screen and (max-width: 768px) {
	#wrapper {
		min-width: 100%;
		padding: 58px 0;
	}
}


/* -----------------------------------------------------------
    タブの切り替え
-------------------------------------------------------------- */
.tab_wrap {
  margin: 0px auto 80px;
}

input[type="radio"] {
  display: none;
}

.tab_area {
  font-size: 0;
  margin: 0 10px;
  padding: 0 30px;
}

.tab_area label {
	width: auto;
	display: inline-block;
	padding: 14px 25px 12px;
	background: #0e70b5;
	text-align: center;
	font-size: 2.5rem;
	cursor: pointer;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	vertical-align: bottom;
	transition: ease 0.2s opacity;
	margin: 0px 10px 0;
	color: #fff;
	border: solid 3px #0e70b5;
	border-bottom: none;
	margin-bottom: -3px;
}

.tab_area label:hover {
  opacity: 1;
}

.tab_area label.active {
  background: #fff;
  color: #000;
}

.panel_area {
  background: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top: 3px solid #0e70b5;
}

.tab_panel {
  width: 100%;
  padding: 40px 0;
  display: none;
}

.tab_panel.active {
  display: block;
  opacity: 1;
}

/* 初期状態では非表示 */
.tab_panel {
  display: none;
}

/* ラジオボタンがチェックされたら対応するタブを表示 */
#tab1:checked ~ .panel_area #panel1,
#tab2:checked ~ .panel_area #panel2 {
  display: block;
}

/* 選択されたタブのデザイン変更 */
#tab1:checked ~ .tab_area .tab1_label,
#tab2:checked ~ .tab_area .tab2_label {
  background: #fff;
  color: #0e70b5;
}


@media screen and (max-width: 768px) {
	.tab_wrap {
	  margin: 0px auto 0px;
	}

	.tab_area {
	  font-size: 0;
	  margin: 0 10px;
	  padding: 0 10px;
	}

	.tab_area label {
		width: auto;
		display: inline-block;
		padding: 10px 15px 12px;
		text-align: center;
		font-size: 1.8rem;
		cursor: pointer;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		margin: 0px 5px 0;
		border: solid 3px #0e70b5;
		border-bottom: none;
		margin-bottom: -3px;
	}

	.panel_area {
	  border-bottom-right-radius: 10px;
	  border-bottom-left-radius: 10px;
	}

	.tab_panel {
	  width: 100%;
	  padding: 20px 0;
	  display: none;
	}
}



/* -----------------------------------------------------------
    チェックした物件を～・まとめてチェック
-------------------------------------------------------------- */
.inquiry-wrap {
	display: flex;
	gap: 20px;
	padding: 20px 0px;
	background-color: #eff4fa;
	/*border-radius: 30px;*/
	align-items: center;
	/*margin-bottom: 60px;*/
	position: fixed;
	z-index: 500;
	bottom: 0;
	left: 0;
	width: 100%;
	justify-content: center;
}

.inquiry-wrap .txt.check {
 	position: relative;
	font-size: 1.8rem;
	font-weight: 700;
	margin-right: 20px;
}
.inquiry-wrap .txt.check::before {
	content: "\f14a";
    color: #0e70b5;
    font: 900 2rem / 1 'Font Awesome 5 Free';
    position: relative;
    margin-right: 10px;
}

.inquiry-wrap ul {
	display: flex;
	gap: 20px;
}

.inquiry-wrap ul li .button {
	margin: 0;
}
.inquiry-wrap ul li .button a {
	border: none;
	box-shadow: none;
}

.inquiry-wrap ul li a {
	align-items: center;
    background: #fff;
    border: #0E70B5 2px solid;
    border-radius: 40px;
    display: flex;
    font-weight: 500;
    justify-content: center;
    /*width: 100%;*/
	height: 60px;
    position: relative;
    padding: 20px 50px;
    overflow: hidden;
	width: 250px;
	transition: all .4s;
	cursor: pointer;
}

/*.inquiry-wrap ul li a::before {
    content: "\f105";
    color: #0E70B5;
    font: 900 2rem / 1 'Font Awesome 5 Free';
    position: absolute;
    right: 15px;
    z-index: 2;
    text-align: center;
    transition: all .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}*/
.inquiry-wrap ul li a.favorite-btn::before {
    content: "\e500";
    color: #0E70B5;
    font: 900 2rem / 1 'Font Awesome 5 Free';
    position: absolute;
    right: 15px;
    z-index: 2;
    text-align: center;
    transition: all .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}



/*まとめてチェック*/
.all-check {
	font-size: 1.8rem;
	font-weight: 700;
}

.all-check span {
	margin-left: 10px;
}

.all-check label {
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.inquiry-wrap {
		display: flex;
		gap: 5px;
		padding: 10px;
		align-items: center;
		flex-direction: column;
	}

	.inquiry-wrap .txt.check {
		position: relative;
		font-size: 1.4rem;
		margin-right: 0px;
	}
	.inquiry-wrap .txt.check::before {
		content: "\f14a";
		font: 900 1.4rem / 1 'Font Awesome 5 Free';
		position: relative;
		margin-right: 10px;
	}

	.inquiry-wrap ul {
		display: flex;
		flex-direction: column;
		gap: 5px;
		flex-direction: row;
	}

	.inquiry-wrap ul li a {
		align-items: center;
		display: flex;
		height: 100%;
		justify-content: center;
		position: relative;
		padding: 15px 25px;
		overflow: hidden;
		width: 170px;
		font-size: 1.4rem;
	}

	.inquiry-wrap ul li a::before {
		content: "\f105";
		color: #0E70B5;
		font: 900 1.3rem / 1 'Font Awesome 5 Free';
		position: absolute;
		right: 15px;
		z-index: 2;
		text-align: center;
		transition: all .4s;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.inquiry-wrap ul li a.favorite-btn::before {
		content: "\e500";
		color: #0E70B5;
		font: 900 1.4rem / 1 'Font Awesome 5 Free';
		position: absolute;
		right: 15px;
		z-index: 2;
		text-align: center;
		transition: all .4s;
		display: flex;
		align-items: center;
		justify-content: center;
	}


	/*まとめてチェック*/
	.all-check {
		
		font-size: 1.8rem;
	}

	.all-check span {
		margin-left: 10px;
	}

	.all-check label {
		cursor: pointer;
	}
	
}


/* -----------------------------------------------------------
    一覧エリア
-------------------------------------------------------------- */

.list-head .list-body {
	
}

.list-head .list-body .list-body-inner {
	display: flex;
}

.list-head .list-body .list-main {
	display: flex;
}

.list-head .list-body .list-main {
	display: flex;
	margin-bottom: 0;
}

.job-index .list-area .list-body {
    padding: 20px 20px 20px 20px;
	position: relative;
}

.input-area {
	position: absolute;
	left: 25px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.floorplan .img-area {
    height: 180px;
	margin-right: 30px;
}

.job-index .list-area .detail-area1 {
	width: 360px;
	margin: 0 30px 0 0;
}

.property-type {
	/*color: #0e70b5;*/
	font-size: 1.4rem;
}

.yen-wrap span {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.1;
}

/*ボタン*/
.list-area .btn-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.list-area .btn-wrap li a {
	display: block;
	padding: 15px 25px;
    border-radius: 40px;
	position: relative;
	width: 150px;
	font-size: 1.4rem;
}

.list-area .btn-wrap li .like-btn i {
    font-size: 3.5rem;
}


.btnarrow1::after,
.btn-wrap li a.btn01.orange::after {
    font: 900 1.3rem / 1 'Font Awesome 5 Free';
    position: absolute;
    right: 15px;
}
.btnarrow1:hover::after {
    right: 15px;
}

@media screen and (max-width: 768px) {
	.list-head .list-body {

	}

	.list-head .list-body .list-body-inner {
		display: flex;
		flex-direction: column;
	}

	.list-head .list-body .list-main {
		display: flex;
		flex-direction: column;
	}

	.list-head .list-body .list-main {
		display: flex;
		margin-bottom: 0;
	}

	.job-index .list-area .list-body {
		padding: 20px 20px 20px 20px;
		position: relative;
	}

	.input-area {
		position: absolute;
		left: 15px;
		top: 25px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}

	.floorplan {
		margin: 0 auto;
	}
	
	.floorplan .img-area {
		height: 150px;
		margin-right: 0px;
		text-align: center;
	}

	.job-index .list-area .detail-area1 {
		width: 100%;
		margin: 0 0px 0 0;
	}

	.property-type {
		/*color: #0e70b5;*/
		font-size: 1.4rem;
	}

	.yen-wrap span {
		font-size: 2rem;
	}

	
	/*ボタン*/
	.list-area .btn-wrap {
		flex-direction: row;
        gap: 10px 5px;
        align-items: center;
        justify-content: flex-start;
        margin-top: 20px;
        flex-wrap: wrap;
	}

	.list-area .btn-wrap li a {
		display: block;
		padding: 15px 20px;
		width: 120px;
		font-size: 1.3rem;
	}

	.list-area .btn-wrap li .like-btn i {
		font-size: 2.5rem;
	}


	.btnarrow1::after,
	.btn-wrap li a.btn01.orange::after {
		right: 10px;
	}
	.btnarrow1:hover::after {
		right: 10px;
	}

}




/*----------まとめてチェック・並び替え----------*/
.allcheck-sotr-wrap {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.allcheck-sotr-wrap {
		justify-content: space-between;
		flex-direction: column-reverse;
		align-content: flex-start;
		flex-wrap: wrap;
	}
	
	.job-index .sort_list {
		margin-bottom: 10px;
	}
}


/*----------お気に入りから削除----------*/
button.remove-favorite {
	background-color: #ccc;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.4s;
	border-radius: 20px;
	font-family: "Zen Kaku Gothic Antique", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

button.remove-favorite:hover {
	background-color: #bbb;
}

@media screen and (max-width: 768px) {
	button.remove-favorite {
		font-size: 1.2rem;
	}
}


