#form_head{
    font-size: 30px;
    font-weight: 700;
}

#form_body dl{
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0 25px;
}
#form_body dt{
    width: 250px;
    padding-top: 10px;
}
#form_body dt h3{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
#form_body dt h3::after{
    content: "必須";
    margin-left: 10px;
    color: #fff;
    padding: 3px 12px 4px;
    background-color:#ec0c0c;
    font-size: 60%;
    border-radius: 40px;

}
#form_body dt small{
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
}
#form_body dd{
    width: calc(100% - 300px);
}

#form_body input[type="text"],
#form_body input[type="email"],
#form_body input[type="tel"],
#form_body textarea{
    padding: 20px;
    border: 2px solid #ccc;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
}

#form_body input[type="text"],
#form_body input[type="email"],
#form_body input[type="tel"]{
    border-radius: 50px;
    max-width: 300px;
}
#form_body input[type="radio"],
#form_body input[type="checkbox"]
{
    display: none;
}
#form_body .radio_area{
    display: flex;
    flex-wrap: wrap;
}
#form_body .radio_area h4{
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 20px;
}
#form_body .radio_area h4:first-child{
    margin-top: 10px;
}
#form_body input[type="radio"] + label,
#form_body input[type="checkbox"] + label
{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 10px 20px 10px 0;
    cursor: pointer;
}
#form_body input[type="radio"] + label:hover,
#form_body input[type="checkbox"] + label:hover{
    color: #b33d3d;
}

#form_body input[type="radio"] + label span,
#form_body input[type="checkbox"] + label span
{
    width: 40px;
    aspect-ratio: 1;
    position: relative;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: white;
    margin-right: 10px;
}
#form_body input[type="radio"] + label span::before,
#form_body input[type="checkbox"] + label span::before
{
    content: "";
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
}
#form_body input[type="radio"]:checked + label span::before,
#form_body input[type="checkbox"]:checked + label span::before{
    background: #b33d3d;
}
#form_body textarea{
    border-radius: 30px;
    height: 300px
}

#form_checkbox{
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#form_checkbox button{
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}
#form_checkbox button:hover{
    opacity: .8;
}

#form_body .bt_box{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#form_body .bt_box button{
    max-width: 400px;
    font-size: 140%;
}
#form_body .bt_box button:disabled{
    background: #aaa;
    cursor: no-drop;
}
#form_body .bt_box p{
    margin-top: 10px;
}

#contact_check dl{
    align-items: stretch;
}
#contact_check dl dd{
    display: flex;
    align-items: center;
    font-size: 120%;
}

#contact_result_list li{
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}
#contact_result_list li:last-child{
    margin-bottom: 0;
}

#contact_result_list .bt_box{
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: space-around;
    margin: 50px auto 0;
}
#contact_result_list .bt_box .link_bt{
    width: calc(50% - 10px);
    max-width: 300px;
}

#phone_area{
    width: calc(100% - 50px);
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    color: #000;
}
#phone_number{
    display: block;
    font-size: 350%;
    border-bottom: 1px solid #555;
    padding-bottom: 15px;
    text-align:center;
}
#open_area{
    display: flex;
    justify-content: center;
}
#open_area p{
    font-size: 120%;
    font-weight: 700;
    margin: 15px;
}

#tel_comment{
    font-size: 80%;
    letter-spacing: 0rem;
    text-align:center;
}

#line_area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#line_area .img_box,#line_area .qr_box{
    width: 150px;
}
#line_area img{
    width: 100%;
}
#line_area .qr_box{
    background: #fff;
    border-radius: 20px;
    padding: 10px;
}
#line_area .text_box{
    width: calc(100% - 360px);
}
#line_area .text_box .head_area{
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
#line_area .text_box .inner{
    margin-top: 10px;
    font-weight: 500;
}