body,
html {
  height: 100%;
  margin: 0 auto;
}


.area {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 22vw 7vw;
    background-color: rgba(255,255,255,0.5);
    color: #000;
  
}






/*=============
products
=============*/

#item {
    display: block;
    justify-content: space-between;
    margin: 100px auto;
}

.itemWrapper {
    max-width: 800px;
    margin: 0 auto;
	display: inline-block;
}
#item .products{
	margin-bottom: 80px;
}
#item .item-image {
    max-width: 100%;
    margin: 0 0 100px 0;
}

#item .item-info {
    padding: 0 0 10px;
	width: 90%;
	margin: 0 auto;
}
#item .item-info .item-title {
    height: 60px;
    display: flex;
    align-items: center;
    border-top: solid 1px #c3c3c3;
    border-bottom: solid 1px #c3c3c3;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#item .item-info p {
    margin-bottom: 30px;
    line-height: 1.9;
}
#item .item-info .order-table {
    width: 100%;
    margin-bottom: 20px;
}
#item .item-info .order-table .color, #item .item-info .order-table .size {
    width: 20%;
}
#item .item-info .order-table th, #item .item-info .order-table td {
    font-weight: normal;
    padding: 10px;
    border-right: solid 1px #c3c3c3;
    text-align: center;
}	
#item .item-info .cart-btn {
    width: 80%;
    background-color: #4B4B4B;
    color: #fff;
    display: block;
    line-height: 1;
    padding: 18px 0;
    margin: 0 auto 30px;
    text-align: center;
}
#item .item-info .size-table {
    width: 100%;
    border-top: solid 1px #c3c3c3;
    border-left: solid 1px #c3c3c3;
}
#item .item-info .size-table th, #item .item-info .size-table td {
    font-weight: normal;
    padding: 10px;
    border-right: solid 1px #c3c3c3;
    border-bottom: solid 1px #c3c3c3;
    text-align: center;
}
#item .item-info .size-table th {
    background-color: #ecebeb;
}

footer{
  background: #1c222d;
}

/*==================================================
スライダーのためのcss
===================================*/
/*画像の横幅を100%にしてレスポンシブ化*/
img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/

.gallery{
	margin:0 0 5px 0;
}

.gallery li{
list-style:none;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 1px solid #ccc;/*矢印の色*/
    border-right: 1px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/
.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
	width:25%!important;
list-style:none;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.choice-btn .slick-track {
	transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
	width: 100% !important;
}