@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* タイトル部分（上下中央寄せ） */
.tele-card-info { 
    padding: 15px; 
    display: flex;             /* Flexboxを有効化 */
    align-items: center;       /* 上下（垂直方向）の中央寄せ */
    justify-content: center;   /* 左右（水平方向）の中央寄せ */
    height: 80px;              /* 箱の高さを一定にして中央寄せを際立たせる */
    text-align: center;        /* 文字自体のセンタリング */
}

.tele-card-title { 
    font-size: 15px; 
    line-height: 1.4; 
    margin: 0; 
    font-weight: 700; 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;     /* 2行まで表示 */
    overflow: hidden;
}