@charset "UTF-8";

/* ====================================
	製品ページ共通スタイル
 ==================================== */
.type-button {
	cursor: pointer;
}

.font-small {
	font-size: 0.8em;
}

/* メインタイトル */
.main-title {
	text-align: center;
}

.main-img {
	text-align: center;
}

/* 検索条件 */
#options {
	background: #F2F2F2;
}

ul.list-options {
	display: flex;
	flex-wrap: wrap;
}

ul.list-options li {
	position: relative;
	display: inline-block;
}

ul.list-options li input {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	opacity: 0;
	cursor: pointer;
}

ul.list-options li input[type="checkbox"]+label {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0;
	background-color: #fff;
	background-image: url(images/check-off.png);
	background-repeat: no-repeat;
	background-position: left 6px center;
	background-size: 18px auto;
	border: solid 1px #A7A7A7;
	border-radius: 20px;
}

ul.list-options li input[type="checkbox"]:checked+label {
	background-image: url(images/check-on.png);
}

#resultInfo {
	font-weight: 500;
	text-align: center;
}

#resultInfo .count {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 1.5em;
}

/* 検索結果 */
ul.list-results>li>a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 2.3rem 7%;
	border: solid 1px #D8D8D8;
	text-decoration: none;
}

.prod-colors {
	text-align: right;
}

.prod-colors .pcolor {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	margin-left: 0.5rem;
	background: #fff;
	border: solid 1px #a2a2a2;
	border-radius: 50%;
}
.prod-colors .pcolor.white {
	background: #fff;
}

.prod-colors .pcolor.black {
	background: #000;
}

.prod-colors .pcolor.silver {
	background: #b4b4b4;
}

.prod-colors .pcolor.red {
	background: #e6000d;
}

.prod-colors .pcolor.green {
	background: #007130;
}

.prod-colors .pcolor.orange {
	background: #d73a3a;
}

.prod-colors .pcolor.gold {
	background: #decbb2;
}

.prod-colors .pcolor.gold2 {
	background: #f9e2e5;
}

.prod-colors .pcolor.pink {
	background: #e25282;
}

.prod-colors .pcolor.pink2 {
	background: #e4b1b7;
}

.prod-colors .pcolor.violet {
	background: #5a4498;
}

.prod-colors .pcolor.yellow {
	background: #cecc5a;
}

.prod-colors .pcolor.aqua {
    background: #08babe;
}

.prod-colors .pcolor.beige {
    background: #e0dcd1;
}

ul.list-results a {
	border: solid 1px #D8D8D8;
	position: relative;
}

.prod-header {
	text-align: center;
}

.new {
	padding: 5px 10px 0 0;
	color: #E6000D;
	font-size: 1.8rem;
	font-weight: 700;
	position: absolute;
	top: 0;
	right: 0;
}

.prod-category {
	display: inline-block;
}

.prod-category {
	font-size: 1.5rem;
}

.prod-name {
	font-weight: 700;
	text-align: center;
}

.prod-photo {
	max-width: 180px;
	margin: 0 auto;
}

.text-container {
	color: #525252;
}

ul.list-icons {
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.5em;
}

ul.list-icons li {
	display: inline-block;
	padding: 0 0.4em;
	border: solid 1px #777;
	margin-right: 0.2em;
}

/* 検索ボタン */
.btn-clear {
	text-align: center;
}

/* クリアボタン */
.btn-clear a {
	display: inline-block;
	margin-top: 30px;
	padding: 0.5em 1.5em;
	font-size: 1.5rem;
	line-height: 1.2;
	color: #A7A7A7;
	border: solid 1px #A7A7A7;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {

	.main-title {
		padding: 0.4em 0;
		font-size: 2.4rem;
		border-bottom: solid 1px #d9d9d9;
	}

	/* 検索条件 */
	.btn-search-options {
		display: block;
		margin-top: 5px;
		padding: 15px 0;
		font-size: 1.8rem;
		font-weight: 500;
		background: #F2F2F2;
	}
	.btn-search-options a {
		display: block;
		padding: 8px;
		border: solid 1px #5F5F5F;
		background-color: #fff;
		border-radius: 4px;
		text-align: center;
		position: relative;
	}
	.btn-search-options a::before {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		background-image: url(images/icon-arrow-down.svg);
		background-repeat: no-repeat;
		background-position: right 5% center;
		background-size: contain;
		text-align: center;
		position: absolute;
		top: 25%;
		right: 5%;
		transform: rotate(0);
		transition: .7s;
	}
	.btn-search-options a.accordion-open::before {
		transform: rotate(180deg);
	}
	[data-accordion] {
		display: none;
	}
	#options {
		padding: 10px 0 25px;
	}
	.option-title {
		font-size: 1.5rem;
	}
	.option-item {
		margin-top: 20px;
	}
	.option-item:first-of-type {
		margin-top: 0;
	}
	ul.list-options li {
		margin-top: 6px;
		margin-right: 5px;
		max-width: 150px;
		min-height: 38px;
	}
	ul.list-options li input[type="checkbox"]+label {
		padding: 4px 8px 4px 28px;
		font-size: 1.2rem;
		line-height: 1.2;
	}

	/* 検索ボタン */
	ul.list-option-submit {
		display: flex;
		justify-content: space-between;
		margin-top: 3rem;
	}
	ul.list-option-submit li {
		width: 48%;
	}
	ul.list-option-submit a {
		display: block;
		width: 100%;
		padding: 1em 0.25em;
	}

	/* アローボタン・左 */
	.btn-arrow-left {
		margin-top: 1rem;
		font-size: 1.1rem;
	}

	/* 検索結果 */
	#results {
		margin-top: 10px;
		min-height: 700px;
	}
	#resultInfo {
		padding: 0.1rem 0;
		font-size: 1.5rem;
	}
	ul.list-results {
		margin-top: 1rem;
	}
	ul.list-results>li {
		margin-top: 2rem;
	}
	ul.list-results>li:first-child {
		margin-top: 0;
	}
	.prod-name {
		font-size: 3rem;
	}
	.prod-text {
		font-size: 1.5rem;
	}
	ul.list-icons {
		font-size: 1.2rem;
	}
	ul.list-icons li {
		margin-bottom: 0.5rem;
	}
	ul.img-icons {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-top: 4px;
	}
	ul.img-icons .ractive-air-power,
	ul.img-icons .ractive-air {
		width: 120px;
	}

	/* 注釈エリア */
	.caption-section {
		margin-top: 4rem;
	}
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print , screen and (min-width: 768px) {

	main[data-footer-type] {
		padding-bottom: 8rem;
	}
	.main-title {
		padding: 1em 0;
		font-size: 3rem;
		border-top: solid 1px #d9d9d9;
	}

	/* メインビジュアル */
	.main-img {
		max-width: 1200px;
		margin: 0 auto;
	}

	/* 検索条件 */
	#options {
		padding: 3rem 0;
	}
	.option-title {
		display: flex;
		align-items: center;
		width: 200px;
		margin-bottom: 0.25rem;
		margin-right: 20px;
		border-right: solid 1px #A7A7A7;
		font-size: 1.7rem;
	}
	.option-item {
		display: flex;
		margin-top: 1rem;
		padding: 0 2rem;
	}
	.option-item:first-of-type {
		margin-top: 0;
	}
	ul.list-options {
		flex: 1;
		width: 100%;
		padding-top: 0.5rem;
	}
	ul.list-options li {
		margin-right: 1rem;
		margin-bottom: 0.5rem;
	}
	ul.list-options li input[type="checkbox"]+label {
		padding: 8px 16px 8px 34px;
		font-size: 1.5rem;
		line-height: 1.2;
		background-position: left 8px center;
		background-size: 18px auto;
	}

	/* 検索ボタン */
	ul.list-option-submit {
		margin-top: 3rem;
	}

	/* アローボタン・左 */
	.btn-arrow-left {
		margin-top: 3rem;
	}

	/* 検索結果 */
	#results {
		min-height: 700px;
	}
	#resultInfo {
		padding: 1em 0;
	}
	ul.list-results {
		display: flex;
		flex-wrap: wrap;
		padding: 2rem 2rem 0;
	}
	ul.list-results>li {
		width: 31%;
		margin-top: 3%;
		margin-left: 3.5%;
		min-height: 2.5em;
	}
	ul.list-results>li:nth-child(-n+3) {
		margin-top: 0;
	}
	ul.list-results>li:nth-child(3n-2) {
		margin-left: 0;
	}
	.prod-name {
		font-size: 3rem;
	}
	.prod-text {
		min-height: 3em;
		font-size: 1.5rem;
	}
	ul.list-icons {
		font-size: 1.2rem;
	}
	ul.list-icons li {
		margin-bottom: 0.5rem;
	}
	ul.img-icons {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-top: 10px;
	}

	ul.img-icons .ractive-air-power,
	ul.img-icons .ractive-air {
		width: 128px;
	}

	/* 検索ボタン */
	ul.list-option-submit {
		display: flex;
		justify-content: center;
		margin-top: 3rem;
	}
	ul.list-option-submit li:first-child {
		margin-right: 20px;
	}
	ul.list-option-submit a {
		padding: 0.5em 2em;
		text-align: center;
	}

	/* アニメーション設定 */
	ul.list-results>li:nth-child(3n-1) {
		transition-delay: .4s;
	}
	ul.list-results>li:nth-child(3n) {
		transition-delay: .8s;
	}

	/* 注釈エリア */
	.caption-section {
		margin-top: 6rem;
	}

}

/* ====================================
	タブレット専用スタイル
===================================== */
@media screen and (min-width: 768px) and (max-width: 1079px) {
}

/* ====================================
	PC専用スタイル
===================================== */
@media screen and (min-width: 1080px) {
}


