.-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
/*
*マンションサーチ
*/
.search-form-table .request-checkbox:has(input:checked)::before {
    background: url(../../img/common/icon-check.svg) no-repeat center center;
    outline: 1px solid #afafaf;
}
.request-menu__open {
    cursor: pointer;
    position: absolute;
    top: 50px;
    margin: 15px;
    z-index: 1;
    background: #30b6ff;
}
.request-menu {
    transform: translateX(0);
    transition: transform 0.4s ease;
    /* width: 370px; */
}
.request-menu__ttl {
    font-weight: bold;
    /* font-size: 14px; */
    color: #003951;
}
.request-menu__close {
    text-align: right;
    color: #30b6ff;
    font-weight: 800;
    /* font-size: 14px; */
    cursor: pointer;
    position: relative;
}
.request-menu__close:hover {
    opacity: 0.75;
}
/* 非表示状態（引き出しの中に戻る） */
.request-menu.hidden {
    transform: translateX(-110%);
}
.request-menu__header {
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
    margin: 20px 20px 10px;
    border-bottom: 1px solid #bbbcbc;
}
.request-menu__footer {
    flex-shrink: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    padding-bottom: 20px;
}
.request-menu__footer .option-section .form-btn {
    margin-bottom: 8px;
}
.-clear-btn:disabled,
.-clear-btn:disabled:hover {
    background: unset;
    color: #989898;
}
#areanav-bytown__body {
    margin-bottom: 5px;
}

/*
 *ダイアログ
*/
.proprebase-member__item {
    text-align: center;
}
.dialog {
    border: none;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    max-height: none;
    max-width: none;
    position: fixed;
    animation: fadeIn 0.1s ease-out;
    height: 100dvh;
}
.dialog__wrapper {
    width: 900px;
    height: 400px;
    padding: 30px;
    justify-content: center;
}
.dialog__header {
    margin-bottom: 20px;
    text-align: center;
}
.dialog__ttl {
    font-size: 25px;
    font-weight: normal;
    color: #003951;
}
/* .dialog__body {
    margin-bottom: 20px;
} */
.dialog__action {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dialog__close {
    font-size: 15px;
    color: #003951;
    font-weight: normal;
    cursor: pointer;
    background: unset;
}
.dialog__btn,
.dialog__btn:hover,
.dialog__btn:active,
.dialog__btn:focus {
    background: #e70059;
    color: #fff;
    border-radius: 25px;
    font-size: 25px;
    padding: 5px 20px;
    width: 300px;
    text-align: center;
    margin: 20px auto;
}

/* 地図上のオーバーレイ表示用スタイル調整 */
.proprebase-map {
    position: relative;
    /* width: 100%;
    height: calc(100vh - 60px); */
    overflow: hidden;
}
.request-background {
    /* 地図本体 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
/* UIパーツは地図より上に配置しつつ、地図操作を邪魔しないようにする */
.proprebase-index__wrapper,
.heatmap {
    z-index: 10;
    position: relative;
    pointer-events: none;
}
/* クリック可能な要素だけイベントを有効化 */
.proprebase-index__wrapper *,
.heatmap * {
    pointer-events: auto;
}

.bldg-list-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 12px;
    color: #333;
}

.bldg-list-table thead th {
    position: sticky;
    top: 0;
    background-color: #f2f2f2;
    color: #555;
    font-weight: bold;
    padding: 10px 8px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    white-space: nowrap;
    z-index: 10;
}

.bldg-list-table tbody td {
    padding: 10px 8px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    line-height: 1.4;
}

.td-name {
    font-weight: bold;
    min-width: 140px;
}
.th-no,
.td-no,
.th-floor,
.td-floor,
.th-unit,
.td-unit,
.th-dist,
.td-dist {
    text-align: center !important;
}
.bldg-list-table tbody tr {
    cursor: pointer;
    transition: background-color 0.2s;
}
.bldg-list-table tbody tr:hover {
    background-color: #e6f2ff;
}

.mg-b-10 {
    margin-bottom: 10px;
}

li.aisuggest__item {
    display: grid;
    grid-template-rows: subgrid;
}

.form-btn.-clear-btn {
    background: #fff;
    color: #30b6ff;
    border: none;
    font-size: 14px;
}

.form-btn.-clear-btn:hover {
    background: #fff;
    opacity: 0.9;
    color: #30b6ff;
}

.option-section {
    width: 100%;
}

.noresult__wrapper {
  background: #FFF;
  border-radius: 4px;
  bottom: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 20px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: -moz-fit-content;
  width: fit-content;
}

.noresult__txt {
  font-size: 16px;
  font-size: 16rem;
}

@keyframes progress-stripes {
    0% { background-position: 40px 0; }
    100% { background-position: 0 0; }
}
.fake-loader-bar {
    width: 60%;
    height: 100%; 
    background-color: #0083BA;
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 40px 40px;
    animation: progress-stripes 1s linear infinite;
    border-radius: 2px;
}

.gm-ui-hover-effect {
    display: none !important;
}

#Smallchat iframe[data-reactroot] {
	inset: auto 0 0 auto !important;
	right: 0 !important;
	left: auto !important;
}

.request-form__one-line{
    margin-bottom: 10px;
}