/*
------------------------------------------------
商品詳細
------------------------------------------------*/

#product .pr-main {
    overflow: hidden;
    margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
    #product .pr-main {
      margin-bottom: 30px;
    }
}

#product .pr-main #item_photo_area {
    float: left;
    width: 50%;
    margin-bottom: 20px;
}
#product .pr-main #item_photo_area .slides li img {
    object-fit: cover;
    max-height: 500px;
}
@media screen and (max-width: 960px) {
    #product .pr-main #item_photo_area .slides li img {
        max-height: 300px;
    }
}
#product .pr-main #item_photo_area .slick-track li {
    padding-right: 10px;
}
#product .pr-main #item_photo_area .slick-dots {
    padding-left: 16px;
}
#product .pr-main #item_photo_area .slick-dots li {
    box-sizing: border-box;
    padding-right: 10px;
    padding-top: 10px;
}
@media screen and (max-width: 600px) {
    #product .pr-main #item_photo_area {
        float: none;
        width: 100%;
        margin-bottom: 0;
    }
    #product .pr-main #item_photo_area .slick-track li {
        padding: 0;
    }
    #product .pr-main #item_photo_area .slick-dots {
        padding-left: 0;
    }
    #product .pr-main #item_photo_area .slick-dots li {
        padding-right: 0;
        padding-top: 0;
    }
}

#product .pr-main #item_info {
    float: right;
    width: 47%;
}
#product .pr-main #item_info h2 {
    font-size: 2.4rem;
}
#product .pr-main #item_info .model {
    font-size: 1.6rem;
    margin: 10px 0 5px;
}
#product .pr-main #item_info .price-area {
    padding-top: 10px;
    margin-bottom: 25px;
}
#product .pr-main #item_info .price-area .regular-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.6rem;
}
#product .pr-main #item_info .price-area .before-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.6rem;
}
#product .pr-main #item_info .price-area .price {
    font-size: 3.0rem;
}
#product .pr-main #item_info .price-area .discount-rate  {
    display: inline-block;
    margin-top: 3px;
    font-size: 1.6rem;
    background-color: #8B0103;
    color: #FFF;
    padding: 3px 15px;
}
#product .pr-main #item_info .prduct-option {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
#product .pr-main #item_info .prduct-option > div {
    width: 48%;
}
#product .pr-main #item_info .product-order {
}
#product .pr-main #item_info .product-order .product-num {
    border: 1px solid #666;
    display: inline-block;
    padding: 10px 0;
    margin-bottom: 20px;
}
#product .pr-main #item_info .product-order .product-num .btn {
    border: none;
    background-color: #FFF;
}
#product .pr-main #item_info .product-order .product-num input {
    border: none;
    text-align: center;
    width: 100px;
}
#product .pr-main #item_info .disable_cartin {
}
#product .pr-main #item_info .disable_cartin .btn-addcart {
    background-color: #123159;
    color: #FFF;
    border-radius: 3px;
    border: none;
    width: 60%;
    padding: 17px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#product .pr-main #item_info .product-info-link {
    margin-bottom: 20px;    
}
#product .pr-main #item_info .product-info-link li {
}

@media screen and (max-width: 960px) {
    #product .pr-main #item_info {
        float: none;
        width: 100%;
        padding-top: 15px;
    }
    #product .pr-main #item_info h2 {
        font-size: 1.8rem;
    }
    #product .pr-main #item_info .model {
        font-size: 1.4rem;
        margin: 5px 0;
    }
    #product .pr-main #item_info .price-area {
        padding-top: 5px;
        margin-bottom: 10px;
    }
    #product .pr-main #item_info .price-area .regular-price {
        font-size: 1.4rem;
    }
    #product .pr-main #item_info .price-area .before-price {
        font-size: 1.4rem;
    }
    #product .pr-main #item_info .price-area .price {
        font-size: 2.2rem;
    }
    #product .pr-main #item_info .price-area .discount-rate  {
        font-size: 1.4rem;
        padding: 3px 10px;
    }
    #product .pr-main #item_info .prduct-option {
        display: block;
    }
    #product .pr-main #item_info .prduct-option > div {
        width: 100%;
    }
    #product .pr-main #item_info .disable_cartin .btn-addcart {
        width: 100%;
    }
}


/*
------------------------------------------------
商品詳細　スライド
------------------------------------------------*/

/* Arrow */
.slick_prev,
.slick_next {
	font-size: 18px;
	font-size: 1.8rem;
	width: 40px; height: 40px;
	line-height: 40px;
}

/* Dots */
.slick-slider {
}

.slick-dots {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    list-style: none;
}
.slick-dots li {
    position: relative;
    display: flex;
    align-items:flex-end;
    width: 20px;
    height: 20px;
    margin: 0 3px;
    padding: 0;
  
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
	content:" ";
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    text-align: center;
    opacity: .25;
    background-color: black;
	border-radius: 50%;

}
.slick-dots li.slick-active button:before {
    opacity: .75;
    background-color: black;
}

.slick-dots li button.thumbnail img {
	width: 0; height: 0;
}

#item_photo_area .slick-slide {
	text-align: center;
}
#item_photo_area .slick-slide img {
	display: inline-block;
}
@media only screen and (min-width: 960px) {
    
    #item_photo_area {
    }
    
	#item_photo_area .slick-dots {
        box-sizing: border-box;
		margin: 0 !important;
        padding: 0 10px 0 0 !important;
		position: relative;
		bottom: 0;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
	}
	#item_photo_area .slick-dots::after {
		content: "";
		display: table;
		clear: both;
	}

	#item_photo_area .slick-dots li {
        box-sizing: content-box !important;
        margin: 0 !important;
        padding-right: 0 !important;
        height: auto;
        width: 18%;
        padding-left: 2.5% !important;
        /*
		width: 20%; 
        height: auto;
		margin: 0;&#223;
		float: left;*/
	}
    #item_photo_area .slick-dots li:nth-child(5n+1) {
        padding-left: 0 !important;
    }

	.slick-dots li button.thumbnail {
		width: 100%; height: auto;
		padding: 0;
	}
	.slick-dots li button.thumbnail img {
		width: 100%; height: auto;
		opacity: 0.8;
	}
	.slick-dots li button.thumbnail:hover img,
	.slick-dots li.slick-active button.thumbnail img {
		opacity: 1;
	}
	.slick-dots li button.thumbnail::before {
		display: none;
	}
}



/*
------------------------------------------------
商品詳細 虫眼鏡
------------------------------------------------*/

.zoomphoto {
  position: relative;
}
.zoom-area {
  display: none;
  position: absolute;
  z-index:3;
  top: 0;
  left: 100%;
  border: 1px solid #ccc;
  background-color: #FFF;
  height: 520px;
  width: 100%;
  overflow: hidden;
}
.zoom-area.active {
  display: block;
}
.zoom-area img {
  max-width: inherit;
}
@media screen and (max-width:1100px){
    .zoom-area {
        display: none !important;
    }
}

.m-lens-container {
  display: inline-block;
  position: relative;
}
.m-lens {
  position: absolute;
  z-index: 2;
  background: #f57716;
  opacity: 0.3;
  height: 172px;
  width: 172px;
  display: none;
}
.m-lens-container:hover .m-lens {
  display: block;
}
@media screen and (max-width:1100px){
    .m-lens {
        display: none;
    }
    .m-lens-container:hover .m-lens {
        display: none;
    }
}



/*
------------------------------------------------
商品詳細 表組
------------------------------------------------*/
.table-type01{
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	word-wrap: break-word;
	border-top:1px solid #ccc;
	border-left:1px solid #ccc;
}
.table-type01 th,
.table-type01 td{
	padding: 7px;
	font-size: 1.3rem;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	font-weight:normal;
    text-align: center;                   
}
.table-type01 th{
	vertical-align:middle;
	background-color:#FAF9F8;
	font-weight: bold;
}
.table-type01 td{
	vertical-align:middle;
	background-color:#FFF;
}
.table-type01 thead tr th,
.table-type01 thead tr td{
	background-color:#eeeeee;
}
@media screen and (max-width:600px){
	/*.table-type01*/
	.table-type01{font-size: 95%;}
	.table-type01 th,
	.table-type01 td{
		padding:0.5em 0.2;
		/*font-weight:normal;*/                    
	}
}