.pop_area h3 {
    margin-bottom: 2rem; /* タイトルと最初の記事の間に余白 */
    color: #4d4d4d;
}

.wpp-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpp-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc; /* ← 区切り線 */
}

.wpp-item:last-child {
    border-bottom: none;
}

.wpp-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.wpp-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* 広告エリアの囲い */
.adv_area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* バナー間の余白 */
}

/* バナー画像を囲む */
.adv-img {
    text-align: center;
}

/* バナー画像そのもの */
.adv-img img {
    max-width: 80%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* hover時に少し拡大する */
.adv-img a:hover img {
    transform: scale(1.03);
}
