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


.pw{
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

/* ==================================================================================

		ヘッダー

================================================================================== */
.header-nav_wrap{
	background-color: #4B4B4B;
}
.header-nav{
	position:relative;
	height: 50px;
}
.site-id{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50% , -50%);
	width: 80px;
}
.home-link{
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
}
.home-link a{
	color:#6F6F6F;
}

.page-title{
	padding-left: 20px;
	padding-right: 20px;
}

@media (max-width: 575px){
	.fair-title{
		display: none;
	}
	.page-title{
		padding-top: 25px;
		padding-bottom: 50px;
	}
}
@media (min-width:576px){
	.fair-title-sp{
		display: none;
	}
	.page-title{
		padding-top: 100px;
		padding-bottom: 100px;
	}
}


.title h2{
	font-family: "Times New Roman", Times, "serif";
	font-size: 3rem;
	font-weight: normal;
	color: #3D3D3D;
}

.colorwrap{
	display: flex;
	justify-content: space-between;
}
.color{
	height: 30px;
	flex-basis: 33.33%;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
}
.color01{
	background-image: url("../image/c-blue.jpg");
}
.color02{
	background-image: url("../image/c-yellow.jpg");
}
.color03{
	background-image: url("../image/c-pink.jpg");
	background-size: 100% auto;
}

/* ==================================================================================

		コンテンツ

================================================================================== */
.wrap-item{
	display: flex;
	flex-wrap: wrap;
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 30px;
}

/* ★各店のコマ */
.item{
	margin-bottom: 80px;
	position: relative;
}
/* 写真の入れ物 */
.item_img{
	margin-bottom: 15px;
}
/* 写真の入れ物 > 写真 */
.item_img img{
	width: 100%;
}

/* 写真にかかる飾り店名 */
.item_shopname {
	text-align: center;
	position: absolute;
	margin-top: -55px;
	left: -10px;
	background-color: #F16680;
	color: #FFFFFF;
	padding-top: 7px;
	padding-right: 20px;
	padding-bottom: 7px;
	padding-left: 20px;
	font-family: nimbus-sans,sans-serif;
font-weight: 400;
font-style: normal!important;
	font-size: 1.2rem;
	line-height: 1;
}
.item_shopname:before {
	content: '';
	height: 0;
	position: absolute;
	width: 0;
	border: 10px solid transparent;
	border-width: 5px;
	border-top-color: #999999;
	border-left-width: 10px;
	border-right-width: 0;
	top: 100%;
	left: 0;
}

/* 商品名 */
.item_name{
	font-size: 1.6rem;
	line-height: 1.2;
	margin-bottom: 10px;
}
/* 通常価格とセール価格のサイズ */
.item_sale-price,
.item_normal-price{
	font-size: 1.4rem;
	margin-bottom: 5px;
}
/* セール価格のカラー */
.item_sale-price{
	color: red;
}
/* 通常価格とセール価格内のSPAN（税込）- 使ってない */
.item_normal-price span,
.item_sale-price span{
	font-size: 1rem;
	margin-left: 5px;
	color: #555555;
}
/* 通常価格とセール価格の後に「税抜」 */
.item_normal-price::after,
.item_sale-price::after{
	content: "税抜";
	font-size: 1rem;
	margin-left: 5px;
	color: #555555;
}
/* セール価格に付随の通常価格の後に「税込」 */
.item_sale-normal-price::after{
	content: "税抜";
	font-size: 0.9rem;
	margin-left: 5px;
}
/*商品説明*/
.item_exp{
	margin: 15px 0 90px;;
	color: #555;
}
/* 商品説明の段落 */
.item_exp p{
	font-size: 1.2rem;
	line-height: 2;
}
.item_exp p + p{
	margin-top: 6px;
}

/* 各店企画 */
.item_kikaku{
	font-size: 1.2rem;
	margin-top: 15px;
	/*margin-bottom: 100px;*/
	line-height: 1.5;
	padding: 5px 12px;
	background-color:#F6F6F6 ;
	position: relative;
}
.item_kikaku::before,
.item_kikaku::after {
  height: 14px;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}
.item_kikaku::before {
  top: -14px;
  background: linear-gradient(45deg, #F6F6F6 7px, transparent 0), 
		linear-gradient(315deg, #F6F6F6 7px, transparent 0);
  background-size: 14px 14px;
}
.item_kikaku::after {
  bottom: -14px;
  background: linear-gradient(135deg, #F6F6F6 7px, transparent 0), 
		linear-gradient(225deg, #F6F6F6 7px, transparent 0);
  background-size: 14px 14px;
}


/* 各店ブロックのフッター（店名とか）*/
.item_footer{
	position: absolute;
	bottom: 0;
	width: 100%;
}
/* 各店ブロックのフッターの店名 リンク */
.item_shop-link{
	font-size: 1.2rem;
	padding: 10px 0;
	border-top: 1px solid #D0D0D0;
	border-bottom: 1px solid #D0D0D0;
}
/* 各店ブロックのフッターの店名 アイコン */
.item_shop-link i{
	font-size: 1.4rem;
	vertical-align: -2px;
	color:#838383;
}
/* 各店ブロックのフッターのフロア・電話 */
.item_shop_data{
	padding: 10px 0 10px 3px;
	border-bottom: 1px solid #D0D0D0;
}


@media (min-width:576px){
	.wrap-item{
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.item{
		flex-basis: 48%;
	}
}

@media (min-width:768px){
	
	.item{
		flex-basis: 23%;
	}
}

/* ==================================================================================

		フッター

================================================================================== */
.footer{
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	text-align: center;
	padding: 50px 0;
	border-top: 1px solid #EBEBEB;
}