@charset "UTF-8";

/*-----------------------------------

	reset(form用)

-----------------------------------*/
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}
textarea {
    resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
    display: none;
}
input[type="submit"],
input[type="button"],
label,
button,
select {
    cursor: pointer;
}
select::-ms-expand {
    display: none;
}
/*-----------------------------------

	contact_block

-----------------------------------*/
#contact_block {
    padding-bottom: 100px;
}
@media screen and (max-width: 640px) {
    #contact_block {
        padding-bottom: 60px;
    }
}

/*-- flow --*/
#contact_block .flow {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
#contact_block .flow::before {
    content: "";
    width: calc(100% - 20px);
    height: 2px;
    background: #dddddd;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
#contact_block .flow.conf::after {
    content: "";
    width: calc(50% - 20px);
    height: 2px;
    background: var(--mClr1);
    position: absolute;
    top: 10px;
    left: 20px;
}
#contact_block .flow.comp::after {
    content: "";
    width: calc(100% - 20px);
    height: 2px;
    background: var(--mClr1);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
#contact_block .flow li {
    font-weight: 700;
    line-height: 1;
    color: #dddddd;
    padding-top: 30px;
    position: relative;
    z-index: 10;
}
#contact_block .flow li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #dddddd;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#contact_block .flow li.here,
#contact_block .flow li.complete {
    color: var(--mClr1);
}
#contact_block .flow li.here::before,
#contact_block .flow li.complete::before {
    background: var(--mClr1);
}
#contact_block .flow li.complete::after {
    content: "";
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 5px;
    width: 10px;
    position: absolute;
    top: 15%;
    left: 11px;
    transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
    #contact_block .flow {
        max-width: 190px;
        margin: 0 auto 30px;
    }
    #contact_block .flow::before {
        top: 7px;
    }
    #contact_block .flow.conf::after {
        top: 7px;
        left: 15px;
    }
    #contact_block .flow.comp::after {
        top: 7px;
    }
    #contact_block .flow li {
        padding-top: 20px;
    }
    #contact_block .flow li::before {
        width: 15px;
        height: 15px;
    }
    #contact_block .flow li.complete::after {
        border-bottom: 1px solid #fff;
        border-left: 1px solid #fff;
        height: 4px;
        width: 8px;
        left: 8px;
    }
}

/*-- textArea --*/
#contact_block .textArea {
    text-align: center;
    margin-bottom: 80px;
}
#contact_block .textArea p {
    margin-bottom: 30px;
}
#contact_block .textArea .tel {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
#contact_block .textArea .tel a {
    display: inline-block;
    font-size: 50px;
}
#contact_block .textArea .time {
    display: block;
    font-size: 16px;
    margin-top: 15px;
}
@media screen and (max-width: 640px) {
    #contact_block .textArea {
        margin-bottom: 50px;
    }
    #contact_block .textArea p {
        margin-bottom: 20px;
    }
    #contact_block .textArea .tel {
        font-size: 13px;
    }
    #contact_block .textArea .tel a {
        font-size: 34px;
    }
    #contact_block .textArea .time {
        font-size: 12px;
        margin-top: 10px;
    }
}
@media screen and (min-width: 641px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/*-- input --*/
#contact_block .input {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}
#contact_block .input dl dt {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 10px;
}
#contact_block .input dl dt .required {
    font-size: 14px;
    color: var(--mClr1);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
#contact_block .input dl dd {
    margin-bottom: 30px;
}
#contact_block .input dl dd input,
#contact_block .input dl dd select,
#contact_block .input dl dd textarea {
    width: 100%;
    font-size: 16px;
    padding: 12px 20px;
    border: 1px solid #dddddd;
    border-radius: 25px;
}
#contact_block .input dl dd #inquiryitem {
    padding: 12px 40px 12px 20px;
    background: url(../img/contact/contact_arrow.png) no-repeat
        calc(100% - 20px) center/10px;
}
#contact_block .input dl dd .is-empty {
    color: #b5b5b5;
}
::placeholder {
    color: #b5b5b5;
}
#contact_block .input dl dd #email01 {
    margin-bottom: 10px;
}
#contact_block .input dl dd #details {
    height: 300px;
    border-radius: 20px;
}
#contact_block .input .privacy {
    margin-bottom: 50px;
}
#contact_block .input label.agree {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
}
#contact_block .input label.agree a {
    display: inline-block;
    text-decoration: underline;
}
#contact_block .input label.agree::before,
#contact_block .input label.agree::after {
    content: "";
    display: block;
    position: absolute;
}
#contact_block .input label.agree::before {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}
#contact_block .input label.agree::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 0;
    height: 5px;
    width: 10px;
    transform: rotate(-45deg) translateY(-80%);
    top: 50%;
    left: 10px;
    margin: auto;
}
input#agree:checked + label.agree::before {
    background: var(--mClr1);
    border: none;
}
input#agree:checked + label.agree::after {
    opacity: 1;
}
#contact_block .input .btnArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
#contact_block .input .btnArea input.next {
    color: #fff;
    width: 350px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    padding: 25px 0;
    border-radius: 45px;
    background: var(--mClr1) url(../img/common/white_arrow.png) no-repeat
        calc(100% - 30px) center/16px;
}
@media screen and (max-width: 640px) {
    #contact_block .input dl dt {
        font-size: 14px;
        margin-bottom: 5px;
    }
    #contact_block .input dl dt .required {
        font-size: 12px;
    }
    #contact_block .input dl dd input,
    #contact_block .input dl dd select,
    #contact_block .input dl dd textarea {
        font-size: 12px;
        padding: 15px 20px;
    }
    #contact_block .input dl dd #inquiryitem {
        padding: 15px 40px 15px 20px;
    }
    #contact_block .input dl dd #details {
        height: 230px;
        border-radius: 10px;
    }
    #contact_block .input .privacy {
        margin-bottom: 30px;
    }
    #contact_block .input label.agree {
        padding-left: 25px;
    }
    #contact_block .input label.agree::before {
        width: 18px;
        height: 18px;
    }
    #contact_block .input label.agree::after {
        border-bottom: 1px solid #fff;
        border-left: 1px solid #fff;
        height: 4px;
        width: 8px;
        left: 8px;
    }
    #contact_block .input .btnArea {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #contact_block .input .btnArea input.next {
        width: 250px;
        font-size: 16px;
        padding: 20px 0;
        border-radius: 40px;
        background: var(--mClr1) url(../img/common/white_arrow.png) no-repeat
            calc(100% - 20px) center/16px;
    }
}

/*-- confirm --*/
#contact_block .confirm {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}
#contact_block .confirm table {
    width: 100%;
    border-top: 1px solid #cccccc;
    margin-bottom: 50px;
}
#contact_block .confirm table tr {
    border-bottom: 1px solid #cccccc;
}
#contact_block .confirm table th {
    width: 180px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 0;
}
#contact_block .confirm table td {
    width: calc(100% - 180px);
    color: #4c4c4c;
    padding: 20px 0;
}
#contact_block .confirm .btnArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#contact_block .confirm .btnArea input.back {
    width: 170px;
    border: 1px solid #cccccc;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    padding: 25px 0;
    border-radius: 45px;
    color: #808080;
}
#contact_block .confirm .btnArea input.next {
    color: #fff;
    width: 350px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    padding: 25px 0;
    border-radius: 45px;
    background: var(--mClr1) url(../img/common/white_arrow.png) no-repeat
        calc(100% - 30px) center/16px;
}
@media screen and (max-width: 640px) {
    #contact_block .confirm table {
        margin-bottom: 30px;
    }
    #contact_block .confirm table th {
        width: 100%;
        display: block;
        font-size: 14px;
        padding: 15px 0 0 0;
    }
    #contact_block .confirm table td {
        width: 100%;
        display: block;
        padding: 0 0 15px 0;
    }
    #contact_block .confirm .btnArea {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }
    #contact_block .confirm .btnArea input.back {
        width: 250px;
        font-size: 16px;
        padding: 20px 0;
        border-radius: 40px;
    }
    #contact_block .confirm .btnArea input.next {
        width: 250px;
        font-size: 16px;
        padding: 20px 0;
        border-radius: 40px;
        background: var(--mClr1) url(../img/common/white_arrow.png) no-repeat
            calc(100% - 20px) center/16px;
    }
}

/*-- btnArea --*/
#contact_block .btnArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#contact_block .btnArea a {
    width: 350px;
    border: 1px solid #cccccc;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    padding: 25px 0;
    border-radius: 45px;
    color: #808080;
}
@media screen and (max-width: 640px) {
    #contact_block .btnArea a {
        width: 250px;
        font-size: 16px;
        padding: 20px 0;
        border-radius: 40px;
    }
}
