@charset "utf-8";

/* ********************************************
 * ピックアップ
 * *******************************************/


.pickup-items {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 12px;
}



/* ********************************************
 * 商品
 * *******************************************/

/* 商品一覧 */
.product-items {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 12px;
}
.product-postitem {
	box-sizing: border-box;
	overflow: hidden;
	width: calc(100% / 2 - 6px);
	margin-top: 12px;
	border-radius: 12px 12px 0 0;
	background: #FFF;
	position: relative;
}
.product-postitem a {
	display: block;
	transition: 0.5s;
}
.product-postitem a:hover {
	opacity: .7;
}
.product-postitem .product-postitem-number {
	padding: 12px;
	font-size: 1.3em;
	line-height: 1;
	margin: 0 !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-postitem .product-postitem-number span.category {
	width: 100px;
	height: 23px;
}
.product-postitem .product-postitem-number span.cat-corona-product {
	background: url(../images/maker/corona.png) no-repeat;
	background-size: 100%;
}
.product-postitem .product-postitem-number span.cat-daikin-product {
	background: url(../images/maker/daikin.png) no-repeat;
	background-size: 100%;
}
.product-postitem .product-postitem-number span.cat-mitsubishi-product {
	background: url(../images/maker/mitsubishi.png) no-repeat;
	background-size: 100%;
}
.product-postitem .product-postitem-number span.cat-hitachi-product {
	background: url(../images/maker/hitachi.png) no-repeat;
	background-size: 100%;
}
.product-postitem .product-postitem-number span.cat-panasonic-product {
	background: url(../images/maker/panasonic.png) no-repeat;
	background-size: 100%;
}
.product-postitem .product-postitem-number span.number {
	color: #FFF;
	font-family: 'mplus-1p-bold', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.product-postitem p.type {
	padding: 9px !important;
	margin: 0 !important;
	color: #002c5b;
	font-size: .88em;
	font-weight: bold;
}
.product-postitem .product-postitem-box {
	display: flex;
	justify-content: space-between;
	padding: 9px;
}
.product-postitem .product-postitem-box .product-postitem-img {
	width: 45%;
}
.product-postitem .product-postitem-box .product-postitem-text {
	width: 55%;
	padding: 0 0 0 12px;
}
.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.regular { /* 特別価格 */
	font-weight: bold;
	background: #DBECFF;
	padding: 6px 3px;
}
.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.regular .regular-priceText {
	margin: 0!important;
	padding: 0 !important;
}
.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.regular .regular-price {
	margin: 0!important;
}
.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.subsidy { /* 補助金 */
	font-weight: bold;
	padding: 3px 3px;
}
.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.subsidy .subsidy-priceText {
	color: #eb242c;
	margin: 0!important;
	padding: 0 !important;
}
.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.subsidy .subsidy-price {
	color: #eb242c;
	margin: 0!important;
	padding: 0 !important;
}
.product-postitem .product-postitem-box .product-postitem-text p.price {
	font-weight: bold;
	text-align: center;
}
.product-postitem .product-postitem-box .product-postitem-text p.price span.price-text {
	display: block;
	padding: 9px;
	font-size: 16px;
	color: white;
	background: #002c5b;
}
.product-postitem .product-postitem-box .product-postitem-text p.price span.price-price {
	display: block;
	color: #eb242c;
	display: block;
	font-size: 35px;
	font-family: 'mplus-1p-heavy', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1;
	margin-top: 5px;
}

@media screen and (max-width: 768px) {
	.product-postitem .product-postitem-box .product-postitem-text p.price span.price-text {
		    padding: 3px 9px;
	}
	.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.regular {
		padding: 3px 3px;
	}
	.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.subsidy .subsidy-priceText {
		padding: 0 0 0 3px !important;
	}
	.product-postitem .product-postitem-box .product-postitem-text .product-postitem-text-flex.subsidy .subsidy-price {
		padding: 0 3px 0 0 !important;
	}
}
@media screen and (max-width: 560px) {
	.product-postitem {
		width: 100%;
	}
	.product-postitem .product-postitem-box .product-postitem-text p.price span.price-price {
		font-size: 30px;
	}
}
@media screen and (max-width: 380px) {
	.product-postitem .product-postitem-box .product-postitem-text p.price span.price-price {
		font-size: 26px;
	}
}



/* 商品個別 */
.product-title {
	box-sizing: border-box;
	width: 100%;
	padding: 18px !important;
	margin: 0 !important;
	font-size: 28px;
	line-height: 1.4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #000;
}
#product-set .product-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.product-title  span.category {
	width: 150px;
	height: 34px;
}
.product-title span.cat-corona-product {
	background: url(https://ecocu-temp-a.arcuate.work/wp-content/themes/ecocute-tplA/images/maker/corona.png) no-repeat;
	background-size: 100%;
}
.product-title span.cat-daikin-product {
	background: url(https://ecocu-temp-a.arcuate.work/wp-content/themes/ecocute-tplA/images/maker/daikin.png) no-repeat;
	background-size: 100%;
}
.product-title span.cat-mitsubishi-product {
	background: url(https://ecocu-temp-a.arcuate.work/wp-content/themes/ecocute-tplA/images/maker/mitsubishi.png) no-repeat;
	background-size: 100%;
}
.product-title span.cat-hitachi-product {
	background: url(https://ecocu-temp-a.arcuate.work/wp-content/themes/ecocute-tplA/images/maker/hitachi.png) no-repeat;
	background-size: 100%;
}
.product-title span.cat-panasonic-product {
	background: url(https://ecocu-temp-a.arcuate.work/wp-content/themes/ecocute-tplA/images/maker/panasonic.png) no-repeat;
	background-size: 100%;
}
.product-title span.number {
	width: 560px;
	color: #000;
	line-height: 1.4;
	font-family: 'mplus-1p-bold', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.product_all {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0 auto 30px;
	box-sizing: border-box;
	border: solid 1px #eaeaea;
}
.product_all div.box {
	width: 96%;
	padding: 2%;
}
.product_all figure {
	max-width: 100%;
	height: auto;
	float: none;
}
.product_all figure img {
	display: inline;
	max-width: 100%;
	height: auto;
}
.product_all table {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 0 auto 10px;
	vertical-align: middle;
}
.product_all table th {
	border: solid 1px #CCC;
	padding: 0.5em;
	background: #eaeaea;
	vertical-align: middle;
	font-size: 1.1em;
	line-height: 1.2em;
}
#red {
	color: #F00;
}
.product_all table th.right {
	float: none !important;
}
.product_all table td {
	border: solid 1px #CCC;
	padding: 0.5em;
	vertical-align: middle;
	font-size: 1.1em;
	line-height: 1.2em;
}
.product_all table.price td.kakaku {
	text-decoration: line-through;
}
.product_all table td.price {
	font-size: 2.0em;
	font-weight: bold;
	color: #F00;
}
.product_all table td.price p.store { /* オール電化セット */
	margin: 0 0 9px 0 !important;
}
.product_all table td.price p.store span {
	display: block;
}
.product_all table td.price p.grant { /* オール電化セット */
	margin: 0 0 9px 0 !important;
	color: #002c5b;
}
.product_all table td.price p.grant span {
	display: block;
}
.product_all table td.price p.effective { /* オール電化セット */
	margin: 0 !important;
}
.product_all table td.price p.effective span {
	display: block;
}
.product_all table td .off {
	font-size: 1.2em;
	font-weight: bold;
	color: #F00;
	line-height: 1.5;
}
.product_all table td .max {
	font-size: 1.4em;
	font-weight: bold;
	color: #F00;
	line-height: 1.5;
}
.product_all table td .komikomi {
	font-size: 1.5em;
	font-weight: bold;
	color: #40B356;
}
.product_all table td .price {
	font-size: 2.2em;
	font-weight: bold;
	color: #F00;
}
.d-regular_price {
	font-weight: bold;
}
.d-subsidy_price {
	color: #0a4a82;
	font-weight: bold;
}
.d-price-text {
	font-size: 0.7em;
}
.product_all table td.price .hojyo {
	font-size: 0.7em;
	font-weight: bold;
	color: #7c399b;
	background-color: gold;
	display: block;
	content: "";
	margin: 10px 0;
}

@media screen and (max-width: 768px) {
	.product-title {
		flex-direction: column;
		font-size: 1.2em;
	}
	.product-title span.number {
		width: 100%;
		display: block;
		text-align: left;
		font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	}
	.product-title span.category {
		display: block;
		margin-left: auto;
		margin-top: 6px;
	}
	
	.product_all {
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 0 auto 10%;
		box-sizing: border-box;
		border: solid 1px #eaeaea;
	}
	.product_all div.box {
		width: 96%;
		padding: 2%;
	}
	.product_all figure {
		width: 100%;
		height: auto;
	}
	.product_all figure img {
		/*	display:block;*/
		display: inline;
		max-width: 100%;
		height: auto;
	}
	.product_all table {
		font-size: 0.7em;
		width: 100%;
		height: auto;
		text-align: center;
		margin: 0 auto 3%;
		vertical-align: middle;
	}
	.product_all table th {
		border: solid 1px #CCC;
		padding: 0.4em 0.2em;
		background: #eaeaea;
		vertical-align: middle;
		font-size: 1.1em;
		line-height: 1.4em;
	}
	.product_all table td {
		border: solid 1px #CCC;
		padding: 0.4em 0.2em;
		vertical-align: middle;
		line-height: 1.3;
		font-size: 1em;
	}
	.product_all table td.price {
		font-size: 1.7em;
		font-weight: bold;
		color: #F00;
	}
	.product_all table td.price p.store { /* オール電化セット */
		
	}
	.product_all table td.price p.grant { /* オール電化セット */
		font-size: 18px;
	}
	.product_all table td.price p.grant span {
		font-size: 24px;
	}
	.product_all table td.price p.effective { /* オール電化セット */
		font-size: 18px;
	}
	.product_all table td.price p.effective span {
		font-size: 24px;
	}
	.product_all table.price td.kakaku {
		text-decoration: line-through;
	}
	.product_all table td.price .hojyo {
		font-size: 0.5em;
		font-weight: bold;
		color: #7c399b;
	}
	.product_all p.option {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 380px) {
	.product_all table td.price p.store { /* オール電化セット */

	}
	.product_all table td.price p.grant { /* オール電化セット */
		font-size: 16px;
	}
	.product_all table td.price p.grant span {
		font-size: 22px;
	}
	.product_all table td.price p.effective { /* オール電化セット */
		font-size: 16px;
	}
	.product_all table td.price p.effective span {
		font-size: 22px;
	}
}
