
@charset 'UTF-8';

/* キャンペーンページ用スタイル */

.campaign_inner ul {
    margin-bottom: 10px;
    font-size: 16px;
    padding: 1vw;
}

.campaign_inner li {
    margin-left: 15px;
}

h4:before {
    content: "◆";
}

/* キャンペーンバナー */
.campaign_banner {
    border: 2px solid #d4c9b0;
    border-top: 4px solid #A69776;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
    box-shadow: 
        0 4px 6px rgba(166, 151, 118, 0.15),
        0 1px 3px rgba(166, 151, 118, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.campaign_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A69776 0%, #C1B293 50%, #D3B462 100%);
    z-index: 1;
}

.campaign_banner:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 25px rgba(166, 151, 118, 0.25),
        0 10px 10px rgba(166, 151, 118, 0.15),
        0 0 0 1px rgba(166, 151, 118, 0.2);
    border-color: #A69776;
}

.campaign_banner_name {
    padding: 18px 25px;
    background: linear-gradient(135deg, #A69776 0%, #C1B293 50%, #D3B462 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.campaign_banner_name::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.campaign_banner_image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.campaign_banner:hover .campaign_banner_image {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.campaign_banner_link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.campaign_banner_link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.campaign_banner_link:hover::after {
    background: rgba(102, 126, 234, 0.1);
}

.campaign_banner_description {
    padding: 20px 25px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    border-top: 1px solid #e8e8e8;
    position: relative;
}

.campaign_banner_description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #A69776 0%, #C1B293 100%);
}

/* SP版 */
@media screen and (max-width: 992px) {
    .campaign_section {
        margin-bottom: 10px;
    }
    
    .campaign_inner h4 {
        padding: 10px;
        font-weight: bold;
        font-size: 1.4rem;
    }

    .campaign_inner ul {
        padding: 10px;
    }
    
    .title_label {
        font-size: 1.2rem;
        margin-left: 10px !important;
        padding-left: 45px !important;
        line-height: 40px;
        background: url(../images/guide/tit_icn.png) no-repeat;
    }
    
    .emphasis_char {
        text-decoration: underline;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 10px;
        padding: 5px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .emphasis_char2 {
        font-weight: bold;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .w_circle li:before {
        content: "◆";
        font-size: 16px;
    }
    
    .w_circle li {
        text-align: left;
        margin-left: 0px;
    }
    
    .line_image {
        margin-bottom: 10px;
        background: url(../images/guide/line_dot.png) repeat-x bottom;
        padding-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .caution_box {
        padding: 10px;
    }
    
    .campaign_banner {
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .campaign_banner_name {
        padding: 15px 18px;
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }
    
    .campaign_banner_description {
        padding: 15px 18px;
        font-size: 0.9rem;
        line-height: 1.7;
        padding-left: 22px;
    }
    
    .campaign_banner_description::before {
        width: 3px;
    }
}

/* PC版 */
@media screen and (min-width: 992px) {
    .campaign_section {
        margin-bottom: 5rem !important;
    }
    
    .campaign_inner h4 {
        background: #9bd3ff;
        padding: 10px;
        font-weight: bold;
        font-size: 1.4rem;
    }

    .campaign_box {
        display: flex;
        flex-wrap: wrap;
        gap: 0px 21px;
        justify-content: center;
    }
    
    .campaign_inner {
        width: 48%;
        display: block;
        border: solid 8px #9bd3ff;
        margin-bottom: 20px;
    }
    
    .pc-w-96 {
        width: 98.2% !important;
    }
    
    .title_label {
        background-color: #C2B288 !important;
        text-align: left;
        color: white !important;
        padding: 12px 0 12px 24px !important;
        margin-bottom: 10px !important;
        font-size: 1.2rem;
    }
    
    .emphasis_char {
        text-decoration: underline;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 10px;
        padding: 5px;
    }
    
    .emphasis_char2 {
        text-decoration: underline;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 10px;
        margin-left: 40px;
    }
    
    .w_circle li:before {
        content: "◆";
        font-size: 16px;
    }
    
    .w_circle li {
        margin-left: 0px;
        padding: 0 1vw 0 1vw;
    }
    
    .w_circle {
        background-color: white;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .caution_box {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .line_image {
        margin-bottom: 2rem;
        background: url(../images/guide/line_dot.png) repeat-x bottom;
        padding-bottom: 20px;
    }
    
    .campaign_banner {
        margin-bottom: 3rem;
        border-radius: 15px;
    }
    
    .campaign_banner_name {
        padding: 22px 30px;
        font-size: 1.3rem;
        letter-spacing: 0.8px;
    }
    
    .campaign_banner_description {
        padding: 25px 30px;
        font-size: 1.05rem;
        line-height: 2;
        padding-left: 38px;
    }
    
    .campaign_banner_description::before {
        width: 5px;
    }
}
