﻿@charset "UTF-8";
/* CSS Document */
/* ==========================================
トップページ用
=========================================== */


/*アクセスカウンター
-------------------------------------------*/
#counter {
  position: relative;
  width: 10px;
  height: 30px;
  border: solid 0px;
  /*border: solid 1px;*/
}
#counter img {
  position: absolute;
  left: -100px;
}
#counter:hover img {
  left: 0px;
}
/*END アクセスカウンター----------*/
/* ==========================================
メインタイトル　common_item.css記載
========================================== */

/********************************************
商品紹介リスト全体
********************************************/
section.list_waku_flex {
  width: 100%;
  /*max-width: 800px;*/
  display: flex;
  flex-direction: column;
  margin: 0 auto 50px auto;
  padding: 0px 0 30px 0;
  border-bottom: solid 0px #79C5CB;
}
/*商品紹介リスト
-------------------------------------------------*/
.line_flex {
  display: flex;
  align-items: center;
	justify-content: space-between;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0px 0; /*1行間隔*/
  border-top: solid 1px #82B140;/*基本色*/
}
/*最後のシステムにライン*/
.last_line_frex{
	border-bottom: solid 1px #82B140;/*基本色*/
}
.line_flex:hover {
  background-color:#DEF2C2;/*薄い基本色*/
  cursor: pointer;
}

/*商品名と説明枠
--------------------------------------------------------*/
.line_flex .item01_item02 {
  width: flex1;
	padding-right: 10px;
	box-sizing: border-box;
  border: solid 0px;
}
/*商品名称*/
.line_flex .item01 {
  font-size: 16px;
  width: 100%;
  /*width: 95%;*/
  border: solid 0px;
}
.line_flex .item01 span{
	display: inline-block;
}
/*商品名称の前に葉っぱイラスト挿入*/
.line_flex .item01::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-image: url("../img_header/menu_icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
/*説明*/
.line_flex .item02 {
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  padding-left: 18px;
  box-sizing: border-box;
  border: solid 0px;
}
/*下向き矢印*/
.line_flex .yajirushi {
  width: 80px;
  /*width: 10px;*/
  text-align: right;
  border: solid 0px;
}
.line_flex .yajirushi img {
  width:20px;
		margin-left: 5px;/*文字indexとの間隔*/
}
/********************************************
表示内容
********************************************/
.mokuji_area{
		width: 100%;
	/*max-width: 500px;*/
	margin: 20px 0 20px 0;
	padding: 20px 40px 40px 40px;
	box-sizing: border-box;
  font-size: 12px;
	border: solid 1px  #82B140;/*基本色*/
	/*background-color: #E7DEDE;*/
}
.mokuji_flex{
	display: flex;
	align-items: center;
		justify-content: space-between;
	padding: 5px 10px;
	border-bottom: solid 1px #82B140;/*基本色*/
}
.mokuji_flex:hover{
	background-color:#DEF2C2;/*薄い基本色*/
	cursor: pointer;
}

.first_mokuji_flex{
	border-top: solid 1px #82B140;/*基本色*/
}
.mokuji_flex .txt{
	width: flex1;
		padding-right: 10px;
	box-sizing: border-box;
}
.mokuji_flex .yajirushi{
	width: 8px;
}

.mokuji_flex .yajirushi img{
	width: 6px;
}
/********************************************
開発事例
********************************************/
.jirei_flex{
	display: flex;
	flex-wrap:wrap;
}
.jirei_flex div{
	width: 100%;
	max-width: 240px;
	margin-right: 10px;
	margin-bottom: 0px;
	padding:  3px 10px 3px 0;
	box-sizing: border-box;
			border: solid 0px;
}
/* ディバイスサイズ設定
============================================= */
@media (max-width: 800px) {
	/********************************************
表示内容
********************************************/
.mokuji_area{
	/*max-width: 500px;*/
	margin: 20px 0 20px 0;
	padding: 20px;

}
}
/* タブレット用 */
@media (min-width: 801px) and (max-width: 1023px) {}
/* Desktop View------------------------------- */
@media (min-width: 1024px) {}