/* mysecrets/templates/secretank/fulipr-upskirts.html */


/* ダウンロードリンク */
.fulipr-download-link {
    text-decoration: none;
    color: white;
    background-color: #27ae60;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.fulipr-download-link:hover {
    background-color: #1e8449;
}
/* タグ */
.fulipr-tag {
    background-color: #ff7675;
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    margin: 2px;
    display: inline-block;
    font-size: 0.9rem;
}
/* サムネ画像 | サムネ関連画像  */
.fulipr-thumbnail {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    width: auto;
    display: block;
    margin: auto;
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.fulipr-block-image {
    width: 250px; /* サムネイル画像の幅を大きく */
    height: 250px; /* サムネイル画像の高さを大きく */
    object-fit: cover; /* 画像の比率を保ちつつ、枠内に収める */
    border-radius: 4px; /* 角を丸く */
    margin: 4px; /* 画像間の間隔を調整 */
}

/* ==========================
   レスポンシブ調整
========================== */
/* スマホ画面 */
@media (max-width: 768px) {
    .fulipr-thumbnail,
    .fulipr-block-image {
        width: 100px; /* スマホでは画像を小さく */
        height: 100px;
        margin: 5px; /* 画像間の間隔を縮小 */
    }
    .fulipr-tag {
        font-size: 0.8rem; /* タグの文字を小さく */
        padding: 4px 6px;
    }
    .fulipr-download-link {
        padding: 6px 10px; /* ボタンを少し小さく */
        font-size: 0.85rem;
    }
}
