@charset "UTF-8";

/*!
global > mixin
------------------------------
*/
.p_contact .c_pagehero .c_pagehero__bg:after {
    content: normal;
}
.p_contact .c_pagehero .c_pagehero__ttl .en,
.p_contact .c_pagehero .c_pagehero__ttl .ja {
    color: var(--cl_main);
}
.s_form_steps {
    color: #a2a2a2;
    display: flex;
    font-weight: 700;
    gap: 30px;
    padding: 20px;
}
.s_form_steps__item {
    background: #e1e1e1;
    flex: 1 1 0;
    padding: 10px;
    position: relative;
    text-align: center;
}
.s_form_steps__item:after {
    border-right: 2px solid;
    border-top: 2px solid;
    color: #a2a2a2;
    content: "";
    display: inline-block;
    height: 10px;
    left: calc(100% + 7px);
    position: absolute;
    top: calc(50% - 2px);
    transform: rotate(45deg);
    transform-origin: 75% 25%;
    vertical-align: middle;
    width: 10px;
}
.s_form_steps__item:last-child:after {
    content: normal;
}
.s_form_steps__item.is-current {
    background: var(--cl_green);
    color: #fff;
}
.s_form {
    border: 1px solid #a2a2a2;
    margin: 20px;
    padding: 20px;
}
.s_form__lead {
    line-height: 1.8;
    margin: 0 0 20px;
}
.s_form_list {
    border-bottom: 1px solid #e1e1e1;
    margin: 0 0 40px;
}
.s_form_list__item {
    border-top: 1px solid #e1e1e1;
    margin-bottom: 20px;
    padding-top: 20px;
}
.s_form_list__label {
    font-weight: 700;
    margin-bottom: 12px;
}
.error {
    color: #e33e41;
    font-weight: 400;
}
.s_form_list__input input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.s_form_list__input input[type="checkbox"] + label {
    cursor: pointer;
    display: inline-block;
    padding: 3px 15px 3px calc(1.6em + 17px);
    position: relative;
}
.s_form_list__input input[type="checkbox"] + label:after,
.s_form_list__input input[type="checkbox"] + label:before {
    transition: all 0.2s;
}
.s_form_list__input input[type="checkbox"] + label:before {
    background: #fff;
    border: 1px solid #ccc;
    content: "";
    height: 1.6em;
    left: 0;
    margin-top: -1.04em;
    position: absolute;
    top: 1em;
    width: 1.6em;
}
.s_form_list__input input[type="checkbox"] + label:after {
    border-bottom: 0.24em solid #fff;
    border-left: 0.24em solid #fff;
    content: "";
    height: 0.64em;
    left: 0.8em;
    margin-top: -0.64em;
    opacity: 0;
    position: absolute;
    top: 1.8em;
    transform: rotate(-45deg) translate(16%, -150%) scale(0.5);
    width: 1.12em;
}
.s_form_list__input input[type="checkbox"] + label:hover:before {
    background: #fff;
}
.s_form_list__input input[type="checkbox"]:focus + label:before {
    background: #fff;
    box-shadow: 0 0 5px var(--cl_main);
}
.s_form_list__input input[type="checkbox"]:checked + label:before {
    background: var(--cl_main);
    border: 1px solid var(--cl_main);
}
.s_form_list__input input[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: rotate(-45deg) translate(16%, -150%) scale(1);
}
.s_form_list__input input[type="checkbox"]:disabled + label {
    color: #999;
}
.s_form_list__input input[type="checkbox"]:disabled + label:before {
    background: #ccc;
    border: 1px solid #ccc;
}
.s_form_list__input input[type="checkbox"].error + label:before {
    background-color: #fff2f2;
    border: 1px solid #e33e41;
}
.s_form_list__input input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.s_form_list__input input[type="radio"] + label {
    cursor: pointer;
    display: inline-block;
    padding: 3px 15px 3px calc(1.6em + 9px);
    position: relative;
}
.s_form_list__input input[type="radio"] + label:after,
.s_form_list__input input[type="radio"] + label:before {
    transition: all 0.2s;
}
.s_form_list__input input[type="radio"] + label:before {
    background: #fff;
    border: 1px solid grey;
    border-radius: 50%;
    content: "";
    height: 1.6em;
    left: 0;
    margin-top: -1.04em;
    position: absolute;
    top: 1em;
    width: 1.6em;
}
.s_form_list__input input[type="radio"] + label:after {
    background: var(--cl_main);
    border-radius: 50%;
    content: "";
    height: 0.88em;
    left: 0.8em;
    margin-top: -1.04em;
    opacity: 0;
    position: absolute;
    top: 1.8em;
    transform: translate(-50%, -50%) scale(0.5);
    width: 0.88em;
}
.s_form_list__input input[type="radio"] + label:hover:before {
    background: #fff;
}
.s_form_list__input input[type="radio"]:focus + label:before {
    background: #fff;
    box-shadow: 0 0 5px var(--cl_main);
}
.s_form_list__input input[type="radio"]:checked + label:before {
    background: #fff;
    border: 1px solid var(--cl_main);
}
.s_form_list__input input[type="radio"]:checked + label:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.s_form_list__input input[type="radio"]:disabled + label {
    color: #999;
}
.s_form_list__input input[type="radio"]:disabled + label:before {
    background: #ccc;
    border: 1px solid #ccc;
}
.s_form_list__input input[type="radio"].error + label:before {
    background-color: #fff2f2;
    border: 1px solid #e33e41;
}
.s_form_list__hint {
    color: #a2a2a2;
    display: block;
    font-size: 0.75rem;
    margin-bottom: 6px;
}
.s_form_icon--optional,
.s_form_icon--required {
    background: red;
    color: #fff;
    display: inline-block;
    font-size: 0.75rem;
    margin: 5px 0 5px 5px;
    padding: 5px;
    white-space: nowrap;
}
.s_form_icon--optional {
    background: #a2a2a2;
}
.s_form__contact_category {
    font-weight: 700;
    margin: 0 0 24px;
}
.s_form__contact_category:last-child {
    margin-bottom: 0;
}
.s_form__bizcheck {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 20px 0 10px 20px;
}
.s_form__agree,
.s_form__note {
    margin: 0 0 20px;
    text-align: center;
}
.s_form__agree {
    font-weight: 700;
}
.s_form__agree input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.s_form__agree input[type="checkbox"] + label {
    cursor: pointer;
    display: inline-block;
    padding: 3px 15px 3px calc(1.6em + 17px);
    position: relative;
}
.s_form__agree input[type="checkbox"] + label:after,
.s_form__agree input[type="checkbox"] + label:before {
    transition: all 0.2s;
}
.s_form__agree input[type="checkbox"] + label:before {
    background: #fff;
    border: 1px solid #ccc;
    content: "";
    height: 1.6em;
    left: 0;
    margin-top: -1.04em;
    position: absolute;
    top: 1em;
    width: 1.6em;
}
.s_form__agree input[type="checkbox"] + label:after {
    border-bottom: 0.24em solid #fff;
    border-left: 0.24em solid #fff;
    content: "";
    height: 0.64em;
    left: 0.8em;
    margin-top: -0.64em;
    opacity: 0;
    position: absolute;
    top: 1.8em;
    transform: rotate(-45deg) translate(16%, -150%) scale(0.5);
    width: 1.12em;
}
.s_form__agree input[type="checkbox"] + label:hover:before {
    background: #fff;
}
.s_form__agree input[type="checkbox"]:focus + label:before {
    background: #fff;
    box-shadow: 0 0 5px var(--cl_main);
}
.s_form__agree input[type="checkbox"]:checked + label:before {
    background: var(--cl_main);
    border: 1px solid var(--cl_main);
}
.s_form__agree input[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: rotate(-45deg) translate(16%, -150%) scale(1);
}
.s_form__agree input[type="checkbox"]:disabled + label {
    color: #999;
}
.s_form__agree input[type="checkbox"]:disabled + label:before {
    background: #ccc;
    border: 1px solid #ccc;
}
.s_form__agree > input[type="checkbox"] + label:before {
    top: 24px;
}
.s_form__agree > input[type="checkbox"] + label:after {
    top: 34px;
}
.s_form__actions {
    text-align: center;
}
.s_form__actions.is_confirm {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.s_form_input {
    border: 1px solid #a2a2a2;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
}
.s_form_input:focus {
    border-color: var(--cl_main);
    box-shadow: 0 0 5px var(--cl_main);
    outline: none;
}
textarea.s_form_input {
    resize: vertical;
}
.s_form_button,
.s_form_button--negative {
    background: var(--cl_main);
    border: 1px solid var(--cl_main);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    display: inline-block;
    font-weight: 700;
    max-width: 380px;
    padding: 20px 10px;
    width: 50%;
}
.s_form_button--negative {
    background: #fff;
    color: var(--cl_main);
    max-width: 200px;
}
.s_form_complete {
    margin: 0 0 46px;
}
.s_form_complete p {
    line-height: 1.8;
    margin: 0 0 36px;
}
@media screen and (min-width: 768px) {
    .p_contact .c_pagehero .c_pagehero__in {
        padding-bottom: min(100px, 5.2083333333vw);
        padding-top: min(100px, 5.2083333333vw);
    }
    .s_form_steps {
        font-size: 1.625rem;
        gap: 70px;
        margin: 63px max(100px, 50% - 700px) 39px;
        padding: 0;
    }
    .s_form_steps__item {
        padding: 20px;
    }
    .s_form_steps__item:after {
        border-right: 4px solid;
        border-top: 4px solid;
        display: inline-block;
        height: 20px;
        left: calc(100% + 20px);
        top: calc(50% - 4px);
        transform: rotate(45deg);
        transform-origin: 75% 25%;
        vertical-align: middle;
        width: 20px;
    }
    .s_form {
        margin: 39px max(100px, 50% - 700px) 60px;
        padding: 65px min(150px, 9%) 74px;
    }
    .s_form__lead {
        font-size: 1.25rem;
        margin: 0 0 56px 5px;
    }
    .s_form_list__item {
        align-items: center;
        display: flex;
        gap: 20px;
        margin-bottom: 32px;
        padding-top: 32px;
    }
    .s_form_list__label {
        flex: 0 0 min(265px, 30%);
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    .s_form_list__input {
        flex: 1 1 0;
        font-size: 1.125rem;
    }
    .s_form_list__hint {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .s_form_icon--optional,
    .s_form_icon--required {
        font-size: 1.125rem;
        margin-left: 11px;
        padding: 4px 9px;
    }
    .s_form__bizcheck {
        gap: 10px 65px;
        margin: 33px 33px 40px 40px;
    }
    .s_form__bizcheck-item {
        font-size: 1.125rem;
    }
    .s_form__note {
        margin: 0 0 33px;
    }
    .s_form__agree {
        font-size: 1.125rem;
        margin: 0 0 45px;
    }
    .s_form__agree > input[type="checkbox"] + label:before {
        top: 29px;
    }
    .s_form__agree > input[type="checkbox"] + label:after {
        top: 40px;
    }
    .s_form__actions.is_confirm {
        gap: 20px;
        margin-top: 60px;
    }
    .s_form_input {
        padding: 20px;
    }
    textarea.s_form_input {
        min-height: 190px;
    }
    .s_form_button,
    .s_form_button--negative {
        font-size: 1.5rem;
        padding: 25px 10px;
        transition: opacity 0.4s;
    }
    .s_form_button--negative:hover,
    .s_form_button:hover {
        opacity: 0.6;
    }
    .s_form_complete p {
        font-size: 1.25rem;
    }
}
