@charset "utf-8";

.wrap {
    width: 100%;
    /*background-color: #f0f3c9;*/
    background-color: #ffffff;
} 

h1 {
    padding: 10px 0 50px 0;/*1008*/
    text-align: left;/*1008*/
    font-size: 30px;
	background-color: #9cc45a;/*1008*/
}
h1 img {
	margin-left: 20px;/*1008*/
    width: 400px;/*1008*/
}
h2 {
    padding: 10px;
    font-size: 30px;
    text-align: center;
    font: bold "fantasy";
    color: #004D31;
    /*text-shadow: 1px 2px 3px #808080;*/
}
.top_h2{
    padding-top: 30px;
}
h3 {
	font-size: 20px;
}
nav {
	display: flex;
	position: fixed;/*1008*/
	top: 10px;/*1008*/
	right: 0;/*1008*/
	width: 730px;/*1008*/
    /*background-color: #009D5B;*/
	/*background-color: #9cc45a;*//*1008*/
	color: white;
	-webkit-justify-content: flex-end; /* 横方向右揃え（Safari用） *//*1008*/
    justify-content: flex-end; /* 横方向右揃え *//*1008*/
}
/*1008*/
nav ul{
    display: flex;
    flex-flow: row;
    height: 50px;
    margin: 0;
	margin-right: 20px;/*1008*/
	padding: 6px;
	list-style-type: none;
    -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
    align-items: center; /* 縦方向中央揃え */
    -webkit-justify-content: flex-end; /* 横方向右揃え（Safari用） *//*1008*/
    justify-content: flex-end; /* 横方向右揃え *//*1008*/
}
nav li {
    background-color: #9cc45a;/*1008*/
}
nav a {
    display: table-cell;
    vertical-align: middle;
    height: 70px;
	/*border-radius: 4px;*/
	padding: 0px 14px;
	color: white;
	text-decoration: none;
}

nav li a:hover {
    height: 50px;
	background-color: #004D31;
}
/*0316*/
.special_list {
    width: 90px;
    height: 70px;
}
.special_list a:hover {
    height: 70px;
	background-color: #004D31;
}
/*子階層以降共通*/
.special_list_item {
    display: list-item;
    margin-right: 0;
}
.special_list_item li {
    height: 0;
    overflow: hidden;
    transition: .5s;
}
.special_list_item li a {
    width: 130px;
    padding: 0 10px;
}
nav li:hover > ul > li {
    width: 130px;
    height: 7rem;
    overflow: visible;
        transition: .5s;
}
nav li ul li ul {
    left: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
nav li li a {/*子階層*/
    background: #004D31;
}
nav li li:hover a {
    background: #9cc45a;
}
/*0316*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  background: #3f98ef;
  opacity: 0.6;

}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.award {
   max-width: 70%;
   margin: 0 auto;
   margin-top: 2rem;
}
.award dl{
    margin-top: 1rem;
    margin-bottom: 2rem;
    background: radial-gradient(ellipse at center, rgba(159,207,235,1) 0%,rgba(170,218,246,1) 28%,rgba(170,218,246,1) 18%,rgb(255, 255, 255) 70%);
    padding: 2rem;
}
.award dt{
    padding: 10px;
    font-size: 3rem;
    text-align: center;
    font: bold "fantasy";
    color: #004D31;
    font-weight: 600;
    text-shadow: 1px 2px 3px #808080;  
}
.award dd {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}
.award small {
    font-size: 1.5rem;
    font-weight: 300;
}

/*ヘッダーまわりはサイトに合わせて調整してください*/
header {
  width: 100%;
  position: fixed;
  z-index: 2;
  top: 0;
  background-color: #ffffffd0;
}
body {
    padding-top: 125px;/*1008*/
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  margin: 20px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 30px;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 230px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
#nav-content li {
  display: block;
  height: 40px;
  margin: 0;
    /*background-color: #009D5B;*/
	background-color: #9cc45a;

}
#nav-content a {
  display: block;
  padding: 10px;
  height: 40px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #fff;
  color: white;
  text-decoration: none;
}
#nav-content li a:hover {
    height: 40px;
	background-color: #004D31;
}
/*0316*/
#nav-content ul li ul{
    display: none;
}
#nav-content ul li ul li{
    overflow: hidden;
    transition: .5s;
}
#nav-content li:hover ul {                   /* 親メニュー ホバー時・子メニュー全体 */
	display:block;
}
.special_list_item_re {
    display: list-item;
    margin-right: 0;
}
.special_list_item_re li {
    height: 0;
    overflow: hidden;
    transition: .5s;
}
.special_list_item_re li a {
    width: 100%;
    padding: 0 10px;
}
#nav-content .special_list_re:hover > ul > li {
    width: 100%;
    height: 4rem;
    overflow: visible;
}
#nav-content .special_list_re:hover + #pro_list {
    margin-top: 160px;
}
#nav-content li ul li ul {
    left: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
#nav-content li li a {/*子階層*/
    background: #004D31;
}
#nav-content li li:hover a {
    background: #368367;
}
/*0316*/
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.top-img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
}
.movie_area{
    position: relative;
    width: 80%;
    height: 0;
    padding-top: 45%;
    margin-bottom: 80px;
}
.back_area{
    position: absolute;
    top: 0;
    left: 0;
    width: 106%;
    height: 125%;
    margin-top: -8%;
    margin-left: 10%;
	background-color: #f7c8dc;
	border: 0px solid #004D31;
	border-radius: 20px;
    z-index: 1;
}
.back_area img{
	display: block;
	width: 30%;
    margin: 0 auto;
	margin-top: 74.5%;
}
.frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 3%;
	margin-left: 13%;
    z-index: 1;
}
video{
    object-fit: fill;
}
.movie_title{
    text-align: center;
    margin-top: 1%;
    padding-top: 1%;
    left: 36%;
    font-size: 4vw;   
    font: bold "fantasy";
    color: #004D31;
    text-shadow: 1px 2px 3px #808080;
    font-weight: 600;
}
.poster {
    width: 70%;
    margin: 10px auto;
}
.info-wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.information {
    margin: 0 10px 70px 10px;
}
.info {
    width: 70%;
    height: 300px;
    margin: 30px auto;
    padding: 20px;
    font-size: 15px;
}
.info > .topics {
	width: 100%;
	height: 250px;
	overflow: scroll;
}
.topics dl {
    display: flex;
    padding: 15px 15px;
    border-bottom: 1px solid #004D31;
}
.topics dt {
    display: block;
    width: 26.5%;
    margin-left: 3%;
}
.topics dd {
    display: block;
    width: 73.5%;
    margin-right: 3%;
}
.news {
    width: 50%;
    height: 300px;
	margin: 10px;
    padding: 20px;
    font-size: 15px;
}
/*記事一覧btn*/
.btn {
	display: block;
	-moz-appearance: none; /*装飾を消す*/
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	padding: 0;
	text-align: center;
	background: #9cc45a;
	color: #fff;
	font-size: 1.8rem;
	width: 200px;
	height: 57px;
	line-height: 57px;
	margin: 30px auto;
	font-weight: bold;
	transition: opacity .3s linear;
}
.btn a {
	display: block;
	width: 100%;
	color: #fff;
	text-decoration: none;
}
.btn:hover {
	opacity: .85;
	/*border-radius: 5px;*/
	background-color: #004D31;
}

.banner_area {
	width: 100%;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15%;
    margin-bottom: 30px;
}
.banner_mark {
	display: block;
	margin: 1px;
	width: 248px;
	height: 98px;
	text-align: center;
	line-height: 98px;
	font-size: 1em;
}
/*誘導btn*/
.Induction {
    margin-top: 5rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
.Induction .btn {
	display: block;
	-moz-appearance: none; /*装飾を消す*/
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	padding: 0;
	text-align: center;
	background: #F7C8DC;
	color: #fff;
	font-size: 2.1rem;
	width: 248px;
	height: 98px;
	line-height: 98px;
	font-weight: bold;
	transition: opacity .3s linear;
    margin: 1px;
    margin-bottom: 30px;
}
.Induction .btn a {
	display: block;
	width: 100%;
	color: #004D31;
	text-decoration: none;
}
.Induction .btn:hover {
	opacity: .85;
	/*border-radius: 5px;*/
	background-color: #FF81BB;
}
.social {
    display: flex;
    margin: 0 10px;
}
.contact {
    width: 100%;
    margin: 10px;
	text-align: center;
}
.contact p {
	margin: 20px;
}

.SNS {
    width: 30%;
    margin: 10px;
    height: 300px;
}
.botton {
	width: 250px;
    height: 60px;
	margin: 50px auto;
	padding: 0;
	display: block;
    justify-content: center; /*//左右中央揃え*/
	line-height: 60px;/*//上下中央揃え*/
	background-color: #9cc45a;
	transition: opacity .3s linear;
}
.botton a {
	display: block;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
}
.botton:hover {
	opacity: .85;
	/*border-radius: 5px;*/
	background-color: #004D31;
} 
footer {
    margin: 0;
	padding: 5% 30px;
    /*background-color: #009D5B;*/
	background-color: #9cc45a;
}
.footer-wrap {
	display: flex;
    max-width: 1000px;
    margin: 0 auto;
}
.footer1 {
	width: 50%;
    padding-top: 6%;
    text-align: right;
    line-height: normal;
}
.sns_space{
    display: inline-block;
}
.sns_space img{
    width: 43.5px;
    margin: 5px;/*1018*/
}
#footerlink {
	width: 50%;
}

#footerlink li{
    display: inline-block;
    list-style: none;
}
#footerlink a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
}
#footerlink li a:hover {
    height: 100%;
	color: #000;
}
.greeting {
    max-width: 800px;
    width: 80%;
	/*height: 400px;*/
    margin: 0 auto;
    padding: 10px;
}
.greeting img{
    width: 30%;
    margin: 0 0 10px 10px;
    float: right;
}
.sentence {
	width: 100%;
	font-size: 1.2em;
	line-height: 1.5em;
}
.clear {
    clear: right;
}
.about_wrap{
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}
table{
    margin: 0 auto;
    /*border: 2px solid #004D31;*/
    font-size: 15px;
    text-align: left;
}
.about_wrap th{
    width: 300px;
    background-color: #93FFAB50;
    border: solid 1px #fff;
    /*border: solid 1px #004D31;*/
    /*color: ;*/
    padding: 10px;
    font-size: 17px;
    text-align: center;
    vertical-align: middle;
}
.about_wrap td{
    width: 700px;
    background-color: #CCFF9950;
    border: solid 1px #fff;
    /*border: solid 1px #004D31;*/
    /*color: ;*/
    padding: 20px 0 20px 30px;
    line-height: normal;
}
/* 以下お問い合わせフォーム */
.contact_wrap {
	max-width: 800px;
	width: 80%;
    margin: 0 auto;
    padding: 10px;
}
.section-contact {
	padding: 30px 0 50px;
}
.form-block {
	margin-bottom: 25px;
    font-size: 1.8rem;
}
.form-block dt{
    font-size: 1.8rem;
}
.form-title {
    width: 100%;/*1012*/
	font-size: 1.8rem;
	padding-top: 30px;
	margin-bottom: 10px;
}
.form-title span {
	display: inline-block;
	font-size: 1.4rem;
	color: #f32938;
	margin-left: 8px;
}
/*1012*/
.form-title th {
    margin-top: 20px;
    display: block;
    width: 100%;
}
.form-title td {
    margin-top: 10px;
    display: block;
    width: 100%;
}
.lead {
	margin-bottom: 30px;
}
.select, input[type="text"], input[type="email"], input[type="tel"], textarea {
	-moz-appearance: none; /*装飾を消す*/
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 43px;
	padding: 0 10px;
	border: 1px solid #004D31;
	border-radius: 0;
	background: #fff;
	font-size: 1.8rem;
	line-height: 43px;
	font-family : inherit;
}
.textarea {
	height: 150px;
	line-height: 1.5;
	padding: 10px;
}
.submit-btn {
	display: block;
	-moz-appearance: none; /*装飾を消す*/
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	padding: 0;
	background: #9cc45a;
	color: #fff;
	font-size: 1.8rem;
	width: 116px;
	height: 43px;
	line-height: 43px;
	margin: 30px auto;
	font-weight: bold;
	transition: opacity .3s linear;
}
.submit-btn a {
	display: block;
	width: 116px;
	color: #fff;
	text-decoration: none;
}
.submit-btn:hover {
	opacity: .85;
	/*border-radius: 5px;*/
	background-color: #004D31;
} 
#submit_button {
	display: block;
	-moz-appearance: none; /*装飾を消す*/
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	padding: 0;
	background: #9cc45a;
	color: #fff;
	font-size: 1.8rem;
	width: 116px;
	height: 43px;
	line-height: 43px;
	margin: 30px auto;
	font-weight: bold;
	transition: opacity .3s linear;
}
#submit_button a {
	display: block;
	width: 116px;
	color: #fff;
	text-decoration: none;
}
#submit_button:hover {
	opacity: .85;
	/*border-radius: 5px;*/
	background-color: #004D31;
} 



/*パンくずリスト調整用*/

.list ul li{
	display:inline;
	font-size: 1.0em;
	margin-top:10px;
	padding-top: 10px;
	padding-left: 10px;
	list-style: none;
}

/*ニュースレターページ用CSS*/

.news_letter {
	max-width: 800px;
	width: 80%;
	/*height: 400px;*/
	margin: 20px auto;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
}
.news_letter p {
	text-align: center;
}
.letter{
    margin: 20px 0;
}

.letter a{
    font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 2.3rem;
	font-weight: Black;
    color: #004D31;
    text-decoration: none;
}

/*演題登録ページ用CSS*/
#themecss{
	/*padding-left: 200px;
	padding-right: 200px;*/
	font-size: 1.2em;
    max-width: 800px;
    width: 80%;
    /*height: 400px;*/
    margin: 0 auto;
    padding: 10px;
}

#themecss .theme{
	font-size:1.2em;
	font-weight:bold;
	color:#0033CC;
	line-height: 1.6em;
}

#themecss h3{
	font-size: 2.0em;
	font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	text-align: center;
	line-height:1.2em;
	margin-top: 50px;
	margin-bottom: 30px;
}

#themecss h4{
	margin-top: 50px;
	font-size: 1.6em;
	font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	margin-bottom:5px;
}

#themecss p{
	margin-top:10px;
	line-height: 1.6em;
}


.floatdt{
	width: 80%;
	margin: 50px 5% 50px 0%;
	line-height: inherit;
}


.floatdt dl dt{
	display:block;
	margin:0px 20px 5px 0px;
	font-weight:bold;
	float:left;
	line-height:2;
}


.floatdt dl dd{
	display:block;
	margin: 0px 50px 5px 30px;
	padding-bottom:10px;
	padding-left:10px;
	width:100%;
	line-height:2;
}

.normaldl dl{
	margin-top:10px;
}

.normaldl dt{
	margin-top:10px;
	line-height: 1.4em;
}

.normaldl dd{
	margin-top:10px;
	line-height: 1.4em;
	margin-left:50px;
}

/*.normaldl dl dt dd{
	margin-top:10px;
	line-height: 1.4em;
	margin-left:50px;	
}*/

#themecss ul li{
	margin-top:10px;
	line-height: 1.4em;
	margin-left:36px;
}

#themecss ol li{
	margin-top:10px;
	line-height: 1.4em;
}
.del {
	text-decoration: line-through;
}
.red_text {
	color: red;
}
.ex {
	font-size: 0.9em;
	text-align: center;
}
/* 会場案内CSS */
#guide_wrap {
    width: 80%;
    margin: 0 auto;
}
#guide_wrap h3 {
    margin: 20px 30px;
    padding-left: 20px;
    border-bottom: 3px solid #9cc45a;  
}
#guide_wrap p {
    margin-left: 10%;/*1018*/
    margin-bottom: 30px;
	line-height: 1.8em;
    font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
    font-weight: bold;
    font-size: 1.2em;
}
#guide_wrap iframe {
    width: 100%;
    margin: 0 auto;
}

/*「随時更新」案内表示*/
.detail h3 {
	font-size: 1.2em;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
}
.detail {
	max-width: 800px;
	width: 80%;
	/*height: 400px;*/
	margin: 0 auto;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
}
.detail p {
	text-align: center;
}
.comp_wrap h3{
    margin: 50px;
    text-align: center;
}

/*「事前参加登録」案内表示*/
.apply h3 {
    margin: 20px 30px;
    padding-left: 20px;
    border-bottom: 3px solid #9cc45a; 
}
.apply {
	max-width: 800px;
	width: 80%;
	/*height: 400px;*/
	margin: 0 auto;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
    margin-bottom: 50px;
}
.apply p {
    margin-bottom: 30px;
	line-height: 1.8em;
    font-size: 1em;
    text-align: center;
}

/*「後援・協賛企業　団体一覧」案内表示*/
.spon h3 {
    margin: 20px 30px;
    padding-left: 20px;
    border-bottom: 3px solid #9cc45a; 
}
.spon {
	max-width: 800px;
	width: 80%;
	/*height: 400px;*/
	margin: 0 auto;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
    margin-bottom: 50px;
}
.list_spon {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
	line-height: 2.8em;
    font-size: 1em;
    text-align: center;
}
.list_spon ul{
    list-style: none;
}
/*広告掲載募集表示*/
.exhibi h3 {
    margin: 20px 30px 20px 30px;
    padding: 0 20px;
    border-bottom: 3px solid #9cc45a; 
}
.exhibi h4{
    padding-left: 30px; 
    margin-top: 15px;
    margin-bottom: 5px;
}
.exhibi p{
    width: 97%;
    padding-left: 70px;
    margin-right: 0px;
}
.exhibi {
	max-width: 800px;
	width: 80%;
	margin: 0 auto;
	padding: 15px;
	font-size: 1.2em;
	line-height: 1.5em;
    margin-bottom: 0px;
}
.application {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
}
.application p{
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
    text-align: center;
}
.precautions {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
    margin-bottom: 60px;
}
.precautions h3 {
    margin: 20px 30px 20px 30px;
    padding: 0 20px;
    border-bottom: 3px solid #9cc45a; 
}
.precautions dl {
    display: flex;
    padding: 15px 15px;
}
.precautions dt {
    display: block;
    width: 9%;
    margin-left: 3%;
}
.precautions dd {
    display: block;
    width: 100%;
    font-size: 1.8rem;
}
/*特別企画*/
.special h3 {
    margin: 20px 30px 20px 30px;
    padding: 0 20px;
    border-bottom: 3px solid #9cc45a; 
}
.special h4{
    padding-left: 30px; 
    margin-top: 15px;
    margin-bottom: 5px;
}
.special h5{
    text-align: right;
    padding-right: 30px; 
    margin-top: 15px;
    margin-bottom: 50px;
    font-weight: 400;
}
.special p{
    width: 97%;
    padding-right: 0px;
    margin-right: 0px;
    margin-top: -40px;
    margin-bottom: 60px;
    text-align: right;
}
.special {
	max-width: 800px;
	width: 80%;
	margin: 0 auto;
	padding: 15px;
	font-size: 1.2em;
	line-height: 1.5em;
    margin-bottom: 60px;
}
.special_top {
    padding-top: 30px;
}
.symp_list {
    width: 97%;
    text-align: right;
}
.symp_list ul {
  list-style: none;
}
.symp_list small{ 
  font-size: 1.5rem;
}

/*未来図会議*/
.meeting {
	max-width: 800px;
	width: 80%;
	margin: 0 auto;
	padding: 15px;
	font-size: 1.2em;
	line-height: 1.5em;
    margin-bottom: 60px;
}
.meeting h3 {
    margin: 20px 30px 20px 30px;
    padding: 0 20px;
    border-bottom: 3px solid #9cc45a; 
}
.meeting h4{
    text-align: center; 
    margin-top: -30px;
    margin-bottom: 5px;
    font-size: 1.5em;
    line-height: 1.3;
}
.meeting h5{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}
.meeting ul{
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0 auto;
    margin-bottom: 30px;
    justify-content: space-evenly;
    text-align: center;
    flex-wrap: wrap;
}
.meeting li{
    display: block;
    padding: 0 20px;
    font-size: 2rem;
}
.meeting li small{
    font-size: 1.6rem;
}
.chair {
    width: 97%;
    padding-right: 10px;
    margin-right: 0px;
    margin-top: -10px;
    margin-bottom: 60px;
    text-align: right;
}
.meeting_text {
    width: 90%;
    margin: 0 auto;
}
/*プログラム*/
.program h3 {
    margin: 20px 30px 20px 30px;
    padding: 0 20px;
    border-bottom: 3px solid #9cc45a; 
}
.program h4{
    padding-left: 50px; 
    margin-top: 15px;
    margin-bottom: 5px;
}
.prog_a{
    width: 97%;
    padding-left: 8%;
}
.program {
	max-width: 800px;
	width: 80%;
	margin: 0 auto;
	padding: 15px;
	font-size: 1.2em;
	line-height: 1.5em;
    margin-bottom: 60px;
}
.program_top {
    padding-top: 30px;
}
.program_list {
    width: 97%;
}
.program_list ul {
    width: 91%;
    display: flex;
    list-style: none;
    margin: 0 auto;
    margin-top: 20px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.program_list li{
    width: 50%;
    display: block;
    padding-left: 5%;
    font-size: 1.5rem;
}

/*コンテンツ縮小時の要素変更　横幅が768px以下の時変更*/
@media only screen and (min-width: 769px) {
      #nav-open {
         display: none;
      }
}
/*1010*/
@media only screen and (min-width: 400px) and (max-width: 768px) {
	  body {
        padding-top: 40%;/*1012*/
      }
     nav {
        display: none;
      }
	 h1 {
	    position: fixed;/*1010*/
	    top: 7%;/*1010*/
        width: 100%;
        padding: 0px;
        text-align: center;
        font-size: 30px;
		background-color: transparent;/*1008*/
      }
     h1 img {
        width: 80%;
        height: 80%;
		margin-left: 0;/*1008*/
      }
	header {
		height: 0;
		padding-bottom: 40%;/*1012*/
        width: 100%;
        position: fixed;
        z-index: 2;
        top: 0;
        width: 100%;
        background-color: #9cc45ad0;
     }
    .award {
        max-width: 100%;
        margin-top: -6rem;
    }
    .information {
        display: block;
        margin: 80px auto;
        padding: 0 10px;
    }
    .info {
        width: 100%;
        height: 300px;
        margin: 10px auto;
    }
    .topics dt {
        float: none;
        width: 26.5%;
        margin-left: 0;
    }
    .topics dd {
        margin-left: 0;
    }
    .exhibi h3 {
        margin: 20px 30px;
        padding-left: 20px;
        border-bottom: 3px solid #9cc45a; 
    }
    .exhibi h4{
        padding-left: 5%; 
        margin-top: 15px;
        margin-bottom: 5px;
    }
    .exhibi p{
        width: 95%;
        padding-left: 10%;    
    }
    .precautions h3 {
        margin-top: 40px;
    }
    .precautions dt {
        float: none;
        width: 22%;
        margin-left: 3%;
    }
    .precautions dd {
        width: 90%;
        margin-left: 0;
    }
    .news {
        width: 100%;
        margin: 10px auto;
        height: 300px;
    }
	.top-img {
        position: static;
        padding-bottom: 70%;
    }	
	.movie_area{
        position: relative;
        width: 90%;
        height: 0;
        padding-top: 0;
		padding-bottom: 0;
        margin: 95% auto 0 auto;
    }
    .back_area{
        position: relative;
        height: 0;
        padding-top: 0;
		padding-bottom: 80%;
        margin: 20px auto;
        width: 126%;
        height: 218%;
        margin-top: -104%;
    	margin-left: -13%;
    	background-color: #f7c8dc;
    	border: 0px solid #004D31;
    	border-radius: 0px;
        z-index: 1;
    }
    .back_area img{
    	display: block;
    	width: 30%;
        padding: 3% 0;
        margin: 0 auto;
    	margin-top: 74.5%;
    }
    .frame {
		top: 0;
        left: 0;
        position: absolute;
        width: 80vw;
        height: 50.625vw;
        margin-top: -88%;
	    margin-left: 0;
        z-index: 1;
    }
    .movie_area video {
	    width: 100%;
    }
    .movie_title {
        margin-top: 0;
        padding-top: 0;
        font-size: 6vw
    }
    .poster {
        margin-top: 25%
    }
    .banner_area {
        margin-top: 30%;
    }
    .social {
        display: block;
        margin: 0 auto;
    }
    .contact {
        width: 100%;
        margin: 70px auto 0 auto;
        height: 300px;
    }
    footer {
        height: 0;
	    padding-bottom: 100%;/*1012*/
    /*background-color: #009D5B;*/
	background-color: #9cc45a;
    }
    .footer-wrap {
	    display: block;
    }
    .footer1 {
	    width: 100%;
        margin: 0;
        text-align: center;
        line-height: normal;
    }
    #footerlink {
	    width: 100%;
        margin: 0%;
        text-align: center;
    }
    .about_wrap td{
        display: block;
        width: 100%;
        padding: 20px 8px;
    }
    .about_wrap th{
        display: block;
        width: 100%;
    }
	/* 会場案内CSS */
    #guide_wrap h3 {
        padding: 0 20px;
        text-align: center;
    }
    #guide_wrap p {
        width: 90%;
        margin: 30px auto;
    }/*1018*/
        /*特別企画*/
    .special p{
        font-size: 1.1rem;
    }
    /*プログラム*/
    .program_list li{
        width: 100%;
        display: block;
        font-size: 1.5rem;
}
}
/*1010*/
@media only screen and (max-width: 400px) {
	  body {
        padding-top: 20%;
      }
     nav {
        display: none;
      }
	 h1 {
	    position: fixed;/*1010*/
	    top: 3%;/*1010*/
        right: 0%;/*1010*/
        width: 80%;
        padding: 0px;
        text-align: center;
        font-size: 30px;
		background-color: transparent;/*1008*/
      }
     h1 img {
        width: 80%;
        height: 80%;
		margin-left: 0;/*1008*/
      }
	header {
		height: 0;
		padding-bottom: 20%;
        width: 100%;
        position: fixed;
        z-index: 2;
        top: 0;
        width: 100%;
        background-color: #9cc45ad0;
     }
    .award {
        max-width: 100%;
        margin-top: -6rem;
    }
    .information {
        display: block;
        margin: 20px auto;
        padding: 0 10px;
    }
    .info {
        width: 100%;
        height: 300px;
        margin: 10px auto;
    }
    .topics dt {
        float: none;
        width: 26.5%;
        margin-left: 0;
    }
    .topics dd {
        margin-left: 0;
    }
    .exhibi h3 {
        margin: 20px 30px;
        padding-left: 10px;
    }
    .exhibi h4{
        padding-left: 5%; 
        margin-top: 15px;
        margin-bottom: 5px;
    }
    .exhibi p{
        width: 95%;
        padding-left: 10%;    
    }
    .precautions h3 {
        margin-top: 40px;
    }
    .precautions dl {
        display: block;
        margin: 0 auto;
    }
    .precautions dt {
        float: none;
        width: 100%;
        margin-left: 0;
    }
    .precautions dd {
        width: 100%;
        margin-left: 10px;
        padding-right: 0;
    }
    .news {
        width: 100%;
        margin: 10px auto;
        height: 300px;
    }
	.top-img {
        position: static;
        padding-bottom: 65%;
    }	
	.movie_area{
        position: relative;
        width: 90%;
        height: 0;
        padding-top: 0;
		padding-bottom: 0;
        margin: 100% auto 0 auto;
    }
	.back_area{
        position: relative;
        height: 0;
        padding-top: 0;
		padding-bottom: 80%;
        margin: 20px auto 0 auto;
        width: 126%;
        height: 218%;
        margin-top: -104%;
    	margin-left: -13%;
    	background-color: #f7c8dc;
    	border: 0px solid #004D31;
    	border-radius: 0px;
        z-index: 1;
    }
    .back_area img{
    	display: block;
    	width: 30%;
        padding: 3% 0;
        margin: 0 auto;
    	margin-top: 74.5%;
    }
    .frame {
		top: 0;
        left: 0;
        position: absolute;
        width: 80vw;
        height: 50.625vw;
        margin-top: -85%;
	    margin-left: 0;
        z-index: 1;
    }
    .movie_area video {
	    width: 100%;
    }
    .movie_title {
        margin-top: 0;
        padding-top: 0;
        font-size: 6vw
    }
    .poster {
        margin-top: 30%
    }
    .banner_area {
        margin-top: 50%;
    }
    .social {
        display: block;
        margin: 0 auto;
    }
    .contact {
        width: 100%;
        margin: 70px auto 0 auto;
        height: 300px;
    }
    footer {
        height: 0;
        padding-bottom: 200%;/*1012*/
    /*background-color: #009D5B;*/
	background-color: #9cc45a;
    }
    .footer-wrap {
	    display: block;
    }
    .footer1 {
	    width: 100%;
        margin: 0;
        text-align: center;
        line-height: normal;
    }
    #footerlink {
	    width: 100%;
        margin: 0%;
        text-align: center;
    }
    .about_wrap td{
        display: block;
        width: 100%;
        padding: 20px 8px;
    }
    .about_wrap th{
        display: block;
        width: 100%;
    }
	/* 会場案内CSS */
    #guide_wrap h3 {
        padding: 0 20px;
        text-align: center;
    }
    #guide_wrap p {
        width: 90%;
        margin: 30px auto;
    }/*1018*/
    /*特別企画*/
    .special p{
        font-size: 1rem;
    }
    /*プログラム*/
    .program_list li{
        width: 100%;
        display: block;
        font-size: 1.5rem;
}
    .prog_a{
        width: 97%;
}
}