<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/**
 * Form
 */
.header .call,
.header .menu,
.footer .wrap,
.cv-common,
.cv-phone,
.pagetop {
    display: none !important;
}

.footer {
    padding-bottom: 0 !important;
}

input,
select,
textarea {
    width: 100%;
    height: 4rem;
    padding: 0.5rem 1rem;
    color: #080808;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    border: 0.1rem solid #CCCCCC;
    background-color: #F6F8F2;
    box-sizing: border-box;
}

input:hover,
select:hover,
button:hover,
textarea:hover {
    cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
    border: 0.2rem solid #707070;
}

.select {
    display: inline-block;
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
}

.select::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 3rem;
    height: 100%;
}

.select::after {
    content: "";
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    z-index: 1;
    width: 2rem;
    height: 2rem;
    margin: auto 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-image: url("/public/img/site/icon/form-pulldown.png");
}

.select select {
    position: relative;
    z-index: 1;
}

.select select::-ms-expand {
    display: none;
}

.select optgroup {
    font-weight: bold;
}

input[type="radio"],
input[type="checkbox"] {
    display: none;
}

.radio {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: auto;
    padding-left: 5rem;
    line-height: 4rem;
    box-sizing: border-box;
}

.radio::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    margin-top: 0;
    border-radius: 50%;
    background-color: #F6F8F2;
    border: 0.1rem solid #CCCCCC;
}

.radio.selected::before {
    background-color: #FFFFFF;
}

.radio::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 3rem;
    height: 3rem;
    opacity: 0;
    border-radius: 50%;
    background-color: #335609;
}

input[type="radio"]:checked + .radio::after {
    opacity: 1;
}

input[type="radio"]:disabled + .radio::before {
    background-color: #F5F5F5;
}

.radio a {
    display: inline;
}

.check {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: auto;
    padding-left: 5rem;
    line-height: 4rem;
    box-sizing: border-box;
}

.check::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    margin-top: 0;
    border-radius: 0.5rem;
    border: 0.1rem solid #CCCCCC;
    background-color: #F6F8F2;
}

.check.selected::before {
    background-color: #FFFFFF;
}

.check::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.2rem;
    left: 1.5rem;
    width: 1rem;
    height: 3rem;
    opacity: 0;
    border-right: 0.5rem solid #335609;
    border-bottom: 0.5rem solid #335609;
    transform: rotate(45deg);
}

input[type="checkbox"]:checked + .check::after {
    opacity: 1;
}

textarea {
    height: 15rem;
}

button {
    width: 100%;
    padding: 1rem 0;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    border-radius: 10rem;
    background: #FF8800;
    border: 0.2rem solid #D0700C;
}

button small {
    display: block;
    line-height: 1.4;
}

:-ms-input-placeholder {
    color: #CCCCCC;
}

::placeholder {
    color: #CCCCCC;
}

.error-message {
    color: #A80000;
    font-weight: bold;
}

@media all and (min-width: 500px) {

    input,
    select,
    textarea {
        height: 4.5rem;
        padding: 0.75rem 1.25rem;
    }

    .radio {
        padding-left: 5.5rem;
        line-height: 4.5rem;
    }

    .radio::before {
        width: 4.5rem;
        height: 4.5rem;
    }

    .radio::after {
        width: 3.5rem;
        height: 3.5rem;
    }

    .check {
        padding-left: 5.5rem;
        line-height: 4.5rem;
    }

    .check::before {
        width: 4.5rem;
        height: 4.5rem;
    }

    .check::after {
        top: 0.1rem;
        width: 1.5rem;
        height: 3.5rem;
    }

    textarea {
        height: 22.5rem;
    }

    button {
        padding: 1.5rem 0;
        font-size: 2.4rem;
    }

}

@media all and (min-width: 1000px) {

    input,
    select,
    textarea {
        height: 5rem;
        padding: 1rem 1.5rem;
    }

    .radio {
        padding-left: 6rem;
        line-height: 5rem;
    }

    .radio::before {
        width: 5rem;
        height: 5rem;
    }

    .radio::after {
        width: 4rem;
        height: 4rem;
    }

    .check {
        padding-left: 6rem;
        line-height: 5rem;
    }

    .check::before {
        width: 5rem;
        height: 5rem;
    }

    .check::after {
        top: 0;
        width: 2rem;
        height: 4rem;
    }

    textarea {
        height: 30rem;
    }

    button {
        padding: 2rem 0;
        font-size: 2.8rem;
    }

}

/**
 * Content
 */
.inquiry .title h2 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.inquiry .title p {
    text-align: center;
    font-size: 1.6rem;
}

.inquiry .title div &gt; p {
    text-align: left;
}

.inquiry .content .back {
    text-align: center;
}

.inquiry .content .back p a {
    display: inline;
}

.inquiry form &gt; ul {
    margin-bottom: 2rem;
}

.inquiry form &gt; ul &gt; li {
    padding: 1rem 0;
    border-top: 0.1rem solid #CCCCCC;
}

.inquiry form &gt; ul &gt; li:nth-last-of-type(1) {
    border-bottom: 0.1rem solid #CCCCCC;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dt {
    margin-bottom: 0.5rem;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dt &gt; p {
    margin-top: 0.5rem;
    color: #707070;
    font-weight: normal;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dt &gt; p a {
    display: inline;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dt .clearfix &gt; p {
    line-height: 3rem;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dt .clearfix &gt; p:nth-of-type(1) {
    float: left;
    width: calc(100% - 6.1rem);
    padding-right: 1rem;
    font-weight: bold;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dt .clearfix &gt; p:nth-of-type(2) {
    float: left;
    width: 6rem;
    height: 3rem;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    background-color: #A80000;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dd &gt; div:nth-of-type(n+2) {
    margin-top: 0.5rem;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dd .width-100-75 {
    width: 100%;
}

.inquiry form &gt; ul &gt; li &gt; dl &gt; dd .width-75-50 {
    width: 75%;
}

.inquiry .list-col1-1 &gt; li {
    margin-bottom: 0.5rem;
}

.inquiry .list-col1-1 &gt; li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.inquiry .list-col1-2 &gt; li {
    margin-bottom: 0.5rem;
}

.inquiry .list-col1-2 &gt; li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.inquiry .list-col2-2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.inquiry .list-col2-2 &gt; li {
    width: calc((100% - 1.1rem) / 2);
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.inquiry .list-col2-2 li:nth-of-type(2n) {
    margin-right: 0;
}

.inquiry .list-col2-2 &gt; li:nth-last-of-type(1),
.inquiry .list-col2-2 &gt; li:nth-last-of-type(2) {
    margin-bottom: 0;
}

.inquiry .button {
    max-width: 60rem;
    margin: 0 auto;
}

.list-ha1, .list-ha2, .list-ha3, .list-ha4 {
    display: none;
}

.loader {
    display: none;
}

.loader.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.loader svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10rem;
    height: 10rem;
    z-index: 100;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media all and (min-width: 500px) {

    .inquiry .title p {
        font-size: 1.8rem;
    }

    .inquiry .content &gt; p {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .inquiry form &gt; ul {
        margin-bottom: 3rem;
    }

    .inquiry form &gt; ul &gt; li {
        padding: 1.5rem 0;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dt {
        margin-bottom: 0.75rem;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dt &gt; p {
        margin-top: 0.75rem;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dd &gt; div:nth-of-type(n+2) {
        margin-top: 0.75rem;
    }

    .inquiry .list-col1-1 &gt; li {
        margin-bottom: 0.75rem;
    }

    .inquiry .list-col1-2 {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    .inquiry .list-col1-2 &gt; li {
        width: calc((100% - 1.6rem) / 2);
        margin-right: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .inquiry .list-col1-2 &gt; li:nth-of-type(2n) {
        margin-right: 0;
    }

    .inquiry .list-col1-2 &gt; li:nth-last-of-type(2) {
        margin-bottom: 0;
    }

    .inquiry .list-col2-2 &gt; li {
        width: calc((100% - 1.6rem) / 2);
        margin-right: 1.5rem;
        margin-bottom: 0.75rem;
    }

}

@media all and (min-width: 1000px) {

    .inquiry .inner {
        max-width: 100rem !important;
    }

    .inquiry .title p {
        font-size: 2rem;
    }

    .inquiry .content &gt; p {
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .inquiry form  &gt; ul {
        margin-bottom: 4rem;
    }

    .inquiry form  &gt; ul &gt; li {
        padding: 2rem 0;
    }

    .inquiry form &gt; ul &gt; li &gt; dl {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dt {
        width: 25rem;
        margin-bottom: 0;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dt &gt; p {
        margin-top: 1rem;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dt .clearfix &gt; p:nth-of-type(2) {
        float: right;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dd {
        width: calc(100% - 25rem);
        padding-left: 4rem;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dd &gt; div:nth-of-type(n+2) {
        margin-top: 1rem;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dd .width-100-75 {
        width: 75%;
    }

    .inquiry form &gt; ul &gt; li &gt; dl &gt; dd .width-75-50 {
        width: 50%;
    }

    .inquiry .list-col1-1 &gt; li {
        margin-bottom: 1rem;
    }

    .inquiry .list-col1-2 &gt; li {
        width: calc((100% - 2.1rem) / 2);
        margin-right: 2rem;
        margin-bottom: 1rem;
    }

    .inquiry .list-col2-2 &gt; li {
        width: calc((100% - 2.1rem) / 2);
        margin-right: 2rem;
        margin-bottom: 1rem;
    }

}
</pre></body></html>