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

/********************Common********************/
html{
	font-size:16px !important;
	margin:0 auto;
}
body {
	font:16px "メイリオ","Meiryo",Helvetica,Arial,"ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
}
/*body{
	font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}*/
#wrapper{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.fluid_image{
	max-width: 100%;
	height: auto;
}
h2{
	font-size: 22px;
	font-weight: 600;
	padding: 2%;
	border-left: solid 10px #26862a;
	border-bottom: solid 1px #26862a;
}

p{
	word-break: break-all;
	font-size: 18px;
}
.ViewMore{
	font-size: 20px !important;
	background-color: #26862a;
	width: 80%;
	padding: 2%;
	border-radius: 50px;
	margin: 1%;
	line-height: 2;
}
.ViewMore a{
	display: block;
	text-align: center;
	color: white;
}
/********************Common_End********************/



/********************Header********************/
header{
	width:100%;
	background-color: #b8d775;
	position: relative;
}
header a{
	display: inline-block;
	width: 60%;
	padding: 3%;
}
header img{
	width: 90%;
}
/********************Header_End********************/



/********************keyvisual********************/
#keyvisual{
	width: 100%;
	margin: 0 auto;
	position: relative;
}
#Top_image{
	display: block;
	width: 100%;
	margin: 0 auto;
	opacity: 0.5;
}
#title{
	display: block;
	width: 98%;
	margin: 0 auto;
	position: absolute;
	top:50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
/********************keyvisual_End********************/



/********************nav********************/
#gloval-nav {
    background: #26862a;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}
.open #gloval-nav {
    visibility: visible;
    opacity: 1;
}
#nav-toggle {
    position: fixed;
    top: 1%;
    right: 2%;
    height: 30px;
    cursor: pointer;
}
#nav-toggle div {
    position: relative;
    width: 40px;
  }
#nav-toggle span {
    width: 100%;
    height: 5px;
    left: 0;
    display: block;
    background: #2d3f37;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
	border-radius: 5px;
    }
#nav-toggle span:nth-child(1) {
      top: 0;
    }
#nav-toggle span:nth-child(2) {
      top: 14px;
    }
#nav-toggle span:nth-child(3) {
      top: 28px;
    }

#nav-toggle span:hover span:nth-child(1) {
    top: 4px;
  }
#nav-toggle span:hover span:nth-child(3) {
    top: 23px;
  }

.open #nav-toggle span {
    background: #fff;
}
.open #nav-toggle span:nth-child(1) {
      top: 15px;
      transform: rotate(45deg);
    }
.open #nav-toggle span:nth-child(2) {
      top: 15px;
      width: 0;
      left: 50%;
    }
.open #nav-toggle span:nth-child(3) {
      top: 15px;
      transform: rotate(-45deg);
    }
.close #gloval-nav{
	display: none;
	visibility: hidden;
}

/* z-index */
#nav-toggle {
    z-index: 10000;
}
#container {
    z-index: 900;
}
#gloval-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10% 0;
    transition: color .6s ease;
	font-size: 24px;
	}
#gloval-nav a:hover {
      color: #666;
    }
  
#gloval-nav ul {
    list-style: none;
	}
#gloval-nav li {
      opacity: 0;
      transform: translateX(200px);
      transition:  transform .6s ease, opacity .2s ease;
	  }
#gloval-nav li:nth-child(2) {
        transition-delay: .15s;
      }
#gloval-nav li:nth-child(3) {
        transition-delay: .3s;
      }
#gloval-nav li:nth-child(4) {
        transition-delay: .45s;
      }
#gloval-nav li:nth-child(5) {
        transition-delay: .6s;
      }
#gloval-nav li:nth-child(6) {
        transition-delay: .75s;
      }
#gloval-nav li:nth-child(7) {
        transition-delay: .9s;
      } 

/* open */
.open {
    overflow: hidden;
}
.open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition:  transform 1s ease, opacity .9s ease;
  }
/********************nav_End********************/



/********************Serialization********************/
#Serialization{
	width: 90%;
	margin: 10% auto;
}
#Topic_explanation{
	margin: 3% auto;
	width: 90%;
}
#Pics{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#Pics p{
	font-size: 18px;
	color: black;
	text-align: left;
}
.topics{
	margin:1%;
	width: 48%;
}
.topics a,.topics img,.topics p{
	display: block;
    margin: 5% auto;
	width: 100%;
}
.topics img{
	display: inline-block;
}

/*.topics img:hover{
	transform: scale(1.1);
	transition-duration: 0.3s;
}*/
.topics a{
	color: black;
	text-align: center;
}

/********************Serialization_End********************/



/********************Another_News********************/
#Another_News{
	width: 100%;
	margin: 5% auto;
	background-color: #e1eec4;
	padding: 1% 0;
}
#News_Box{
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#News_Box p{
	font-size: 18px;
	background-color:white;
	width: 100%;
	border-radius: 20px;
	margin: 1%;
	padding: 4%;
}
#News_Box p a{
	color: #000;
}
#NewsBox_ViewMore{
	margin: 2% auto;
}
/********************Another_News_End********************/



/********************under_container********************/
#under_container{
	width: 90%;
	margin: 5% auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#Flex_Child01,#Flex_Child02{
	width:100%;
}
/*#Flex_Child01{
	order: 1;
}*/
/********************under_container_End********************/



/********************News********************/
#News{
	width: 100%;
	margin: 10% auto;
}
#News li{
	list-style-type: none;
	padding: 10px 5px;
	border-bottom: #999 1px solid;
}
#News img{
	zoom: 0.5;
	margin: 0;
	padding: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
#News_ViewMore{
	margin: 0 auto;
}
.newsTitle {
	color: #333;
}
.date {
	color: #999999;
	font-size: 14px;
	white-space: nowrap;
}
.statusIcon {
	margin: 0 0 0 5px;
	vertical-align: middle;
}
/********************News_End********************/



/********************Questionnaire********************/
#Questionnaire{
	width: 100%;
	margin: 10% auto;
}
#Questionnaire p{
	margin: 3% auto;
    width: 100%;
}
#Questionnaire_ViewMore{
	margin: 0 auto;
}
/********************Questionnaire_End********************/



/********************Symposium********************/
#Symposium{
	width: 100%;
	margin: 20% auto;
}
#Symposium a{
	display: block;
	margin: 3% auto;
	width: 90%;
}
#Symposium img{
	display: block;
    text-align: center;
    margin: 0 auto;
    width: 90%;
}

/********************Symposium_End********************/



/********************Contact********************/
#Contact{
	width: 100%;
	margin: 20% auto;
}
#Contact p{
	margin: 3% auto;
    width: 100%;
}
#Contact ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	width: 80%;
	margin: 0 auto;
}
#Contact ul li{
	display: block;
    margin: 2% auto;
    width: 21%;
    text-align: center;
}
#Contact ul li a{
	display: block;
	vertical-align: middle;
}
#Contact ul li a img{
	width: 100%;
}
/********************Contact_End********************/



/********************footer********************/
footer{
	width:100%;
	background-color: #b8d775;
	padding: 2%;
}
#inochi_footer_sp .lightblueArea {
    background: #b8d775 !important;
}
.center {
    text-align: center !important;
}
.footerText{
	font-size: 18px;
	padding: 14px 0;
}
.copyRight {
    font-size: 12px;
    padding: 0 0 16px 0;
}
/********************footer_End********************/



/********************return to top********************/
	#page_top{
	  width: 50px;
	  height: 50px;
	  position: fixed;
	  right: 20px;
	  bottom: 0;
	  background: #011511;
	  opacity: 0.6;
	  border-radius: 50%;
	}
	#page_top a{
	  position: relative;
	  display: block;
	  width: 50px;
	  height: 50px;
	  text-decoration: none;
	}
	#page_top a::before{
	  font-family: FontAwesome;
	  content: '\f106';
	  font-size: 40px;
	  color: #fff;
	  position: absolute;
	  width: 50px;
	  height: 50px;
	  top: 0;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  margin: auto;
	  text-align: center;
	}
/********************return to top_End********************/


