@charset "utf-8";
/*共通設定*/
.txt-flex {
    display: flex;
    align-items: flex-start;
    justify-content: left;
}

.txt-flex span {
    margin-right: 4px;
}

.tel-txt,
.mail-txt {
    margin-bottom: 100px;
}

h1 {
    margin-bottom: 40px;
    font-size: 24px;
    display: flex;
    align-items: center;
}

h1::after {
  content: '';
  height: 1px;
  background-color: #333;
  flex-grow: 1;
  margin-left: 16px;
}
/*終わり*/  

/*<section class="contact">*/
.breadcrumb {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 14px;
    margin: 40px 0;
}

.breadcrumb p {
    margin: 0 8px;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.contact-con h2 {
    margin-bottom: 32px;
    color: #2264b9;
    font-size: 18px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.square {
    width: 30px;
    margin-right: 10px;
}

.tel-flex {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.tel-flex .txt-01,
.tel-flex .txt-05 {
    font-weight: 600;
    margin-bottom: 8px;
}

.tel-flex .txt-02,
.tel-flex .txt-03,
.tel-flex .txt-06,
.tel-flex .txt-07 {
    font-weight: 600;
    font-size: 24px;
}

.tel-flex .txt-04,
.tel-flex .txt-08 {
    font-size: 14px;
    margin-top: 8px;
}

.mail-txt .txt-01 {
    margin-bottom: 16px;
}

.contact-form {
    width: 95%;
    margin: 80px auto 0 auto;
}

.form-area dt {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.required {
    color: #fff;
    background-color: #14B88D;
    font-size: 12px;
    padding: 0 4px;
    border-radius: 4px;
    margin-right: 4px;
}

.any {
    color: #fff;
    background-color: #435259;
    font-size: 12px;
    padding: 0 4px;
    border-radius: 4px;
    margin-right: 4px;
}

.form-area dd {
    margin-bottom: 24px;
}

::placeholder {
    color: rgba(0,0,0,0.3);
}

.form-area .input-text {
    width: 100%;
    height: 40px;
    border: solid 1px #435259;
    border-radius: 4px;
    padding: 0 8px;
}

.form-area .radio-btn {
    margin-left: 16px;
}

.form-area .radio-btn:first-child {
    margin-left: 0;
}

.form-area .message {
    width: 100%;
    height: 200px;
    border: solid 1px #435259;
    border-radius: 4px;
}

.privacy-area {
    background-color: #f6f6f7;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
}

.privacy-area .flex-con01 {
    font-size: 14px;
}

.privacy-area .flex-con02 {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 12px;
}

.privacy-area a {
    font-size: 12px;
    border-bottom: solid 1px #435259;
}

.submit-btn-area {
    text-align: center;
}

.submit-button {
    width: 30%;
    text-align: center;
    background-color: #fff;
    color: #14b88d;
    border-radius: 8px;
    border: solid 2px #14b88d;
    padding: 8px;
    transition: 0.2s;
    font-size: 16px;
    margin: 40px auto;
}

.submit-button:hover {
    color: #fff;
    background-color: #14b88d;
    cursor: pointer;
}
/*終わり*/  

/*タブレット*/
@media (max-width: 1024px) {
/*共通設定*/
/*終わり*/ 

/*<section class="contact">*/
    .tel-flex {
        width: 100%;
        justify-content: space-around;
    }

    .contact-form {
        width: 100%;
    }

    .form-area .radio-btn {
        margin-left: 5px;
    }    
/*終わり*/ 
}

/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    h1 {
        font-size: 18px;
    }
/*終わり*/

/*<section class="contact">*/
    .tel-flex {
        display: block;
    }

    .tel-flex .flex-l {
        margin-bottom: 32px;
    }

    .form-area .radio-btn {
        margin-left: 16px;
    }    

    .privacy-area .flex-con02 {
        display: block;
    }

    .submit-button {
        width: 100%;
    }    
/*終わり*/ 
}    
    