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

  products-detail Css

------------------------------*/
#hero{
	margin-bottom: 60px;
}

.products-detail .wrap-common{
	margin: 50px auto 100px;
}

.products-detail .flex .txt{
	width: 65%;
	padding-right: 30px;
	font-size: 90%;
	text-align: left;
}
.products-detail .flex .txt li{
	margin-bottom: 25px;
}
.products-detail .flex .img{
	width: 35%;
	text-align: right;
	margin-bottom: 20px;
}
.products-detail .flex .img .item{
	margin-bottom: 20px;
}
.products-detail .flex .img .item img{
	max-width: 300px;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	#hero {
		margin-bottom: 40px;
	}
	
	.products-detail .flex .txt,
	.products-detail .flex .img{
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.products-detail .flex .txt{
		margin-bottom: 10px;
	}
	.products-detail .flex .img{
		text-align: center;
	}
}


/* タイトル グラデーションライン付き */
.ttl-gradation{
	font-size: 30px;
    font-weight: 600;
	text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 15px 10px;
	margin: 0 auto 60px;
}
.ttl-gradation:after{
	content: "";
    position: absolute;
    background: -moz-linear-gradient(-45deg, #2fc51b 0%, #fec231 50%, #a459cf 100%);
    background: -webkit-linear-gradient(-45deg, #2fc51b 0%,#fec231 50%,#a459cf 100%);
    background: linear-gradient(135deg, #2fc51b 0%,#fec231 50%,#a459cf 100%);
    height: 4px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.ttl-gradation {
    	font-size: 24px;
	}
}


/* タイトル 上下黒ライン付き */
.ttl-line{
	background: #f3f3f3;
	border-top: solid 2px #000;
	border-bottom: solid 2px #000;
	margin: 70px auto 20px;
	padding: 15px;
	font-size: 115%;
	font-weight: 600;
	letter-spacing: .1em;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.ttl-line{
		margin: 50px auto 20px;
		padding: 10px;
		font-size: 110%;
	}
}


/* 灰色バー */
.bar-arrow,
.bar-arrow a{
	color: #fff;
}
.bar-arrow a:hover{
	color: #FEC234;
}
.bar-arrow{
	background: #313131;
	position: relative;
}
.bar-arrow .btn-arrow{
	width: 80px;
	height: 100%;
	position: absolute;
	top: 0;
}
.bar-arrow .btn-arrow.prev{
	left: 0;
}
.bar-arrow .btn-arrow.next{
	right: 0;
}
.bar-arrow .btn-arrow a{
	display: table;
	width: 100%;
	height: 100%;
	background: #5b5b5b;
}
.bar-arrow .btn-arrow a span{
	display: table-cell;
	vertical-align: middle;
	font-size: 80%;
}
.bar-arrow .btn-arrow a span:before{
	font-size: 200%;
	font-family: FontAwesome;
	display: block;
}
.bar-arrow .btn-arrow.prev a span:before{
	content: "\f137";
}
.bar-arrow .btn-arrow.next a span:before{
	content: "\f138";
}
.bar-arrow .center{
	font-size: 150%;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 20px 100px;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.bar-arrow .btn-arrow {
		width: 60px;
	}
	.bar-arrow .center {
		font-size: 120%;
		padding: 20px 70px;
	}
}


/* リード文 */
.products-detail .lead{
	font-size: 150%;
    font-weight: 600;
    letter-spacing: .05em;
    color: #007cd4;
    margin-bottom: 40px;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.products-detail .lead {
		font-size: 120%;
		margin-bottom: 20px;
	}
}

/* スライド画像 */
.block-slider{
	margin: 0 auto 50px;
}
#slider{
	max-width: 750px;
	margin: auto;
}
#slider .slide-item {
	border: solid 1px #eee;
}
#slider .slide-item img{
	width: 100%;
}

#thumbnail-list {
	justify-content: center;
    margin: 20px -20px 20px 0;
}
#thumbnail-list .thumbnail-item{
	width: 16.666%;
    padding-right: 20px;
}
#thumbnail-list .thumbnail-item span{
	display: block;
	position: relative;
    overflow: hidden;
	border: solid 1px #eee;
	cursor: pointer;
}
#thumbnail-list .thumbnail-item span:before {
    content: "";
    display: block;
    padding-top: 100%;
}
#thumbnail-list .thumbnail-item span img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    vertical-align: top;
    object-position: center;
    font-family: 'object-fit: cover; object-position: bottom;';
}

#thumbnail-list .thumbnail-item.thumbnail-current span{
	box-shadow:0px 0px 10px 0px rgba(0,0,0,0.2);
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.block-slider {
		margin: 0 auto;
	}
	#thumbnail-list {
		margin: 10px -10px 10px 0;
	}
	#thumbnail-list .thumbnail-item {
		width: 20%;
		padding-right: 10px;
	}
}


/* 価格 */
.products-detail .price{
	font-size: 150%;
	font-weight: 600;
	border-bottom: solid 2px;
	margin: 20px 0;
	padding: 15px 0;
	text-align: left;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.products-detail .price {
		font-size: 100%;
		margin: 0;
	}
}


/* 標準付属品 */
.accessories {
	text-align: left;
}
.accessories h5{
	font-weight: 600;
	margin: 35px 0 15px;
}
.accessories .sub{
	border: solid 1px #CDCDCD;
	margin-bottom: 10px;
	padding: 6px 15px;
}
.accessories .list{
	margin: 10px 0 30px;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.accessories h5 {
		margin: 20px 0 15px;
	}
	.accessories .list {
		text-align: left;
	}
}


/* ボタン　カタログダウンロード */
.btn-catarog{
	display: block;
    max-width: 100%;
    color: #000;
    background: #fdc230;
    border: solid 2px #000;
    font-size: 150%;
	font-weight: 600;
    letter-spacing: .08em;
    margin: 40px auto;
    padding: 20px;
}
.btn-catarog:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 36px;
	height: 28px;
	margin-right: 15px;
	background: url("../../common/img/common/ico_dw@2x.png") no-repeat center;
	background-size: contain;
}
.btn-catarog:hover{
	color: #000;
	box-shadow:0px 5px 10px 0px rgba(0,0,0,0.3);
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.btn-catarog {
		font-size: 100%;
		margin: 30px auto;
		padding: 15px 10px;
	}
	.btn-catarog:before {
		width: 28px;
		height: 22px;
	}
}


/* youtube埋め込み */
.products-detail .pv{
	max-width: 750px;
	margin: auto;
}
.products-detail .box-iframe {
	width: 100%;
	padding-bottom: 56.25%;
	height: 0px;
	position: relative;
	margin: 50px auto;
}
.products-detail .box-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.products-detail .box-iframe {
		margin: 20px auto 0;
	}
}


/* 特徴リスト */
.products-detail .feature {
	margin-right: -40px;
}
.products-detail .feature .item{
	width: 33.333%;
	padding-right: 40px;
}
.products-detail .feature .item .comment{
	text-align: left;
	font-size: 90%;
	margin: 15px 0;
}
.products-detail .feature .item a{
	display: block;
	position: relative;
}
.products-detail .feature .item a:before{
	content: "\f00e";
    font-family: FontAwesome;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #444;
    color: #fff;
    padding: 8px;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.products-detail .feature .item{
		width: 100%;
	}
}


/* 表組み */
.block-table{
	padding-top: 140px;
    margin-top: -140px;
}
.block-table h5{
	font-size: 160%;
	font-weight: 600;
	letter-spacing: .05em;
	margin: 50px 0 10px;
}
.block-table h6{
	font-size: 120%;
	font-weight: 600;
	text-align: left;
	margin-top: 30px;
	margin-bottom: 10px;
}
.block-table .table{
	margin: 20px auto;
}
.block-table .table .tr{
	display: table;
	width: 100%;
	text-align: left;
	background: #dcdcdc;
}
.block-table .table .tr:nth-child(even){
	background: #eee;
}
.block-table .table .tr .th,
.block-table .table .tr .td{
	display: table-cell;
	vertical-align: middle;
	padding: 10px 15px;
}
.block-table .table .tr .th{
	width: 20%;
	border-right: solid 2px #fff;
}
.block-table .table .tr .td{
	width: 80%;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.block-table{
		padding-top: 90px;
		margin-top: -90px;
	}
	
	.block-table .table .tr{
		display: block;
		margin-bottom: 5px;
	}
	.block-table .table .tr .th,
	.block-table .table .tr .td{
		width: 100%;
		display: block;
	}
	.block-table .table .tr .th{
		border-right: none;
		background: #dcdcdc;
	}
	.block-table .table .tr .td{
		background: #fff;
	}
}


/* アコーディオン　コンテンツ */
.products-detail .tgl-btn{
	display: block;
	background: #fbfbfb;
	color: #494949;
	border: solid 1px #7d7d7d;
	margin: 30px 0;
	padding: 10px;
	position: relative;
	z-index: 1;
	cursor: pointer;
	transition: all 300ms 0s ease;
}
.products-detail .tgl-btn:before{
	content: "\f107";
	font-family: FontAwesome;
    display: inline-block;
	margin-right: 15px;
}
.products-detail .tgl-btn:after{
	content: "仕様を見る";
    display: inline-block;
	font-size: 90%;
}
.products-detail .tgl-btn.open:before{
	content: "\f106";
}
.products-detail .tgl-btn.open:after{
	content: "閉じる";
}
.products-detail .tgl-btn:hover{
	box-shadow:0px 5px 10px 0px rgba(0,0,0,0.3);
}