@charset "utf-8";

/*--------------------------------------------------------------
商品カタログ
--------------------------------------------------------------*/
.list_category,
.list_category2,
.list_document {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-items: stretch;
}
.list_category,
.list_document {
  margin-top: 1em;
}
.list_category::after,
.list_category2::after,
.list_document::after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
.list_category li,
.list_category2 li,
.list_document li {
	border: 1px solid #0361a7;
  border-radius: 5px;
  width: 32%;
  padding: 10px;
  margin-bottom: 10px;
}
.list_category li a,
.list_document li a {
  display: block;
  background-color: #51774f;
  border-radius: 5px;
  height: 100%;
  padding: 5%;
}
.list_document li a {
	background-color: #029BDD;
}
.list_category li a:hover,
.list_document li a:hover {
	opacity: .85;
}
.list_category li a img,
.list_document li a img {
  border-radius: 5px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: .5s;
}
.list_category li a label,
.list_document li a label {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #FFF;
  cursor: pointer;
}
.list_category li a:hover label,
.list_document li a:hover label {
	text-decoration: underline;
	color: #fff;
}
.list_category2 {
  margin-bottom: 30px;
}
.list_category2 li a {
  display: block;
  height: 100%;
}
.list_category2 li a img {
  border-radius: 5px;
  width: 50px;
  height: auto;
  vertical-align: middle;
  transition: .5s;
}
.list_category2 li a label {
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
	.list_category li,
	.list_category2 li,
	.list_document li {
    width: 48%;
	}
}


/*--------------------------------------------------------------
サイドバー
--------------------------------------------------------------*/
#catalog-sidebar {
  width: 96%;
  margin: 0 auto;
}

.catalog-search {
	margin-bottom: 20px;
  border: 1px solid #444444;
  margin-right: auto;
  margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.catalog-search input {
	border: none;
  vertical-align: middle;
  width: 80%;
  padding: 10px;
}
.catalog-search button {
	border: none;
  background-color: #444444;
  width: 20%;
  vertical-align: middle;
  font-size: 20px;
  color: #FFFFFF;
  padding: 10px;
  cursor: pointer;
}
.acd-wrap {
	margin-bottom: 20px;
}
.side_ttl {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 1em .7em;
  background: #444444;
  background: -moz-linear-gradient(top, #444444 1%, #303030 100%);
  background: -webkit-linear-gradient(top, #444444 1%,#303030 100%);
  background: linear-gradient(to bottom, #444444 1%,#303030 100%);
}
.acd-ttl,
.acd-ttl02,
.acd-menu-ttl,
.acd-menu01-ttl,
.acd-menu02 li a,
.acd-menu li a {
  position: relative;
  cursor: pointer;
}
.acd-ttl:after,
.acd-ttl02:after,
.acd-menu-ttl:after,
.acd-menu01-ttl:after,
.acd-menu02 li a:after,
.acd-menu li a:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 33%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.acd-menu02 li a:after,
.acd-menu li a:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.acd-ttl.open:after,
.acd-ttl02.open:after,
.acd-menu-ttl.open:after,
.acd-menu01-ttl.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
.acd-menu > li {
  color: #FFF;
	background-color: #3F51B5;
}
.acd-menu01 > li > p {
  background-color: #2196F3;
}
.acd-menu01 > li > p:hover {
  background-color: #1565C0;
}
.acd-menu > li > p:hover {
  background-color: #283593;
}
.acd-menu02 > li > a,
.acd-menu > li > a {
  color: #FFF;
  background-color: #00BCD4;
}
.acd-menu02 > li > a:hover,
.acd-menu > li > a:hover {
  background-color: #00838F;
}
.acd-menu > li > p,
.acd-menu01 > li > p,
.acd-menu02 > li > a,
.acd-menu > li > a {
  font-size: 1.2em;
  line-height: 1.4em;
  padding: 1em 1em 1em .8em;
  border-bottom: solid 1px #132c51;
  cursor: pointer;
}
.acd-menu > li > a,
.acd-menu02 > li > a {
	display: block;
}
#side-bottom {
	border: none;
}

@media only screen and (min-width: 768px) {
	#catalog-sidebar {
	  float: right;
    width: 220px;
	}
}

@media only screen and (max-width: 767px) {
	.catalog-search input {
	  width: 80%;
	}
	.catalog-search button {
	  width: 20%;
	}
}

/*--------------------------------------------------------------
カテゴリ選択ページ
--------------------------------------------------------------*/
.speclist img {
  border: 1px solid #0361a7;
  border-radius: 5px;
  height: auto;
  width: 100%;
  margin-bottom: 5px;
}
.speclist ul li:first-child {
  border-top: 1pt dashed #0361a7;
}
.speclist ul li {
  border-bottom: 1pt dashed #0361a7;
}
.speclist li a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 13px;
  padding: 8px 0;
}
.speclist li a:hover {
	text-decoration: none;
	background-color: #f1f1f1;
}
.speclist li a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  content: "\f138";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media only screen and (min-width: 768px) {
	.speclist {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.speclist img {
	  width: 37%;
	  height: 37%;
	}
	.speclist ul {
	  width: 60%;
	}
}

/*--------------------------------------------------------------
商品選択ページ
--------------------------------------------------------------*/
/*ソート*/
.search_option {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  border: 1px solid #999999;
  padding: 15px;
  margin: 1em 0 5px 0;
}
.search_option > div {
  width: 23%;
}
.search_option_item {
  background-color: #0361a7;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  padding: 5px 10px;
}
.search_option_item i {
  width: 12%;
  vertical-align: middle;
  font-size: 24px;
  color: #FFFFFF;
}
.search_option_item label {
  display: inline-block;
  width: 68%;
}
.search_option_link {
  border: 1px solid #0361a7;
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
}
.search_option_link a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  color: #0361a7;
  -webkit-transition: .5s;
  transition: .5s;
}
.search_option_link a:hover {
  background-color: #0361a7;
  color: #FFFFFF;
  text-decoration: none;
}
.search_option_chckbox {
  font-size: 13px;
  font-weight: 700;
  color: #0361a7;
}
.search_option_chckbox label {
  cursor: pointer;
  letter-spacing: 0;
}
.search_option_chckbox input {
  vertical-align: middle;
  margin-right: 5px;
}
/*ページネーション*/
.pagination {
  text-align: right;
  margin-bottom: 30px;
}
.pagination li {
  display: inline;
}
.pagination li a {
  display: inline-block;
  border: 1px solid #999;
  min-width: 25px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #0361a7;
  padding: 8px 3px;
  margin-left: 2px;
  -webkit-transition: .5s;
  transition: .5s;
}
.pagination li a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #0361a7;
}
/*コンテンツ*/
.list_product li {
  margin-bottom: 15px;
}
.list_product li a {
  position: relative;
  display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: rgba( 3, 97, 167, .2);
  border: 1px solid #0361a7;
  border-radius: 15px;
  padding: 15px;
  padding-right: 30px;	
  -webkit-transition: .5s;
  transition: .5s;
}
.list_product li a::after {
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    content: "\f138";
    position: absolute;
    top: 50%;
    right: 15px;
}
.list_product li a:hover {
	background-color: rgba( 3, 97, 167, .4);
	text-decoration: none;
}
.list_product li a img {
  width: 100px;
  height: 100px;
}
.list_product li a dl {
  width: calc(100% - 100px - 20px);
}
.list_product li a dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.list_product li a dd label {
  display: inline-block;
  width: 100px;
  font-size: 14px;
  line-height: 1.3em;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
	.search_option {
    -ms-flex-wrap: wrap;
		flex-wrap: wrap;
    padding: 10px;
	}
	.search_option > div {
		-webkit-box-flex: .4;
		-ms-flex: .4 0 40%;
    flex: .4 0 40%;
    margin: 4px 0;
	}
	.search_option_item label {
	  width: 68%;
	}
}

/*--------------------------------------------------------------
商品紹介ページ
--------------------------------------------------------------*/
.product_image {
  padding: 0 50px;
  margin-bottom: 20px;
}
.product_image li img {
  width: 100%;
}
.product_thumb {
  text-align: center;
  margin-bottom: 20px;
}
.product_thumb li {
  padding: 0 10px;
  cursor: pointer;
  display: inline;
}
.product_thumb li img {
  border: 1px solid #999999;
  width: 15%;
  display: inline-block;
}
.product_cation_wrap {
  overflow-x: scroll;
  width: 100%;
  margin-bottom: 10px;
}
.product_cation {
  width: 100%;
}
.product_cation thead th:nth-of-type(1) {
  min-width: 140px;
  width: 140px;
}
.product_cation thead th {
  min-width: 100px;
  width: 100px;
}
.product_cation th {
  /*background-color: #029BDD;*/
  font-size: 12px;
  font-weight: bold;
  /*color: #FFF;*/
  padding: 10px;
}
.product_cation td {
  border: 1px solid #999999;
  text-align: center !important;
  font-size: 12px;
  padding: 10px;
}
.bg-red{
	background: rgba( 255, 0, 0, .3);
}
.product_text {
	margin-bottom: 30px;
	font-size: 1.2em;
	line-height: 1.3em;
}

@media only screen and (max-width: 600px) {
	.product_cation thead th:nth-of-type(1) {
	  min-width: 100px;
	  width: 100px;
	}
	.product_cation thead th {
	  min-width: 80px;
	  width: 80px;
	}
}
