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

/* SWELLのヘッダーバーを完全に非表示 */
.l-header__bar {
    display: none !important;
}

.nowrap {
    white-space: nowrap;
}
.red {
    color: red;
}








/* 全体枠（FF風ウィンドウ） */
.ff-form-group {
    background: radial-gradient(circle at center, #1b2230 0%, #0d1117 100%);
    border: 1px solid #7c683b;
    /* 上品なゴールド枠 */
    border-radius: 4px;
    padding: 14px 18px;
    box-shadow:
        0 0 0 1px rgba(10, 14, 23, 0.9),
        0 0 10px rgba(0, 180, 216, 0.15),
        inset 0 0 10px rgba(0, 0, 0, 0.8);
    font-family: "Cinzel", "游明朝", "Yu Mincho", serif;
    color: #e2e8f0;
}

/* ラベル（dt） */
.ff-form-group dt {
    font-size: 14px;
    font-weight: 600;
    color: #c5a059;
    /* ゴールド文字 */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 4px rgba(197, 160, 89, 0.3);
}

/* マーカー（◆） */
.ff-form-group .ff-marker {
    color: #00b4d8;
    /* クリスタルブルー */
    font-size: 10px;
    text-shadow: 0 0 6px #00b4d8;
}

/* 入力欄（dd / input） */
.ff-form-group dd {
    margin: 0;
}

/* FF風セレクトボックス */
.ff-form-group .ff-select {
    width: 100%;
    background-color: rgba(10, 15, 25, 0.85);
    /* カスタムの矢印アイコン（ゴールド） */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23c5a059'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    border: 1px solid #4a5568;
    border-radius: 3px;
    color: #ffffff;
    padding: 10px 36px 10px 12px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    /* OS標準の矢印を非表示 */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* フォーカス時・ホバー時のネオンエフェクト */
.ff-form-group .ff-select:hover,
.ff-form-group .ff-select:focus {
    border-color: #00b4d8;
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow:
        0 0 8px rgba(0, 180, 216, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* プルダウンを展開した際の中身（option）の背景色と文字色 */
.ff-form-group .ff-select option {
    background-color: #0d1117;
    color: #e2e8f0;
    padding: 8px;
}

/* テキストエリア（textarea） */
.ff-form-group textarea {
    width: 100%;
    min-height: 100px;
    background: rgba(10, 15, 25, 0.85);
    border: 1px solid #4a5568;
    border-radius: 3px;
    color: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.6;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
    /* 縦方向のみサイズ変更許可 */
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* テキストエリアフォーカス時（発光エフェクト） */
.ff-form-group textarea:focus {
    border-color: #00b4d8;
    background: rgba(15, 23, 42, 0.95);
    box-shadow:
        0 0 8px rgba(0, 180, 216, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* プレースホルダー */
.ff-form-group textarea::placeholder {
    color: #64748b;
    font-style: italic;
    font-size: 13px;
}

/* 文字数カウントエリア */
.ff-form-group .ff-char-count {
    margin: 6px 0 0 0;
    text-align: right;
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 0.05em;
}

.ff-form-group input[type="text"] {
    width: 100%;
    background: rgba(10, 15, 25, 0.85);
    border: 1px solid #4a5568;
    border-radius: 3px;
    color: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* フォーカス時（青く光るエフェクト） */
.ff-form-group input[type="text"]:focus {
    border-color: #00b4d8;
    background: rgba(15, 23, 42, 0.95);
    box-shadow:
        0 0 8px rgba(0, 180, 216, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* プレースホルダー */
.ff-form-group input[type="text"]::placeholder {
    color: #64748b;
    font-style: italic;
    font-size: 13px;
}


/* コンテナ全体のスタイル */
.ff-tag-container {
    background: radial-gradient(circle at center, #1a2230 0%, #0d1117 100%);

    /* FF風ゴールドの細枠 */
    box-shadow:
        0 0 0 1px rgba(10, 14, 23, 0.9),
        0 0 10px rgba(0, 180, 216, 0.15),
        inset 0 0 8px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    padding: 12px 14px;
    font-family: "Cinzel", "游明朝", "Yu Mincho", serif;
    color: #e2e8f0;
}

/* グループの配置設定 */
.ff-tag-container .tag-group {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.ff-tag-container .tag-group:last-child {
    margin-bottom: 0;
}

/* グループタイトル【サイズ・種別】 */
.ff-tag-container .tag-group-title {
    font-size: 12px;
    font-weight: 600;
    color: #c5a059;
    /* 上品なゴールド文字 */
    text-shadow: 0 0 4px rgba(197, 160, 89, 0.3);
    display: block;
    width: 100%;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

/* FF風タグボタン */
.tag-append-btn {
    background: linear-gradient(180deg, #1f293d 0%, #111827 100%) !important;
    border: 1px solid #4a5568 !important;
    border-radius: 3px !important;
    color: #d1d5db !important;
    font-size: 13px !important;
    padding: 5px 10px !important;
    cursor: pointer !important;
    outline: none !important;
    transition: all 0.2s ease-in-out !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* ホバー時（マウスを乗せた時）：青く光るエフェクト */
.tag-append-btn:hover {
    background: linear-gradient(180deg, #2b3952 0%, #1a2333 100%);
    border-color: #00b4d8;
    color: #ffffff;
    box-shadow:
        0 0 8px rgba(0, 180, 216, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* クリック時（押した瞬間） */
.tag-append-btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* 注記（最大4枚まで…） */
.ff-form-group .ff-pinpoint {
    font-size: 13px;
    color: #94a3b8;
    font-weight: normal;
    margin-left: 6px;
}

/* ファイル選択ボタンカスタム */
.ff-file-input {
    width: 100%;
    font-size: 13px;
    color: #94a3b8;
}

.ff-file-input::file-selector-button {
    background: linear-gradient(180deg, #2b3952 0%, #1a2333 100%);
    border: 1px solid #7c683b;
    border-radius: 3px;
    color: #e2e8f0;
    padding: 6px 14px;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ff-file-input::file-selector-button:hover {
    border-color: #00b4d8;
    color: #ffffff;
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.5);
}

/* 画像プレビューエリア */
.ff-preview-area {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    cursor: grab;
    margin-top: 12px;
}

.ff-preview-area:active {
    cursor: grabbing;
}

/* プレビュー画像枠 */
.ff-preview-item {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid #7c683b;
    border-radius: 3px;
    background: #000;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ff-preview-item:hover {
    border-color: #00b4d8;
    transform: scale(1.03);
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.4);
}

.ff-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.captcha-image {
    background-color: white;
}

/* ボタンの配置エリア */
.ff-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* FF風確定ボタン */
.ff-btn-confirmed {
    position: relative;
    min-width: 200px;
    padding: 12px 32px;
    background: linear-gradient(180deg, #2c3e55 0%, #16222f 100%);
    border: 1px solid #c5a059;
    /* ゴールド枠 */
    border-radius: 4px;
    color: #f7fafc;
    font-family: "Cinzel", "游明朝", "Yu Mincho", serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow:
        0 0 0 1px rgba(10, 14, 23, 0.9),
        0 4px 10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ホバー時（クリスタルブルーの発光と輝き） */
.ff-btn-confirmed:hover {
    background: linear-gradient(180deg, #3b5271 0%, #203144 100%);
    border-color: #00b4d8;
    /* 発光ブルー枠 */
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 180, 216, 0.8);
    box-shadow:
        0 0 15px rgba(0, 180, 216, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* クリック時（押した感触） */
.ff-btn-confirmed:active {
    transform: translateY(1px);
    box-shadow:
        0 0 5px rgba(0, 180, 216, 0.4),
        inset 0 2px 6px rgba(0, 0, 0, 0.8);
}



/* 外枠（FF風ウィンドウ） */
.ff_confirm_box {
    background: linear-gradient(135deg, #0d121d 0%, #171f2e 50%, #080a10 100%);
    border: 1px solid #4a5a73;
    outline: 1px solid #c5a059;
    /* 内側ゴールド枠線 */
    outline-offset: -4px;
    border-radius: 4px;
    padding: 20px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.8),
        inset 0 0 12px rgba(0, 0, 0, 0.9),
        inset 0 0 4px rgba(197, 160, 89, 0.3);
    width: 100%;
    font-family: "Cinzel", "Times New Roman", "Yu Mincho", "游明朝", serif;
    color: #e2e8f0;
}

/* 上部確認メッセージ */
.ff_confirm_title {
    color: #c5a059;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

/* 各情報の行配置 */
.ff_info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 6px;
    border-bottom: 1px dashed rgba(74, 90, 115, 0.5);
}

.ff_info_row:last-child {
    border-bottom: none;
}

/* メモ欄のレイアウト調整 */
.ff_memo_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.bx_memo_text {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #2a3547;
    padding: 8px 12px;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    white-space: pre-wrap;
    /* 改行を保持 */
}


/* タグ全体のコンテナ */
.confirm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

/* 参考デザインベースのFF風タグバッジ */
.tag-badge {
    background: linear-gradient(180deg, #1f293d 0%, #111827 100%);
    border: 1px solid #4a5568;
    border-radius: 3px;
    color: #d1d5db;
    font-size: 13px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease-in-out;
}

/* メッセージ全体を包むコンテナ */
.ff_message_box {
    background: linear-gradient(135deg, #0d121d 0%, #171f2e 50%, #080a10 100%);
    border: 1px solid #4a5a73;
    outline: 1px solid #c5a059;
    outline-offset: -4px;
    border-radius: 4px;
    padding: 20px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.8),
        inset 0 0 12px rgba(0, 0, 0, 0.9);
    max-width: 100%;
    text-align: center;
    font-family: "Cinzel", "Times New Roman", "Yu Mincho", "游明朝", serif;
    color: #e2e8f0;
}

/* 完了メッセージ */
.ff_success_msg {
    color: #c5a059;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(197, 160, 89, 0.4);
    margin: 0 0 12px 0;
}

/* エラーメッセージ（クリティカル風の赤い背景枠） */
.ff_alert_box {
    background: rgba(139, 0, 0, 0.25);
    border: 1px solid #e53e3e;
    border-radius: 3px;
    padding: 10px 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ff_err_msg {
    color: #fc8181;
    font-size: 13px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* メモキー表示行 */
.ff_key_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #2a3547;
    padding: 8px 12px;
    border-radius: 3px;
    margin-bottom: 16px;
}

/* 注意文（以前の class="red" の代わり） */
.ff_notice_msg {
    color: #e2e8f0;
    font-size: 12px;
    margin: 16px 0;
    line-height: 1.5;
    opacity: 0.9;
}


/* メモ削除確認・詳細エリア（FF風ウィンドウ） */
#delete_memo {
    background: linear-gradient(135deg, #0d121d 0%, #171f2e 50%, #080a10 100%);
    border: 1px solid #4a5a73;
    outline: 1px solid #c5a059;
    /* 内側ゴールド枠線 */
    outline-offset: -4px;
    border-radius: 4px;
    padding: 16px 20px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.8),
        inset 0 0 12px rgba(0, 0, 0, 0.9),
        inset 0 0 4px rgba(197, 160, 89, 0.3);
    width: 100%;
    font-family: "Cinzel", "Times New Roman", "Yu Mincho", "游明朝", serif;
    color: #e2e8f0;
    margin-bottom: 16px;
}

/* 各情報の行配置 */
#delete_memo .ff_info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(74, 90, 115, 0.5);
}

#delete_memo .ff_info_row:last-child {
    border-bottom: none;
}

/* メモ欄のレイアウト調整 */
#delete_memo .ff_memo_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 4px;
}

/* メモの本文ボックス */
#delete_memo .bx_memo_text {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid #2a3547;
    padding: 10px 12px;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    white-space: pre-wrap;
    /* 改行を保持 */
}

/* タグプレビューエリアのコンテナ */
.memo-tags-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    width: 100%;
}

/* 過去の参考デザインに合わせたFF風タグバッジ */
.tag-badge {
    background: linear-gradient(180deg, #1f293d 0%, #111827 100%);
    border: 1px solid #4a5568;
    border-radius: 3px;
    color: #d1d5db;
    font-size: 13px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease-in-out;
}

/* 画像プレビュー全体のレイアウト */
.delete-images-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
    width: 100%;
}

/* FF風画像フレーム */
.preview-item {
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: #000;
    border: 1px solid #c5a059;
    /* ゴールド枠線 */
    border-radius: 3px;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.8),
        inset 0 0 6px rgba(0, 0, 0, 0.9);
    transition: all 0.2s ease;
}

/* 画像自体のフィット指定 */
.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

/* タグプレビューエリア */
.edit-tags-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    width: 100%;
}

/* 画像プレビューエリア */
.delete-images-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
    width: 100%;
}

/* フォーム入力行 */
.ff_input_row {
    margin-bottom: 16px;
}

/* 必須マーク */
.ff_required {
    color: #e57373;
    font-size: 0.85em;
    margin-left: 2px;
}

/* テキスト入力フィールド */
.ff_input_wrapper {
    margin-top: 6px;
    width: 100%;
}

.ff_input_text {
    width: 100%;
    max-width: 320px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #c5a059;
    /* ゴールド枠線 */
    border-radius: 3px;
    color: #f3e5ab;
    font-size: 15px;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease;
}

/* 入力欄フォーカス時 */
.ff_input_text:focus {
    border-color: #e5c178;
    background: rgba(0, 0, 0, 0.8);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(197, 160, 89, 0.5);
}

/* Captchaラッパー */
.ff_captcha_row {
    margin-top: 12px;
    margin-bottom: 20px;
}

.ff_captcha_wrapper {
    width: 100%;
}


/* ラベルと入力欄を左置き（横並び）にする設定 */
.ff_input_row {
    display: flex;
    align-items: center;
    /* 上下中央揃え */
    gap: 16px;
    /* ラベルと入力欄の間隔 */
    margin-bottom: 16px;
}

/* ラベル（メモキー）のテキスト色をゴールドに設定 */
.ff_input_row .bx_head {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    color: #c5a059;
    /* ゴールド */
    font-weight: bold;
}




















.badge-new {
    position: absolute;
    top: 0;
    right: 0;

    /* 深みのあるルビーレッドの縦グラデーション */
    background: linear-gradient(180deg, #b91c1c 0%, #7f1d1d 100%);

    /* ゴールド枠線（左と下のみで右上に綺麗に馴染ませる） */
    border-left: 1px solid #c5a059;
    border-bottom: 1px solid #c5a059;

    /* 薄い金色のテキストカラー */
    color: #f3e5ab;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-bottom-left-radius: 4px;
    z-index: 10;

    /* FF風のテキストシャドウと立体感のあるシャドウ */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    box-shadow:
        -2px 2px 6px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    font-family: "Cinzel", "Times New Roman", "Yu Mincho", "游明朝", serif;
}

.p-breadcrumb {
    background: rgba(13, 18, 29, 0.8) !important;
    border: 1px solid #4a5a73;
    padding: 8px 14px;
    border-radius: 3px;
}

/* リンク色（青白いシルバー） */
.p-breadcrumb a {
    color: #c9cbdb !important;
}

/* ホバー時（ゴールド） */
.p-breadcrumb a:hover {
    color: #c5a059 !important;
}

/* 現在地（薄いゴールド） */
.p-breadcrumb__item:last-child {
    color: #f3e5ab !important;
}




/* タグクラウド全体のラッパー */
.tag-cloud-wrapper {
    margin-top: 5px;
}

/* 開閉ボタン */
#btn_toggle_cloud,
#btn_toggle_subpanel {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: small;
    cursor: pointer;
    margin-bottom: 5px;
    transition: background 0.3s;
}

#btn_toggle_cloud:hover,
#btn_toggle_subpanel:hover {
    background: #444;
}

/* タグクラウド本体のコンテナ */
#tag-cloud-container {
    display: none;
    /* JSで制御 */
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    background: #1a1a1a;
    padding: 4px;
}

/* 各タグのアイテム（外枠） */
.tag-cloud-item {
    display: inline-block;
    margin: 4px;
}

/* タグボタンの基本スタイル */
.tag-search-btn.cloud-btn {
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-weight: bold;
    padding: 2px 2px;
}

/* ホバー時のちょっとした演出 */
.tag-search-btn.cloud-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* 件数表示の微調整 */
.tag-cloud-count {
    font-size: small;
    color: white;
    font-weight: normal;
}










/* キャプチャ画像自体の背景（またはまわり） */
.wpcf7-form-control {
    background-color: #ffffff !important;
}




