@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
*/

/* お客様の声：一覧レイアウト全体 */
.voice-list {
    display: grid;
    gap: 1.5rem;
    color: #333;
}

/* カード（白背景・角丸なし） */
.voice-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 1.2rem 1.4rem;
    color: #333;
}

/* 1行目：ニックネーム 様 */
.voice-meta {
    margin: 0 0 0.4rem 0;
    line-height: 1.6;
}
.voice-meta b {
    font-size: calc(var(--swl-fs_base) * 1.05); /* 本文より少し大きめ */
    font-weight: 700;
    color: #333;
}

/* 2行目：（クライミング歴〇年｜性別） */
.voice-submeta {
    font-size: calc(var(--swl-fs_base) * 1.05);
    color: #333;
}

/* 本文（100文字トリミング済み） */
.voice-text {
    margin: 0 0 0.8rem 0;
    font-size: var(--swl-fs_base);
    line-height: 1.7;
    color: #333;
}

/* 続きを見るリンク */
.voice-more {
    margin: 0;
    text-align: right;
}
.voice-more a {
    font-size: calc(var(--swl-fs_base) * 0.9);
    text-decoration: underline;
}

/* PCでは2カラム／スマホは1カラム */
@media (min-width: 960px) {
    .voice-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
