/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2026 | 12:13:44 */
/* Appleライクなリストデザイン（フォント小さめ・日本語版） */
.apple-list-container {
    border-top: 1px solid #e5e5e5;
    /* Apple製品で使われるシステムフォント優先 */
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, sans-serif;
}

.al-item {
    display: block;
    padding: 14px 0; /* 余白を少し詰めて一覧性を向上 */
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none !important;
    color: #1d1d1f;
    transition: background-color 0.2s ease;
    position: relative;
    padding-right: 20px;
}

.al-item:hover {
    background-color: transparent;
}
.al-item:hover .al-title {
    color: #0071e3; /* Apple Blue */
}
.al-item:hover .al-arrow::after {
    border-color: #0071e3;
}

/* メタ情報（ラベルと日付） */
.al-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    font-size: 11px; /* 小さく控えめに */
    letter-spacing: 0.03em;
    color: #86868b;
}

/* ラベルデザイン */
.al-label {
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    line-height: 1.4;
}
/* 執筆（Author） */
.label-auth { 
    color: #86868b; 
    border: 1px solid #c7c7cc;
} 
/* 監修（Supervisor） */
.label-sup { 
    color: #bf4800; /* シックなオレンジ */
    border: 1px solid #bf4800;
    background-color: rgba(191, 72, 0, 0.05); /* ほんのり背景色 */
}

/* 記事タイトル（サイズ変更箇所） */
.al-title {
    font-size: 14px; /* 16pxから14pxへ縮小 */
    font-weight: 400; /* 太さを標準に戻し、スッキリさせる */
    line-height: 1.6;
    margin: 0;
    color: #1d1d1f;
    transition: color 0.2s;
}

/* 矢印（>） */
.al-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.al-arrow::after {
    content: '';
    display: block;
    width: 5px; /* 少し小さく */
    height: 5px;
    border-top: 1px solid #c7c7cc; /* 線を細く */
    border-right: 1px solid #c7c7cc;
    transform: rotate(45deg);
    transition: border-color 0.2s;
}

/* スマホ表示 */
@media (max-width: 768px) {
    .al-title {
        font-size: 13.5px; /* スマホではさらに微調整 */
    }
}