﻿@charset "UTF-8";
/* CSS Document */
/* ==========================================
70th展覧会専用
=========================================== */
#kanren_70th{
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	
}

/*プログラムリスト　
-------------------------------------------------*/
.line_flex {
  display: flex;
  align-items: center;
	justify-content: space-between;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0px 0; 
  border-top: solid 1px #82B140;/*基本色*/
}
/*最後のシステムにライン*/
.last_line_frex{
	border-bottom: solid 1px #82B140;/*基本色*/
}
.line_flex:hover {
  background-color:#DEF2C2;/*薄い基本色*/
  cursor: pointer;
}
/*下向き矢印
----------------------------------*/
.line_flex .yajirushi {
  width: 50px;
  /*width: 10px;*/
	font-size: 12px;
  text-align: right;
  border: solid 0px;
}
.line_flex .yajirushi span{
	display: block;
}
.line_flex .yajirushi img {
  width:20px;
		margin-left: 15px;/*文字indexとの間隔*/
}
/*========================================
四角に番号　　右）プログラム名
======================================== */
.shikaku_flex {
  width: 100%;
	/*max-width: 200px;*/
  display: flex;
  align-items: center; /*上下中央で並べる*/
  margin: 0 0 0px 0;
  border: solid 0px;
}
/*四角*/
.shikaku_flex .shikaku {
  position: relative;
  display: inline-block;
  /*margin: 20px 0;*/
  width:100%;
	max-width: 60px;
  height: 30px;
  margin-right: 10px;
  border-radius: 0%;
  background: #82B140; /*基本色*/
}
/*番号*/
.shikaku_flex .shikaku span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}

/*プログラム名　説明枠
--------------------------------------------------------*/
.shikaku_flex .item01_item02 {
	width: 100%;
	text-align: left;
  border: solid 0px;
}
/*プログラム名*/
.shikaku_flex .item01_item02 .item01 {
  font-size: 16px;
	line-height: 16px;
  border: solid 0px;
}
.shikaku_flex .item01_item02 span{
	display: inline-block;
}
/*説明*/
.shikaku_flex .item01_item02 .item02 {
  font-size: 12px;
	line-height: 12px;
	padding: 4px 0;
  border: solid 0px;
}

/********************************************
詳細表示
********************************************/
.syousai_area{
		width: 100%;
	/*max-width: 500px;*/
	margin: 20px 0 20px 0;
	padding: 20px 20px;
	box-sizing: border-box;
  font-size: 14px;
	line-height: 18px;
	text-align: left;
	border: solid 1px  #82B140;/*基本色*/
	/*background-color: #E7DEDE;*/
}
/********************************************
詳細表示（プログラム）
********************************************/
.syousai_area .prog_flex{
	display: flex;
}
.syousai_area .prog_flex .txt{
	width: 100%;
	/*max-width: 500px;*/
	padding-right: 20px;
	box-sizing: border-box;
	text-justify: inter-ideograph; /* IEで必要 */
text-justify: inter-character; /* Firefoxで必要 */
text-align: justify;
}
.syousai_area .prog_flex .image{
width: 500px;

}
.syousai_area .prog_flex .image img{
	width: 100%;

}

/********************************************
詳細表示（関連イベント）
********************************************/

/*項目*/
.syousai_area .item_flex{
	display: flex;
	align-items: center; 
	margin-bottom: 6px;
}
/*項目囲み*/
.kakomi_flex{
	display: flex;
	justify-content: space-between;
		width: 60px;
	padding: 1px 6px;
	box-sizing: border-box;
	margin-right: 10px;
	font-size: 12px;
	border: solid 1px #82B140;
}

/*文の前に葉っぱイラスト挿入*/
.syousai_area .item .before_icon::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
	margin-right: 4px;
  background-image: url("../img_70th/happa_icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ディバイスサイズ設定
============================================= */
@media (max-width: 800px) {


	/********************************************
詳細表示（プログラム）
********************************************/
.syousai_area .prog_flex{
	display: flex;
	flex-direction: column;
}
.syousai_area .prog_flex .txt{
	padding-right: 0px;
	margin-bottom: 20px;
}
.syousai_area .prog_flex .image{
	width: 100%;

}
.syousai_area .prog_flex .image img{
	width: 100%;

}
}
/* タブレット用 */
@media (min-width: 801px) and (max-width: 1023px) {}
/* Desktop View------------------------------- */
@media (min-width: 1024px) {}