@charset "EUC-JP";

/* = .mod-bukkenList
----------------------------------------------- */

/* 登録物件検索
----------------------------------------------- */
/* h3 */
.mod-bukkenList .heading {
    font-weight: bold;
    padding: 2px 0 2px 15px;
    position: relative;
    margin-bottom: 20px;
    font-size: 128.6%; /* 18px */
}
.mod-bukkenList .heading::before {
    content: "";
    width: 6px;
    background-color: #ed6103;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
.mod-bukkenList .comment::before {
    content: "※";
    color: #ed6103;
    margin-left: 5px;
}

/* 新規登録リンク */
.mod-bukkenList .linkList {
    margin-bottom: 30px;
}
.mod-bukkenList .linkList li {
    display: inline-block;
    margin-right: 5px;
}

/* 物件検索テーブル */
.mod-bukkenList .searchTable {
    width: 100%;
    border: 1px solid #c9c9c9;
    border-bottom: 0;
    margin-bottom: 20px;
}
.mod-bukkenList .searchTable th,
.mod-bukkenList .searchTable td {
    text-align: left;
    line-height: 1.4;
    vertical-align: middle;
    border-bottom: 1px solid #c9c9c9;
}
.mod-bukkenList .searchTable th {
    width: 4em;
    background: #f7f7f7;
    color: #515151;
    font-weight: normal;
    padding: 15px 10px;
}
.mod-bukkenList .searchTable td {
    padding: 15px 10px 5px;
}
.mod-bukkenList .searchTable .textBox {
    width: 100%;
    height: 32px;
    padding: 5px 10px;
    line-height: 24px;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    box-shadow: 0 1px 0 #c9c9c9 inset;
    margin-bottom: 10px;
    vertical-align: middle;
    box-sizing: border-box;
}

/* radioButton */
.mod-bukkenList .searchTable .radioArea input[type=radio] {
    display: none;
}
/* ベースのグレー部分 */
.mod-bukkenList .searchTable .radioArea .radio {
    position: relative;
    display: inline-block;
    margin: 0 5px 10px 0;
    padding: 12px 10px 12px 27px;
    border-radius: 4px;
    background-color: #f5f5f5;
    vertical-align: middle;
    cursor: pointer;
    color: #515151;
}
.mod-bukkenList .searchTable .radioArea .radio:hover {
    background-color: #fffaaa;
    cursor: pointer;
}

/*  丸(大) */
.mod-bukkenList .searchTable .radioArea .radio::after {
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    margin-top: -10px;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 50%;
    content: '';
}

/* 丸(小) */
.mod-bukkenList .searchTable .radioArea .radio::before {
    position: absolute;
    top: calc(50% - 5px);
    left: 10px;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    content: '';
    opacity: 0;
    z-index: 2;
}

/* チェック後の処理 */
.mod-bukkenList .searchTable .radioArea input[type=radio]:checked + .radio::before {
    opacity: 1;
}
.mod-bukkenList .searchTable .radioArea input[type=radio]:checked + .radio::after {
    background: #ed6103;
    border-color: #ed6103;
}
.mod-bukkenList .searchTable .radioArea input[type=radio]:checked + .radio {
    background: #fffaaa;
}

/* 物件検索ボタン */
.mod-bukkenList .searchButton {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #515151;
    box-shadow: 0 2px #515151;
    color: #515151;
    display: block;
    font-size: 171.4%; /* 24px */
    margin: 0 auto 40px;
    padding: 10px 80px;
    vertical-align: middle;
}
.mod-bukkenList .searchButton:hover {
    cursor: pointer;
    background-color: #f5f5f5;
}

/* 物件list
----------------------------------------------- */
.mod-bukkenList .list {
    margin-bottom: 20px;
}

/* テーブル部分 */
.mod-bukkenList .list .bukkenInfo {
    width: 100%;
    border-top: 1px solid #c9c9c9;
    border-left: 1px solid #c9c9c9;
    margin-top: 10px;
}

.mod-bukkenList .list .bukkenInfo th,
.mod-bukkenList .list .bukkenInfo td {
    line-height: 1.4;
    vertical-align: middle;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    padding: 10px;
    min-width: 4em;
}
.mod-bukkenList .list .bukkenInfo th {
    background: #f7f7f7;
    color: #515151;
    font-weight: bold;
    white-space: nowrap;
}
.mod-bukkenList .list .bukkenInfo .kakaku {
    width: 150px;
    word-break: break-all;
}

.mod-bukkenList .list .bukkenInfo .bukkenName {
    width: 280px;
    word-break: break-all;
}

.mod-bukkenList .list .bukkenInfo .textCenter {
    text-align: center;
}

/* 追加情報掲載状況と掲載イベントのステータス表示 */
.mod-bukkenList .list .bukkenInfo .specialMenu .open,
.mod-bukkenList .list .bukkenInfo .specialMenu .closed{
    color: #fff;
    display: inline-block;
    font-size: 78.6%; /* 11px */
    padding: 0 5px 1px;
}
.mod-bukkenList .list .bukkenInfo .specialMenu .open   { background: #ed6103; }
.mod-bukkenList .list .bukkenInfo .specialMenu .closed { background: #515151; }

/* ページャー付近の処理
----------------------------------------------- */
.mod-bukkenList .pager {
    border-top: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    padding: 10px 0;
}
.mod-bukkenList .pager::after {
    content: "";
    clear: both;
    display: block;
}
.mod-bukkenList .pager .pagerWrap {
    margin: 10px 0;
    float: left;
}
.mod-bukkenList .pager .nextPage,
.mod-bukkenList .pager .selectArea {
    display: inline-block;
}
.mod-bukkenList .pager .nextPage .number {
    color: #ed6103;
    font-size: 128.6%; /* 18px */
    font-weight: bold;
    margin: 0 5px;
}
.mod-bukkenList .pager .selectForm {
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #c9c9c9;
    box-shadow: 0 1px #c9c9c9;
    display: inline-block;
    margin: 0 5px;
    overflow: hidden;
    vertical-align: middle;
}
.mod-bukkenList .pager .selectForm:hover {
    background: #fffaaa;
}
.mod-bukkenList .pager .selectForm::before {
    position: absolute;
    top: -2px;
    right: 10px;
    bottom: 0;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    margin: auto;
    content: '';
    border-top: 3px solid #515151;
    border-right: 3px solid #515151;
    transform: rotate(135deg);
}
.mod-bukkenList .pager .selectForm select {
    border: none;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 25px 10px 10px;
}
.mod-bukkenList .pager .selectForm select:hover {
    cursor: pointer;
}
.mod-bukkenList .pager .selectForm select::-ms-expand {
    display: none; /* IEでデフォルトの矢印を消す処理 */
}

.mod-bukkenList .pager .pageNumber {
    float: right;
    margin-top: 10px;
}

/* 前へor次へ行くページがnothing */
.mod-bukkenList .pager .pageNumber .prev,
.mod-bukkenList .pager .pageNumber .next {
    display:  none;
}

.mod-bukkenList .pager .pageNumber .linkButton {
    border-radius: 4px;
    border: 1px solid #c9c9c9;
    box-shadow: 0 2px 0 0 rgba(201, 201, 201, 1);
    color: #515151;
    padding: 10px;
    text-decoration: none;
    position: relative;
    margin: 0 0 10px 5px;
    display: inline-block;
}
.mod-bukkenList .pager .pageNumber .linkButton:hover {
    background: #f5f5f5;
}
.mod-bukkenList .pager .pageNumber .linkButton .prev,
.mod-bukkenList .pager .pageNumber .linkButton .next {
    color: #515151;
    display: inline-block;
}
.mod-bukkenList .pager .pageNumber .linkButton .prev { padding-left: 5px; }
.mod-bukkenList .pager .pageNumber .linkButton .next { padding-right: 5px; }

.mod-bukkenList .pager .pageNumber .linkButton .prev::before,
.mod-bukkenList .pager .pageNumber .linkButton .next::before {
    position: absolute;
    top: -2px;
    bottom: 0;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    margin: auto;
    content: "";
    border-top: 3px solid #515151;
    border-right: 3px solid #515151;
}
.mod-bukkenList .pager .pageNumber .linkButton .prev::before {
    left: 5px;
    transform: rotate(225deg);
}
.mod-bukkenList .pager .pageNumber .linkButton .next::before {
    right: 5px;
    transform: rotate(45deg);
}
.mod-bukkenList .pager .pageNumber .nowPage {
    font-weight: bold;
    color: #515151;
    margin-left: 3px;
}

/* 登録注意事項
----------------------------------------------- */
.mod-bukkenList .information {
    margin-bottom: 20px;
}
.mod-bukkenList .information .caution {
    margin-bottom: 20px;
}
.mod-bukkenList .information .caution li {
    list-style: none;
    line-height: 1.4;
    padding-left: 14px;
    color: #ff2222;
}
.mod-bukkenList .information .caution li::before {
    content: "※";
    margin-left: -14px;
}
