@charset "utf-8";


/* ------------------------------------------------------------------------ */

/*	何をお探しですか？

/* ------------------------------------------------------------------------ */

.looking .inner{
	max-width: 1200px;
	margin: 220px auto 0;
	text-align: center;
}
.looking h2{
	position: relative;
	display: inline-block;
   font-size: 34px;
}

.looking h2::before{
	content: "";
	display: block;
	position: absolute;
	max-width: 129px;
	width: 100%;
	height: 129px;
	background: url('../common/img/icon/icon_search.png')no-repeat center center / contain;
	transform: translate(-50%, -50%);
	left: 18px;
	top: 23px;
	z-index: -1;
}

.looking .cards{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.looking .cards .card{
	max-width: 380px;
}

.looking .cards .card a{
	display: block;
	background-color: #fff;
	color: #000000;
	max-width: 380px;
	width: 100%;
	height: 240px;
	border: 1px solid #000000;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.looking .cards .card img{
	max-width: 105px;
}

.looking .cards .card p{
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

@media screen and (max-width: 1250px) {
	.looking .inner{
		margin: 150px 25px 0;
	}
}
@media screen and (max-width: 1000px) {
	#contentsBlock .cards{
		grid-template-columns: repeat(3, 1fr);
		grid-row-gap: 30px;
	}
}
@media screen and (max-width: 800px) {
	.looking h2{
		font-size: 22px;
	}
	#contentsBlock .cards{
		display: grid;
		max-width: 100%;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	#contentsBlock .cards .card{
		margin-bottom: 0px;
	}
	.looking .cards .card p{
		font-size: 16px;
	}
	.looking .cards .card a{
		height: 250px;
	}
}
@media screen and (max-width: 500px) {
	.looking h2::before{
        max-width: 89px;
        height: 89px;
        left: 18px;
        top: 19px;
	}
	#contentsBlock .cards{
		margin-top: 20px;
		grid-template-columns: 1fr;
		max-width: 380px;
	}
	.looking .cards .card{
		max-width: 100%;
	}
	.looking .cards .card a{
		max-width: 100%;
		height: 175px;
	}
	.looking .cards .card p{
		margin-top: 10px;
	}
	.looking .cards .card img{
		max-width: 70px;
	}
}


/* ------------------------------------------------------------------------ */

/*	タブ関連

/* ------------------------------------------------------------------------ */

section.list{
	margin-top: 200px;
}
section.list .inner{
	padding: 0;
}

.tab-switch {
  --tab-color:#dbb6a2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-inline: auto;
  gap: 5px;
}

/* メインタブボタン */
.tab-switch label {
  padding: 16px 10px;
  background:#0080c0;
  border: 1px solid #0080c0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  order: -1;
  text-align: center;
  flex: 1;
  position: relative;
  max-width: 230px;
  margin-left: 20px;
  transition: 0.3s;
}
.tab-switch label a{
	color: #fff;
  transition: 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab-switch label:hover {
  background-color: #fff;
  color: #0080c0;
  text-decoration: none;
}
.tab-switch label:hover a{
	color: #0080c0;
}
.tab-switch label.tab01 {
  margin: 0;
}

/* ラジオ非表示 */
.tab-switch input {
  display: none;
}

/* コンテンツ非表示 */
.tab-content {
  display: none;
  width: 100%;
  padding: 1.5em 0;
}

/* 選択されたタブ＋コンテンツ表示 */
.tab-switch label:has(:checked) {
  background:#fff;
  color: #0080c0;
  border-color: #cccccc;
}
.tab-switch label:has(:checked) + .tab-content {
  display: block;
}

/* 吹き出し */
.tab-switch label:has(:checked)::before {
  position: absolute;
  left: calc(50% - 10px);
  bottom: -11px;
  content: "";
  width: 20px;
  height: 20px;
  border-top: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  transform: rotate(135deg);
  background-color: #fff;
}

/* ===== サブタブ用 ===== */
.sub-tab-switch {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* サブタブボタン */
.sub-tab-switch label {
    padding: 8px 16px;
    cursor: pointer;
	font-size: 20px;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
    margin: 0;
    border: none;
	color: #111;
    border-bottom: 2px solid #ccc;
	background-color: transparent;
}
.sub-tab-switch label:hover {
	color: #0080c0;
}

/* ラジオ非表示 */
.sub-tab-switch input {
  display: none;
}

/* サブタブの中身 */
.sub-tab-content {
  display: none;
  width: 100%;
  margin-top: 1em;
}

/* サブタブ選択時 */
.sub-tab-switch label:has(:checked) {
	border-bottom: 2px solid #0080c0;
	color: #0080c0;
}
.sub-tab-switch label:has(:checked)::before{
	content: none;
}
.sub-tab-switch label:has(:checked) + .sub-tab-content {
  display: block;
}
.sub-tab-switch .sub-tab-content .btn{
	max-width: 340px;
}

@media screen and (max-width: 800px) {
	section.list{
		margin-top: 100px;
	}
	.tab-switch label{
		padding: 10px;
		font-size: 16px;
		margin-left: 10px;
	}
	.sub-tab-switch label {
		padding: 8px 16px;
		font-size: 16px;
		margin: 0;
	}
}
@media screen and (max-width: 500px) {
	section.list{
		margin-top: 80px;
	}
	.tab-switch label{
		padding: 10px;
		font-size: 14px;
		margin-left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sub-tab-switch{
		margin-top: 0;
	}
	.sub-tab-switch label {
		padding: 8px 16px;
		font-size: 16px;
		margin: 0;
	}
}


/* 利用希望一覧
/* ------------------------------------------------------------------------ */
.tab02_content .subttl{
    color: #111;
    text-align: center;
    margin: 20px auto;
    width: 100%;
}
.tab02_content .request-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.tab02_content .request-list .request-item{
    width: calc((100% - (30px * 2)) / 3);
    border: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
}
.tab02_content .request-list .request-item .item_ttl .request-cat-label{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100px;
    width: 100%;
    line-height: 34px;
    font-size: 18px;
    font-weight: 700;
}
.tab02_content .request-list .request-item.rent .item_ttl .request-cat-label{
    color: #008c00;
    border: 1px solid #008c00;
}
.tab02_content .request-list .request-item.buy .item_ttl .request-cat-label{
    color: #d15480;
    border: 1px solid #d15480;
}
.tab02_content .request-list .request-item .item_content{
    margin-top: 15px;
}
.tab02_content .request-list .request-item .item_content dl .flex{
    display: flex;
    gap: 10px;
}
.tab02_content .request-list .request-item .item_content dl .flex + .flex{
    margin-top: 10px;
}
.tab02_content .request-list .request-item .item_content dl .flex dt{
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    background-color: #d9d9d9;
    width: 80px;
    min-width: 80px;
    line-height: 24px;
    height: 100%;
}
.tab02_content .request-list .request-item .item_content dl .flex dd{
    font-size: 14px;
}

@media screen and (max-width: 1023px) {
	.tab02_content .request-list .request-item .item_content dl .flex{
		display: block;
	}
	.tab02_content .request-list .request-item .item_content dl .flex dd{
		margin-top: 4px;
	}
}
@media screen and (max-width: 800px) {
	.tab02_content .request-list{
		gap: 20px;
	}
	.tab02_content .request-list .request-item{
		width: calc((100% - (20px * 1)) / 2);
	}
	.tab02_content .request-list .request-item .item_ttl .request-cat-label{
		font-size: 16px;
		line-height: 26px;
	}
}
@media screen and (max-width: 500px) {
	.tab02_content .request-list{
		display: block;
	}
	.tab02_content .request-list .request-item{
		width: 100%;
	}
	.tab02_content .request-list .request-item + .request-item{
		margin-top: 20px;
	}
	.tab02_content .request-list .request-item .item_ttl .request-cat-label{
		font-size: 14px;
		line-height: 20px;
	}
}



/* ------------------------------------------------------------------------ */

/*	空き家バンクからのお知らせ

/* ------------------------------------------------------------------------ */

.news .inner{
	max-width: 1000px;
	margin: 200px auto 0;
}
.news h2{
	font-size: 26px;
	font-weight: 700;
    text-align: center;
}
.news .list{
	margin-top: 46px;
}
.news .list .item{
padding-bottom: 25px;
	margin-bottom: 27px;
	border-bottom: 1px solid #cccccc;
}
.news .list .item a{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 25px;
	width: fit-content;
	color: #000000;
}
.news .list .item:last-child{
	margin-bottom: 0;
}
.news .list .item .date{
	font-size: 16px;
	font-weight: 500;
}
.news .list .item .texts h3{
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	text-align: left;
}
.news .more{
	position: relative;
}
.news .more a{
	display: flex;
	font-size: 16px;
	color: #000;
	width: fit-content;
	margin-top: 10px;
	margin-right: 30px;
	margin-left: auto;
}
.news .more a::after{
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	background: url(../common/img/icon/icon_blue.png) no-repeat center center/contain;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 1050px) {
	.news .inner{
		margin: 150px 25px 0;
	}
}
@media screen and (max-width: 786px) {
	.news .inner{
		margin: 100px 25px 0;
	}

	.news h2{
		font-size: 20px;
	}

	.news .list {
		margin-top: 30px;
	}
	.news .list .item .date{
		min-width: 105px;
		font-size: 14px;
	}

	.news .list .item a{
	}
}
@media screen and (max-width: 500px){
	.news .list .item a{
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.news .more a{
		margin-top: 20px;
	}
}
