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

/* --- ボイス用テンプレートCSS --- */

/* 試聴プレイヤー周り */
.voice-player-area {
    background: #f9f9f9;
    border: 2px solid #ff6b6b; /* 目立つ赤枠 */
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.player-label {
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.voice-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* コンバージョン(購入)ボタン */
.cv-button-area {
    margin: 20px 0;
    text-align: center;
}
.dmm-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #ff5e62, #ff9966);
    color: #fff !important;
    font-weight: bold;
    font-size: 1.2em;
    padding: 15px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 0 #d14444;
    transition: all 0.3s;
}
.dmm-btn:active {
    transform: translateY(4px);
    box-shadow: none;
}
.btn-sub {
    display: block;
    font-size: 0.7em;
    font-weight: normal;
    margin-top: 5px;
    opacity: 0.9;
}

/* 作品データテーブル */
.voice-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 0.9em;
}
.voice-info-table th, .voice-info-table td {
    border: 1px solid #ddd;
    padding: 10px;
}
.voice-info-table th {
    background: #f0f0f0;
    width: 30%;
    font-weight: bold;
}

/* ギャラリー画像 */
.voice-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.voice-gallery img {
    width: 100%; /* スマホは1列 */
    max-width: 300px; /* PCは小さく */
    height: auto;
    border: 1px solid #eee;
}