@charset "UTF-8";

/* contact_single */

.contact {
    padding: 180px 0 140px;
}

.contact .inner {
    max-width: 1240px;
}

.contact_body {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.contact_detail_ttl {
    margin-bottom: 20px;
    color:  #007EDF;
}

.contact_detail_intro {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 20px;
}

.contact_head .line {
    justify-content: left;
}

.matrial_detail_cnt {
    width: 100%;
    max-width: 500px;
}

.matrial_exp {
    padding: 26px 33px;
    background-color: #F5FBFF;
    border-radius: 10px;
    margin-bottom: 33px;
}

.matrial_exp_img {
    margin-bottom: 20px;
    text-align: center;
}

.matrial_exp ul  li {
    font-size: 16px;
    font-weight: 500;
}

.contact_detail_txt {
    font-size: 16px;
    font-weight: 500;
}

/* form */

.contact_form {
    width: 100%;
    max-width: 600px;
}

.form_tbl {
    padding: 40px 36px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.form_tbl dl {
    margin-bottom: 40px;
}

.form_tbl dl dt {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form_tbl dl dt.req::after {
    content: '必須';
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #FA529D;
    padding: 0 10px;
    border-radius: 4px;
}

.form_tbl dl dd input,
.form_tbl dl dd textarea {
    width: 100%;
    padding: 10px 20px;
    background-color: #F5F5F5;
    border: solid 1px #DDDDDD;
    border-radius: 6px;
}

.agree {
    font-weight: 500;
    text-align: center;
}

.agree a {
    color: #3DC0FF;
    text-decoration: underline;
}

.agree a:hover {
    text-decoration: none;
}

.agree_btn {
    text-align: center;
    margin-bottom: 30px;
}

.agree_btn span {
    font-size: 16px;
    font-weight: bold;
}

.agree_btn input {
    all: revert;
}

.send {
    text-align: center;
}

.send input {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    background-color: #000;
    border: solid 1px #000;
    transition-duration: 0.5s;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
}

.send input:hover {
    cursor: pointer;
    background-color: #fff;
    color: #000;
}


@media screen and (max-width:767px) {

    .contact {
        padding: 50px 0 80px;
    }
    
    .contact_body {
        flex-flow: column;
    }

    .form_tbl {
        padding: 20px;
    }
}