@charset "utf-8";
/*FONT SIZE*/
html, body {
	margin: 0;
	padding: 0;
}
html{
    font-size: 62.5%;
}
body{
    font-size:1.4rem;/* px*/
    line-height: 2;
}
h1 {
    font-size: 36px;/* IE8以下とAndroid4.3以下用フォールバック */
    font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));/* 24px~36pxで可変*/
    line-height: 1.3;
}
h2 {
    font-size: 24px;/* IE8以下とAndroid4.3以下用フォールバック */
    font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));/* 20px~24pxで可変*/
    line-height: 1.3;
}
@media (min-width: 1200px) {/* 1200px以上*/
    h1 {
        font-size: 3.6rem;/* 36px*/
    }
    h2 {
        font-size: 2.4rem;/* 24px*/
    }
}
@media screen and (max-width: 640px) {/* 640px以下*/
    body{
    line-height: 2;
    }
    h1{
        font-size: 2.4rem;/* 24px*/
    }
    h2 {
        font-size: 2rem;/* 20px*/
    }
}



/*COMMON------------------------------------*/
/*------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
}

body {
	background: ;
	font-size: ;
	font-family: "Font Awesome 5 Free","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
header,main,footer {
	margin: 0 auto;
}

ul li {
	list-style: none;
}



/*LINK--------------*/
a:hover {
	opacity: 0.7;
}


/*FLEXBOX-----------*/
.flexbox {
	display: flex;
}
.flexwrap {
	flex-wrap: wrap;
}
.al-ce {
	align-items: center;
}




/*TABLE-------------*/
table.fix {
	table-layout: fixed;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
table caption {
	text-align:left;
}

/*FORM--------------*/
input[type="text"],
select {
	padding: 0.5rem;
	width: 100%;
}
input[type="radio"] {
	margin-right: 0.5rem;
}

input.search_btn {
	background: #000;
	color: #fff;
    font-size: 18px;
    padding: 0 0.5em 0 1em;
	letter-spacing: 0.5em;
	border-color: #000;
	width:160px;
	white-space: normal;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/*placeholderスタイル*/
::placeholder {
  color: #ccc;
}
/* Webkit */
::-webkit-input-placeholder {
  color: #ccc;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #cccccc;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #cccccc;
}
@media screen and (max-width: 480px) {
	::placeholder {
	  font-size:10px;
	  overflow-wrap: break-word;
	}
	::-webkit-input-placeholder {
	  font-size:10px;
	  overflow-wrap: break-word;
	}
}


/*MAIN--------------------------------------*/
/*------------------------------------------*/
main {
	margin: 0;
}

article {
}

section {
	max-width: 1020px;
	width: 100%;
	margin: 0 auto;
	padding: 30px 10px;
	box-sizing: border-box;
}
section > *:not(h2){
	margin-left: 30px;
	margin-right: 30px;
}
	@media screen and (max-width: 480px) {
		section > *:not(h2){
			margin-left: 0;
			margin-right: 0;
		}
	}

section div[class$="_cont"] {
	margin-bottom: 3rem;
}

label {
    display: table-cell;
    vertical-align: middle;
    height: 24px;
	color: #555555;
    line-height: 1.1;
}

h2 {
	margin: 60px 0 10px;
	color: #555555;
}
	section > form > h2,
	.select_item_ct h2 {
		margin-left: -30px;
	}
	@media screen and (max-width: 480px) {
		section > form > h2,
		.select_item_ct h2 {
			margin-left: 0;
		}
	}

.sub_title {
	font-size: 18px;
	color: #777;
}


/*ヘッダー画像*/
.header_image {
	background-image: url(./images/header_image.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 35vh;
	max-height: 350px;
	 width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header_image h1 {
    width: 100%;
    display: flex;
    object-fit: contain;
    align-items: center;
    justify-content: center;
	height: 35vh;
	max-height: 350px;
    background: rgba(0,0,0,0.3);
}
.header_image h1 img{
	max-width: 350px;
	width: 50vw;
}
.caption {
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
	font-size: 10pt;
	color: #555;
}
@media screen and (min-width: 481px) {
	.caption span:before {
		content: "\A";
		white-space: pre;
	}
}

/*製品を探す*/
.search_conditions_cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.search_conditions {
	margin-bottom: 20px;
	position:relative;
	height:83px;
	max-width: 420px;
}
#real.search_conditions {
	margin-right: 2rem;
}
.search_conditions label { 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	max-width: 420px;
	color: #555;
	border: solid 1px #555;
	background: #fff;
	display: block;
	height:83px;
	display: flex;
	align-items: center;
	font-size: 20px;
	transition: all 0.3s linear;
	cursor: pointer;
}
	@media screen and (max-width: 940px) {
		#real.search_conditions {
			margin-right: 0;
		}
		.search_conditions,
		.search_conditions label { 
			max-width: unset;
		}
	}
	@media screen and (max-width: 480px) {
		.search_conditions label { 
			font-size: 18px;
		}
	}
.search_conditions label img {
  filter: invert(0);
  transition-property: filter;
  transition-duration: .3s;
  transition-timing-function: ease;
}
.search_conditions label.active {
	background: #000;
	color: #fff;
}
.search_conditions label.active img {
  filter: invert(100%);
}

.search_conditions_cont .icon_search {
	width:45px;
	height: 45px;
	margin: 0 0 0 5px;
}
.search_conditions_cont .icon_del {
	width:57px;
	height: 57px;
	margin: 0;
}
.search_btn_cont {
	display: flex;
	flex-flow: row-reverse nowrap;
    margin: 0 !important;
    padding: 0 !important;
}
.search_conditions_cont .delete_btn,
.search_conditions_cont .search_btn {
	cursor: pointer;
}

.search_conditions_cont input#keyword {
	border: none;
	font-size: 18px;
	height: 100%;
}

.search_conditions label img {
	margin: 20px;
}


/*製品選択*/
.flex_title .product_no,
.flex_title .jan,
.flex_title .product_name {
	background: #ebebeb;
}
.search_product {
	width: 100%;
	height: 150px;
	overflow-y: scroll;
	border: solid 1px #000;
}

.search_product .flexbox:hover div {
    -webkit-transition: background-color .2s linear;
    -moz-transition: background-color .2s linear;
    transition: background-color .2s linear;
}
.search_product .flexbox:hover div {
    background: #000;
    color: #fff;
    cursor: pointer;
}

.select_item {
	border: solid 1px #555;
	min-height: calc(100px + 2em);
}
.select_item img {
}

/*製品にアクティブクラスを付与*/
.search_product .flexbox.active div {
    background: #000000;
	color: #FFFFFF;
}
.select_item_ct{
	display: none;
	margin-bottom: 2em;
}
.select_item_ct .product_no,
.select_item_ct .jan,
.select_item_ct  .product_name{
	font-size: 12px;
}
.select_item_ct .product_no,
.select_item_ct .jan{
	border-right: none;

}
.select_item{
	gap: 1em;
}
.select_item img{
	float: left;
	max-width: 80px;
	margin: 1em;
}
.select_item table{
    width: auto;
    margin: 20px auto 20px 120px;
    box-sizing: border-box;
    min-height: 80px;
}
.select_item table td{
	padding-right: 1em;
	font-size: 12px;
	vertical-align: top;
	min-width: 6em;
}

.flexbox{
	font-size: 1rem;
	width: 100%;
}
.flexbox > div {
	padding: 0.5rem;
	line-heigh: 1.2;
	text-overflow:"";
	padding-right: 0.5em;
}
.flexbox.flex_title img{
	max-height: 40px;
    display: block;
}
.flexbox.flex_title > div{
	font-size: 6px;
	border: #000 solid 1px;
	border-bottom: none;
	border-right: none;
}
.flexbox.flex_title > div:last-of-type{
	border-right: #000 solid 1px;
}

.flexbox .product_no {
	display: flex;
	border-right:solid 1px #000;
	width: 80px;
	overflow-wrap: break-word;
	justify-content: center;
	align-items: center;
	font-size: 12px;
}
.flexbox .jan {
	display: flex;
	border-right:solid 1px #000;
	width: 120px;
	overflow-wrap: break-word;
	justify-content: center;
	align-items: center;
	font-size: 12px;
}
.flexbox .product_name {
	display: flex;
	width: calc(100% - 200px);
	overflow-x: hidden;
	justify-content: flex-start;
	align-items: center;
	font-size: 12px;
}

/*カテゴリ*/
.category_cont {
	clear: both;
}

/* セレクトボックスの矢印デザイン変更 */
#category {
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
}
#category::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
#category {
	width: 100%;
	height: 52px;
	font-size: 18px;
	background-image: url(./images/icon_select.png);
	background-position: right 0 center;
	background-repeat: no-repeat;
	background-size: 52px 52px;
}


/*検索結果*/
.detail_cont > div > .flexbox {
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: solid 1px #cccccc;
}
.detail_cont {
	border-top: solid 1px #cccccc;
}
.product_img {
	min-width: 100px;
	margin: 0 10px;
	text-align: center;
}
.detail {
	width: 100%;
	font-size: 12px;
}
.detail > div {
	display: flex;
	margin-left: 1rem;
}
.heading {
	width: 8rem;
	font-weight: 900;
	text-align: justify;
}
.heading + div {
	width: calc(100% - 8rem);
}
table td {
	vertical-align: top; 
}
.red{
	color: red;
}

.detail_btn {
    background: #000000;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    padding: 10px;
    margin-top: 10px;
}



/*PageTOP Return-------*/
div#PageTop {
    position: fixed;
    bottom: 30px;
    right: 10px;
    width: 51px;
    height: 53px;
    z-index: 1000;
    text-align: center;
    cursor: pointer;
}
	@media screen and (max-width: 480px) {
		div#PageTop {
			    bottom: 10px;
		}
	}
div#PageTop:hover{
	opacity: 0.5;
}


/*FOOTER------------------------------------*/
/*------------------------------------------*/
footer {
	background: #000;
	width: 100%;
	min-height: 100px;
}
.footer_cont {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1100px;
	padding: 30px 10px;
}
.footer_cont small {
	color: #fff;
}