.anchor-link-search {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1rem 1rem 0 1rem;
}

/* --- 外枠カード --- */
.anchor-link-search-card {
    padding: 12px 0px;
    border: 3px solid #e60012;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    font-size: 28px;
    font-weight: bold;
    width: 30%;
}

/* --- バッグ画像の重なり --- */
.anchor-link-search-images {
    position: relative;
    height: 150px;
    margin-bottom: 12px;
}

.anchor-link-search-images img {
    position: absolute;
    max-height: 100%;
    max-width: 64%;
    object-fit: contain;
}

.anchor-link-search-images img:nth-child(1) {
    left: 6%;
    top: 0;
    z-index: 1;
}

.anchor-link-search-images img:nth-child(2) {
    right: 6%;
    top: 12px;
    z-index: 2;
}

.anchor-link-search-images img:nth-child(3) {
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    z-index: 3;
}

/* --- 見出しの色付け --- */
.anchor-link-search-title span.accent {
    color: #e60012;
}

/* --- 下矢印ボタン（疑似要素） --- */
.anchor-link-search-arrow {
    margin: 18px auto 0;
    width: 32px;
    height: 32px;
    background: #e60012;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: block;
}

.anchor-link-search-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -65%) rotate(45deg);
}

.anchor-link-search-card:hover {
    opacity: 0.6;
    transition: opacity 0.2s;
}

/* SP版 */
@media (max-width: 767px) {
    .anchor-link-search {
        gap: 6px;
    }

    .anchor-link-search-card {
        font-size: 16px;
        width: 45%;
    }

    .anchor-link-search-arrow {
        width: 24px;
        height: 24px;
        margin: 6px auto 0;
    }

    .anchor-link-search-arrow::before {
        width: 10px;
        height: 10px;
    }
}
