@charset "UTF-8";
.menu__open {
    font-size: 14px;
    font-size: 14rem;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    /*position: fixed;
  right: 30px;
  top: 10px;
  z-index: 998;*/
}

.menu__close {
    cursor: pointer;
    left: -50px;
    position: absolute;
    top: 20px;
}

.menu__body {
    background: #fff;
    height: 100vh;
    position: fixed;
    right: -375px;
    top: 0;
    transition: all 0.3s ease-in-out;
    width: 325px;
    z-index: 1000;
}

.menu__list {
    margin: 115px 32px 32px;
}
.menu__list .btn {
    font-size: 18px;
    font-size: 18rem;
    letter-spacing: 0.1em;
    text-align: center;
    width: 100%;
}
.menu__list li {
    line-height: 1;
    margin-bottom: 30px;
}
.menu__list li:last-of-type {
    margin-bottom: 0;
}

.menu__copy {
    font-size: 14px;
    font-size: 14rem;
    bottom: 10px;
    color: #bbb;
    position: absolute;
    text-align: center;
    width: 100%;
}

#proprebase_menu {
    display: none;
}

#proprebase_menu:checked + .menu::after {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    display: block;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 990;
}
#proprebase_menu:checked + .menu .menu__body {
    right: 0;
}

/* ===== Google Map（縮むところ） ===== */
/*.proprebase-map {
    flex: 1 1 auto;
    background: #eee;
    position: relative;
}*/
.proprebase-map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* 常に100vh */
    z-index: 1;
}

/*
.tohon-request__btn {
    @include g.FontSize(13);
    background: g.$pink;
    border: 3px solid #FFF;
    border-radius: 4px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    color: #FFF;
    font-weight: 700;
    left: calc(50% - 100px);
    padding: 10px;
    position: fixed;
    top: 60px;

    span {
        @include g.FontSize(16);
        display: block;
    }
}*/

.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;
}

/* ===== 全体レイアウト ===== */
.layout {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 30px);
    overflow: hidden;
}

/* ===== info wrapper（高さを持たない・下に固定） ===== */
/*.proprebase-info__wrapper {
    width: 100%;
    //overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;

    /* 初期状態：開く
    height: 30dvh;           /* 開いた時の高さ
    max-height: 370px;
    transition: height 0.35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    z-index: 99;
}*/
/* --- info wrapper は地図の上に重ねる --- */
.proprebase-info__wrapper,
.proprebase-bldginfo__wrapper {
    position: fixed;
    right: 10px;
    bottom: 0;
    width: calc(100% - 380px);
    max-height: 370px;
    height: 40dvh; /* 開いたときの高さ */
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
}

.proprebase-info__wrapper {
    transform: translateY(calc(100% - 40px)); /* 初期：少しだけ頭出し */
}

/* --- 「×」ボタン（toggle） ---
.info-close {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f6f6f6;
}*/
.info-close {
    display: block;
    height: 40px;
    cursor: pointer;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    top: -20px;
    right: 100px;
    transform: rotate(180deg); /* 開いている状態で下向き */
    transition: transform 0.35s ease;
    z-index: 11;
}

.bldginfo-close {
    display: flex;
    gap: 6px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 11;
}
.bldginfo-close img {
    background: #00325d;
    height: 20px;
    width: 20px;
}

/* --- チェックON → info 全開になる --- */
#infoToggle:checked + .proprebase-info__wrapper,
#bldginfoToggle:checked + .proprebase-bldginfo__wrapper {
    transform: translateY(0); /* 全面に迫り上がり */
    z-index: 999;
}

/* --- チェックON → ボタンが反転（180度回転） --- */
#infoToggle:checked + .proprebase-info__wrapper .info-close img {
    transform: rotate(180deg);
}

/* 閉じた状態の高さ（チラ見せ 40px）
#infoToggle:not(:checked) ~ .proprebase-info__wrapper {
    height: 40px;
}

/* -------- CLOSE BUTTON --------
.info-close {
    display: block;
    //width: 100%;
    height: 40px;
    cursor: pointer;
    position: absolute;
    user-select: none;
    top: -20px;
    right: 100px;
    transform: rotate(0deg);   /* 開いている状態で下向き
    transition: transform 0.35s ease;
    z-index: 11;
}

/* 閉じた状態：ボタンを反転
#infoToggle:not(:checked) ~ .proprebase-info__wrapper .info-close {
    transform: rotate(180deg);
}
*/
/* -------- INFO CONTENT -------- */
.proprebase-info {
    display: flex;
    border-radius: 16px 16px 0 0;
    flex: 1 1 auto;
    background: #fff;
    overflow-y: auto;
    height: 100%;
}

.proprebase-infoaction {
    background: #e9f7ff;
    display: flex;
    flex-direction: column;
    gap: 17px;
    min-width: 360px;
    overflow-y: auto;
    padding: 16px;
    min-height: 0;
}
.proprebase-infoaction .aieva {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.aieva-item__wrapper {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
    padding: 15px 10px 10px;
    position: relative;
}

.aieva-item__ttl {
    font-weight: 700;
}

.aieva-item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-wrap: wrap;
}
.aieva-item progress {
    width: 100%;
    height: 10px;
}

.aieva-item__date {
    color: #5b5b5b;
}

.aieva-item__value {
    font-size: 20px;
    font-size: 20rem;
    background: none;
    font-weight: 700;
    min-width: 130px;
    text-align: right;
    width: -moz-fit-content;
    width: fit-content;
}
.aieva-item__value:empty {
    background-image: url(/public/img/proprebase/aieva-bg.png);
    padding-left: 30px;
}
.aieva-item__value:after {
    font-size: 12px;
    font-size: 12rem;
    content: "円/㎡";
    font-weight: 400;
    padding-left: 4px;
}

.aieva__btn {
    background: #00325d;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    padding: 4px 12px;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: all 0.1s linear;
}
.aieva__btn:hover,
.aieva__btn:active {
    background: #ffd600;
    color: #00325d;
}
.aieva__btn:disabled {
    background: #afafaf;
}
.aieva__btn:disabled:hover {
    color: #fff;
}

.proprebase-infoaction__ttl {
    font-size: 14px;
    font-size: 14rem;
    margin-bottom: 10px;
}

.proprebase-action__wrapper {
    display: flex;
    gap: 10px;
}

.proprebase-action__btn {
    background: #00325d;
    border-radius: 4px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-weight: 700;
    padding: 12px;
    transition: all 0.1s linear;
}
.proprebase-action__btn:hover,
.proprebase-action__btn.-active {
    background: #ffd600;
    color: #00325d;
}

.proprebase-infodata {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 16px 16px;
    position: relative;
    overflow: auto;
}
.infodata__header {
    align-items: center;
    background: #fff;
    padding-top: 16px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

.infodata-ttl__wrapper {
    display: flex;
}

.infodata__num {
    font-size: 12px;
    font-size: 12rem;
}

.infodata__ttl {
    font-size: 18px;
    font-size: 18rem;
    color: #00325d;
    font-weight: 700;
    padding-bottom: 10px;
}

.infodata__address {
    font-size: 15px;
    font-size: 15rem;
    font-weight: 300;
    margin-left: 20px;
}

.infodata__content {
    margin-top: 10px;
}

.bldginfo-summary {
    align-items: flex-end;
    border-bottom: 1px dashed #b1b1b1;
    display: flex;
    gap: 20px;
    padding-bottom: 6px;
}

.bldginfo__ttl {
    font-weight: 300;
}

.bldginfo__value {
    font-size: 24px;
    font-size: 24rem;
    line-height: 1;
}
.bldginfo__value.-yps:after {
    font-size: 16px;
    font-size: 16rem;
    content: "円/㎡";
    display: inline-block;
    font-weight: 300;
}
.bldginfo__value.-percent:after {
    font-size: 16px;
    font-size: 16rem;
    content: "%";
    display: inline-block;
    font-weight: 300;
}

.bldginfo__items {
    font-size: 14px;
    font-size: 14rem;
    display: grid;
    grid-template-columns: 120px 1fr;
    margin: 10px 0;
}
.bldginfo__items dt {
    font-weight: 300;
    padding-top: 2px;
}
.bldginfo__items dd {
    padding-top: 2px;
}

.bldginfo__samples {
    border-top: 1px solid #4e4e4e;
    table-layout: fixed;
    margin-bottom: 10px;
    width: 100%;
}
.bldginfo__samples td {
    padding: 6px;
    text-align: right;
}
.bldginfo__samples td:first-child,
.bldginfo__samples td .tooltip__txt {
    text-align: left;
}
.bldginfo__samples thead td {
    background: #f5f5f5;
    white-space: nowrap;
}
.bldginfo__samples tbody tr:nth-child(even) td {
    background: #f5f5f5;
}

.proprebase-search {
    font-size: 13px;
    font-size: 13rem;
    background: #00325d;
    background: linear-gradient(
        200deg,
        rgba(0, 57, 81, 0.7) 0%,
        rgb(29, 43, 72) 100%
    );
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    color: #fff;
    display: flex;
    flex-direction: column;
    grid-template-rows: auto 1fr;
    left: 10px;
    max-height: calc(100vh - 30px);
    position: absolute;
    top: 54px;
    transition: transform 0.4s ease;
    width: 350px;
    z-index: 51;
}
.proprebase-search.hidden {
    transform: translateX(-110%);
}

.proprebase-search__header {
    border-bottom: 1px solid #fff;
    flex-shrink: 0;
    margin: 10px 20px;
    padding-bottom: 10px;
    position: relative;
}

.proprebase-search__ttl {
    font-size: 14px;
    font-size: 14rem;
}

.proprebase-search__close {
    position: absolute;
    right: -20px;
    top: 10px;
}
.proprebase-search__close img {
    rotate: 90deg;
}

.proprebase-search__open {
    font-size: 14px;
    font-size: 14rem;
    align-items: center;
    background: #00325d;
    color: #fff;
    display: flex;
    position: absolute;
    left: 0;
    padding-left: 10px;
    top: 60px;
}
.proprebase-search__open img {
    margin-right: -20px;
    rotate: -90deg;
}

.proprebase-search__body {
    flex: 1;
    margin: 0 20px 10px;
    min-height: 120px;
    overflow-y: auto;
    position: relative;
}
.proprebase-search__body:has(.toggle-all) {
    margin: 0 40px 18px 37px;
}
.proprebase-search__body.-select {
    border-top: 1px solid #bbbcbc;
}
.proprebase-search__body .request-form__one-line {
    margin-bottom: 10px;
}
.proprebase-search__body .request-form__one-line .request-checkbox {
    background: none;
}
.proprebase-search__body .request-form__one-line .request-checkbox::before {
    background: #fff;
    content: "";
    display: block;
    height: 25px;
    outline: 1px solid #afafaf;
    outline-offset: -1px;
    width: 25px;
}
.proprebase-search__body
    .request-form__one-line
    .request-checkbox:has(input:checked)::before {
    background: #30b6ff url("/public/img/common/icon-check-white.svg") no-repeat
        center center;
    outline: none;
}
.proprebase-search__body .request-form__one-line .request-checkbox input {
    display: none;
}
.proprebase-search__body section {
    margin: 10px 0;
}

.proprebase-search__reset {
    font-size: 13px;
    font-size: 13rem;
    appearance: none;
    background: none;
    border: 0;
    color: #fff;
    display: inline-block;
    font-weight: 800;
    text-align: right;
    text-decoration: underline;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.proprebase-search__reset:hover {
    opacity: 0.75;
}

/*
// タブ部分
input[name='tohon-area'] {
  display: none;
}
// 内容
.areanav-opt__body {
  display: none;
  //margin: 0 16px 16px;
}
// タブの表示制御
#area-by-center:checked ~ .search-form__select #area-by-center__label .form-radio__txt:after,
#area-by-town:checked + .search-form__select #area-by-town__label .form-radio__txt:after {
    background: g.$blue;
    display: block;
    height: 20px;
    left: 5px;
    top: 5px;
    width: 20px;
}

// 内容の表示制御
#area-by-town:checked ~ #areanav-bytown__body,
#area-by-center:checked ~ #areanav-bycenter__body {
  display: block;
}
*/
.areanav-drilldown__wrapper {
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.proprebase-search__footer {
    flex-shrink: 0;
    margin: 0 20px;
}

.proprebase-search__btn {
    font-size: 14px;
    font-size: 14rem;
    background: #cbd901;
    border-radius: 20px;
    color: #00325d;
    font-weight: 700;
    height: 40px;
    padding: 10px;
}
.proprebase-search__btn.-inactive {
    background: #5b5b5b;
}

.proprebase-opt__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proprebase-opt__btn {
    font-size: 14px;
    font-size: 14rem;
    background: #cbd901;
    border-radius: 6px;
    color: #00325d;
    display: block;
    font-weight: 700;
    padding: 10px;
    text-align: center;
    width: 100%;
}
.proprebase-opt__btn span {
    font-size: 11px;
    font-size: 11rem;
    display: block;
}
.proprebase-opt__btn:hover {
    background: #ffd600;
    color: #000 !important;
}

.proprebase-search__footer-result {
    font-size: 20px;
    font-size: 20rem;
    font-weight: 700;
    line-height: 1.7;
}

.proprebase-search__footer-msg {
    font-weight: 800;
    margin-bottom: 18px;
}

.proprebase-search__footer-action {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.search-form-table {
    align-items: center;
    display: grid;
    grid-template-columns: 4em 1fr;
    margin-bottom: 10px;
}
.search-form-table .request-form__ttl {
    margin-bottom: 0;
}
.search-form-table .request-form__select {
    gap: 10px;
    margin-bottom: 0;
}
.search-form-table .request-checkbox {
    background: none;
}
.search-form-table .request-checkbox::before {
    background: #fff;
    content: "";
    display: block;
    height: 25px;
    outline: 1px solid #afafaf;
    outline-offset: -1px;
    width: 25px;
}
.search-form-table .request-checkbox:has(input:checked)::before {
    background: #30b6ff url("/public/img/common/icon-check-white.svg") no-repeat
        center center;
    outline: none;
}
.search-form-table .request-checkbox input {
    display: none;
}

.search-form-table__ttl {
    font-weight: 700;
}

.search-form-table__body {
    align-items: center;
    display: flex;
    gap: 6px;
}
.search-form-table__body .form-input {
    height: 32px;
    width: 100px;
}
.search-form-table__body.-bytown .form-select {
    width: 100%;
}
.search-form-table__body.-bytown .form-select .form-select__opt {
    font-size: 12px;
    font-size: 12rem;
    padding: 8px;
}

.proprebase-index__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    left: 50%;
    position: absolute;
    transform: translateX(-40%);
    top: 80px;
    max-width: 760px;
}

.aisuggest__wrapper {
    background: rgba(48, 182, 255, 0.4);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.aisuggest__ttl {
    font-size: 18px;
    font-size: 18rem;
    margin-bottom: 20px;
}

.aisuggest__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.aisuggest__item a {
    display: block;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    color: #00325d;
    font-weight: 700;
    padding: 20px;
    cursor: pointer;
}
.aisuggest__item a:hover {
    background: #007ae9;
    color: #fff;
    opacity: 1;
}

.aisuggest-close__btn {
    background: #007ae9;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* 画面幅が780px以下 → 2列 */
@media (max-width: 1000px) {
    .aisuggest__items {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* 画面幅が480px以下 → 1列 */
@media (max-width: 480px) {
    .aisuggest__items {
        grid-template-columns: 1fr;
    }
}
.proprebase-member__wrapper {
    background: rgba(255, 163, 97, 0.7);
    border-radius: 8px;
    padding: 20px;
}

.proprebase-member__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.proprebase-member__item a {
    display: block;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    color: #00325d;
    font-weight: 700;
    padding: 20px;
    white-space: nowrap;
    cursor: pointer;
}
.proprebase-member__item a:hover {
    background: #ff6b00;
    color: #fff;
    opacity: 1;
}

/* 画面幅が780px以下 → 2列 */
@media (max-width: 1000px) {
    .proprebase-member__items {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* 画面幅が480px以下 → 1列 */
@media (max-width: 480px) {
    .proprebase-member__items {
        grid-template-columns: 1fr;
    }
}
.request-background {
    display: grid;
    grid-template-rows: 1fr minmax(64px, max-content);
    height: 100vh;
}

.request-bldg-info {
    font-size: 12px;
    font-size: 12rem;
    line-height: 1.6;
}
.request-bldg-info address {
    color: #707070;
}
.request-bldg-info:has(input:checked) .request-bldg-info__ttl {
    font-weight: 700;
}

label.request-bldg-info {
    border-bottom: 1px solid #bbbcbc;
    display: flex;
    gap: 13px;
    padding: 7px 0;
    width: 100%;
}

.request-bldg-info__body {
    font-size: 12px;
    font-size: 12rem;
    line-height: 1.6;
}

.request-bldg-info__ttl {
    font-size: 14px;
    font-size: 14rem;
}

.request-bldg-info__registered .dialog-open {
    background: none;
}

.request-bldg-list {
    margin-left: 36px;
}
.request-bldg-list li {
    border-bottom: 1px solid #bbbcbc;
    padding: 10px 0;
    /* 20251205 地図基盤取得済みフラグ表示用 */
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.request-bldg-list li:last-of-type {
    border: 0;
}
.request-bldg-list.-no-details {
    margin-left: 0;
}
.request-bldg-list.-no-details li {
    border: 0;
    padding: 0;
}

.request-checkbox {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-size: 14rem;
    gap: 13px;
    line-height: 1;
    transition: all 0.1s linear;
    width: -moz-fit-content;
    width: fit-content;
}
.request-checkbox::before {
    background: #fff;
    content: "";
    display: block;
    height: 26px;
    outline: 1px solid #afafaf;
    outline-offset: -1px;
    width: 26px;
}
.request-checkbox:has(input:checked)::before {
    background: #30b6ff url(../../img/common/icon-check-white.svg) no-repeat
        center center;
    outline: none;
}
.request-checkbox input {
    display: none;
}
.request-checkbox.-registered:has(input:checked)::before {
    background: #ffa462 url(../../img/common/icon-check-white.svg) no-repeat
        center center;
}

.request-conf-dialog .dialog__ttl {
    font-size: 34px;
    font-size: 34rem;
    font-weight: 400;
}
.request-conf-dialog .form-textarea {
    height: 6em;
}
.request-conf-dialog .dialog__action {
    flex-direction: column;
    width: 100%;
}

.request-conf-dialog__summary {
    font-size: 24px;
    font-size: 24rem;
}

.request-conf-dialog__price {
    font-size: 44px;
    font-size: 44rem;
}

.request-details {
    border-bottom: 1px solid #bbbcbc;
    display: flow-root;
    transition: all 0.1s linear;
}
.request-details[open] .request-details__ttl {
    border-bottom: 1px solid #bbbcbc;
}
.request-details[open] .request-details__ttl-ico {
    rotate: -90deg;
}

.request-details__ttl {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 5px;
    line-height: 1;
    padding: 12px 0;
    transition: all 0.1s linear;
}
.request-details__ttl:hover {
    background: rgba(48, 182, 255, 0.1);
}
.request-details__ttl::-webkit-details-marker {
    display: none;
}

.request-details__ttl-check {
    flex-shrink: 0;
    text-align: center;
    width: 3em;
}
.request-details__ttl-check .request-checkbox {
    margin: 0 0 8px 8px;
}

.request-details__ttl-checklabel {
    font-size: 11px;
    font-size: 11rem;
    margin-left: -3px;
}

.request-details__ttl-data {
    flex: 1;
}

.request-details__ttl-ico {
    flex-shrink: 0;
    margin-right: 10px;
    rotate: 90deg;
    transition: all 0.1s linear;
}

.request-footer {
    font-size: 14px;
    font-size: 14rem;
    align-items: center;
    background-color: #4e4e4e;
    display: grid;
    gap: 5px;
    text-align: center;
}

.request-footer__nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: auto 0 0;
}

.request-footer__copy {
    font-size: 12px;
    font-size: 12rem;
    color: #fff;
    margin: 0 0 auto;
}

.request-form__ttl {
    font-size: 13px;
    font-size: 13rem;
    margin-bottom: 10px;
}

.request-form__select {
    display: flex;
    gap: 18px 30px;
    margin-bottom: 20px;
}
.request-form__select .form-radio__txt {
    font-size: 13px;
    font-size: 13rem;
}

.request-form__one-line {
    width: 100%;
}

.request-form__input {
    font-size: 14px;
    font-size: 14rem;
    background: #fff;
    border: 1px solid #bbbcbc;
    border-radius: 6px;
    height: 34px;
    line-height: 1;
    padding: 15px;
    width: 100%;
}
.request-form__input::-moz-placeholder {
    color: #9f9f9f;
}
.request-form__input::placeholder {
    color: #9f9f9f;
}
.request-form__input::-moz-placeholder {
    color: #9f9f9f;
}

.request-form__btn-filter {
    background: #30b6ff;
}

.request-form-table {
    align-items: center;
    display: grid;
    grid-template-columns: 7em 1fr;
    margin-bottom: 10px;
}

.request-form-table__body {
    align-items: center;
    display: flex;
    gap: 6px;
}
.request-form-table__body .form-input {
    width: 100px;
}
.request-form-table__body.-bytown .form-select {
    width: 100%;
}
.request-form-table__body.-bytown .form-select .form-select__opt {
    font-size: 12px;
    font-size: 12rem;
}

.request-menu {
    font-size: 13px;
    font-size: 13rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    grid-template-rows: auto 1fr;
    left: 12px;
    max-height: calc(100dvh - 20px);
    position: absolute;
    top: 48px;
    width: 350px;
    z-index: 51;
}
.request-menu .form-checkbox__input:checked + .form-checkbox__txt::before {
    background: #30b6ff;
    border: 0;
}
.request-menu .form-checkbox__input:checked + .form-checkbox__txt:after {
    background: url(../../img/common/icon-check-white.svg) no-repeat 0 0;
    background-size: 20px;
    background-position: 10px;
    content: "";
    display: block;
    height: 40px;
    left: -5px;
    position: absolute;
    width: 40px;
}

.request-menu__header {
    flex-shrink: 0;
    margin: 20px 20px 10px;
}
.request-menu__header a {
    font-weight: 700;
}

.request-menu__ttl {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}
.request-menu__ttl h2 {
    margin-top: -20px;
}

.request-menu__lead {
    background: #f6f6f6;
    border-radius: 10px;
    margin: 20px 0;
    padding: 10px;
}
.request-menu__lead a {
    font-weight: 800;
}

.request-menu__lead-txt {
    font-weight: 700;
    margin-bottom: 5px;
}

.request-menu__txt {
    line-height: 1.4;
}

.request-menu__ctrl {
    margin-bottom: 10px;
    text-align: right;
}

.request-menu__body {
    flex: 1;
    margin: 0 20px 10px;
    min-height: 120px;
    overflow-y: auto;
    position: relative;
    /*&:has(.toggle-all) { 20251205コメントアウト
    margin: 0 40px 18px 37px;
  }*/
}
.request-menu__body.-select {
    border-top: 1px solid #bbbcbc;
}

.request-menu__reset {
    font-size: 13px;
    font-size: 13rem;
    appearance: none;
    background: none;
    border: 0;
    color: #30b6ff;
    display: inline-block;
    font-weight: 800;
    position: absolute;
    right: 0;
    text-decoration: underline;
    top: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.request-menu__reset:hover {
    opacity: 0.75;
}

/*
// タブ部分
input[name='tohon-area'] {
  display: none;
}
// 内容
.areanav-opt__body {
  display: none;
  //margin: 0 16px 16px;
}
// タブの表示制御
#area-by-center:checked ~ .request-form__select #area-by-center__label .form-radio__txt:after,
#area-by-town:checked + .request-form__select #area-by-town__label .form-radio__txt:after {
    background: g.$blue;
    display: block;
    height: 20px;
    left: 5px;
    top: 5px;
    width: 20px;
}

// 内容の表示制御
#area-by-town:checked ~ #areanav-bytown__body,
#area-by-center:checked ~ #areanav-bycenter__body {
  display: block;
}
*/


.request-menu__footer {
    flex-shrink: 0;
    margin: 0 20px;
    padding-bottom: 10px;
    text-align: center;
}
.request-menu__footer .form-btn.-dc-btn {
    font-size: 14px;
    font-size: 14rem;
    border-radius: 6px;
    margin: 0 0 8px;
    padding: 10px;
}

.request-menu__footer-result {
    font-size: 20px;
    font-size: 20rem;
    font-weight: 700;
    line-height: 1.7;
}

.request-menu__footer-msg {
    font-weight: 800;
    margin-bottom: 18px;
}

.request-menu__footer-action {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/*
@media (max-width: 1600px) {
  .request-menu {
    //max-height: 100vh;
    margin: 0px auto;
    box-sizing: border-box;
    //left: -30px;
    //scale: 0.8;
    //top: 0;
  }

  .form-btn.-dc-btn {
    padding: 10px;
  }
}*/
.heatmap {
    -webkit-font-smoothing: antialiased;
    bottom: 90px;
    font-family: "Barlow";
    font-size: 14px;
    left: calc(50vw - 150px);
    margin: auto;
    position: absolute;
    text-align: center;
    width: 300px;
    z-index: 50;
}
.heatmap.-proprebase {
    bottom: auto;
    top: 50px;
    position: absolute;
}

.heatmap__ttl {
    background: #00325d;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    height: 34px;
    line-height: 1;
    margin-top: 0;
    position: relative;
    text-align: center;
    width: 100px;
}

/* 地図基盤用に吹き出し廃止 */
.heatmap__ttl:after {
    display: none;
}

.heatmap__ttllabel,
.heatmap__close {
    padding: 10px;
    position: absolute;
    top: 0;
    width: 100px;
}

.heatmap__close {
    cursor: pointer;
}

.heatmap__close i {
    margin-right: 0.5em;
}

.heatmap__frame {
    background: #fff;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 4px 4px;
    color: #4a4a4a;
    font-weight: 400;
    height: 210px;
    margin: 16px auto 0;
    overflow: hidden;
    padding-top: 1px;
    position: relative;
    text-align: left;
    width: 300px;
}
.heatmap__frame:has(#land-growth-rate:checked) {
    height: 370px;
}

.heatmap__open {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    height: auto;
    left: 0;
    margin: auto;
    width: 100%;
}

.heatmap__body {
    width: 300px;
    position: relative;
}

.heatmap-toggle {
    margin: 10px 10px 8px;
    display: flex;
    align-items: center;
}

.heatmap-toggle button.pinOperator {
    background: none;
    border: 0;
    color: #b1b1b1;
    font-size: 20px;
    line-height: 1;
    margin-left: auto;
    padding: 0;
    width: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.heatmap-toggle button.pinOperator.active {
    color: #30b6ff;
}

.heatmap-toggle button:focus {
    outline: 0;
}

.heatmap_tooltip {
    background-color: #343434;
    border: 0 !important;
    border-radius: 6px;
    box-shadow: none;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    margin-left: -60px;
    padding: 5px 10px;
    text-align: center;
    /*width: 120px;*/
    white-space: nowrap;
}

.heatmap_tooltip::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #343434 transparent transparent transparent;
}

a.map-split__cancel,
a.map-split__on {
    background-color: #343434;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    height: 18px;
    overflow: hidden;
    padding: 2px 8px;
    white-space: nowrap;
    width: auto;
}

.heatmap-toggle button:hover > span.tooltip {
    visibility: visible;
    opacity: 1;
}

/*.heatmap-toggle__ttl {*/
/*  content: 'HEATMAP';*/
/*  font-weight: 600;*/
/*  margin-right: 8px;*/
/*  vertical-align: middle;*/
/*}*/
.heatmap-toggle__label {
    display: inline-block;
    height: 20px;
    position: relative;
    vertical-align: middle;
    width: 50px;
}

.heatmap-toggle__bg {
    border-radius: 20px;
    background-color: #b1b1b1;
    cursor: pointer;
    display: block;
    height: 20px;
    overflow: hidden;
    position: relative;
}

.heatmap-toggle__checkbox {
    display: none;
}

.heatmap-toggle__btn {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
    background-color: #8b999f;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    height: 20px;
    left: 0px;
    line-height: 1;
    position: absolute;
    top: 0px;
    left: 16px;
    width: 34px;
}

.heatmap-toggle__btn:after {
    content: "OFF";
}

.heatmap-toggle__checkbox:checked ~ .heatmap-toggle__btn {
    background-color: #e91d29;
    left: 0;
    width: 28px;
}

.heatmap-toggle__checkbox:checked ~ .heatmap-toggle__btn:after {
    content: "ON";
}

.heatmap__selectarea {
    margin: 8px 10px;
    overflow: hidden;
    position: relative;
}

.heatmap__select {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    color: #4a4a4a;
    height: 28px;
    line-height: 1;
    position: relative;
    vertical-align: middle;
    width: 130px;
    box-sizing: border-box;
}

.heatmap__select.-param1 {
    float: left;
}

.heatmap__select.-param2 {
    float: right;
}

.heatmap__selectarea span {
    left: 133px;
    line-height: 1;
    position: absolute;
    text-align: center;
    top: 7px;
    width: 14px;
}

.heatmap__draw {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #30b6ff;
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin: 0 10px;
    padding: 10px 14px;
    text-align: center;
    width: 280px;
}

.heatmap__legend {
    font-size: 12px;
    margin: 8px 10px;
    position: absolute;
}

.heatmap__legend.-type1 {
    display: flex;
    /*overflow:hidden;*/
}

.heatmap__legend.-type1:before {
    background: linear-gradient(
        180deg,
        #ef7300 0%,
        #efc900 22.65%,
        #c6ff99 48.62%,
        #64c7ff 76.8%,
        #9e86ff 100%
    );
    content: "";
    display: block;
    height: 125px;
    left: 0;
    top: 0;
    width: 50px;
}

.heatmap__legend.-type1 p {
    left: 56px;
    margin: 0;
    position: absolute;
}

.heatmap__legend.-type1 p:first-of-type {
    top: 1px;
}

.heatmap__legend.-type1 p:last-of-type {
    bottom: 1px;
}

.heatmap__legend.-type2 {
    background: url(/img/map/heatmap_legend.png) no-repeat 0 0;
    background-size: 280px 125px;
    display: none;
    height: 125px;
    width: 280px;
    overflow: hidden;
}

.heatmap__legend.-type2 p {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    position: absolute;
}

.heatmap__legend.-type2 p:nth-of-type(1) {
    top: 15px;
    left: 13px;
}

.heatmap__legend.-type2 p:nth-of-type(2) {
    top: 15px;
    left: 153px;
}

.heatmap__legend.-type2 p:nth-of-type(3) {
    bottom: 15px;
    left: 13px;
}

.heatmap__legend.-type2 p:nth-of-type(4) {
    bottom: 15px;
    left: 153px;
}

.heatmap__ttl,
.heatmap__frame {
    transition: all 0.5s ease-out;
}

.heatmap.-off {
    pointer-events: none;
}

.heatmap.-off .heatmap__close,
.heatmap.-off .heatmap__body {
    display: none;
}

/* 地図基盤用にボタンをトップに配置するためコメントアウト */
.heatmap.-off .heatmap__ttl {
    margin-top: 0;
}

.heatmap.-off .heatmap__frame {
    height: 0px;
    overflow: hidden;
    width: 0px;
}
.heatmap.-off .heatmap__frame:has(#land-growth-rate:checked) {
    height: 40px;
}

/* .map-split {
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    line-height: 1;
    width: 212px;
}

.map-split__btn {
    background: #b1b1b1;
    cursor: pointer;
    display: inline-block;
    height: 18px;
    width: 26px;
    transition: all 0.1s linear;
}

.map-split__btn:hover,
.map-split__btn.-on {
    background: #30b6ff;
    transition: all 0.1s linear;
}

.map-split__btn.-two {
    margin: 0 8px;
    width: 25px;
}

.map-split__btn.-two:before,
.map-split__btn.-three:before,
.map-split__btn.-three:after {
    content: "";
    background: #fff;
    display: inline-block;
    height: 18px;
    width: 1px;
}

.map-split__btn.-two:before {
    margin-left: 12px;
}

.map-split__btn.-three:before {
    margin-left: 8px;
}

.map-split__btn.-three:after {
    margin-left: 8px;
} */

.tooltip-txt {
    display: none;
}

@media only screen and (max-width: 768px) {
    .map-split__btn {
        display: none;
    }
}
.heatmap__selectarea.local_file {
    width: 380px;
}

.heatmap-opt {
    padding-top: 16px;
}

input[name="heatmap-opt-tab"] {
    display: none;
}

.heatmap-opt__tab {
    border-bottom: 1px solid #b1ddf5;
    display: flex;
    gap: 7px;
    margin: 0 auto 9px;
    padding-bottom: 9px;
    width: -moz-fit-content;
    width: fit-content;
}

.heatmap-opt__label {
    font-size: 16px;
    font-size: 16rem;
    align-items: center;
    background: #30b6ff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    height: 58px;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    width: 64px;
}
.heatmap-opt__label:hover {
    opacity: 0.75;
    transition: all 0.1s linear;
}

.heatmap-opt__body {
    display: none;
    margin: 0 16px 16px;
}
.heatmap-opt__body p {
    margin-bottom: 20px;
}

.heatmap-opt__legend {
    position: relative;
}
.heatmap-opt__legend figcaption {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 700;
    height: 39px;
    justify-content: space-between;
    line-height: 1;
    margin: 0 6px;
    position: absolute;
    width: calc(100% - 12px);
}
.heatmap-opt__legend img {
    height: auto;
    width: 100%;
}

#description:checked ~ .heatmap-opt__tab #description__label,
#price-rent:checked ~ .heatmap-opt__tab #price-rent__label,
#price-sale:checked ~ .heatmap-opt__tab #price-sale__label,
#yield:checked ~ .heatmap-opt__tab #yield__label,
#land-growth-rate:checked ~ .heatmap-opt__tab #land-growth-rate__label {
    background: #fff824;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) inset;
}

#description:checked ~ #description__body,
#price-rent:checked ~ #price-rent__body,
#price-sale:checked ~ #price-sale__body,
#yield:checked ~ #yield__body,
#land-growth-rate:checked ~ #land-growth-rate__body {
    display: block;
}
