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

/* 2025.08.19 */



.l-section.clientVoice {
    background-color:#e2eaf4;
    padding-bottom: 100px;
    margin-top: 180px;
}
.l-section.clientVoice+.l-section.-bg-colorA { margin-top: 0;}

.l-section.clientVoice .l-section_inner {
    display: flex;
    flex-wrap: wrap;
}

.clientVoice .balloon,
.clientVoice .face {
    margin-top: -70px;
}

.clientVoice .balloon {
    display: flex;
    align-items: center;

    width: 65%;
    height: 200px;
    padding: 30px;
    background-color: #FFF;

    border: 3px solid #4176bb;
    border-radius: 15px;

    font-size: 28px;
    letter-spacing:3px;
    color: #4176bb;
    font-weight: bold;
}

.clientVoice .face {
    width: calc(35% - 30px);
    margin-left:30px;
}
.clientVoice .face > div > img {
    width: 100px; 
}
.clientVoice .face > div > p {
    font-size: 14px;
}
.clientVoice .face > div > p span { font-size: 18px; font-weight: bold;}


.clientVoice .face > div {
    display: flex; 
}

.clientVoice .face > div:nth-of-type(2) {
    flex-direction: row;
    align-items: flex-end;
}
.clientVoice .face > div:nth-of-type(1) {
    flex-direction: row-reverse;
    align-items:flex-start;
}

.clientVoice .face div p { width: calc(100% - 110px);}
.clientVoice .face div:nth-of-type(1) p { text-align: left; }
.clientVoice .face div:nth-of-type(2) p { text-align: right; }
.clientVoice .face div:nth-of-type(1) img { margin-right: 10px;}
.clientVoice .face div:nth-of-type(2) img { margin-left: 10px;}

.clientVoice .face.one div:nth-of-type(1) {display: none; }
.clientVoice .face.one div:nth-of-type(2) { margin-top: 100px; }

.clientVoice .m-text { margin-top: 30px;}



@media screen and (max-width:768px) {

    .l-section.clientVoice {
        padding-top: 100px;
        margin-top: 70px;
    }

    .l-section.clientVoice .l-section_inner {
        display: block;
    }

    .clientVoice .balloon,
    .clientVoice .face {
        margin-top: -60px;
    }
    .clientVoice .balloon {
        width: 100%; height: auto;
        font-size: 21px;
    }
    .clientVoice .face {
        width: 100%; height: auto;
        margin-top: 30px;
        margin-left: 0;
    }
    .clientVoice .face > div:nth-of-type(1) {
        flex-direction: row-reverse;
        align-items:flex-start;
    }
    .clientVoice .face > div:nth-of-type(2) {
        flex-direction: row;
        align-items: flex-end;
    }
    .clientVoice .face div:nth-of-type(1) img { margin-right: 10px;}
    .clientVoice .face div:nth-of-type(2) img { margin-left: 10px;}
    .clientVoice .face div:nth-of-type(1) p { text-align: left; }
    .clientVoice .face div:nth-of-type(2) p { text-align: right; }
    .clientVoice .face > div > img {
        width: 80px;
    }

    .clientVoice .face.one div:nth-of-type(1) {display: none; }
    .clientVoice .face.one div:nth-of-type(2) { margin-top: 0px; }

}

.l-article_heading h1 span { font-size: 0.8em!important; }


table.jirei-info {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    background: #fff;
    border: none;
}
table.jirei-info th,
table.jirei-info td {
    display: block; /* セルをブロック要素に指定 */
    width: 100%; /* セルを親要素いっぱいの幅に指定 */
    border: none;
    font-size: 14px;   
    padding: 10px;
    vertical-align: middle;
    text-align: left;
    box-sizing: border-box;
}
table.jirei-info th {
    width: 100%;
    font-weight:bold;
    color: #4176bb;
    background-color: #e3eaf4;
}

@media screen and (min-width: 768px) {
    table.jirei-info tr th,
    table.jirei-info tr td {
        display: table-cell; /* デフォルト値に指定 */
        border-bottom: 1px solid #ccc;
        color: #000;
        background: #fff;
    }
    table.jirei-info tr th {
        color: #000;
        background: #fff; /* thの背景色 */
    }
    table.jirei-info tr th:first-child {
        width: 30%; /* thの固定幅 */
    }
}




/* =============================
PCのみ表示、スマホのみ表示
============================= */

.pcOnly { display: block; }
.spOnly { display: none; }

@media screen and (max-width:768px) {
    .pcOnly { display: none; }
    .spOnly { display: block; }
}