section.bg {
    position: relative;
}
section.bg:after {
    content: "";
    width: 100vw;
    height: 100%;
    background: #fff9f5;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.marker {
    background:linear-gradient(transparent 70%, lightpink 60%);
    background-repeat: no-repeat;
  background-size: 0% 100%;
  transition:background-size 1.5s;
}

/* top */
#intro .inner {
    padding: 5rem calc(4% + 5px); 
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}
#intro .txt-wrap {
    margin-bottom: 5rem;
    position: relative; 
}
#intro .txt-wrap:before,
#intro .txt-wrap:after {
    content: "";
    position: absolute;
}
#intro .txt-wrap:before {
    width: 6rem;
    height: 6rem;
    top: 1rem;
    right: -1rem;
    background: url(https://kanmi.itembox.cloud/item/lp/2025gift/img/present02.png) 0 / contain no-repeat;
}
#intro .txt-wrap:after {
    width: 6rem;
    height: 6rem;
    top: -4rem;
    left: 1rem;
    background: url(https://kanmi.itembox.cloud/item/lp/2025gift/img/present01.png) 0 / contain no-repeat;
}
#intro .top-ttl {
    font-size: 2.1rem;
    line-height: 2;
    letter-spacing: 0;
    margin-bottom: 2rem;
}
#intro .txt-wrap .txt {
    margin: 1rem 0;
}
#intro .item-wrap {
    background-color: #fff;
    padding: 2rem;
    margin-top: 5rem;
}
#intro .item-wrap .ttl {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}
#intro .item-wrap .item-ttl {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 2rem;
}
#intro .item-wrap .item-price {
    font-size: 1.3rem;
}

@media only screen and (min-width: 769px) {
    #intro .inner {
        max-width: 1200px;
        margin: 2rem auto 0;
        display: grid;
        grid-template-columns: 47% 50%;
        grid-template-rows: auto 1fr;
        column-gap: 3%;
        row-gap: 5rem;
    }
    #intro .txt-wrap {
        grid-area: 1 / 1;
        margin-bottom: 0;
    }
    #intro .txt-wrap:before {
        right: -2rem;
        top: 100%;
    }
    #intro .txt-wrap:after {
        top: -1rem;
        left: 0;
    }
    #intro .img-wrap {
        grid-area: 1 / 2 / 3 / 2;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        column-gap: 2rem;
        margin-top: 5rem;
    }
    #intro .img-wrap figure:nth-child(1) {
        order: 2;
    }
    #intro .img-wrap figure:nth-child(2) {
        order: 1;
        margin-top: 10rem;
    }
    #intro .item-wrap {
        grid-area: 2 / 1 / 3 / 2;
        padding: 4rem;
    }
}

/* pickup */
#pickup {
    margin-top: 0;
}
#pickup .inner {
    padding: 5rem calc(4% + 5px);
}
#pickup .top-ttl {
    font-size: 2.1rem;
    line-height: 2;
    text-align: center;
    margin-bottom: 2rem;
}
#pickup .txt-wrap .txt {
    text-align: center;
}
#pickup .item-wrap {
    background-color: #f5f5f5;
    margin: 5rem 0;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 35% 60%;
    column-gap: 5%;
    align-items: center;
}
#pickup .item-wrap .item-ttl {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
}
#pickup .item-wrap .item-price {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
#pickup .item-wrap .info-wrap span {
    display: block;
    background-color: darkred;
    border-radius: 3rem;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: .5rem;
}
#pickup .movie-wrap div {
    margin: auto;
}
#pickup .img-wrap {
    display: flex;
    justify-content: center;
    column-gap: 3px;
    margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
    #pickup .inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 47% 50%;
        align-items: center;
    }
    #pickup .txt-wrap {
        grid-area: 1 / 2;
    }
    #pickup .movie-wrap {
        grid-area: 1 / 1;
    }
    #pickup .top-ttl {
        margin-top: 0;
    }
    #pickup .item-wrap {
        padding: 3rem;
        margin-bottom: 0;
    }
    #pickup .img-wrap {
        max-width: 1200px;
        margin: auto;
    }
}

/* voice */
#voice .inner {
    padding: 5rem calc(4% + 5px); 
    position: relative;
    z-index: 2;
}
#voice .top-ttl {
    font-size: 2.1rem;
    line-height: 2;
    text-align: center;
}
#voice .voice-wrap .review-wrap {
    background-color: linen;
    margin: 4rem 0 0;
    padding: 3rem;   
}
#voice .voice-wrap .item-price {
    font-size: 1.3rem;
}
#voice .review-top {
    display: grid;
    grid-template-columns: 25% 70%;
    column-gap: 5%;
    align-items: center;
}
#voice .user-wrap {
    text-align: center;
}
#voice .user-wrap img {
    border-radius: 50%;
}
#voice .user-wrap .user-name {
    margin: 1rem 0;
    font-size: 1.2rem;
    display: block;
}
#voice .voice-wrap .item-ttl {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 1rem 0;
}
#voice .voice-wrap .img img {
    margin: 2rem 0;
    aspect-ratio: 1 /1;
    object-fit: cover;
}
@media only screen and (min-width: 769px) {
    #voice .inner {
        max-width: 1200px;
        margin: 5rem auto;
        padding: 5rem 0;
    }
    #voice .voice-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        column-gap: 2rem;
    }
    #voice .voice-wrap .review-wrap {
        padding: 3rem 2rem;
    }
}

/* campaign */
#campaign .inner {
    background-color: #fffcef;
    padding: 5rem calc(4% + 5px); 
}
#campaign .top-ttl {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2;
    text-align: center;
}
#campaign .inner > .txt-wrap {
    text-align: center;
    margin-bottom: 5rem;
}
@media only screen and (min-width: 769px) {
    #campaign .inner {
        max-width: 1200px;
        margin: 5rem auto;
    }
}


.gift .gift-list {
    display: grid;
    row-gap: 4rem;
    margin-top: 3rem;
    background-color: #fff;
    padding: 3rem;
    text-align: center;
}
.gift .subttl {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ff88a1;
}
.gift .ttl {
    font-size: 2.1rem;
    font-weight: 600;
    margin: 1rem 0;
}
.gift figure img {
    margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
    .gift .gift-list li:first-child {
        padding-bottom: 3rem;
        border-bottom: 1px dotted #ff88a1;
    }
}
@media only screen and (min-width: 769px) {
    .gift .gift-ttl + .txt {
        text-align: center;
    }
    .gift .gift-list {
        max-width: 1200px;
        margin: 3rem auto 5rem;
        grid-template-columns: repeat(2,1fr);
        align-items: center;
    }
    .gift .gift-list li {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        column-gap: 3rem;
        padding: 0; 
        align-items: center;
    }
    .gift .gift-list li:first-child {
        padding-right: 3rem;
    }
    .gift .gift-list li:last-child {
        padding-left: 3rem;
        border-left: 1px dotted #ff88a1;
    }
    .gift .ttl {
        font-size: 1.8rem;
    }
    .gift figure img {
        margin-bottom: 0;
    }
    .gift .lp-btn {
        margin: 2rem 0 0;
    }
}


.category_section .container .header_area .number img {
    filter: invert(15%) sepia(95%) saturate(6932%) hue-rotate(358deg) brightness(95%) contrast(112%);
}

/* item slider */
.lp-slide .slick-slide img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.lp-slide .slick-prev,
.lp-slide .slick-next {
  width: 50px;
  height: 50px;
  z-index: 3;
}

.lp-slide .slick-prev {
  left: -2rem;
}

.lp-slide .slick-next {
  right: -2rem;
}

.lp-slide .slick-prev::before,
.lp-slide .slick-next::before {
  display: none;
}
.lp-slide .slick-prev:hover,
.lp-slide .slick-prev {
  background: url(https://kanmi.itembox.cloud/item/common/i-slide_prev.svg) no-repeat center center !important;
}
.lp-slide .slick-next:hover, 
.lp-slide .slick-next {
    background: url(https://kanmi.itembox.cloud/item/common/i-slide_next.svg) no-repeat center center !important;
}