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

/*.item--details table th,
.item--details table td{
	font-size: 1.4rem;
	padding: 1em;
}*/



@media (min-width:768px){
	.item-main{
		float: right;
		width: 55%;
	}
	.item-side{
		float: left;
		width: 40%;/*315px*/
	}
}

/* Section Separator---------------------------------------------------------

　タイトルのエリア

----------------------------------------------------------------------------*/
.item--title{
	margin: 0 0 20px;
}
/*アイテム名称*/
.item-name{
	font-size:2.4rem;
	font-weight: 600;
	line-height: 1.4;
}
@media (min-width:768px){
	.item-name{font-size: 3.2rem;}
}
/*アイテム名称 英語*/
.item-name-en{
	font-size: 1.2rem;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
#post-id{
	font-size: 1.2rem;
	font-weight: 600;
	display: none;
}



/* Section Separator---------------------------------------------------------

　説明文のエリア

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

/*説明エリアのwrap*/
.item--exp{
	margin: 2em 0 4em;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}

/*見出し*/
.item--exp h2{
	font-size: 2rem;
	font-weight: 600;
}
.item--exp p + h2{
	margin: 2em 0 0 ;
}
/*段落*/
.item--exp p{
	line-height: 1.8;
	margin: 0.75em 0;
}

.item--exp ul{
	list-style-type: disc;
	margin: 0.75em 0 0.75em 1.25em;
}
.item--exp ol{
	list-style-type: decimal;
	margin: 0.75em 0 0.75em 2.0em;
}

.item--exp li{
	font-size: 94%;
	line-height: 1.5;
	margin: 0.75em 0;
}


@media (min-width:768px){
	/*説明エリアのwrap*/
	.item--exp{
		font-size: 1.6rem;
	}
	/*見出し*/
	.item--exp h2{
		font-size: 2rem;
	}
	/*段落*/
	.item--exp p{
		
	}
}


/*========================================
	詳細情報の表組
========================================*/
.item--details h2{
	font-weight: 300;
	font-size: 2.4rem;
}

.item--details table{
	font-size: 1.4rem;
	margin: 2rem 0;
	width: 100%;
}
.item--details table th,
.item--details table td{
	display: block;
}

.item--details table th{
	font-size: 1.2rem;
	margin: 2em 0 0.5em;
}
.item--details table td{
	margin: 0.5em 0 2em;
}


.item--details table{
	border-top: 1px solid #e6e6e6;
}
.item--details table tr{
	border-bottom: 1px solid #e6e6e6;
}

@media (min-width:768px){
	.item--details table{
		font-size: 1.6rem;
	}
	.item--details table th,
	.item--details table td{
		display: table-cell;
		padding: 1.2em;
		margin: 0;
	}
	.item--details table th{
		white-space: nowrap;
		font-size: 1.6rem;
		width: 3em;
	}
}

.item-tags{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
	font-size: 1.3rem;
}
.item-tag{
	background: #E1E1E1;
	padding: 0 0.5em;
	border-radius: 5px;
}
.item-tag:hover{
	color:#E9E9E9;
	background: #585858;
}

/* Section Separator---------------------------------------------------------

　サブエリア

----------------------------------------------------------------------------*/
.item--sub{
	font-size: 1.4rem;
	line-height: 1.8;
	margin: 50px 0;
}


/*メイン写真を表示する箱（の中のa）*/
.slickBox a{
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFF;
}
/*メインの写真は全体が収まるように*/
.slickBox img{
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
}
/*ドット（サムネイル）たちのwrap*/
.slick-dots{
	width: 100%;
	padding: 10px 0 0 ;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 2%;
	position: relative;
	bottom: 0;
}
/*ドット（サムネイル）*/
.slick-dots li {
	height: initial;
	aspect-ratio: 1 / 1!important;
	width: 23.5%;/* 23.5×4=94 上記でgapが2%×3で6 */
	border: none;
	margin: 0;
}
/*ドットの中にspanを作って背景にサムネ画像を表示*/
.slick-dots li span {
	display: block;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	/*border: 2px solid transparent;*/
	cursor: pointer;
}
/* アクティブ枠
.slick-dots li.slick-active span {
  border-color: #f00;       
} */
.slick-dots li{
	opacity: 0.6;
	transition-duration: .2s;
}
.slick-dots li:hover{
	opacity: 0.9;
}
.slick-dots li.slick-active{
	opacity: 1;
}
