@charset “UTF-8”;

/*-------------------------------------------------------------------------------

 index

-------------------------------------------------------------------------------*/

/* cover
----------------------------------------------------------- */

.fs-c-slick .slick-dots {
    gap: 12px;
}
.fs-c-slick .slick-dots li {
    margin: 0;
}
.fs-body-top .fs-c-slick .slick-dots li button {
    width: 12px;
    height: 12px;
}
.fs-body-top .fs-c-slick .slick-dots li button::before {
    width: 12px;
    height: 12px;
    color: var(--color-gray-300);
    font-size: 1.2rem;
    opacity: 1;
}
.fs-body-top .fs-c-slick .slick-dots li.slick-active button:before {
    color: var(--color-secondary);
    opacity: 1;
}


/* holiday-info
----------------------------------------------------------- */

.holiday-info {
    margin-bottom: 30px;
    padding: 15px 20px;
    border: 1px solid var(--color-gray-300);
}
.holiday-info h2 {
    color: var(--color-primary);
}

@media only screen and (min-width: 768px) {
    .holiday-info {
        padding: 20px 30px;
        font-size: 1.7rem;
    }
}


/* Futureshop 任意商品パーツ上書き
----------------------------------------------------------- */

.fs-body-top .fs-c-productListItem__productDescription {
    margin-bottom: 0;
    font-size: min(1.4rem,3vw);
}
.fs-body-top .fs-c-productListItem__control {
    display: none;
}



/* Futureshop お知らせパーツ上書き
----------------------------------------------------------- */

.infomation .fs-p-dateList > li {
    border: none;
    padding: 0;
}
.infomation .fs-p-dateList a {
    text-decoration: none;
}
.infomation .fs-p-dateList > li time:first-child {
    display: block;
    padding: 0;
    background: none;
    color: var(--color-gray-600);
    font-weight: 600;
}
.infomation .fs-p-dateList > li time:first-child + * {
    display: none;
}

@media only screen and (min-width: 768px) {
    .infomation .fs-p-dateList > li {
        position: relative;
        padding-left: 9em;
    }
    .infomation .fs-p-dateList > li time:first-child {
        position: absolute;
        top: .25em;
        left: 0;
    }
}


/* categories
----------------------------------------------------------- */

.categories__title {
    margin-bottom: 10px;
	font-size: min(2rem,5vw);
    font-weight: 600;
}
.categories__body {
    display: flex;
    gap: 10px;
    padding: 15px;
    border: 5px solid var(--color-gray-300);
    font-size: 1.4rem;
}
.categories__col {
    width: calc((100% - 10px * 3) / 4);
}
.categories__list a {
    display: block;
    text-decoration: none;
}

.categories__list dt {
    margin-bottom: 8px;
}
.categories__list dd + dt {
    margin-top: 10px;
}
.categories__list dt a {
    padding: 4px 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    text-align: center;
}
.categories__list dd a {
    position: relative;
    padding: 4px 0;
    padding-left: 1em;
    line-height: 1.2;
}
.categories__list dd a::before {
	position: absolute;
	content: '';
	top: 9px;
	left: 0;
	display: block;
	width: 5px;
	height: 6px;
	background: url("data:image/svg+xml,%3Csvg width='5' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0 6.001v-6l4.1 3z' fill='%234b4b4b' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat center / contain;
}