/* バナーリンク全体 */
.banner_wrap {
    width: 94%;
    max-width: 840px;
    margin: 40px auto ;
}
.banner-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 116, 95, 0.15);
}

/* バナーコンテナ */
.banner-container {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: url(../img/section-obj-leaf_pc.png);
    background-position: 500% 20%;
    background-size: cover;
    background-color: #ebe9e5;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-link:hover .banner-container {
    background-color: #ebe9e5;
}

/* 斜めの背景 */
.banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 60%;
    background-color: #d6cbb8;
    clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
    transition: background-color 0.3s ease;
}

.banner-link:hover .banner-bg {
    background-color: #c9bdaa;
}

/* テキスト */
.banner-text {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: #81745f;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.8;
    text-align: center;
    transition: color 0.3s ease;
}

.banner-link:hover .banner-text {
    filter: blur(1px); /* ホバー時に2pxぼかす */
  text-shadow: 0 0 5px rgba(0,0,0,0.5); /* 影でぼかしを強調 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hide_sp {
        display: none;
    }
    .banner-container {
        height: auto;
        min-height: 100px;
    }
    
    .banner-text {
        font-size: 1.8rem;
        padding: 30px 20px;
        letter-spacing: 0.05em;
    }
    
    .banner-bg {
        right: 60%;
        clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
    }
}

@media (max-width: 480px) {
    .banner_wrap {
    margin: 20px auto ;
}
}

@media (min-width: 1001px) {
    .p-special-page__strength .strength-list {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    .container:has(.item:nth-child(3)) {
        justify-content: space-between;
        gap: 0;
    }
    .p-guide__campaign .campaign-price-wrap {
        display: grid;
        gap: 15px;
        justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .c-page-menu ul {
        justify-content: center;
    }
}