@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-repeat: repeat;
    font-size: 20px;
    background-color: #fefdc9;
}

.pr {
    position: relative;
}

.sp {
    display: none;
}

#mv-chatform-container {
    position: fixed;
    top: 30px;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 600px;
    margin: 0 auto;
    background-color: #fdf1d6;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

#mv-chatform-form .message {
    display: flex;
    padding: 0;
}

#mv-chatform-form {
    padding: 20px 20px 0;
    height: calc(100% - 60px);
    overflow-y: scroll;
}

div#mv-chatform-form .message .icon {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    background-image: url(../images/operator_icon.jpg);
    background-size: cover;
    background-position: center;
}

div#mv-chatform-form .message .message_area {
    max-width: calc(100% - 100px);
    margin-left: 20px;
}

div#mv-chatform-form .message .message_text {
    background: #fff;
    border-radius: 1em;
    padding: 1em;
    font-weight: bold;
    position: relative;
    width: auto;
    margin-left: 0;
    font-size: 100%;
    display: none;
    border: none;
}

div#mv-chatform-form .message .message_area .kassto_name {
    font-size: 80%;
    font-weight: bold;
    margin-block: 0 0.5em;
}

div#mv-chatform-form .message~.message {
    margin-top: 1em;
}

div#mv-chatform-form .message .message_text:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 20px solid #fff;
    border-top: 0;
    transform: rotate(286deg);
    position: absolute;
    left: -10px;
    top: 1em;
}

.message.-kasotto+.message.-kasotto .icon {
    opacity: 0;
}

.message.-kasotto+.message.-kasotto .message_text:before {
    opacity: 0;
}

.message.-kasotto+.message.-kasotto .kassto_name {
    display: none;
}

#mv-chatform-inputarea {
    padding: 1em;
}

#mv-chatform-inputarea .input-label {
    font-weight: bold;
    margin: 0 0 1em;
    border-left: 5px solid #ec6727;
    padding-left: 0.5em;
}

.property_type input {
    display: none;
}

.chatform-form-inputarea .radio-field.property_type {
    grid-template-columns: repeat(3, 1fr);
}

.radio-field.property_type label {
    text-align: center;
    width: 100%;
    font-size: 75%;
    font-weight: bold;
    padding: 55px 0 5px;
    background-color: #fff;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-size: 45px;
    background-position: top 5px center;
}

label.property_type-1 {
    background-image: url(../images/property_type01.svg);
}

label.property_type-2 {
    background-image: url(../images/property_type02.svg);
}

label.property_type-3 {
    background-image: url(../images/property_type03.svg);
}

label.property_type-4 {
    background-image: url(../images/property_type04.svg);
}

label.property_type-5 {
    background-image: url(../images/property_type05.svg);
}

label.property_type-6 {
    background-image: url(../images/property_type06.svg);
}

label.property_type-7 {
    background-image: url(../images/property_type07.svg);
}

label.property_type-8 {
    background-image: url(../images/property_type08.svg);
}

label.property_type-9 {
    background-image: url(../images/property_type09.svg);
}

.radio-field.property_type label.property_type-4 {
    background-size: 50px;
}

.chat_room_label {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.2em;
    padding: 0.3em 1em;
}

.chat_room_label .logo {
    width: 160px;
    flex-shrink: 0;
}

.chat_room_label .logo img {
    width: 100%;
    vertical-align: middle;
}

div#mv-chatform-form .message.-user {
    max-width: 80%;
    margin-left: auto;
    justify-content: flex-end;
    align-items: flex-end;
}

div#mv-chatform-form .message.-user .kidoku {
    font-size: 80%;
}

div#mv-chatform-form .message.-user .message_text {
    background: #67dc6f;
    display: block;
}

div#mv-chatform-form .message.-user .message_text:before {
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 20px solid #67dc6f;
    left: auto;
    right: -10px;
    transform: rotate(426deg);
}

.addr-field {
    gap: 0.5em;
}

.addr-field select {
    padding: 0.95em 2em 0.95em 1em;
    font-weight: bold;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background: #fff;
    border: 1px solid #CBCBCB;
}

.addr-field select.prefecture-select {
    width: 100%;
}

.addr-field select.city-select {
    width: 100%;
}

div#mv-chatform-form input[type="text"],
div#mv-chatform-form input[type="tel"],
div#mv-chatform-form input[type="email"] {
    padding: 0.8em 1em;
    border: 1px solid #CBCBCB;
    border-radius: 6px;
    font-size: 16px;
    background: #F5F5F5;
}

.addr-field input[type="text"] {
    width: 100%;
}

.addr-field .address-input+.address-input {
    margin-block: 0.5em 0;
}

.addr-input-container {
    width: 100%;
}

div#mv-chatform-form button[type=submit] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    min-block-size: 45px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: .05em;
    font-weight: 700;
    padding: 0.5em;
    margin: 1.5em auto 0;
    background: #f5b301;
    cursor: pointer;
    color: #fff;
}

div#mv-chatform-form .radio-field.selectbox label {
    border: 1px solid;
    padding: 1em 1em;
    background: #fff;
    border-radius: 4em;
    width: calc(50% - 5px);
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

div#mv-chatform-form .radio-field.selectbox label input {
    display: none;
}

div#mv-chatform-form .radio-field.selectbox {
    justify-content: space-between;
    gap: 10px 10px;
    max-height: 130px;
    overflow-y: scroll;
}

#mv-chatform-inputarea form {
    position: relative;
}

div#mv-chatform-form .checkbox-field label {
    width: calc((100% - 0.5em) / 2);
    border: 1px solid #CBCBCB;
    padding: 0.6em 1.1em;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
}

div#mv-chatform-form .checkbox-field label .bg {
    background: #fff;
    position: absolute;
    inset: 0;
    z-index: -1;
}

div#mv-chatform-form .checkbox-field label input:checked~.bg {
    background: #F6D6D5;
}

div#mv-chatform-form .checkbox-field label input {
    display: none;
}

div#mv-chatform-form .checkbox-field label i {
    width: 20px;
    aspect-ratio: 1;
    min-width: 0;
    background: #CECECE;
    border-radius: 50%;
    margin-right: 0.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

div#mv-chatform-form .checkbox-field label input:checked~i {
    background: #f5b301;
}

div#mv-chatform-form .checkbox-field label i:after {
    content: "";
    width: 40%;
    height: 20%;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
    translate: 0 -0.05em;
    display: block;
}

div#mv-chatform-form .checkbox-field label input:checked~p {
    color: #e05d22;
    font-weight: bold;
}

.checkbox_note {
    font-size: 14px;
    letter-spacing: .05em;
    font-weight: 700;
    margin-block: 0 0.5em;
}

div#mv-chatform-form .checkbox-field {
    /* overflow-y: scroll;
    max-height: calc(100% - 120px);
    padding-right: 10px; */
    gap: 0.5em;
    display: flex;
    flex-wrap: wrap;
}

div#mv-chatform-form .text-form {
    padding-right: 80px;
}

div#mv-chatform-form .name-field input {
    width: calc(50% - 5px);
}

div#mv-chatform-form .name-field.tel input {
    width: 100%;
}

div#mv-chatform-form button[type=submit].last-submit {
    width: 100%;
    min-block-size: 80px;
    background: linear-gradient(to bottom, #D90600, #FD420A);
    box-shadow: 0 10px 0 #E60600;
    font-size: 24px;
    position: relative;
}

div#mv-chatform-form button[type=submit].last-submit::after {
    content: "";
    background: url(../images/icon_submit.svg) no-repeat;
    background-size: contain;
    width: 24px;
    aspect-ratio: 1;
    min-width: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
}

.message_loading {
    margin: 0.5em 0 0;
}

.loadership_MISYZ {
    display: flex;
    position: relative;
    width: 61px;
    height: 13px;
}

.loadership_MISYZ div {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    top: 0px;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loadership_MISYZ div:nth-child(1) {
    left: 0px;
    animation: loadership_MISYZ_scale_up 0.6s infinite;
}

.loadership_MISYZ div:nth-child(2) {
    left: 0px;
    animation: loadership_MISYZ_translate 0.6s infinite;
}

.loadership_MISYZ div:nth-child(3) {
    left: 24px;
    animation: loadership_MISYZ_translate 0.6s infinite;
}

.loadership_MISYZ div:nth-child(4) {
    left: 48px;
    animation: loadership_MISYZ_scale_down 0.6s infinite;
}

@keyframes loadership_MISYZ_scale_up {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes loadership_MISYZ_scale_down {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes loadership_MISYZ_translate {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

div#mv-chatform-form .name-field.email input {
    width: 100%;
}

div#page-chatform-thanks {
    width: 600px;
    margin: 100px auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
}

div#page-chatform-thanks .logo {
    width: 240px;
    margin: 0 auto 20px;
}

.chatform-form-inputarea {
    margin: 1em 0;
    pointer-events: none;
    opacity: 0.5;
}

.chatform-form-inputarea.now {
    pointer-events: inherit;
    opacity: 1;
}

.chatform-form-inputarea .input-label {
    text-align: center;
    font-weight: bold;
    background: #f5b301;
    color: #fff;
    letter-spacing: .07em;
    padding: 0.5em;
    border-radius: 6px;
    margin-bottom: 0.8em;
    position: relative;
    z-index: 0;
    font-size: 15px;
}

.chatform-form-inputarea .input-label::after {
    content: "";
    width: 27px;
    aspect-ratio: 27 / 10;
    background: #f5b301;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: -8px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
}

.chatform-form-inputarea .radio-field {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
    justify-content: center;
}

.addr-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 100;
}

.addr-modal-content {
    position: fixed;
    top: 80px;
    bottom: 80px;
    left: 0;
    right: 0;
    width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 200;
}

.addr-modal-content-list .list-title {
    font-weight: bold;
    background: #f5b301;
    color: #fff;
    padding: 1.5em 1em;
    border-radius: 20px 20px 0 0;
    line-height: 1.4;
}

.addr-modal-content-list .list-content {
    height: calc(100% - 4em);
    overflow-y: scroll;
    padding: 2em 1em;
    position: relative;
}

.addr-modal-content-list {
    height: 100%;
    overflow: hidden;
}

.addr-modal-content-list .list-content .list-group+.list-group {
    margin-top: 2em;
}

.addr-modal-content-list .list-content .list-group .list-group-label {
    font-weight: bold;
    border-bottom: 2px solid #f5b301;
    padding-block: 0 0.5em;
    margin-block: 0 0.5em;
}

.addr-modal-content-list .list-content .list-group .list-group-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5em;
}

.addr-modal-content-list.citylist .list-content .list-group .list-group-content {
    grid-template-columns: repeat(3, 1fr);
}

.addr-modal-content-list .list-content .list-group .list-group-content .list-group-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
    width: 100%;
    min-block-size: 50px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
    font-weight: bold;
    border-radius: 6px;
    font-size: 16px;
    padding: 0.5em 0.8em;
    cursor: pointer;
    position: relative;
    transition: .2s;
}

.addr-modal-content-list .list-content .list-group .list-group-content .list-group-btn.selected {
    background: #f5b301;
    color: #fff;
}

.addr-modal-content-list .list-content .list-group .list-group-content .list-group-btn::after {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    min-width: 0;
    border: solid;
    border-width: 2px 2px 0 0;
    rotate: 45deg;
    flex-shrink: 0;
    display: block;
}

.addr-modal-content-list .list-content .pref-of-citis {
    background: #F5F5F5;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .05em;
    padding: 0.6em 0.5em;
    margin-block: 0 1.5em;
    position: relative;
    z-index: 0;
}

.addr-modal-content-list .list-content .pref-of-citis .color {
    color: #f5b301;
    font-size: 1.5em;
}

.addr-modal-content-list .list-content .pref-of-citis::before {
    content: "";
    width: 27px;
    aspect-ratio: 27/10;
    min-width: 0;
    background: #F5F5F5;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: -8px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
}

.addr-modal-close {
    position: absolute;
    width: 40px;
    aspect-ratio: 1;
    min-width: 0;
    background: #fff;
    right: 15px;
    top: 15px;
    border-radius: 50%;
    cursor: pointer;
}

.addr-modal-close:before,
.addr-modal-close:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background: #f5b301;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.addr-modal-close:before {
    transform: rotate(45deg);
}

.addr-modal-close:after {
    transform: rotate(-45deg);
}

.addr-modal-content-list .list-content .list-group .list-group-content .list-group-btn:hover {
    opacity: 0.5;
}

.chatform-form-inputarea.now.popup {
    /* position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #fba45b;
    padding: 20px;
    border-radius: 10px; */
}

.radio-field label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7em;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 0.5em 1em;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.radio-field label::before {
    /* content: ""; */
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1;
    min-width: 0;
    flex-shrink: 0;
    display: block;
}

.radio-field label.now_status-1::before {
    background-image: url(../images/icon_circle.svg);
    width: 20px;
}

.radio-field label.now_status-2::before {
    background-image: url(../images/icon_cross.svg);
    width: 18px;
}

.radio-field label input {
    display: none;
}

.chatform-form-inputarea.now.popup .radio-field {
    height: calc(100% - 50px);
    overflow-y: scroll;
    align-items: flex-start;
    align-content: flex-start;
}

.chatform-form-inputarea.now.popup form {
    height: 100%;
}

div#mv-chatform-form .customer-form .customer_label {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    margin-block: 0.8em 0.2em;
}

div#mv-chatform-form .customer-form .customer_label .hissu {
    color: red;
    font-size: .8em;
    margin-left: 1em;
}

.age-field.flex-sb {
    align-items: center;
    justify-content: flex-start;
}

.age-field.flex-sb input[type="number"] {
    margin-right: 1em;
    border: none;
    width: 120px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chatform-form-inputarea .input-label:empty {
    display: none;
}

.chatform-form-inputarea .input-label:empty {
    display: none;
}

.message-label {
    margin: 2em 0 1em;
    text-align: center;
    font-weight: bold;
    background: #f5b301;
    color: #fff;
    padding: 0.5em;
    border-radius: 6px;
    margin-bottom: 1em;
    position: relative;
    z-index: 0;
}

.message-label::before {
    content: "";
    width: 27px;
    aspect-ratio: 27 / 10;
    background: #f5b301;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: -8px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
}

.chatform-form-inputarea.-propertyinfo {
    margin: 0.6em 0;
}

.chatform-form-inputarea .input-label.-select {
    border-radius: 6px;
    position: relative;
    border: 1px solid #CBCBCB;
    background: #fff;
    color: #333;
    text-align: left;
    cursor: pointer;
    margin: 0;
    padding: 0.7em 1em;
}

.chatform-form-inputarea .input-label.-select:after {
    width: 6px;
    aspect-ratio: 1;
    min-width: 0;
    background: transparent;
    border: solid #1D1D1D;
    border-width: 2px 2px 0 0;
    clip-path: none;
    rotate: 45deg;
    position: absolute;
    top: 50%;
    right: 1em;
    left: auto;
    translate: 0 -50%;
}

.select-modal {
    position: absolute;
    top: 1em;
    left: 1em;
    right: 1em;
    bottom: 1em;
    background: #fff;
    border-radius: 20px;
    display: none;
    z-index: 2;
}

.select-modal .select-modal-title {
    font-weight: bold;
    background: #f5b301;
    color: #fff;
    padding: 1.5em 1em;
    border-radius: 20px 20px 0 0;
    line-height: 1;
}

.select-modal .inner {
    height: calc(100% - 4em);
    overflow-y: scroll;
    padding: 1.3em;
}

.select-modal .item+.item {
    margin-block: 1.5em 0;
}

.select-modal .input-label {
    margin-block: 0 1em;
    text-align: center;
    font-weight: bold;
    letter-spacing: .09em;
    background: #f5b301;
    color: #fff;
    padding: 0.5em;
    border-radius: 6px;
    position: relative;
    z-index: 0;
}

.select-modal .input-label::before {
    content: "";
    width: 27px;
    aspect-ratio: 27 / 10;
    background: #f5b301;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    bottom: -8px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
}

.select-modal .radio-field {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
}

.select-modal .radio-field label {
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
    min-block-size: 50px;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    z-index: 0;
}

.select-modal .radio-field label .bg {
    background: #fff;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.select-modal .radio-field label input:checked~.bg {
    background: #F6D6D5;
}

.select-modal .radio-field label::before {
    content: none;
}

.select-modal .radio-field label::after {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    min-width: 0;
    border: solid;
    border-width: 2px 2px 0 0;
    rotate: 45deg;
    flex-shrink: 0;
    display: block;
}

.select-modal .select-modal-close {
    position: absolute;
    width: 2em;
    aspect-ratio: 1;
    min-width: 0;
    background: #fff;
    border-radius: 50%;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.select-modal .select-modal-close:before,
.select-modal .select-modal-close:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: #f5b301;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.select-modal .select-modal-close:before {
    transform: rotate(45deg);
}

.select-modal .select-modal-close:after {
    transform: rotate(-45deg);
}

.textarea-field textarea {
    width: 100%;
    border: none;
    padding: 1em;
    border-radius: 6px;
    background: #F5F5F5;
    border: 1px solid #CBCBCB;
    font-size: 16px;
    height: 170px;
}

.textarea_note {
    color: #f5b301;
    font-size: 14px;
    font-weight: 700;
    margin-block: 0.5em 0;
}

div#mv-chatform-form .customer-form .name-field input,
div#mv-chatform-form .customer-form .tel-field input,
div#mv-chatform-form .customer-form .mail-field input {
    width: 100%;
}

div#mv-chatform-form .text-form.customer-form {
    padding: 0;
}

.addr-field .addr-modal-btn {
    width: 100%;
    position: relative;
    margin-bottom: .4em;
}

.addr-field .addr-modal-btn::after {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    min-width: 0;
    border: solid #1D1D1D;
    border-width: 2px 2px 0 0;
    rotate: 45deg;
    position: absolute;
    top: 50%;
    right: 1em;
    translate: 0 -50%;
}

.addr-field select:disabled {
    background: #fff;
    opacity: 1;
    color: #333;
}

.customer-form select {
    display: block;
    padding: 0.8em 1em;
    border: 1px solid #CBCBCB;
    border-radius: 6px;
    font-size: 16px;
    background: #F5F5F5;
    width: 100%;
}

@media (max-width: 750px) {

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    #mv-chatform-form {
        padding: 4vw 4vw 0;
        width: 100%;
        height: calc(100% - 20vw);
    }

    div#mv-chatform-container {
        top: 0;
        bottom: 0;
        width: 100%;
        padding: 5vw 0;
        border-radius: 0;
    }

    .chat_room_label {
        border-radius: 0;
        padding: 0.7em 1em;
    }

    .chat_room_label .logo {
        width: 26vw;
    }

    body {
        font-size: 4vw;
    }

    div#mv-chatform-form input[type="text"],
    div#mv-chatform-form input[type="tel"],
    div#mv-chatform-form input[type="email"] {
        font-size: 3.6vw;
        padding: 0.95em 1.2em;
    }

    .addr-field select {
        font-size: 4.1vw;
        padding: 1.3em 2em 1.3em 1em;
    }

    .addr-field .addr-modal-btn::after {
        width: 1.5vw;
        right: 1.3em;
    }

    div#mv-chatform-form button[type=submit] {
        width: 58.5%;
        min-block-size: 13vw;
        font-size: 4.1vw;
        margin: 7vw auto 0;
    }

    .radio-field label {
        font-size: 4.1vw;
        padding: 0.8em 1em;
    }

    .radio-field label::before {
        position: absolute;
        top: 50%;
        left: 5vw;
        translate: 0 -50%;
    }

    .radio-field label.now_status-1::before {
        width: 5.3vw;
    }

    .radio-field label.now_status-2::before {
        width: 4.7vw;
    }

    div#mv-chatform-form .radio-field.selectbox label {
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    div#mv-chatform-form .message.-user {
        max-width: 100%;
    }

    div#mv-chatform-form .text-form {
        padding-right: 13vw;
    }

    div#mv-chatform-form .last-submit {
        font-size: 5vw;
    }

    div#page-chatform-thanks {
        width: 90%;
        padding: 15vw 5vw;
        margin: 30vw auto;
    }

    div#page-chatform-thanks .logo {
        width: 60%;
        margin-bottom: 5vw;
    }

    .chatform-form-inputarea.done .radio-field {
        display: none;
    }

    .addr-modal-content {
        width: 90%;
        top: 10vw;
        bottom: 10vw;
    }

    .addr-modal-content-list .list-title {
        font-size: 4.6vw;
        padding: 1.45em 1.1em;
    }

    .addr-modal-close {
        width: 7.2vw;
        right: 5vw;
        top: 5.3vw;
    }

    .addr-modal-content-list .list-content {
        padding: 1.3em;
        height: calc(100% - 5em);
    }

    .addr-modal-content-list .list-content .list-group .list-group-label {
        font-size: 4.6vw;
        padding-block: 0 0.4em;
        margin-block: 0 0.6em;
    }

    .addr-modal-content-list .list-content .list-group .list-group-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .addr-modal-content-list .list-content .list-group .list-group-content .list-group-btn {
        min-block-size: 13vw;
        font-size: 4vw;
        padding: 0.5em 1em;
    }

    .addr-modal-content-list .list-content .list-group .list-group-content .list-group-btn::after {
        width: 1.5vw;
    }

    .addr-modal-content-list.citylist .list-content .list-group .list-group-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .addr-modal-content-list .list-content .pref-of-citis {
        font-size: 3.6vw;
        padding: 0.3em 0.5em;
    }

    .addr-modal-content-list .list-content .pref-of-citis::before {
        width: 7vw;
        bottom: -2vw;
    }

    .chatform-form-inputarea.done .addr-form {
        display: none;
    }

    .textarea-field textarea {
        font-size: 3.1vw;
        padding: 1.3em;
        height: 36vw;
    }

    .textarea_note {
        font-size: 2.9vw;
    }

    .chatform-form-inputarea.now.popup {
        /* top: 20vw;
        right: 5vw;
        bottom: 5vw;
        left: 5vw;
        padding: 5vw; */
    }

    .radio-field.flex.construction_area label {
        width: 100%;
    }

    .chatform-form-inputarea .input-label {
        font-size: 4.6vw;
        padding: 0.7em 0.5em;
    }

    .chatform-form-inputarea .input-label::after {
        width: 7vw;
        bottom: -2vw;
    }

    .chatform-form-inputarea .radio-field.property_type {
        grid-template-columns: repeat(2, 1fr);
    }

    .radio-field.property_type label {
        display: flex;
        align-items: center;
        min-block-size: 19vw;
        padding: 0.5em 0.5em 0.5em 4.4em;
        background-size: 14vw;
        background-position: left 4.5vw center;
        font-size: 3.6vw;
        text-align: left;
        line-height: 1.3;
    }

    .message-label {
        font-size: 4.6vw;
        padding: 0.7em 0.5em;
    }

    .message-label::before {
        width: 7vw;
        bottom: -2vw;
    }

    .chatform-form-inputarea .input-label.-select {
        font-size: 3.8vw;
        padding: 1.2em 2em 1.2em 1em;
    }

    .chatform-form-inputarea .input-label.-select:after {
        width: 1.5vw;
        right: 1.3em;
    }

    .checkbox_note {
        font-size: 3.3vw;
    }

    div#mv-chatform-form .checkbox-field label {
        font-size: 3.6vw;
        padding: 1em 1.1em;
    }

    div#mv-chatform-form .checkbox-field label i {
        width: 5vw;
    }

    div#mv-chatform-form .customer-form .customer_label {
        font-size: 3.6vw;
        margin-block: 0.8em 0.3em;
    }

    div#mv-chatform-form button[type=submit].last-submit {
        min-block-size: 20.5vw;
        font-size: 5.1vw;
        letter-spacing: .15em;
    }

    div#mv-chatform-form button[type=submit].last-submit::after {
        width: 5.5vw;
        right: 5vw;
    }

    .select-modal .select-modal-title {
        font-size: 4.6vw;
        padding: 1.45em 1.1em;
    }

    .select-modal .select-modal-close {
        width: 7.2vw;
        right: 5vw;
        top: 5.3vw;
    }

    .select-modal .inner {
        height: calc(100% - 5em);
        padding: 1.3em;
    }

    .select-modal .input-label {
        font-size: 4.1vw;
    }

    .select-modal .input-label::before {
        width: 7vw;
        bottom: -2vw;
    }

    .select-modal .item+.item {
        margin-block: 2em 0;
    }

    .select-modal .radio-field label {
        min-block-size: 13vw;
        font-size: 3.6vw;
    }

    .select-modal .radio-field label::after {
        width: 1.5vw;
    }

    .customer-form select {
        font-size: 3.6vw;
        padding: 0.95em 1.2em;
    }
}