@charset "utf-8";

.tel_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.tel_list li {
    background: #ECF9FB;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: solid 2px var(--c_blue);
}

.tel_list li:nth-child(2) {
    background: #FFF1F9;
    border: solid 2px var(--c_mpink);
}

.tel_list dl {}

.tel_list dt {
    color: var(--c_blue);
    font-size: 18px;
    font-weight: bold;
}




.tel_list dd a {
    font-size: clamp(1.25rem, 1.009rem + 1.2vw, 2.5rem)
        /*20-30*/
    ;
    color: #666;
}

.tel_list dd a::before {
    content: "\f095";
    /* チェックアイコンのUnicodeの例 */
    font-family: "Font Awesome 5 Free";
    /* または "Font Awesome 5 Brands" など */
    font-weight: 900;
    /* アイコンのスタイルによって異なる */
    color: var(--c_blue);
}

.tel_list li:nth-child(2) dt,
.tel_list li:nth-child(2) dd a::before {
    color: var(--c_mpink);
}

.eform .rc_group {
    display: inline-block;
}

span.formN {
    font-weight: bold;
}


.form_block {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    justify-content: center;
}

.form_block .contact_btn {}

.form_block .contact_btn a {
    background-color: var(--c_blue);
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 1em 1em;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0;
}

.btn_a {}

.form_block .contact_btn.btn_b a {
    background-color: var(--c_mpink);
}

/*600px以上*/
@media (min-width: 600px) {
    .tel_list li {
        width: 48%;
    }

    .facility_choose p {
        text-align: center;
    }
}

/*900px以上*/
@media (min-width: 900px) {}

/***********************************/
.form {}

.input_list {}

.input_list li {
    border-bottom: solid 1px #ccc;
}

/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {}