﻿@charset "utf-8";

/*-------------------------------------
    2025.08.06 お問い合わせフォーム変更
-------------------------------------*/
/* 共通 */
.el_fcRed,
.el_error{
    color: #ff0000;
    font-weight: bold;
}

/* テーブル */
form table th{
    background: #eee;
    width: 30%;
    font-weight: normal;
    text-align: left;
}
form label{
    display: block;
}
form label+label{
    margin-top: 10px;
}
form input[type="text"],
form input[type="tel"],
form input[type="email"]{
    padding: 5px;
    width: 300px;
}
form textarea{
    padding: 5px;
    width: 300px;
    height: 100px;
}
form input[type="radio"]{
    margin-right: 5px;
}

/* 生年月日 */
.bl_birthday label{
    display: inline-block;
}
.bl_birthday .el_text{
    margin-right: 5px;
}
.bl_birthday .el_year .el_text{
    width: 80px;
}
.bl_birthday .el_month .el_text,
.bl_birthday .el_day .el_text{
    width: 50px;
}

/* 住所 */
.bl_address span{
    display: inline-block;
    width: 100px;
}

/* 加入している健康保険 */
.bl_kenkouhoken span{
    display: inline-block;
    width: 100px;
}
.bl_kenkouhoken label input[type="radio"]{
    margin-right: 5px;
}
.bl_kenkouhoken label input[type="text"]{
    margin-left: 5px;
    width: 150px;
}

/* 保険証 */
.bl_hokensyou label{
    display: inline-block;
}
.bl_hokensyou label:nth-child(n+3){
    margin-left: 5px;
}
.bl_hokensyou label input[type="text"]{
    margin-left: 5px;
}
.bl_hokensyou label:nth-child(1){
    display: block;
}
.bl_hokensyou label:nth-child(1) input[type="text"],
.bl_hokensyou label:nth-child(2) input[type="text"]{
    width: 100px;
}
.bl_hokensyou label:nth-child(3) input[type="text"],
.bl_hokensyou label:nth-child(4) input[type="text"]{
    width: 50px;
}

/* プライバシーポリシー */
.bl_privacy .form_policy{
    margin: 0 auto 20px!important;
}
.bl_privacy label input[type="checkbox"]{
    margin-right: 5px;
}

/* ボタン */
.bl_btnCont{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
input[type="button"],
input[type="submit"]{
    background-color: #ccc;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    display: block;
    font-size: 14px!important;
    transition: 0.3s;
    margin: 0!important;
    padding: 15px 0;
    width: 200px;
}
input[type="submit"]{
    background-color: #5c442a;
    color: #fff;
    margin-left: 40px!important;
}
input[type="button"]:hover,
input[type="submit"]:hover{
    opacity: 0.5;
}

