@charset "utf-8";
/* CSS Document */

#about {
    margin: 0 auto;
    max-width: 960px;
}

#about table tr td, #about table tr th {
    padding: 15px;
    border: 0.5px solid #e6e8e6;
    border-collapse: collapse;
}

#about .main-bar-text {
    margin: 0 auto!important;
}


.contact-tel {
    background-color: #e6e8e6!important;
    padding: 30px;
    color: #402501;
    margin: 0 auto 40px auto;
    width: 100%;
    max-width: 960px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-tel a {
    display: block;
    font-size: clamp(20px, 10vw, 26px)!important;
    letter-spacing: 0.15rem;
    font-weight: bold;
    text-decoration: none;
    color: #3d3d3d;
}

@media screen and (min-width: 768px) {
    .contact-tel  {
        flex-direction: row;
        margin: 0 auto 70px auto;
    }
}

/*---------------------------------------------
contact.html
===============================================*/

#contact-form-Frame {
    max-width: 960px;
    margin: 0 auto;
}

.form-table-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0px 0 20px 0;
    border-bottom: 0.5px solid #fff;
    padding-bottom: 20px;
    font-size: 14px;
}

.form-question {
    margin: 5px 0;
}

.form-control,.form-select { /* Bootstrapの指示内容書き換え */
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .form-table-inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
    
    .form-question {
        width: clamp(200px, 50%, 300px);
    }
    
    .form-answer {
        width: calc( 100% - 300px);
    }
}