/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2026 | 12:13:23 */
/* --- 香LIG・パフュームカード（アニメーション・完全版） --- */
.apple-perfume-card {
    background: #ffffff;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", sans-serif;
    /* ふんわり浮き上がる影 */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    /* カード自体のフェードイン */
    animation: card-fade-in 0.8s ease-out forwards;
}

/* ヘッダーエリア */
.apc-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f5f7;
    padding-bottom: 15px;
}

/* 商品名（洗練されたデザイン） */
.apple-perfume-card .apc-name {
    /* テーマの標準スタイルをリセット */
    border: none !important;
    background: none !important;
    padding: 0 0 12px 0 !important;
    margin: 0 0 16px 0 !important;
    
    /* 文字デザイン */
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.4;
    letter-spacing: 0.04em;
    position: relative;
}

/* 商品名の下線（ブランドカラー） */
.apple-perfume-card .apc-name::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
}

/* タグエリア */
.apc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.apc-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #fbfbfd;
    color: #424245;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #e5e5ea;
}

/* チャートエリア */
.apc-body { display: flex; flex-direction: column; gap: 14px; }
.apc-meter-row { width: 100%; }

/* ラベルと数値 */
.apc-label-group {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    font-size: 13px;
}
.apc-label { font-weight: 600; color: #86868b; }
.apc-value { font-weight: 700; color: #1d1d1f; font-feature-settings: "tnum"; }

/* バーの背景 */
.apc-bar-bg {
    width: 100%;
    height: 8px;
    background: #f0f0f5;
    border-radius: 4px;
    overflow: hidden;
    /* 角丸をきれいに見せるため */
    mask-image: -webkit-radial-gradient(white, black); 
}

/* ★アニメーションするバー本体 */
.apc-bar-fill {
    height: 100%;
    border-radius: 4px;
    /* ブランドカラー */
    background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
    
    /* --- アニメーション設定 --- */
    /* 最初は幅0（max-widthで制御）からスタート */
    max-width: 0%;
    /* 2秒かけてゆっくり伸びる（Apple風の緩急：最初は速く、最後はゆっくり） */
    animation: flow-bar 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* --- キーフレーム（動きの定義） --- */
@keyframes flow-bar {
    0% {
        max-width: 0%;
    }
    100% {
        max-width: 100%; /* インラインスタイルのwidthまで伸びる */
    }
}

@keyframes card-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}