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

/******************************************************************************************* 
	
	サイドバー

****************************************************************************************** */
/* =Search & Filter リセット
-----------------------------------------------------------------------------*/
#sidebar-products .searchandfilter ul {
    display: block;
}
#sidebar-products .searchandfilter li {
    padding-right: 0 !important;
}


/* =フォームパーツ装飾
-----------------------------------------------------------------------------*/

input[type="checkbox"] {
	position: relative;
	top: 0;
	margin: 0 .75rem 0 0;
	cursor: pointer;
}
input[type="checkbox"]:before {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	content: "";
	position: absolute;
	left: 0;
	z-index: 1;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #ccc;
}
input[type="checkbox"]:checked:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	height: 0.75rem;
	border-color: var(--blue1);
	border-width: 2px;
	border-top-style: none;
	border-right-style: none;
}
input[type="checkbox"]:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	cursor: pointer;
}

/* =サイドバー
-----------------------------------------------------------------------------*/
#sidebar-products h3 {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	background: var(--blue1);
	padding: 1em;
	border-radius: 8px 8px 0 0;
}
#sidebar-products input[type=text] {
	width: 100%;
	margin: 1em 0;
	border: 1px solid #ccc;
    padding: .8rem 1rem;
    border-radius: 8px;
}
#sidebar-products input[type=submit] {
	width: 100%;
	height: 50px;
	margin-top: 1rem;
}
#sidebar-products ul:not(.children) > li {
	display: block;
}
#sidebar-products .searchandfilter > div > ul > li:first-child {
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li {
	background: var(--bluegray);
	position: relative;
	margin-bottom: 1px;
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li.cat-item-3 {
	background: #ccd5e3;
}
#sidebar-products .searchandfilter > div > ul > li:first-child li ul.children {
	background: rgba(255,255,255,.5);
}
#sidebar-products .searchandfilter > div > ul > li:first-child li ul.children > li {
	display: block;
	margin: 5px 0;
}
#sidebar-products .searchandfilter > div > ul > li:first-child li ul.children ul.children {
	background: none;
	padding: 0 .5rem .5rem 2rem;
} 
#sidebar-products .searchandfilter > div > ul > li:first-child li ul.children ul.children li {
	display: inline-block;
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li > label {
	display: flex;
	width: calc(100% - 50px);
	height: 50px;
	padding: 0 1rem 0 1em;
	align-items: center;
	position: relative;
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li > label > input {
	display: none;
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li .open_btn {
	display: block;
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,.5);
	position: absolute;
	right: 0;
	top: 0;
	z-index: +3;
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li .open_btn:hover {
	cursor: pointer;
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li .open_btn::before {
	content: "";
    position: absolute;
    top: 25px;
    right: 20px;
    width: 10px;
    height: 1px;
    transform: rotate(90deg);
    background: var(--blue1);
    transition: all .3s ease-in-out;
    transform: rotate(180deg);
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li .open_btn::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 1px;
    background: var(--blue1);
    transition: all .2s ease-in-out;
    opacity: 0;
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li .open_btn.on::before {
	transform: rotate(90deg);
}
#sidebar-products .searchandfilter > div > ul > li:first-child > ul > li .open_btn.on::after {
	opacity: 1;
}
#sidebar-products ul.children {
	padding: 1rem 1rem 1rem 2rem;
}
#sidebar-products ul.children label {
	padding-right: 1em;
}
/******************************************************************************************* 
	
	タームエリア（一覧ページ上部）

****************************************************************************************** */
.terms-area {
	margin-bottom: 4rem;
}
.terms-area table {
	margin-bottom: .5rem;
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
}
.terms-area .searchandfilter h4 {
	display: none;
}
.terms-area .searchandfilter label {
	margin-right: .75em;
	pointer-events: none;
}
.terms-area table th {
	color: #fff;
	padding: 1.5rem 1em;
	background: var(--blue1);
	line-height: 1.5;
	width: 120px;
	text-align: center;
	vertical-align: middle;
}
.terms-area table td {
	background: var(--bluegray2);
	padding: .25em 3em .25em 1em;
	position: relative;
}
.terms-area a.cancel {
	display: inline-block;
	position: absolute;
	right: 1rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	color: #fb5357;
	font-size: 3rem;
}
.terms-area a.cancel span.material-icons {
}

.terms-area ul {
	padding: 0 !important;
	margin: 0 !important;
}
.terms-area li {
	display: inline-block;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 1.2rem;
	line-height: 1.5;
}
.terms-area li.cat-item {
	display: none;
}
.terms-area input {
	display: none;
	pointer-events: none;
}
.terms-area li.cat-item.selected {
	display: inline-block !important;
}
.terms-area input[type="radio"],.terms-area input[type="checkbox"]{
  position: relative;
  top: 2px;
  pointer-events: none;
}
.num_properties {
	text-align: right;
}


/******************************************************************************************* 
	
	製品検索ページ

****************************************************************************************** */
#products_search_wrap .searchandfilter li {
    padding-right: 0 !important;
}
#products_search_wrap .searchandfilter ul,#products_search_wrap .searchandfilter li {
	display: block;
}
#products_search_wrap {
	background: var(--bluegray2);
	padding: 5rem 6rem;
	border-radius: 8px;
}
#products_search_wrap h2 {
	color: var(--blue1);
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
}
#products_search_wrap .searchandfilter > div > ul {
	display: block;
}
#products_search_wrap .searchandfilter > div > ul > li:first-child > ul > li {
	display: block;
	padding: 2rem;
	background: var(--bluegray);
	margin-bottom: 2rem;
	border-radius: 5px;
}
#products_search_wrap .searchandfilter ul.children li {
	padding-left: 1.25em;
	background: url(../images/common/list_line_last.png) left 5px/16px no-repeat;
}
/*
#products_search_wrap .searchandfilter ul.children li {
	display: inline-block !important;
}
*/
#products_search_wrap .searchandfilter > div > ul > li:first-child > ul > li > label {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 5px;
}
#products_search_wrap .searchandfilter > div > ul > li li {
    padding-right: 1em;
    display: block;
}
#products_search_wrap .searchandfilter ul.children li {
	font-weight: 700;
}
#products_search_wrap .searchandfilter ul.children ul.children li {
	display: inline-block;
	font-weight: normal !important;
}
#products_search_wrap .searchandfilter > div > ul > li:first-child li ul.children > li {
	margin-bottom: 1rem;
}
#products_search_wrap .cat-item-3 > ul.children > li {
	display: inline-block !important;
}
#products_search_wrap input[type=text] {
    width: 100%;
    margin: 0 0 2rem;
    border: 1px solid #ccc;
    padding: .8rem 1rem;
    border-radius: 8px;
}
#products_search_wrap .searchandfilter > div > ul > li:last-child {
	display: flex;
	justify-content: center;
}
/******************************************************************************************* 
	
	製品検索ページ上段

****************************************************************************************** */
a.search_banner_box {
	display: block;
	margin-bottom: 3rem;
}
a.search_banner_box figure {
	overflow: hidden;
	margin-bottom: .1em;
	border: 1px solid var(--bluegray);
}
a.search_banner_box figure img {
	-webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
a.search_banner_box:hover figure img {
	transform: scale(1.05);
}
a.search_banner_box h4 {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	position: relative;
	padding-left: 1em;
	transition: all 0.3s ease;
}
a.search_banner_box:hover h4 {
	color: var(--orange);	
}
a.search_banner_box h4::before {
    font-family: 'Material Icons';
    content: '\e5c8';
    font-size: 1.3rem;
    color: var(--orange);
    position: absolute;
    left: 0;
    top: .1em;
    transition: all 0.3s ease;
}
a.search_banner_box h4::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--orange);
    position: absolute;
    left: 0;
    bottom: -2px;
    -webkit-transition: .2s cubic-bezier(.35,.03,.52,1) .1s;
    transition: .2s cubic-bezier(.35,.03,.52,1) .1s;
    transform: scale(0, 1);
    transform-origin: left top;
}
a.search_banner_box:hover h4::after {
	transform: scale(1,1)
}

/******************************************************************************************* 
	
	アーカイブページ

****************************************************************************************** */
.archive_products_right {
	padding-left: 4rem;
}
.archive_products_box {
	display: block;
	margin-bottom: 5rem;
}
.archive_products_box figure {
	margin-bottom: 1.2em;
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
/*
.archive_products_box figure::before {
    content: "";
    display: block;
    padding-top: 75%;
}
*/
/*
.archive_products_box figure::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: +1;
	transition: all 0.3s ease;
    opacity: 0;
}
.archive_products_box:hover figure::after {
	opacity: 1;
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
*/
.archive_products_box figure span.material-icons {
	color: var(--blue1);
	font-size: 4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;
	transition: all 0.3s ease;
	opacity: 0;
}
.archive_products_box:hover figure span.material-icons {
	opacity: 1;
}
.archive_products_box figure img {
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-height: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
.archive_products_box:hover figure img {
	transform: scale(1.05);
}
.archive_products_box h4 {
	color: #555;
	font-weight: 700;
	font-size: 1.1em;
	line-height: 1.4;
	transition: all 0.3s ease;
	padding-left: 1.25em;
	position: relative;
	margin-bottom: 1rem;
}
.archive_products_box h4::before {
    font-family: 'Material Icons';
    content: '\e5c8';
    font-size: 1.6rem;
    color: var(--orange);
    position: absolute;
    left: 0;
    top: .1em;
    transition: all 0.3s ease;
}
.archive_products_box:hover h4::before {
	color: var(--blue1);
}
.archive_products_box:hover h4 {
	color: var(--blue1);
}
.products_cat_list span {
	display: inline-block;
	color: var(--blue1);
	font-size: 1.2rem;
/* 	border: 1px solid var(--blue1); */
	line-height: 1;
	padding: .5em .75em;
	white-space: nowrap;
	margin-right: .5em;
	border-radius: 2px;
	background: var(--bluegray);
}

/******************************************************************************************* 
	
	詳細ページ

****************************************************************************************** */
.single_product_title {
	border-left: 2px solid var(--blue1);
    padding-left: 1.5em;
    margin-bottom: 4rem;
}
.single_product_title .product_copy {
	color: #999;
	font-size: 1.8rem;
	font-weight: 700;
	 margin-bottom: .5rem;
	 line-height: 1.5;
}
.single_product_title h2 {
	font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0;
}
.single_product_desc dl {
	clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
	border: 1px solid var(--gray1);
	overflow: hidden;
	height: 100%;
}
.single_product_desc dt {
	color: var(--blue2);
	font-weight: 600;
	background: var(--bluegray);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5rem;
}
.single_product_desc dd {
	display: flex;
	align-items: center;
	padding: .5rem 1em;
	margin: 0;
}
.single_products_right figure.product_img {
	text-align: center;
	margin: 1rem 0;
	border: 7px solid var(--bluegray2);
	position: relative;
    height: 420px;
}
.single_products_right figure.product_img img {
	position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: auto;
    width: auto;
    max-height: 400px; 
}
.single_products_right .single_product_cat a {
	display: inline-block;
    color: var(--blue1);
    font-size: 1.3rem;
    /* border: 1px solid var(--blue1); */
    line-height: 1;
    padding: .5em 1em;
    white-space: nowrap;
    margin-right: .2em;
    margin-bottom: .2em;
    border-radius: 2px;
    background: var(--bluegray);
}
.single_products_right .single_product_cat a:hover {
	color: #fff;
	background: var(--blue1);
}
h3.line {
	position: relative;
	color: var(--blue1);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 4rem;
}
h3.line span {
	display: inline-block;
	padding-right: .75em;
	background: #fff;
}
h3.line::before {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	background: var(--blue1);
	position: absolute;
	right: 0;
	top: calc(50% - 1px);
	z-index: -1;
}
.single_product_point {
	display: flex;
	width: 100%;
	height: 100%;
	margin-bottom: 2rem;
	clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
	background: var(--bluegray2);
	overflow: hidden;
	counter-increment: steps;
}
.single_product_point .point_head {
	width: 160px;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
	background: var(--blue1);
	line-height: 1;
	padding: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.single_product_point .point_head::after {
    font-size: 3rem;
    display: block;
    text-align: center;
    content: "0" counter(steps);
    opacity: .5;
}
.single_product_point .point_txt {
	flex: 1;
	padding: 1rem 1.5em;
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.5;
	display: flex;
    align-items: center;
}
.single_product_download a.btn {
	max-width: 100%;
	margin-bottom: 1rem;
}
.product_content table.tablepress br {
	display: none;
}
.product_content table.tablepress th {
	color: #fff;
	text-align: center;
	background: var(--blue1);
	vertical-align: middle;
}
.product_content table.tablepress th:not(:last-child) {
	border-right: 1px solid #fff;
}
.product_content table.tablepress td {
	text-align: center;
	border: 1px solid #ddd;
	vertical-align: middle;
}
.product_content table.tablepress td.column-1 {
	background: var(--gray2);
}
.single_product_contact {
	border: 2px solid var(--blue1);
	padding: 3rem;
	border-radius: 8px;
	text-align: center;
}
.single_product_contact h3 {
	color: var(--blue1);
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1em;
}
.single_product_contact h3 span.material-icons {
	display: block;
	font-size: 6rem;
}
.single_product_contact p {
	font-size: 1.2em;
}
.single_product_contact a.btn {
	width: 600px;
}
.single_product_contact a.btn span.material-icons {
	position: absolute;
	right: 2rem;
	top: calc(50% - .5em);
}

@media (min-width: 1201px) {
/******************************************************************************************* 
	
	詳細ページ

****************************************************************************************** */
	.single_product_desc dl {
		display: flex;
		margin-bottom: .8rem;
	}
	.single_product_desc dt {
		width: 100px;
	}
	.single_product_desc dd {
		flex: 1;
	}

}

@media (min-width: 992px) {
/******************************************************************************************* 
	
	詳細ページ

****************************************************************************************** */
	.single_products_right {
		padding-left: 5rem
	}
}





@media (max-width: 991px) {
/******************************************************************************************* 
	
	アーカイブページ

****************************************************************************************** */
	.archive_products_right {
	    padding-left: calc(var(--bs-gutter-x)* .5);
	}
}




@media (max-width: 767px) {
/******************************************************************************************* 
	
	サイドバー

****************************************************************************************** */
	#sidebar-products h3 {
		font-size: 1.6rem;
	}
	#sidebar-products input[type=submit] {
		margin-top: 0;
	}
/******************************************************************************************* 
	
	アーカイブページ

****************************************************************************************** */
	.archive_products_box figure {
	    margin-bottom: 1rem;
	}
	.archive_products_box h4::before {
	    font-size: 1.4rem;
	}
	.products_cat_list span {
		font-size: 1.1rem;
		margin-bottom: 4px;
	}
/******************************************************************************************* 
	
	タームエリア（一覧ページ上部）

****************************************************************************************** */
	.terms-area {
	    margin-bottom: 2rem;
	}
	.terms-area table th {
	    padding: 1rem 1em;
	    width: 100%;
	    display: block;
	}
	.terms-area table td {
	    padding: 1rem 3.6rem 1rem 1rem;
	    width: 100%;
	    display: block;
	}
	.terms-area a.cancel {
        right: .7rem;
        font-size: 2rem;
    }
	
/******************************************************************************************* 
	
	製品検索ページ

****************************************************************************************** */
	#products_search_wrap {
	    padding: 2rem 1rem;
	}
	#products_search_wrap h2 {
	    font-size: 1.8rem;
	}
	#products_search_wrap .searchandfilter ul.children li {
    	padding-left: 1em;
    }
	#products_search_wrap .searchandfilter > div > ul > li:first-child > ul > li {
	    padding: 1rem;
	    margin-bottom: 1rem;
	}
	#products_search_wrap .searchandfilter > div > ul > li:first-child > ul > li > label {
	    font-size: 1.5rem;
	}
	#products_search_wrap input[type=text] {
	    margin: 0 0 1rem;
	}
	a.search_banner_box {
		margin-bottom: 1.6rem;
	}
	a.search_banner_box figure {
		margin-bottom: .5em;
	}

/******************************************************************************************* 
	
	詳細ページ

****************************************************************************************** */	
	.single_product_title {
	    padding-left: 1em;
	    margin-bottom: 2rem;
	}
	.single_product_title .product_copy {
	    font-size: 1.5rem;
	}
	.single_product_title h2 {
	    font-size: 2rem;
	}
	.single_product_desc dl {
		height: 100%;
		margin: 0;
	}
	h3.line {
	    font-size: 2rem;
	    margin-bottom: 2rem;
	}
	.single_product_point {
	    display: block;
	    margin-bottom: 1rem;
	}
	.single_product_point .point_head {
	    width: 100%;
	    font-size: 1.4rem;
	    padding: 7px 1em;
	    flex-direction: row;
	}
	.single_product_point .point_head::after {
		font-size: 2.4rem;
		padding-left: .25em;
	}
	.single_product_point .point_txt {
	    padding: 1rem;
	    font-size: 1.1em;
	    line-height: 1.65;
	}
	.product_content .table_scroll {
		overflow-x: scroll;
	}
	.product_content table.tablepress th,.product_content table.tablepress td {
		white-space: nowrap;
	}
	.single_product_contact {
		padding: 2rem 1.5rem;
	}
	.single_product_contact h3 {
		font-size: 2rem;
		font-weight: 600;
		margin-bottom: .65em;
	}
	.single_product_contact h3 span.material-icons {
		font-size: 4rem;
	}
	.single_product_contact p {
		font-size: 1em;
	}
	.single_product_contact a.btn {
		width: 100%;
	}
	.single_product_contact a.btn span.material-icons {
		right: 1rem;
	}

	
}
