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-image img {
    max-width: 100%;
}
#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: 100%;
    background-color: #4B4B4B;
    color: #fff;
    display: block;
    line-height: 1;
    padding: 18px 0;
    margin-bottom: 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
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/img_01.jpg);
}

.slider-item02 {
    background:url(../img/img_02.jpg);
}

.slider-item03 {
    background:url(../img/img_03.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

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

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

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

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}