/* 全体 */
:root {
    --title-xl: 3rem;
    --text-xl:1.4rem;
    --text-xs: 1rem;
    --font-ja: 'Noto Serif JP', serif;
    --color-main: #433C3B;
}
#speacialSection {
    color: var(--color-main);
    letter-spacing: 0.075em;
}
#Wrap_lower.onlyDefault,
#Contents {
    margin: 0;
    padding: 0;
}
@media (max-width: 768px) {
    :root {
        --title-xl: 4.2rem;
        --text-xl: 2.4rem;
    }
}

/* mv */
.special_area_mv img {
    width: 100%;
}
.special_area_ttl {
    width: 120rem;
    margin: 0 auto;
    padding: 7rem 3rem
}

.speacial_main_ttl {
    font-family: var(--font-ja);
    font-size: var(--title-xl);
    font-weight: normal;
    color: #7E6A5F;
    text-align: center;
}
.special_main_desc{
    font-family: var(--font-ja);
    font-size: var(--text-xl);
    color: var(--color-main);
    letter-spacing: 0.075em;
    line-height: 2.14286;
    padding-top: 5rem;
}
.special_main_desc > a {
    border-bottom: 1px solid #7E6A5F;
}
@media (max-width: 768px) {
    .special_area_ttl {
        width: 100%;
    }
}

/* セクション */
.special_area_sec {
    padding: 7rem 0;
    width: 100%;
}

.special_area_sec:nth-child(odd) {
  background-color: #FAF9F7;
}

.special_area_sec_inner {
    width: 120rem;
    margin: 0 auto;
    padding: 0 7rem;
}
.special_area_sec_inner--min {
    width: 80rem;
    margin: 0 auto;
}

.main_ttl .font-en {
    font-weight: normal;
    font-size: var(--title-xl);
    color: #7E6A5F;
}

.main_ttl .font-ja {
    display: block;
    margin-top: 1rem;
    font-size: var(--title-xs);
    color: var(--color-silver);
}

@media (max-width: 768px) {
    .special_area_sec{
        padding: 7rem 3rem;
    }
    .special_area_sec_inner,
    .special_area_sec_inner--min {
        width: 100%;
        padding: 0;
    }
}
/* カード */
#speacialSection .card_unit {
    display: flex;
    gap: 5.4rem;
}
#speacialSection .card_item {
    flex:0 0 calc((100% - (5.4rem * 3)) / 4);
    min-width: 0;
    box-sizing: border-box;
}

#speacialSection .card_item img { 
    width: 100%;
    height: auto;
}

#speacialSection .card_item .nomarl_price {
    text-align: center;
}
#speacialSection .main_ttl {
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
}
@media (max-width: 768px) {
    #speacialSection .card_unit {
        flex-wrap: wrap;
        gap: 3rem;
    }
    #speacialSection .card_item {
        flex: 0 0 calc(50% - 1.5rem);
    }
    .special_area_sec .card_item:nth-child(-n+2) {
        margin-bottom: 4.2rem;
    }
    #speacialSection .main_ttl {
        letter-spacing: 0.15em;
        margin-bottom: 5.7rem;
    }
}

/* ボタン */
.special_btn {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20rem;
    font-size: var(--text-xl);
    line-height: 1;
    transition: var(--transition-default);
    position: relative;
    border: none;
    border-top: 1px solid var(--color-bd);
    border-bottom: 1px solid var(--color-bd);
    height: 5rem;
    font-family: var(--font-en-serif);
    color: #7E6A5F;
    overflow: visible;
    margin: 5rem auto 0;
}
.special_btn::after {
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 0.4rem;
    height: 0.8rem;
    background-image: url(../../Contents/ImagesPkg/top/ponte/btn_bd_arrow.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}

.special_btn:hover {
    opacity: 1;
}
    

@media (min-width: 769px) {
    .special_btn::before {
        content: '';
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        border-top: 1px solid #c7b7ae;
        border-bottom: 1px solid #c7b7ae;
        width: 0;
        height: 5rem;
        background-color: transparent;
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }
    .special_btn:hover::before {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .special_btn {
        width: 40rem;
        margin: 7rem auto 0;
        height: 10rem;
        font-size: 3rem;
    }
    .special_btn::after {
        content: '';
        right: 4rem;
        width: 1rem;
        height: 1.8rem;
    }
}


/* 記事 */
.product_posts_lst {
    display: flex;
    gap: 5.4rem;
}
.product_posts_item {
    flex: 0 0 calc((100% - (5.4rem * 2)) / 3);
}
@media (max-width: 768px) {
    .product_posts_lst {
        flex-direction: column;
    }
    .product_posts_item {
        width: 100%;
    }
}

/* GIFT */
h4.ttl_g_counter_none+p{
    margin-top: 15px;
    line-height: 1.75;
}
.special_area_sec_txt {
    font-size: var(--text-xl);
    letter-spacing: 0.075em;
    line-height: 1.75;
}

.special_area_sec_txt >a {
    border-bottom: 1px solid #7E6A5F;
}