@charset "UTF-8";

/* ====================================
	共通スタイル
 ==================================== */
/* 検索条件 */
#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(common/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(common/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-categorys>li {
	position: relative;
}

ul.list-categorys>li input {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}

ul.list-categorys input[type="checkbox"]+label {
	width: 100%;
	height: 100%;
	margin: 0;
	background-image: url(common/images/check-off.svg);
	background-repeat: no-repeat;
	background-position: left 6px top 12px;
	background-size: 18px auto;
}

ul.list-categorys input[type="checkbox"]:checked+label {
	background-image: url(common/images/check-on.svg);
}

/* クリアボタン */
.option-btn-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.btn-clear {
	text-align: center;
}

.btn-clear a {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: underline;
}

.btn-clear a:hover {
	text-decoration: none;
}

/* 更新ボタン */
.btn-update {
	margin-left: 10px;
	text-align: center;
}

.btn-update a {
	width: 140px;
	display: inline-block;
	padding: 0.5em;
	font-size: 1.5rem;
	line-height: 1.2;
	color: #535353;
	border: solid 1px #A0A0A0;
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
}

.btn-update a.active {
	color: #fff;
	background-color: #535353;
	border: solid 1px #535353;
}

/* 比較表 */
.column-ctegory-ttl,
.header-ttl {
	font-weight: bold;
}

.prod-category {
	font-weight: 500;
}

.result-header .th-column {
	background-color: #FAFAFA;
}

.body-thead {
	background-color: #FAFAFA;
}

.body-thead .row-ttl {
	font-weight: bold;
}

.body-thead .category-ttl,
.body-tbody .category-ttl {
	color: #000;
	background-color: #D0D0D0;
}

.header-tbody {
	background-color: #fff;
}

/* 表ボーダー */
.result-header {
	border-top: solid 1px #D0D0D0;
	border-bottom: solid 1px #D0D0D0;
}

.result-header .th-column {
	border-left: solid 1px #D0D0D0;
}

.result-header .td-column {
	border-left: solid 1px #D0D0D0;
	border-right: solid 1px #D0D0D0;
}

.result-body .td-column {
	border-left: solid 1px #D0D0D0;
	border-right: solid 1px #D0D0D0;
	border-bottom: solid 1px #D0D0D0;
}

.body-thead .row .row-ttl {
	border-left: solid 1px #D0D0D0;
	border-bottom: solid 1px #D0D0D0;
}

.body-tbody .column {
	border-right: solid 1px #D0D0D0;
	border-bottom: solid 1px #D0D0D0;
}

.header-tbody .column {
	border-right: solid 1px #D0D0D0;
}

.column-ctegory-ttl {
	border-bottom: solid 1px #D0D0D0;
}

.header-category-row .column-ctegory {
	border-right: solid 1px #D0D0D0;
	border-bottom: solid 1px #D0D0D0;
}

/* ボーダー調整 */

.body-thead {
	border-bottom: solid 1px #D0D0D0;
}

.body-thead .row:last-child .row-ttl,
.body-tbody .row:last-child .column {
	border-bottom: 0;
}

/* テーブルコンテナ */
#noResult {
	text-align: center;
}

#noResult:not(.no-result) {
	display: none;
}

#result:not(.has-result) {
	height: 200px;
	visibility: hidden;
	overflow: hidden;
}

.result-header-container,
.result-container {
	font-size: 1.2rem;
	line-height: 1.4;
}

.result-header,
.result-body {
	position: relative;
}

.th-column {
	width: 80px;
	position: absolute;
	top: 0;
	left: 0;
}

.td-column {
	margin-left: 80px;
	overflow-x: scroll;
	overflow-y: hidden;
}

.td-column .row {
	display: flex;
}

/* 比較表ヘッダー */
.scroll-fix-wrap {
	position: relative;
}

.result-header-container {
	width: 100%;
	position: absolute;
	top: 0;
}

.scroll-fix-wrap.passed .result-header-container {
	position: fixed;
	z-index: 1;
}

.scroll-fix-wrap.passed.passed-bottom .result-header-container {
	position: absolute;
}

.header-tbody {
	display: inline-block;
	vertical-align: bottom;
}

.header-tbody .header-category-row {
	height: 25px;
	position: relative;
}

.header-tbody .header-main-row {
	min-height: 20px;
}

.header-tbody .column {
	height: inherit;
	padding: 6px;
}

/* 比較表ヘッダー：カテゴリー */
[data-category="親機コードレス"] {
	background-color: #D5EAFF;
}

[data-category="スタンダード"] {
	background-color: #D5FFEA;
}

[data-category="コードレス子機"] {
	background-color: #FFF2D5;
}

/* 比較テーブル */
.result-container {
	padding-top: 209px;
}

.th-column {
	min-height: 100%;
}

.body-thead {
	width: 100%;
}

.body-tbody {
	display: inline-block;
	vertical-align: bottom;
}

.body-tbody .row {
	min-height: 38px;
}

.header-tbody .column-ctegory,
.header-tbody .column,
.td-column .row .column {
	flex-shrink: 0;
	width: 110px;
	text-align: center;
}

.header-tbody .column-ctegory {
	display: flex;
	justify-content: center;
	align-items: center;
}

.body-thead .row-ttl,
.body-tbody .category-ttl {
	padding: 10px 20px;
}

.body-thead .row-ttl {
	display: flex;
	align-items: center;
}

.body-tbody .row .column {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px;
}

.result-header-container .header-ttl,
.body-thead .row-ttl {
	padding: 5px;
	font-size: 1rem;
}

.body-thead .category-ttl,
.body-tbody .category-ttl {
	font-size: 1.6rem;
}

/* 比較表：製品情報 */
.prod-left .prod-name {
	font-weight: bold;
	font-size: 1.6rem;
}

ul.list-prod-link li a {
	display: block;
	padding: .4em 1.5em .4em 2em;
	background-image: url(/products/common/images/chevron-right-solid.svg);
	background-repeat: no-repeat;
	background-position: left .5em center;
	background-size: auto 1em;
	background-color: #fff;
	color: #000;
	border: solid 1px #707070;
	border-radius: 5px;
	text-decoration: none;
}

ul.list-prod-link li a.hovering {
	background-color: #707070;
	background-image: url(/products/common/images/chevron-right-solid-w.svg);
	color: #fff;
	border: solid 1px #707070;
}

/* ツールチップ */
#tooltipContainer {
	display: none;
}

.body-thead .row-ttl {
	padding: 10px 30px 10px 10px;
	position: relative;
}

.body-thead a[data-tooltip-target] {
	display: block;
	width: 1.5em;
	height: 1.5em;
	font-size: 1rem;
	line-height: 1.5;
	background-color: #797979;
	color: #fff;
	border-radius: 1rem;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	text-decoration: none;
}

#tooltip {
	padding: 1em 1.2em;
	background-color: #FAFAFA;
	border: solid 2px #797979;
	border-radius: .5rem;
	position: absolute;
	z-index: 1;
}

#tooltip>div::before {
	content: '×';
	width: 1.2em;
	height: 1.2em;
	font-size: 1.2em;
	text-align: center;
	position: absolute;
	top: .5em;
	right: .5em;
	cursor: pointer;
}

#tooltip .ttl {
	color: #002295;
}

#tooltip .text {
	font-weight: normal;
}

/* ====================================
	1023px以下専用スタイル
===================================== */
@media only screen and (max-width: 1023px) {

	/* メインタイトル */
	.main-title {
		height: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 2.4rem;
	}

	/* 注釈エリア */
	.caption-container {
		margin-top: 6rem;
	}

	.caption-container ul.star li {
		margin-top: .5em;
	}

	/* 検索条件 */
	#options {
		margin-bottom: 1rem;
		padding: 30px 0;
	}

	.option-title {
		font-size: 1.5rem;
	}

	.option-item {
		margin-top: 20px;
	}

	.option-item:first-of-type {
		margin-top: 0;
	}

	/* 検索条件：カテゴリーリスト */
	ul.list-categorys {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		font-size: 1.3rem;
		line-height: 1.4;
	}

	ul.list-categorys>li {
		width: 50%;
	}

	ul.list-categorys input[type="checkbox"]+label {
		background-position: left 6px top 7px;
		background-size: 18px auto;
	}

	.checkbox-category {
		padding-left: 30px;
	}

	.checkbox-img {
		max-width: 80px;
		margin: 0 auto;
		text-align: center;
	}

	.checkbox-category-type {
		margin-right: .5em;
		text-align: center;
	}

	.checkbox-category-count {
		font-size: 1.3rem;
	}

	.option-title {
		text-align: center;
		margin: 0 0 5px;
	}

	ul.list-options {
		justify-content: center;
	}

	ul.list-options li {
		margin-top: 6px;
		margin-right: 5px;
		max-width: 150px;
		min-height: 34px;
	}

	ul.list-options li input[type="checkbox"]+label {
		padding: 4px 6px 4px 28px;
		font-size: 1.2rem;
		line-height: 1.2;
	}

	.column-ctegory-ttl {
		padding: 5px;
		font-size: 1rem;
	}

	/* 比較表：製品情報 */
	.prod-category {
		font-size: 1rem;
	}

	/* 比較テーブル */
	.body-tbody .row:last-child .column {
		border-bottom: none;
	}

	.scroll-fix-wrap {
		margin-top: 1rem;
	}

	/* テーブルコンテナ */
	.prod-img {
		width: 60px;
		height: 60px;
		margin: 0 auto;
	}

	ul.list-prod-link {
		width: 100%;
		max-width: 140px;
		margin: 0 auto;
		padding: 1rem 0 0;
	}

	ul.list-prod-link li:first-child {
		margin-bottom: .5em;
	}

	ul.list-prod-link li {
		font-size: 1.2rem;
	}

	ul.list-prod-link li a {
		display: inline-block;
		padding: .4em .5em .4em 1.5em;
	}

	/* ツールチップ */
	.body-thead .row-ttl {
		padding: 8px 24px 8px 8px;
	}

	.body-thead a[data-tooltip-target] {
		right: 5px;
	}

	#tooltip {
		width: 80vw;
		bottom: 50%;
		left: 5vw;
		transform: translate(0,-20px);
	}

	#tooltip::before,
	#tooltip::after {
		content: "";
		width: 0;
		height: 0;
		position: absolute;
	}

	#tooltip::before {
		border-style: solid;
		border-color: #707070 transparent transparent transparent;
		border-width: 12px 12px 0 12px;
		bottom: -12px;
		left: 33px;
	}

	#tooltip::after {
		border-style: solid;
		border-color: #FAFAFA transparent transparent transparent;
		border-width: 9px 9px 0 9px;
		bottom: -9px;
		left: 36px;
		z-index: 10;
	}

	#tooltip .ttl {
		margin-bottom: .5em;
		font-size: 1.2rem;
	}
}

/* ====================================
	567px以下専用スタイル
===================================== */
@media only screen and (max-width: 567px) {}

/* ====================================
	568以上767px以下専用スタイル
===================================== */
@media only screen and (min-width: 568px) and (max-width: 1023px) {}



/* ====================================
	1024px以上印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 1024px) {

	main[data-footer-type] {
		padding-bottom: 8rem;
	}

	/* メインタイトル */
	.main-title {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 10rem;
		font-size: 3rem;
	}

	/* 注釈エリア */
	.caption-container {
		margin-top: 6rem;
	}

	/* 検索条件 */
	.result-info-container {
		margin-bottom: 3rem;
	}

	.result-info-container .base-width {
		position: relative;
	}

	.btn-search-options {
		display: none;
	}

	/*
	.btn-search-options .base-width {
		position: relative;
	}

	.btn-search-options a {
		display: block;
		width: 240px;
		padding: .5em 1.5em;
		font-size: 1.5rem;
		background-color: #A0A0A0;
		border-radius: 1rem;
		color: #fff;
		text-decoration: none;
		position: absolute;
		top: 0;
		right: 40px;
		z-index: 1;
	}

	.btn-search-options a::before {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		background-image: url(common/images/icon-arrow-down-w.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 {
		margin: 0 0 3rem;
		padding: 3rem 0;
	}

	/*
	#options .base-width {
		position: relative;
	}

	#options .base-width::before {
		content: '';
		position: absolute;
		right: 130px;
		top: -50px;
		width: 0px;
		height: 0px;
		margin: auto;
		border-style: solid;
		border-color: transparent transparent #F2F2F2 transparent;
		border-width: 0 20px 20px 20px;
	}
*/
	.option-title {
		display: flex;
		align-items: center;
		width: 140px;
		margin-bottom: 0.25rem;
		/* margin-right: 20px; */
		/* border-right: solid 1px #A7A7A7; */
		font-size: 1.7rem;
	}

	.option-item {
		display: flex;
		justify-content: center;
		margin-top: 2rem;
		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 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-categorys {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		padding: 0 40px;
		font-size: 1.2rem;
		line-height: 1.4;
	}

	ul.list-categorys>li {
		display: inline-block;
		width: 33.33%;
		border-left: solid 1px #D9D9D9;
	}

	ul.list-categorys>li:last-child {
		border-right: solid 1px #D9D9D9;
	}

	ul.list-categorys input[type="checkbox"]+label {
		background-position: left 10px top 6px;
		background-size: 22px auto;
	}

	.checkbox-img,
	.checkbox-category {
		max-width: 200px;
		margin: 0 auto;
		text-align: center;
	}

	.checkbox-category-type {
		font-size: 1.8rem;
		text-align: center;
	}

	.checkbox-category-count {
		display: block;
		font-size: 1.6rem;
	}

	.checkbox-img {
		padding: 0 15%;
	}

	/* クリアボタン */
	.option-btn-container {
		margin-top: 30px;
	}

	.btn-clear a {
		font-size: 1.4rem;
	}

	/* 更新ボタン */
	.btn-update a {
		width: 180px;
		font-size: 1.6rem;
	}

	/* テーブルコンテナ */
	.result-header,
	.result-body {
		margin-right: 40px;
	}

	.result-header-container {
		font-size: 1.2rem;
		background-color: #fff;
	}

	.result-container {
		font-size: 1.4rem;
	}

	.th-column {
		width: 200px;
	}

	.td-column {
		margin-left: 200px;
	}

	/* 比較表ヘッダー */
	#resultHeader {
		min-height: 73px;
	}

	.column-ctegory-ttl {
		padding: 10px;
	}

	.header-ttl {
		padding: 10px 0 0 10px;
	}

	.header-tbody .header-category-row {
		height: 37px;
		position: relative;
	}

	.header-tbody .header-main-row {
		min-height: 20px;
		position: relative;
	}

	.header-tbody .header-main-row .column {
		height: inherit;
		padding: 0 15px 15px 15px;
	}

	/* 比較テーブル */
	.body-tbody .row {
		min-height: 40px;
	}

	.header-tbody .column-ctegory,
	.header-tbody .column,
	.td-column .row .column {
		width: 240px;
	}

	.result-header-container .header-ttl,
	.body-thead .row-ttl {
		padding: 10px;
		font-size: 1.2rem;
	}

	.body-thead .category-ttl,
	.body-tbody .category-ttl {
		font-size: 1.8rem;
	}

	/* 比較表：製品情報 */
	.prod-category {
		font-size: 1.4rem;
	}

	.prod-wrap {
		display: flex;
		align-items: center;
	}

	.prod-left {
		width: 120px;
		text-align: left;
	}

	.prod-right {
		width: 86px;
		height: 86px;
	}

	.prod-copy {
		/* height: 40px; */
		font-size: 1.4rem;
		text-align: left;
	}

	.prod-left .prod-name {
		font-size: 2.4rem;
	}

	ul.list-prod-link {
		display: flex;
		justify-content: center;
		padding: 10px 0 0;
	}

	ul.list-prod-link li {
		width: 100%;
	}

	ul.list-prod-link li:first-child {
		margin-right: .5em;
	}

	/* NEXT/PREV */
	.side-scroll-btn {
		width: 40px;
		height: 40px;
		background-repeat: no-repeat;
		background-position: left .5em center;
		background-size: auto 30px;
		cursor: pointer;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
	}

	.side-scroll-btn {
		display: none;
	}

	.side-scroll-btn.hovering {
		opacity: .6;
	}

	#resultPrev {
		background-image: url(/products/common/images/chevron-left-solid.svg);
		left: 150px;
	}

	#resultNext {
		background-image: url(/products/common/images/chevron-right-solid.svg);
		right: -40px;
	}

	/* はてな */
	.body-thead a[data-tooltip-target] {
		right: 10px;
	}

	#tooltip {
		width: 320px;
		top: 50%;
		right: 2px;
		transform: translate(100%, -50%);
	}

	#tooltip::before,
	#tooltip::after {
		content: "";
		width: 0;
		height: 0;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
	}

	#tooltip::before {
		border-style: solid;
		border-color: transparent #707070 transparent transparent;
		border-width: 6px 12px 6px 0;
		left: -12px;
	}

	#tooltip::after {
		border-style: solid;
		border-color: transparent #FAFAFA transparent transparent;
		border-width: 4px 9px 4px 0;
		left: -8px;
		z-index: 10;
	}

	#tooltip .ttl {
		margin-bottom: .5em;
		font-size: 1.4rem;
	}

}

/* ====================================
	1024px以上1199px以下印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 1024px) and (max-width: 1199px) {}


@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {

	.body-tbody,
	.header-tbody {
		display: inline-block;
		font-size: 0;
	}

	.body-tbody .row,
	.header-tbody .row {
		font-size: 1.4rem;
	}

	.item {
		width: 100%;
		word-break: break-all;
	}
}