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





/* ヘッダーエリア */


.header-fix {
		margin: 0px !important;
		padding: 0px !important;
  z-index: 100000 !important;
		transform:translate3d(0,0,100%);/* android対策 */
}


.fixed {
  position: fixed;
  top: 0px;　
  z-index: 1;
  width: 100%;
}

.smp-header {
	 width: 100%;
		max-width: 640px;
		height: 100%;
		margin: 0px auto;
		background-image: url(https://www.kouden-gaeshi.jp/pic-labo/KDs-header.jpg);
		background-repeat: repeat-y;
		background-position: center;
  display: -moz-box;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*  border-top: solid 1px #fe8e2a;*/
  border-bottom: solid 1px #aca1c5;
  box-sizing: border-box;
  flex-grow: 1;
		flex-direction: row;
		flex-wrap: nowrap;
  align-items: center;
		align-content: center;
		justify-content: space-between;
}

.smp-header img {
	 width: 95%;
		max-width: 640px;
		margin: 10px auto;
		padding: 0px 2%;
}



/* ヘッダーメニュー大枠 */
.header-menu {
	 width: 100%;
		position: relative;
		max-height: 200px;
		margin: 0px auto;
		text-align: center;
  z-index: 100000 !important;
		transform:translate3d(0,0,100%);/* android対策 */
}

/* ハンバーガーメニュー */
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  width: 55%;
  height: 100%;
  margin: 0px auto 0px;
		padding: 0px 0px 0px 0px;
		text-align: center;
/**/  position: relative;
}

#drawer-icon .navigation {
  width: 100%;
  height: 100%;
/**/  position: absolute;
  z-index: 100000 !important;
		transform:translate3d(0,0,100%);/* android対策 */
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
}

#drawer-icon .navigation span {
  display: block;
  width: 70%;
  height: 2px;
  margin: 0px auto 0px auto;
		text-align: center;
/*  position: absolute;
  top: 43%;
  left: 50%;*/
  background: #FFFFFF;
  border-radius: 20px;
		position: absolute;
  content: "";
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
}

#drawer-icon .navigation span:nth-of-type(1) {
  top: -22px;
		left: 0;
  right: 0;
		bottom: 0;
  margin: auto;
}
#drawer-icon .navigation span:nth-of-type(2) {
  top: -12px;
		left: 0;
  right: 0;
		bottom: 0;
  margin: auto;
}
#drawer-icon .navigation span:nth-of-type(3) {
  top: -2px;
		left: 0;
  right: 0;
		bottom: 0;
  margin: auto;
}

#drawer-checkbox:checked ~ #drawer-icon .navigation {
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}


#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  width: 70%;
  height: 3px;
}

#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(2) {
  opacity: 0;
}

#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
  width: 70%;
  height: 3px;
}



/* タブレット以上 */
@media screen and (min-width:500px){
#drawer-checkbox:checked ~ #drawer-icon .navigation {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  width: 70%;
  height: 3px;
}


#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(2) {
  opacity: 0;
}

#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
  width: 70%;
  height: 3px;
}
}


/* タブレット以上 */
@media screen and (min-width:1000px){
#drawer-checkbox:checked ~ #drawer-icon .navigation {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  width: 70%;
  height: 3px;
}


#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(2) {
  opacity: 0;
}

#drawer-checkbox:checked ~ #drawer-icon .navigation span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
  width: 70%;
  height: 3px;
}
}


#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500000 !important;
		transform:translate3d(0,0,100%);/* android対策 */
  width: 250px;
  max-width: 90%;
  height: 100%;
  background: #FFFFFF;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(-100%);
}

#drawer-checkbox:checked ~ #drawer-content {
  transform: translateX(0);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}


#drawer-content ul {
 	margin: 0;
 	padding: 0;
 	color: #757575;
}

#drawer-content li {
 	list-style: none;
	 text-align: left;
 	border-bottom: 1px solid #cccccc;
		position: relative;
		font-size: 16px;
}


#drawer-content li.menu-title {
 	display: block;
 	padding: 20px 20px 20px 20px;
	 text-decoration: none;
	 color: #FFFFFF;
  background: #c5bbda;
		font-size: 16px;
/*		font-weight: bold;*/
		margin: 5px 0px 0px 0px;
}

#drawer-content li.menu-title-link {
 	display: block;
 	padding: 0px 0px 0px 0px;
	 text-decoration: none;
	 color: #969696;
  background: #f2f2f2;
		font-size: 16px;
/*		font-weight: bold;*/
}


#drawer-content li a {
	 display: block;
 	padding: 20px;
 	text-decoration: none;
 	color: #757575;
}

#drawer-content li.menu-title a {
	 display: block;
 	text-decoration: none;
 	color: #969696;
 	padding: 20px 0px 20px 20px;
}

#drawer-content li.menu-title-link a {
	 display: block;
 	padding: 0px;
 	text-decoration: none;
 	color: #969696;
 	padding: 20px 0px 20px 20px;
}

#drawer-content li p {
 	margin: 0px 0px 0px 0px;
}

#drawer-content li a:after {
		font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
 	color: #cccccc;
		position: absolute;
  top: 35%;
  bottom: 0;
		right: 3%;
}

#drawer-content li.menu-title a:after {
		font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
 	color: #cccccc;
		position: absolute;
  top: 35%;
  bottom: 0;
		right: 3%;
		font-size: 16px;
}




/*------------------ 検索欄 ------------------*/



.search_container{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  padding: 0px 0px;
/*  border-radius: 20px;*/
  height: 2.8em;
  width: 260px;
  overflow: hidden;
		width: 85%;
		margin: 15px auto 15px;
		background-color: #FFFFFF;
}
.search_container input[type="text"]{
  border: none;
  height: 2.3em;
		line-height: normal;
		font-size: 14px;
  padding: 5px 0px 0px 10px;
  opacity: 0.5;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: "Font Awesome 5 Free";
  font-size: 1.3em;
  border: none;
  background: none;
  color: #3879D9;
  position: absolute;
  width: 2.3em;
  height: 2.3em;
  right: 0;
  top: -3px;
  outline : none;
  font-weight: 900;
}















/*------------------ 商品を探す ------------------*/

.tab-wrap {
		max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  margin: 0px auto;
		background-color: #FFFFFF;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #aca1c5;
  display: block;
  order: -1;
}
.tab-label {
  color: #FFFFFF;
  background-color: #aca1c5;
  font-weight: nomal;
/*  text-shadow: 0 -1px 0 rgba(0,0,0,.2);*/
  white-space: nowrap;
  text-align: center;
  padding: 0px 0px 0px 0px !important;
  order: -1;
  position: relative;
  cursor: pointer;
  border-radius: 0 0;
  height: 35px;
  flex-grow: 1;
		position: relative;
}

.tab-label:before {
		font-family: "Font Awesome 5 Free";
  content: '\f078';
  color: #FFFFFF;
		position: absolute;
  bottom: 1px;
  left: 0px;
		margin: auto;
  right: 0px;
  font-weight: 900;
}

.tab-label.no-mark:before {
		font-family: "";
  content: '';
  color: #000000;
  text-align: center;
  padding: 0px 0px 0px;
  cursor: pointer;
  border-radius: 0 0;
  height: auto;
}

.flex-grow01 {
		width: 30px;
}

.flex-grow02 {
		width: 70px;
}


.tab-label p.text-change {
  color: #FFFFFF;
  font-weight: nomal;
		margin: 2px auto 0px;
		padding: 0px 0px 0px;
		line-height: 160%;
  text-align: center;
}

.tab-label img.head-mark {
	 width: 70%;
		max-width: 30px;
		margin: 4px auto -1px;
  text-align: center;
}

.tab-label p.text-change-menu {
  color: #FFFFFF;
		margin: 22px auto 0px -5%;
		padding: 0px 0px 0px;
		line-height: 160%;
		font-size: 10px;
  text-align: center;
}

/* iPhone5 SE */
@media screen and (max-width:320px){
.tab-label p.text-change-menu {
  color: #FFFFFF;
		margin: 21px auto 0px -20%;
		padding: 0px 0px 0px;
		line-height: 160%;
		font-size: 10px;
  text-align: center;
}
}

.tab-label p.text-change-under {
  color: #FFFFFF;
		margin: 0px auto 0px;
		padding: 0px 0px 0px;
		line-height: 160%;
		font-size: 10px;
}

.tab-label:not(:last-of-type) {
  margin-right: 1px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

a.inquiry-title {
  color: #FFFFFF;
  display: inline-block;
		margin: 0px;
		padding: 0px;
		text-decoration: none;
  font-weight: nomal;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background-color: #8475a6;
  padding: 0px 0px 0px 0px !important;
}
.tab-switch:checked+.tab-label+.tab-content {
	 width: 100%;
		max-width: 640px;
  height: auto;
		min-height: 420px;
  overflow: auto;
  padding: 0px 5px 0px 5px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
/*  background-color: #333300; 場所把握用 */
}



.tab-switch:checked+.tab-label.tab-label:before {
		font-family: "Font Awesome 5 Free";
  content: '\f077';
  color: #FFFFFF;
		position: absolute;
  bottom: 3px;
  left: 0px;
		margin: auto;
  right: 0px;
  font-weight: 900;
}

.tab-switch:checked+.tab-label.tab-label.no-mark:before {
		font-family: "";
  content: '';
  color: #FFFFFF;
  text-align: center;
  padding: 0px 0px 0px;
  cursor: pointer;
  border-radius: 0 0;
  height: auto;
}







/* ラジオボタン非表示 */
.tab-switch {
  display: none !important;
}



/*------------------ 商品を探す2 ------------------*/

.tab-wrap02 {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
 	display: flex;
  flex-wrap: wrap;
/* 場所把握用		border: solid 1px #F60;
		box-sizing: border-box;*/
		flex-direction: column;
		position: relative;
}

/*.tab-label-matome {
  width: 100%;
  display:-webkit-box;
  display:-ms-flexbox;
 	display:flex;
  flex-wrap: wrap;
		border: solid 1px #F0C;
		box-sizing: border-box;
  order: -1;
  overflow: auto;
}*/

.tab-label02 {
  width: 120px;
  max-width: 120px;
  height: 100%;
  overflow: auto;
  color: #FFFFFF;
  background-color: #FFFFFF;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  border: 1px solid Gray;
  border-radius: 4px 0 0 4px;
  margin: 5px -1px 5px 0px;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  float: left;
		box-sizing: border-box;
  border-right-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
 	display: flex;
  flex-wrap: wrap;
		-ms-flex-line-pack: start;
	 align-content: flex-start;
}

.tab-label02 p {
  font-weight: bold;
  text-align: center;
  margin: 5px auto 5px auto;
		color: #757575;
}

.tab-content02 {
  display:none;
}
/* アクティブなタブ */
.tab-switch02:checked+.tab-label02 {
  background: #a78db0;
  border: 1px solid Gray;
  border-right-color: #FFFFFF;
		box-sizing: border-box;
}
.tab-switch02:checked+.tab-label02+.tab-content02 {
  width: calc(100% - 125px); /* - ボタン幅 */
  height: auto;
  overflow: auto;
  padding: 2px 5px 15px 0px;
/*  border-left: 1px solid Gray;*/
  display:-webkit-box;
  display:-ms-flexbox;
 	display:flex;
  flex-wrap: wrap;
/* 場所把握用 		border: solid 1px #3C3;
		box-sizing: border-box;*/
/* */ -webkit-box-pack: justify;
	 -ms-flex-pack: justify;
	 justify-content: space-between;
  -webkit-justify-content: space-between;
		-ms-flex-line-pack: start;
	 align-content: flex-start;
		position: absolute;
		right: 0px;
		top: 0px;
}
.tab-switch02:checked+.tab-label02 p {
  font-weight: bold;
  text-align: center;
  margin: 5px auto 5px auto;
		color: #FFFFFF !important;
}

/* ラジオボタン非表示 */
.tab-switch02 {
  display: none !important;
}


/*------------------ 商品を探す・見積りの内部 ------------------*/

/* カテゴリ用テキスト */
.tab-contents {
	 width: 90px;
		height: 100%;
		min-height: 95px;
  border:1px solid Gray;
		box-sizing: border-box;
  border-radius: 5px;
		text-align: center;
		margin: 3px 0px 3px 8px;
		line-height: 150%;
  -webkit-flex-grow: 1;
  flex-grow: 1;
		background-color: #FFFFFF;/* 場所把握用 */
		/* テキスト揃える用 */
		display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
}

.tab-contents a {
		display: block;
		color: #474948;
		text-decoration: none;
		width: 100%;
  height: 100%;
 	min-height: 95px;
		/* 画像とテキスト縦並び用 */
			-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
		/* テキスト揃える用 */
		display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
}

.tab-contents img {
		width: 70%;
		margin: 5px auto 5px;
}

.tab-contents p {
		font-size: 14px;
		margin: 0px 0.3em 0px !important;
}


/* iPhone5 SE */
@media screen and (max-width:320px){
/* カテゴリ用テキスト */
.tab-contents {
	 width: 90px;
		height: 100%;
		min-height: 50px;
  border:1px solid Gray;
		box-sizing: border-box;
  border-radius: 5px;
		text-align: center;
		margin: 3px 0px 3px 8px;
		line-height: 150%;
  -webkit-flex-grow: 1;
  flex-grow: 1;
		background-color: #FFFFFF;/* 場所把握用 */
		/* テキスト揃える用 */
		display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
}
.tab-contents img {
		width: 50%;
		margin: 5px auto 3px;
}
}

/* タブレット以上 */
@media screen and (min-width:500px){
/* カテゴリ用テキスト */
.tab-contents {
	 width: 150px;
		height: 150px;
		min-height: 45px;
  border:1px solid Gray;
		box-sizing: border-box;
  border-radius: 5px;
		text-align: center;
		margin: 3px 0px 3px 8px;
		line-height: 150%;
  -webkit-flex-grow: 1;
  flex-grow: 1;
		background-color: #FFFFFF;/* 場所把握用 */
		/* テキスト揃える用 */
		display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
}

.tab-contents a {
		display: block;
		color: #474948;
		text-decoration: none;
		width: 100%;
  height: 100%;
 	min-height: 45px;
		/* 画像とテキスト縦並び用 */
			-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
		/* テキスト揃える用 */
		display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
}

.tab-contents img {
		width: 60%;
		margin: 5px auto 10px;
		overflow: hidden;
  height: auto;
}

.tab-contents p {
		font-size: 14px;
		margin: 0px 0.3em 0px !important;
}
}



/* カタログ請求用テキスト */
.tab-contents-estimate {
	 width: 100%;
		height: 120px;
/*		background-color: #e6e0f3;*/
		background-color: #FFFFFF;
  border: 3px solid #aca1c5;
		box-sizing: border-box;
  border-radius: 5px;
		text-align: center;
		margin: 10px auto 10px auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.tab-contents-estimate a {
		display: block;
		color: #474948;
		text-decoration: none;
	 width: 100%;
		height: 100%;
		/* テキスト揃える用 */
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
}

.tab-contents-estimate p {
/*  border: 1px solid #8475a6;*/
		font-size: 14px;
		line-height: 160%;
}

.tab-contents-estimate p span {
		font-size: 35px;
}

.tab-contents-estimate img {
		height: 100%;
		margin: 0px auto 0px auto;
}

