@charset "UTF-8";
/*------------------------------------------------------------
    テーブル
------------------------------------------------------------*/
.tbl tr {
    border-top: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
}
.tbl tr:last-child {
    border-bottom: 1px solid #d9d9d9;
}
.tbl th,
.tbl td {
    display: block;
    padding: 15px;
    text-align: center;
}
.tbl th {
    background: #eff0ed;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .tbl th,
    .tbl td {
        display: table-cell;
        padding: 20px 30px;
        text-align: left;
    }
    .tbl th {
        white-space: nowrap;
    }
    .tbl td {
        width: 100%;
    }
} /* ----- media END ----- */
/*------------------------------------------------------------
    ボタン
------------------------------------------------------------*/
.btn {
    transition: .4s;
    margin: 0 auto;
}
/*------------------------------------------------------------
    お問い合わせ
------------------------------------------------------------*/
.contact__tbl {
    margin-bottom: 60px;
}
.contact__tbl th,
.contact__tbl td {
    position: relative;
    text-align: left;
}
.contact__tbl input,
.contact__tbl textarea,
.contact__tbl select {
    width: 100%;
    border: 1px solid #DDE1E5;
    border-radius: 0;
    padding: 8px;
    resize: none;
    display: block;
}
.contact__select--arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    padding: 0 15px;
    pointer-events: none;
}
.contact__select--arrow .material-icons {
    position: relative;
    padding: 0 5px;
    color: #5aae1f;
    box-sizing: content-box;
}
.contact__select--arrow .material-icons:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: #DDE1E5;
}
.contact__check,
.contact__radio {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contact__check li,
.contact__radio li {
    width: 100%;
    margin-bottom: 10px;
}
.contact__radio li:last-child {
    margin-bottom: 0;
}
.contact__check li input,
.contact__radio li input {
    display: none;
}
.contact__check li label,
.contact__radio li label {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: relative;
}
.contact__check li label:before,
.contact__radio li label:before {
    content: "";
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border: none;
    background: #eff0ed;
    transition: .4s;
}
.contact__radio li label:before {
    border-radius: 100%;
}
.contact__check li input:checked ~ label:before,
.contact__radio li input:checked ~ label:before {
    background: #5aae1f;
}
.contact__check li label .material-icons {
    position: absolute;
    left: 5px;
    top: 5px;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
}
.contact__radio li label .contact__radio--ico {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #fff;
    opacity: 0;
}
.contact__check li input:checked ~ label .material-icons,
.contact__radio li input:checked ~ label .contact__radio--ico {
    opacity: 1;
}
.contact__privacy input {
    display: none;
}
.contact__privacy label {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px;
    background: #eff0ed;
    transition: .4s;
}
.contact__privacy input:checked ~ label {
    color: #fff;
    background: #5aae1f;
}
.contact__privacy label .ico_check_form {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
    background: #fff;
    position: relative;
}
.contact__privacy label .ico_check_form::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 8px;
    border-left: 2px solid #5aae1f;
    border-bottom: 2px solid #5aae1f;
    -webkit-transform:  translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0;
}
.contact__privacy input:checked ~ label .ico_check_form::before {
    opacity: 1;
}
.contact__tbl .must,
.contact__tbl .any {
    display: inline-block;
    font-size: 1rem;
    width: 30px;
    height: 20px;
    margin: -3px 10px 0 0;
    padding-top: 1px;
    font-weight: normal;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;
}
.contact__tbl .must {
    color: #fff;
    background: #c94f4f;
}
.contact__tbl .any {
    background: #fff;
}
.contact__btn {
    text-align: center;
}
.contact__privacy > p {
    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .contact__tbl th,
    .contact__tbl td {
        padding: 20px 30px;
    }
    .contact__input--s {
        max-width: 400px;
    }
    .contact__select--arrow {
        left: 30px;
        max-width: 400px;
        padding: 0;
    }
    .contact__radio li {
        width: 50%;
    }
    .contact__radio li:nth-child(3) {
        margin-bottom: 0;
    }
} /* ----- media END ----- */

@media screen and (min-width: 992px) {
    .contact__tbl input,
    .contact__tbl textarea,
    .contact__tbl select {
        padding: 10px 15px;
        font-size: 1.6rem;
    }
} /* ----- media END ----- */

/*------------------------------------------------------------
    エラー
------------------------------------------------------------*/
.contact__warning input,
.contact__warning textarea {
    background: #f3e1e1!important;
    border: 1px solid #f3e1e1!important;
    color: #c94f4f;
}
.error-text {
    padding-top: 5px;
    color: #c94f4f !important;
    font-size: 1.2rem;
    text-align: left;
}

/*------------------------------------------------------------
    確認画面
------------------------------------------------------------*/
.confirm__ttl {
    font-size: 1.8rem;
    color: #a28655;
    text-align: center;
    margin-bottom: 25px;
}
.confirm__tbl th,
.confirm__tbl td {
    text-align: left;
}
.form-btn-return {
    margin-bottom: 20px;
}
.form-btn-return .btn {
    background: #eff0ed;
    color: #000;
    width: 100%;
    padding: 20px 10px;
}
.form-btn-return .btn .material-icons {
    right: auto;
    left: 20px;
}
.txt_box {
    margin-bottom: 60px;
}
.confirm__tbl {
    margin-bottom: 60px;
}
@media screen and (max-width: 374px) {
    .btn {
        font-size: 1.6rem;
    }
    .btn .material-icons {
        right: 10px;
    }
} /* ----- media END ----- */

@media screen and (min-width: 768px) {
    .confirm__btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
    }
    .form-btn-return {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .confirm__btn .btn {
        padding: 18px 60px;
    }
    .form-btn-return .btn:hover {}
    .txt_box {
        text-align: center;
    }
    .form-btn {
        min-width: 300px;
    }
} /* ----- media END ----- */

/*------------------------------------------------------------
    thanks
------------------------------------------------------------*/
.thanks__ttl {
    font-size: 1.8rem;
    color: #a28655;
    line-height: 1.33333333;
    text-align: center;
}
.thanks_box .txt_box  {
    margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
    .thanks__txt {
        text-align: center;
    }
    .thanks__ttl {
        font-size: 2.4rem;
    }
} /* ----- media END ----- */
/*------------------------------------------------------------
    css 上書き
------------------------------------------------------------*/
.contact__tbl input, .contact__tbl textarea {
    padding: 10px 15px !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}
@media screen and (min-width: 768px) {
    .contact__tbl input, .contact__tbl textarea {
        font-size: 1.8rem !important;
    }   
}