@charset "UTF-8";

/* ==========================================================================
	【for staffcoordinate】
	XX Common
		XX-01 item_list
	01 Wrap
		01-01 detail_container_wrap
			01-01-01 detail_photoBox(Left Column)
			01-01-02 detail_infoBox(Right Column)
				01-01-02-01 infoBox_infoArea
				01-01-02-02 infoBox_stylingArea
			01-01-02 detail_otherStyleBox
========================================================================== */


/* XX Common
------------------------------------------------------------------------------------*/
#contents.staffcoordinate {
	max-width: 100%;
}

.section_heading {}
/* XX-01 item_list
--------------------------------------------------------------------*/
.item_list {
	width:100%;
	display:flex;
	flex-wrap:wrap;
}
.item_listItem {
	font-family:"Fjalla One", sans-serif;
}
.item_listItem.cols2 {
	width:49%;
}
.item_listItem.cols3 {
	width:32%;
}
.item_listItem.cols4 {
	width:24%;
}
.item_listItem.cols5 {
	width:18.4%;
}
.item_listItem + .item_listItem {
	margin-left:2%;
}
.item_listItem.cols2:nth-of-type(2n+3) {
	margin-left:0;
}
.item_listItem.cols3:nth-of-type(3n+4) {
	margin-left:0;
}
.item_listItem.cols4:nth-of-type(5n+4) {
	margin-left:0;
}
.item_listItem.cols5:nth-of-type(5n+6) {
	margin-left:0;
}
.item_listItem.cols2:nth-child(n+3) {
	margin-top:2%;
}
.item_listItem.cols3:nth-child(n+4) {
	margin-top:2%;
}
.item_listItem.cols4:nth-child(n+5) {
	margin-top:2%;
}
.item_listItem.cols5:nth-child(n+6) {
	margin-top:2%;
}
.item_listItem a {
	display:block;
}
.item_infoArea {
	overflow:hidden;
}
.item_info_photo {}
.item_photo_img {
	width:100%;
	height:auto;
}
.item_info_name {}
.item_info_photo + .item_info_name {
	margin-top:10px;
}
.item_info_price {}
.item_info_name +.item_info_price {
	margin-top:5px;
}
.item_info_textArea {
	display:block;
}
.item_info_textArea.itemName {
	max-height:26.4px;
	/*-- fontSize:12px*2+lineHeight:1.2*3 --*/
	max-height:calc(2em + 3.6px);
	max-height:-o-calc(2em + 3.6px);
	max-height:-ms-calc(2em + 3.6px);
	max-height:-moz-calc(2em + 3.6px);
	max-height:-webkit-calc(2em + 3.6px);
	/*-- fontSize:12px*2+lineHeight:1.2*3 --*/
	padding-right:1em;
	position:relative;
/*
	display:block;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
*/
}
.item_info_textArea.itemName:before,
.item_info_textArea.itemName:after {
	background:#fff;
	position:absolute;
}
.item_info_textArea.itemName:before {
	content:"...";
	top:13.2px;
	right:0px;
}
.item_info_textArea.itemName:after {
	content:"";
	width:100%;
	height:100%;
}


/* 01 Wrap
------------------------------------------------------------------------------------*/
.section_wrap {
	width: 100%;
}

/* 01-01 detail_container_wrap
--------------------------------------------------------------------*/
.detail_container_wrap {
	width: 100%;
}
.section_heading + .detail_container_wrap {
	margin-top:20px;
}
.detail_container_wrap a:hover {
	opacity:0.8;
}
.detail_container_inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto 40px;
}
.detail_column {}
.detail_column_item {}
/* 01-01-01 detail_photoBox(Left Column)
----------------------------------------------------*/
.detail_photoBox {
	-webkit-flex-basis: 500px;
	-ms-flex-preferred-size: 500px;
	flex-basis: 500px;
	max-width: 500px;
	margin: 0 auto 0 0;
}
.detail_photo_slider {
	position: relative;
}
.detail_photo_list {}
.detail_photo_item {
	position: relative;
}
.detail_photo_image {
	width: 100%;
	height: auto;
}
.slick-slide img{
	opacity: 1 !important;
}
.slick-dots {
	display: none !important;
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
/* slick.css */
.slick-prev, .slick-next {
	display: block;
	width: 30px;
	height: 30px;
	text-decoration: none;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	top: 50%;
	z-index: 10;
	cursor: pointer;
	outline: none;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #b3b3b3;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: #fe89aa;
	background: #fff;
}
.slick-prev:before, .slick-prev:after {
		display: block;
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		top: 50%;
		right: 50%;
		margin-top: -7px;
}
.slick-prev:before {
	border-right: 8px solid #b3b3b3;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	margin-right:-3px;
	z-index: 5;
}
.slick-prev:after {
	border-right: 8px solid #fff;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	margin-right:-5px;
	z-index: 10;
}
.slick-next:before,
.slick-next:after {
	display: block;
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 50%;
	left:50%;
	margin-top: -7px;
}
.slick-next:before {
	border-left: 8px solid #b3b3b3;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	margin-left:-3px;
	z-index: 5;
}
.slick-next:after {
	border-left: 8px solid #fff;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	margin-left:-5px;
	z-index: 10;
}
.slick-prev {
	left: -15px;
}
.slick-next {
	right: -15px;
}
.checkitem_slider .slick-prev {
	left: -10px;
}
.checkitem_slider .slick-next {
	right: -10px;
}


/* 01-01-02 detail_infoBox(Right Column)
----------------------------------------------------*/
.detail_infoBox {
	max-width: 640px;
	-webkit-flex-basis: 640px;
	-ms-flex-preferred-size: 640px;
	flex-basis: 640px;
}

/* 01-01-02-01 infoBox_infoArea
------------------------------------*/
.infoBox_infoArea {}
.infoArea_item {}
.infoArea_item.info_data {}
.info_data_textArea {
	margin-bottom: 30px;
}
.textArea_item {}
.textArea_item.userName {
	margin-bottom: 10px;
}
.userName_link {
	font-size: 18px;
	font-weight: bold;
}
.textArea_item.shopName {
	margin-bottom: 5px;
}
.textArea_item.userHeight {
	margin-bottom: 5px;
}
.infoArea_item.info_comment {
	margin-bottom:15px;
}
.info_comment_item {}
.info_comment_item.commentDate {
	margin-bottom: 5px;
}
.info_comment_item.commentText {
	font-size: 13px;
	line-height: 1.6;
}
.infoBox_thumbArea {
	margin-bottom: 15px;
}
.info_thumb_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -2px;
	margin-left: -2px;
}
.info_thumb_item {
	width: calc(10% - 4px);
	margin: 0 2px 5px;
	position:relative;
}
.info_thumb_photo {
	display: block;
	overflow: hidden;
	position: relative;
}
.info_thumb_photo:before {
	content: "";
	display: block;
	padding-top: 133.33%;
}
.info_thumb_item.flex-active .info_thumb_photo {
	background:#000;
}
.info_thumb_image {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: auto;
}
.info_thumb_item.flex-active .info_thumb_image {
	opacity:0.7;
}

.infoBox_tagsArea {}
.info_tags_list:before,
.info_tags_list:afetr {
	content: none;
}
.info_tags_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -10px -5px 0;
}
.info_tags_item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 5px 0;
	position: relative;
}
.info_tags_link {
	display:block;
	color: #000;
}
.info_tags_text {
	display:block;
	font-size: 12px;
	text-align: center;
	background-color: #fff;
	padding:8px 15px;
	border: 1px solid #b2b2b2;
	border-radius:4px;
}
/* 01-01-02-02 infoBox_stylingArea
------------------------------------*/
.infoBox_stylingArea {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #ccc;
}
.stylingArea_heading {
	font-size:16px;
	font-weight: bold;
	margin-bottom: 20px;
}
.stylingArea_block {}
.stylingArea_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.stylingArea_item {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	width: 100%;
	max-width: 20%;
	margin-bottom: 30px;
	padding: 0 5px;
	position:relative;
}
.stylingArea_link {
	display: block;
	position: relative;
}
.stylingArea_photo {
	margin:0 0 10px;
	position:relative;
}
.stylingArea_photo:before {
	content:"";
	display: block;
	padding-top: 120%;
}
.stylingArea_image {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.stylingArea_itemName {
	font-size: 12px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin:0 0 10px;
	/*height: -webkit-calc(12px * 1.2 * 2);
	height: calc(12px * 1.2 * 2);
	line-height: 1.2;
	overflow: hidden;
	position: relative;*/
}
/*.stylingArea_itemName:before,
.stylingArea_itemName:after {
	background:#fff;
	position:absolute;
}
.stylingArea_itemName:before {
	content: "...";
	top: -webkit-calc(12px * 1.2 * 1);
	top: calc(12px * 1.2 * 1);
	right: 0;
	width: -webkit-calc(12px * 1.2);
	width: calc(12px * 1.2);
	height: -webkit-calc(12px * 1.2);
	height: calc(12px * 1.2);
	padding: 0 0 0 3px;
}
.stylingArea_itemName:after {
	content:"";
	width:100%;
	height:100%;
}*/
.stylingArea_colorSize {
	letter-spacing: -.4em;
	margin-bottom: 10px;
}
.stylingArea_itemColor {
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0;
}
.stylingArea_itemSize {
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0;
}
.stylingArea_itemText {
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0;
	padding: 0 2px;
}
.stylingArea_price {
	font-size:12px;
}
.stylingArea_itemPrice {
	font-size:12px;
}
.stylingArea_itemPrice * {
	font-size:12px !important;
}

/* 01-01-02 detail_otherStyleBox
----------------------------------------------------*/
.detail_otherStyleBox {
	width: 100%;
}
.otherStyleBox_innerBox {
	max-width: 1200px;
	margin: 0 auto;
}
.otherStyle_heading {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 2px solid #535353;
}
.otherStyle_block {
	margin-bottom:30px;
}
.otherStyle_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
	position: relative;
}
.otherStyle_item {
	-ms-flex: 0 0 16.6666667%;
	flex: 0 0 16.6666667%;
	width: 100%;
	max-width: 16.6666667%;
	padding: 0 5px;
	position:relative;
}
.otherStyle_link {
	display: block;
	position: relative;
}
.otherStyle_link:before {
	content: "";
	display: block;
	padding-top: 133.33%;
}
.otherStyle_image {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.otherStyle_btnArea {
	text-align: center;
}
.otherStyle_btn {
	display: inline-block;
	width: 180px;
	height: 36px;
	font-size: 14px;
	text-align: center;
	line-height: 36px;
	border: 1px solid #404040;
	border-radius: 20px;
	background-color: #fff;
}
