@charset "UTF-8";

div#page_contact {
    font-family: "Noto Sans JP", sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: inherit;
    border-width: 1px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

select,
input {
    width: 100%;
    padding: 12px;
    margin-top: 4px;
    margin-bottom: 12px;
    font-size: 16px;
    border: solid 1px;
}

/*.highlight-border {
    border: 2px solid #f27c00 !important;
    box-shadow: 0 0 0 2px rgba(242, 124, 0, 0.2);
    transition: all 0.2s ease;
}*/


.highlight-border {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: focusWave;
    animation-name: focusWave;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    border-color: #f12 !important;
    border-radius: 8px;
    box-shadow: 0 0 0 2px #f12;
}



@keyframes focusWave {
    0% {
        box-shadow:
            0 0 0 1px #f12,
            0 0 0 8px rgba(255, 255, 255, 0),
            0 0 0 10px rgba(100, 37, 16, 0);
    }

    100% {
        box-shadow:
            0 0 0 1px #f12,
            0 0 0 1px #fff,
            0 0 0 2px #ff5e28;
    }
}


/* 入力そのものは非表示に */
input[type="radio"].custom-radio-button {
    display: none;
}

/* 見た目を整えるラベル */
.mwform-radio-field label {
    display: block;
    background: #f0f0f0;
    color: #000;
    border-radius: 8px;
    margin: 5px 10px 5px 0;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    text-align: center;
}

label[for="property_status-5"] {
    margin-right: 0;
}

.radio-container {
    display: flex;
    justify-content: space-between;
    gap: 0; /* 必要に応じて調整 */
    margin-top: 10px;
}

.radio-container span.mwform-radio-field.horizontal-item {
    width: 19%;
}

/* 無効化されたラジオボタンのテキスト表示 */
input[type="radio"].custom-radio-button:disabled + span.mwform-radio-field-text {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #eaeaea;
  color: #999;
}

/* チェックされた input の兄弟 span を強調表示 */
input[type="radio"].custom-radio-button:checked+span.mwform-radio-field-text {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* span にもボタンっぽい見た目をつける */
.mwform-radio-field-text {
    display: block;
    padding: 20px 16px;
    border-radius: 8px;
    background: #f0f0f0;
    font-weight: bold;
    pointer-events: none;
    font-size: 20px;
}

.email-suggest-wrapper {
    position: relative;
}

.email-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    overflow-y: scroll;
    height: 200px;
}

.email-suggestions li {
    padding: 10px;
    cursor: pointer;
}

.email-suggestions li:hover {
    background-color: #f0f0f0;
}

/* 全体クリック可能にする */
.checkbox-container .mwform-checkbox-field label {
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 8px 0;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s, color 0.2s;
    position: relative;
}

/* チェックボックス自体は非表示 */
.checkbox-container .mwform-checkbox-field input[type="checkbox"] {
    display: none;
}

.checkbox-container .mwform-checkbox-field span {
    padding: 12px 16px;
    display: block;
}

span.mwform-checkbox-field.horizontal-item {
    display: block;
    margin-bottom: 10px;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

/* 選択状態の背景色 */
.checkbox-container .mwform-checkbox-field input[type="checkbox"]:checked+span {
    background-color: #fce4e4;
    color: #b71c1c;
    border-radius: 8px;
}

/* disabled状態のチェックボックスラベル全体 */
.checkbox-container .mwform-checkbox-field input[type="checkbox"]:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #eaeaea;
  color: #999;
}


.status {
    display: inline-block;
    font-weight: bold;
    font-size: 13px;
    margin-right: 10px;
    padding: 2px 4px;
    border-radius: 20px;
    border: solid 1px #e60000;
    background: #fff;
    color: #e60000;
    width: 50px;
    text-align: center;
}

.input-check.valid+.status,
.status.ok {
    background: #007acc;
    border-color: #007acc;
    color: #fff;
    content: "OK";
}

.input-check:valid {
    border-color: #a1a1a1;
    border-radius: 8px;
}

/* 親ラッパーを変えたい場合（例：divに .field-wrapper がある場合） */
.field-wrapper.ok {
    background: #f2faff;
}

select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ccc;
    border-radius: 8px;
}

input:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ccc;
    border-radius: 8px;
    opacity: 0.7;
}

textarea:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ccc;
    border-radius: 8px;
    opacity: 0.7;
}

textarea {
    border: solid 1px;
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(/wp-content/uploads/2025/07/arrow.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 40px;
}

span.form_label_sb {
    font-weight: normal;
    color: #7c7c7c;
    font-size: 15px;
    margin-left: 10px;
}

label.form_ttl_label {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.form_box {
    margin-bottom: 15px;
}

p.form_ttl_attention {
    font-size: 15px;
    color: #e60000;
}

span.status_nini {
    display: inline-block;
    font-weight: bold;
    font-size: 13px;
    margin-right: 10px;
    padding: 2px 4px;
    border-radius: 20px;
    border: solid 1px #007acc;
    background: #fff;
    color: #007acc;
    width: 50px;
    text-align: center;
}

.form_box.form_box_owner_note {
    margin-top: 30px;
}

input.js-btn-confirm {
    background: #9a9c9d !important;
    color: #d4d4d4;
    cursor: not-allowed;
    pointer-events: none;
    border-radius: 50px;
    padding: 1em 2em;
    font-size: 23px;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    width: 390px;
    margin: 30px auto;
}

input.js-btn-confirm.active {
    background: var(--primitive-gradation-2, linear-gradient(280deg, #FF4040 0%, #D90D0D 100%)) !important;
    cursor: pointer;
    pointer-events: auto;
    color: #fff;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: focusWave;
    animation-name: focusWave;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    border-color: #f12 !important;
    box-shadow: 0 0 0 2px #f12;
}

.form_box.ok .highlight-border {
    animation: none;
    border-color: #a1a1a1 !important;
    box-shadow: none;
    background-color: #fff !important;

}

footer.ft_form {
    background-color: #f7f7f7;
    padding-top: 40px;
}

.ft_form_privacy {
    margin-left: 30px;
}

.form_logo {
    width: 130px;
    margin-top: 25px;
    margin-left: 25px;
    margin-bottom: 25px;
}

.page_contact_ttl h1 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 35px;
}

.ft_form_privacy a {
    color: #333;
    font-size: 12px;
}

.ft_form_flex {
    align-items: center;
}

.contact_step {
    width: 580px;
    margin: 0 auto 20px;
    position: relative;
}

.contact_step .item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact_step .item .num {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    background-color: #ccc;
    color: #fff;
    display: inline-block;
    width: 30px;
    line-height: 30px;
    border-radius: 20px;
    margin-bottom: 4px;
    font-size: 14px;
}

.contact_step .item .txt {
    font-weight: bold;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 0;
}

.contact_step .item.active .num {
    background-color: #d90d0d;
}

.contact_step .item.active .txt {
    color: #d90d0d;
}

.contact_step:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 40px;
    background-color: #ccc;
    width: 500px;
    height: 3px;
}

div#page_contact {
    padding-bottom: 120px;
    border-top: solid 1px #ddd;
    padding-top: 40px;
}

.form_L {
    width: 660px;
    padding-left: 11px;
}

/*.form_section_owner {
    display: none;
}*/

h2.form_ttl {
    font-size: 24px;
}

.form_section_owner {
    padding-top: 20px;
}

.page-id-5908 .form_section_owner {
    display: initial;
}

.form-type {
  display: none;
}

/* --- 物件種別：3列グリッド --- */
.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ラジオ丸を隠す（ネイティブドット非表示） */
.property-type-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 1ボタンの枠（label） */
.property-type-group .mwform-radio-field label {
  display: block;
  width: 100%;
  cursor: pointer;
}

/* ボタンの本体（テキスト側のspan） */
.property-type-group .mwform-radio-field .mwform-radio-field-text {
  display: block;
  padding: 16px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #f7f7f7;
  text-align: center;
  font-weight: 700;
  transition: .2s;
}

/* hover */
.property-type-group .mwform-radio-field label:hover .mwform-radio-field-text {
  border-color: #aaa;
}

/* チェック時の見た目 */
.property-type-group .mwform-radio-field input[type="radio"]:checked + .mwform-radio-field-text {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 0 0 2px #000 inset;
}

/* ★ 初期の強調を “各ボタン” に付ける用（既存の focusWave を再利用） */
.property-type-group .mwform-radio-field label.highlight-border .mwform-radio-field-text {
  border-color: #f12 !important;
  box-shadow: 0 0 0 2px #f12;
  border-radius: 10px;
  -webkit-animation: focusWave 1.5s ease infinite;
  animation: focusWave 1.5s ease infinite;
}

/* もし大枠に highlight-border が残っていたら見た目を無効化（保険） */
.property-type-group.highlight-border {
  box-shadow: none !important;
  padding: 0 !important;
}





@media (max-width: 750px) {
    
}