@charset "utf-8";

/* ============================
　　お問い合わせ START
============================ */

.contact {
    max-width: 1000px;
    min-width: 800px;
    width: 70%;
    margin: 0 auto;
}
.contact .basic--content {
    padding: 80px 0 0;
}
.contact--wrap {
    margin-top: 30px;
}
.contact--wrap table {
    width: 100%;
    border: 2px solid #333;
}
.contact--wrap table tr {
    font-size: 15px;
    line-height: 1.7em;
}
.contact--item-01 input,
.contact--item-02 textarea {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    color: #676565;
    background-image: none;
    border: 1px solid #ccc;
    font-size: 15px;
}
.contact--item-02 textarea {
    height: 200px;
    padding-top: 17px;
}
.contact--item-check div {
    display: flex;
    gap: 1ch;
    align-items: baseline;
}
.contact--item-check span {
    font-size: 13px;
}
input[type=checkbox] {
	flex-shrink: 0;/* サイズ固定 */
}
.hissu{
    color: #FF0229;
    text-align: right;
    float: right;
    font-size: 12px;
    font-weight: normal;
}
.contact--wrap table tr th,
.contact--wrap table tr td {
    padding: 13px 20px;
    border: 1px solid #777;
}
.contact--wrap table tr th {
    width: 25%;
    background-color: #DEDFFF;
}
.contact--wrap table tr td {
    width: 75%;
}
.contact--wrap table tr td ul {
    list-style: circle;
    padding-left: 20px;
    margin: 0;
}
/* 送信ボタン START */
.contact--btn {
    width: 350px;
    position: relative;
    margin: 30px auto;
}
.contact--btn input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;

    width: 100%;
    padding: 16px 55px 16px 25px;
    border-radius: 30px;
    background-color: #1D2087;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s;
}
.contact--btn::after{
    content: '';
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translateY(-50%) rotate(45deg);
    transition: all .3s;
}
@media (hover: hover) {
    .contact--btn input:hover {
        background-color: #1651B1;
    }
}
@media (hover: none) {
    .contact--btn input:active {
        background-color: #1651B1;
    }
}
/* 送信ボタン END */

@media screen and (max-width: 768px) {
    .contact {
        max-width: none;
        min-width: auto;
        width: 100%;
    }
    .contact .basic--content {
        padding: 30px 20px;
    }
    .contact--wrap table tr,
    .contact--item-check span {
        font-size: 12px;
    }
    .contact--wrap table tr th,
    .contact--wrap table tr td {
        padding: 15px 10px;
        line-height: 1.9em;
    }
    .contact--btn input {
        padding: 13px 53px 13px 23px;
    }
}
@media screen and (max-width: 450px) {
    .contact--wrap table tr th,
    .contact--wrap table tr td {
        display: block;
        width: 100%;
        border: none;
    }
    .contact--btn {
        width: 80%;
    }
    .contact--btn input {
        padding: 11px 40px 11px 20px;
        font-size: 14px;
    }
    .contact--btn::after {
        width: 10px;
        height: 10px;
        right: 18px;
    }
}