@charset "utf-8";
/* CSS Document */

.lp_wrap h2 {
    font-family: 'Noto Sans JP';
    text-align: start;
    cursor: default;
}



/* PRODUCT TABLE */
.product_table {
    width: 100%;
    padding: 10px 0 100px;
    overflow: hidden;
}

/* Tab */
.product_table ul.tab {
    width: 190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}
.product_table ul.tab li {
    width: 60px;
    height: 60px;
    filter: brightness(0.7);
}
.product_table ul.tab li.active {
    filter: brightness(1);
    position: relative;
}
.product_table ul.tab li.active::before {
    content: '';
    width: 64px;
    height: 64px;
    border: 2px solid #ffc72c;
    position: absolute;
    top: -2px;
    left: -2px;
}

.tab_content {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
    position: relative;
}
.tab_content.is-active {
    display: block;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


/* Slide show */
.product_table_wrap {
    width: 100%;
    margin: 10px auto 0;
    /* margin: -100px auto 0;
    position: relative;
    z-index: 5; */

    position: relative;
}
.product_wrapper {
    width: 96%;
    margin: 0 auto;
}
.swiper-wrapper {
    display: inline-flex;
}

.swiperMain .sp-zoom img {
    width: 100%;
    margin: -80px 0 0;
}


.swiperThumbnail .swiper-wrapper {
    transform: translate3d(0px, 2px, 0px) !important;
    display: flex;
    justify-content: center;
}

.swiperMain .swiper-slide-next,
.swiperMain .swiper-slide-prev {
    opacity: 0;
}
.swiperThumbnail .swiper-wrapper .swiper-slide {
    width: 20vw !important;
    height: auto !important;
    margin: 4px !important;
    position: relative;
}
.swiperThumbnail .swiper-wrapper .swiper-slide img {
    width: 11vw;
    height: auto;
}
.swiperThumbnail .swiper-slide-thumb-active::after {
    content: '';
    width: 12vw;
    height: 12vw;
    border: 1px solid #ffc72c;
    border-radius: 2px;
    position: absolute;
    top: -0.5vw;
    left: -0.5vw;
    z-index: 1;
}

.swiper-button-prev, .swiper-button-next {
    /* width: 26px;
    height: 40px;
    margin: 0 !important;
    mask-image: url(/sp/886/img/slide_arrow.svg);
    background-color: #c2c2c2;
    display: block;
    position: absolute !important;
    transition: all 0.2s; */
    display: none;
}
/* .swiper-button-prev {
    top: 12.6%;
    left: 0;
    transform: translateY(100%) rotate(180deg);
}
.swiper-button-next {
    top: 16%;
    left: 93%;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: #808080;
    transition: all 0.2s;
} */

.content {
    width: 96%;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
}
.content_wrap {
    width: 100%;
    order: 2;
}
#lp_cart {
    width: 100%;
    order: 1;
    margin: 0 0 30px;
}
.content_wrap ul.hashtag {
    margin: 0 0 50px;
    display: flex;
}
.content_wrap ul.hashtag li {
    margin: 0 0 0 6px;
    padding: 4px 20px;
    font-size: 14px;
    /* font-weight: bold; */
    text-align: center;
    background-color: #d1d1cf;
    border-radius: 6px;
}


.product {
    background-color: #f8f8f8;
    position: relative;
}
/* .product::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
} */

.product ul li:nth-child(2n) {
    background-color: #fff;
}


#lp_cart button:nth-child(2) {
    background-image: url(https://www.coinpalace.jp/common/img/cart_back.gif) !important;
    background-repeat: repeat-x !important;
    background-color: #f0c14c !important;
}
#lp_cart button:nth-child(3) {
    background-image: url(https://www.coinpalace.jp/common/img/fav_back.gif);
    background-repeat: repeat-x !important;
    background-color: #e8eaed !important;
}
#lp_cart .btn_area ul li button:nth-child(1) {
    background-color: #fff  !important;
    border: 1px solid #8d9096  !important;
    font-size: 12px  !important;
    display: block  !important;
    padding: 10px 10px  !important;
    width: 95% !important;
    border-radius: 5px  !important;
    -moz-border-radius: 5px  !important; 
    -webkit-border-radius: 5px  !important;
    margin: 0px auto  !important;
    clear: both  !important;
}