@charset "UTF-8";

/** Form Control **/

.form-control,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 12px 10px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: inherit;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    max-width: 600px;
}

.form-control:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea,
select:focus {
    color: #212529;
    background-color: #fff;
    border-color: #d8d8d8;
    outline: 0;
    box-shadow: none;
}

input[type="radio"],
input[type="checkbox"]
{
    display: none;
}

input[type="radio"] + label,
input[type="checkbox"] + label
{
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    width: 100%;
}

input[type="radio"] + label::before,
input[type="radio"] + label::after,
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after
{
    content: '';
    position: absolute;
    transition: all 0.5s;
}

input[type="radio"] + label::before {
    width: 20px;
    height: 20px;
    border: 1px solid #D8D8D8;
    background-color: #fff;
    left: 0;
    top: calc(50% - 10px);
    border-radius: 50%;
}

input[type="radio"] + label::after {
    opacity: 0;
    width: 14px;
    height: 14px;
    background-color: #3BB24E;
    left: 3px;
    top: calc(50% - 7px);
    border-radius: 50%;
}

input[type="radio"]:checked + label::after {
    opacity: 1;
}

input[type="checkbox"] + label::before {
    width: 19px;
    height: 19px;
    border: 1px solid #D8D8D8;
    background-color: #fff;
    left: 0;
    top: calc(50% - 10px);
    /*border-radius: 50%;*/
}

input[type="checkbox"] + label::after {
    opacity: 0;
    width: 19px;
    height: 18px;
    background-image: url("../../image/check.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 19px, 18px;
    left: 3px;
    top: calc(50% - 10px);
    /*border-radius: 50%;*/
}

input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

input[type="radio"] + label.frame-radio {
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    padding: 17px 30px 17px 60px;
}

input[type="radio"] + label.frame-radio::before {
    left: 25px;
}

input[type="radio"] + label.frame-radio::after {
    left: 28px;
}

input[type="radio"]:checked + label.frame-radio {
    background-color: #F8F9D8;
    border-color: #F8F9D8;
}

input[type="radio"]:disabled + label {
    opacity: 0.7;
    cursor: default;
}

select {
    background-image: url("../../image/select-arrow.png");
    background-repeat: no-repeat;
    background-size: 16px 11px;
    background-position: right 20px center;
}

select.empty {
    color: #AAAAAA;
}

.date-range-wrapper {
    max-width: 400px;
}

input[type="text"].input-date {
    display: inline-block;
    width: 155px;
    background-image: url("../../image/calender.png");
    background-repeat: no-repeat;
    background-size: 24px 26px;
    background-position: right 6px center;
}

.date-from-to {
    display: inline-block;
}

.input-long input {
    max-width: 100%;
}

::placeholder {
    color: #AAAAAA;
}

.detail-condition .accordion-item {
    border: none;
}

.detail-condition button.accordion-button {
    width: auto;
    font-size: 1.4rem;
    color: #2A558A;
    text-decoration: underline;
    padding: 0 0 0 28px;
}

.detail-condition button.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.detail-condition button.accordion-button::after {
    content: none;
}

.detail-condition button.accordion-button::before {
    content: '';
    width: 23px;
    height: 23px;
    border: 1px solid #2A558A;
    border-radius: 5px;
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20448%20512%22%20style%3D%22enable-background%3Anew%200%200%20448%20512%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%232A558A%3B%7D%3C%2Fstyle%3E%3Cpolygon%20class%3D%22st0%22%20points%3D%22424%2C206%20274%2C206%20274%2C56%20174%2C56%20174%2C206%2024%2C206%2024%2C306%20174%2C306%20174%2C456%20274%2C456%20274%2C306%20424%2C306%20%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center;
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    transition: all .3s;
}

.detail-condition button.accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.detail-condition button.accordion-button:not(.collapsed)::before {
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20448%20512%22%20style%3D%22enable-background%3Anew%200%200%20448%20512%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%232A558A%3B%7D%3C%2Fstyle%3E%3Crect%20x%3D%22174%22%20y%3D%2256%22%20transform%3D%22matrix(-1.836970e-16%201%20-1%20-1.836970e-16%20480%2032)%22%20class%3D%22st0%22%20width%3D%22100%22%20height%3D%22400%22%2F%3E%3C%2Fsvg%3E');
}

.detail-condition button.accordion-button::after {
    content: none;
}

.btn-wrap {
    margin-top: 40px;
}

.confirm-btn-wrap {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.confirm-btn-wrap .btn:first-child {
    margin-top: 20px;
}

.confirm-btn-wrap .btn:last-child {
    margin-top: 0;
}

.btn {
    color: #fff;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-indent: -2.4px;
    line-height: 1;
    transition: all 0.5s;
    height: 63px;
    width: 100%;
    max-width: 300px;
}

.btn:hover {
    color: #fff;
    opacity: 0.6;
}

.btn:focus {
    box-shadow: none;
}

.btn-red {
    background-color: #D42D24;
}

.btn-green {
    background-color: #3BB24E;
}

.btn-blue {
    background-color: #3B73B2;
}

.btn-arrow {
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
}

.btn-arrow::before {
    content: "";
    position: absolute;
    transform: rotate(135deg);
    filter: blur(0);
    -webkit-filter: blur(0);
    outline: 1px solid transparent;
    border-radius: 1px;
    width: 10px;
    height: 10px;
    right: 13px;
    top: calc(50% - 6px);
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
}

.btn-arrow.btn-arrow-back::before {
    left: 13px;
    transform: rotate(315deg);
}

.btn-ghost-green {
    letter-spacing: initial;
    background-color: transparent;
    border: 2px solid #3BB24E;
    color: #3BB24E;
}

.btn-ghost-green:hover {
    color: #3BB24E;
}

.btn-ghost-green-arrow {
    position: relative;
}

.btn-ghost-green-arrow::before {
    content: '';
    position: absolute;
    transform: rotate(135deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #3BB24E;
    border-left: 2px solid #3BB24E;
    top: calc(50% - 4px);
    right: 10px;
}

textarea.copy-to-clipboad {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -999;
}

@media (min-width: 768px) {

    .form-control,
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"] {
        padding: 14px 10px;
    }

    .date-range-wrapper {
        max-width: none;
    }

    input[type="text"].input-date {
        width: 240px;
        background-size: 30px 32px;
        background-position: right 7px center;
    }

    .date-from-to {
        padding-left: 30px;
        padding-right: 30px;
    }

    input[type="radio"] + label.frame-radio {
        padding: 27px 30px 27px 60px;
    }

    .btn-wrap {
        margin-top: 75px;
    }

    .confirm-btn-wrap {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .confirm-btn-wrap .btn {
        width: calc(50% - 20px);
    }

    .confirm-btn-wrap .btn:first-child {
        margin-top: 0;
        margin-right: 40px;
    }

    .confirm-btn-wrap .btn:last-child {
        margin-right: 0;
    }

    .btn {
        height: 100px;
        width: 100%;
        max-width: 480px;
    }

    .btn-arrow {
        padding-left: 38px;
        padding-right: 38px;
    }

    .btn-arrow::before {
        width: 16px;
        height: 16px;
        right: 29px;
        top: calc(50% - 8px);
        border-top: 4px solid #fff;
        border-left: 4px solid #fff;
    }

    .btn-arrow.btn-arrow-back::before {
        left: 29px;
    }

}
