@charset"utf-8";
/* "*"
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

/* "html"
-------------------------------------------------- */
html{
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 62.5%;
  box-sizing: border-box;
}

/* "body"
-------------------------------------------------- */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  padding: 0;
  letter-spacing: -0.01rem;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 1.6rem;
  color: #000;
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

/* "p"tag
-------------------------------------------------- */
p{
  font-size: 1.6rem;
  margin-bottom: 0;
}
p.p-txt{
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  p{
    font-size: 1.5rem;
  }
  p.p-txt{
    line-height: 1.8;
  }
}

/* "a"tag
-------------------------------------------------- */
a{
  color: #000;
  text-decoration: none;
}

/* "li/ol/ul" Tag
-------------------------------------------------- */
ol li{
  font-size: 1.6rem;
  margin-left: 2.0rem;
  line-height: 1.8;
}
ul li{
  font-size: 1.6rem;
  list-style-type: none;
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  ol li,
  ul li{
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

/* "dt dd" Tag
-------------------------------------------------- */
dl dt,
dl dd{
  font-size: 1.6rem;
  line-height: 1.8;
}

@media print, screen and (max-width: 767px) {
  dl dt,
  dl dd{
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

/* decoration
-------------------------------------------------- */
.bold{
  font-weight: bold;
}
.left{
  text-align: left;
}
.center{
  text-align: center;
}
.right{
  text-align: right;
}

/* color
-------------------------------------------------- */
.white {
  color: #FFFFFF;
}
.red {
  color: #DE4830;
}
.blue {
  color: #156CA3;
}
.orange {
  color: #E9872E;
}
.green {
  color: #26AE90;
}
.brown {
  color: #AD8141;
}

/* margin
-------------------------------------------------- */
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}

/* forPC,forSP
-------------------------------------------------- */
.forPC{
  display: inline;
}
.forSP{
  display: none;
}
@media screen and (max-width: 767px) {
  .forPC{
    display: none;
  }
  .forSP{
    display: inline;
  }
}

/* wrapper
-------------------------------------------------- */
#wrapper{
  width: 100%;
  display: none;
}

/* inner
-------------------------------------------------- */
div.inner{
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .inner{
    width: 95%;
    margin: 0 auto;
  }
}

/* content
-------------------------------------------------- */
div.content{
  width: 97%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  div.content{
    width: 95%;
  } 
}

/* img
-------------------------------------------------- */
img{
  width: 100%;
  height: auto;
}

/* "h" tag
-------------------------------------------------- */
h2.h2-cmn{
  margin-bottom: 5rem;
  font-size: 3.6rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  color: #51984d;
}
h2.h2-cmn::before{
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
}
h2.h2-cmn.movie::before{
  content: "MOVIE";
}
h2.h2-cmn.sponsor::before{
  content: "SPONSOR";
}
h2.h2-cmn.news::before{
  content: "NEWS";
}
h2.h2-cmn.about::before{
  content: "ABOUT";
}
h2.h2-cmn.program::before{
  content: "PROGRAM";
}
h2.h2-cmn.exhibitor::before{
  content: "EXHIBITOR";
}
h2.h2-cmn.access::before{
  content: "ACCESS";
}
h2.h2-cmn-ftr {
  font-size: 2.0rem;
  line-height: 1.3;
  font-weight: bold;
}
@media print, screen and (max-width: 767px) {
  h2.h2-cmn{
    font-size: 3.0rem;
    margin-bottom: 3.5rem;
  }
  h2.h2-cmn::before{
    font-size: 1.4rem;
  }
}

/* header
-------------------------------------------------- */
header.top-head{
  z-index: 50;
  width: 100%;
  height: 10rem;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
}
header div.logo-area{
  margin-left: 2rem;
  width: 26rem;
}
header.home div.logo-area img{
  display: none;
}
header div.logo-area img{
  width: 100%;
  height: auto;
  display: none;
}
header div.logo-area img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
/* nav */
header div.nav-area{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header div.nav-area div.nav-logo{
  display: none;
}
header div.nav-area nav.nav-wrap a.nav-button {
  display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  margin-right: 3.5rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a,
header.home div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 1px 1px 6px #888;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.event{
  margin-right: 2rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.event a{
  color: #fff;
  position: relative;
  text-align: center;
  background: #ed923f;
  border: 1px solid #ed923f;
  padding: 0.8rem 3rem 1rem;
  border-radius: 7rem;
  text-shadow: inherit;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.event a:hover{
  color: #ed923f;
  background: #fff;
  transition: 0.6s;
  opacity: inherit;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.form{
  margin-right: 2rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.form a{
  color: #fff;
  position: relative;
  text-align: center;
  background: #51984d;
  border: 1px solid #51984d;
  padding: 0.8rem 3rem 1rem;
  border-radius: 7rem;
  text-shadow: inherit;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.form a:hover{
  color: #51984d;
  background: #fff;
  transition: 0.6s;
  opacity: inherit;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
  opacity: 0.5;
  transition: 0.6s;
}
header div.nav-area nav.nav-wrap.open{
  display: block;
}
header div.nav-area nav.nav-wrap.close{
  display: none;
  opacity: 1;
  cursor: auto;
}
header.top-head.fixed{
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 0.4rem 0.2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0.4rem 0.2rem rgba(0, 0, 0, 0.15);
}
header.fixed div.logo-area img{
  width: 100%;
  height: auto;
  display: block;
}
header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  color: #000;
  text-shadow: inherit;
}
header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li.event a{
  color: #fff;
}
header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li.event a:hover{
  color: #ed923f;
}
header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li.form a{
  color: #fff;
}
header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li.form a:hover{
  color: #51984d;
}
@media print, screen and (min-width: 1281px){
  header div.nav-area nav.nav-wrap {
    display: block !important;
  }
}
@media print, screen and (max-width: 1280px) {
  header.top-head{
    height: 8rem;
  }
  header div.logo-area{
    margin-left: 1.5rem;
    width: 20rem;    
    height: auto;
  }
  header div.nav-area a.nav_button{
    right: 2.5rem;
    top: 3.0rem;
  }
  /* clicked hamburger button screen */
  header div.nav-area{
    display: block;
    -webkit-box-align: none;
    -ms-flex-align: none;
    align-items: none;
  }
  header div.nav-area nav.nav-wrap{
    left: 0;
    top: 0;
    display: none;
    z-index: 90;
    background: rgba(255,255,255,1);
    width: 100%;
    height: 100%;
    position: fixed;
  }  
  header div.nav-area nav.nav-wrap div.nav-screen div.nav-logo{
    display: block;
    width: 26rem;
    margin: 6rem auto 0;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.nav-logo img{
    width: 100%;
    height: auto;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.nav-logo img:hover{
    opacity:0.4;
    transition: 0.6s;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
    position: relative;
    margin: 2.5rem auto 0;
    width: 85%;
    display: block;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
    display: block;
    height: auto;
    line-height: 1.4;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a,
  header.home div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
    color: #000;
    text-shadow: inherit;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.event{
    margin-top: 4rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.event a{
    padding: 0.8rem 2.8rem 1rem;
    color: #fff;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.form{
    margin-top: 4rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.form a{
    padding: 0.8rem 3.5rem 1rem;
    color: #fff;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
    color: #000;
    font-size: 1.6rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
    opacity: 0.4;
    transition: 0.6s;
  }
  /* hamburger button */
  header div.nav-area a.nav_button{
    height: 2.2rem;
    position: absolute;
    right: 2rem;
    top: 3rem;
    width: 2.7rem;
    z-index: 101;
    cursor: pointer;
  }
  header div.nav-area span.nav_line{
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
  }
  header div.nav-area span.line_center{
    top: 10px;
  }
  header div.nav-area span.line_bottom{
    bottom: 0;
  }
  header div.nav-area span.line_top.active{
    background: #000;
    top: 10px;
    transform: rotate(45deg);
  }
  header div.nav-area span.line_center.active{
    background: #000;
    transform:scaleX(0);
  }
  header div.nav-area span.line_bottom.active{
    background: #000;
    bottom: 10px;
    transform: rotate(135deg);
  }
  header.fixed div.nav-area span.nav_line{
    background: #000;
  }
}

/* mainvisualSec
-------------------------------------------------- */
section.mainvisualSec{
  width: 100%;
  height: 100vh;
  position: relative;
}
section.mainvisualSec div.swiper-container{
  width: 100%;
  height: 100%;
  position: relative;  
  overflow: hidden;
}
section.mainvisualSec .swiper-slide.swiper-slide-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15) !important;
}
section.mainvisualSec div.swiper-container .swiper-wrapper,
section.mainvisualSec div.swiper-container .swiper-slide > div{
  width: 100%;
  height: 100%;
}
section.mainvisualSec div.swiper-container .swiper-wrapper,
section.mainvisualSec div.swiper-container .swiper-slide > div{
  width: 100%;
  height: 100%;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div{
  background: url(../img/top/mainvisual01_pc.jpg) center center / cover no-repeat;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div{
  background: url(../img/top/mainvisual02_pc.jpg) center center / cover no-repeat;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div{
  background: url(../img/top/mainvisual03_pc.jpg) center center / cover no-repeat;
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv04 div{
  background: url(../img/top/mainvisual04_pc.jpg) top center / cover no-repeat;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv05 div{
  background: url(../img/top/mainvisual05_pc.jpg) center center / cover no-repeat;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
}
section.mainvisualSec div.swiper-container div.swiper-slide div{
    animation: zoomUp 25s 0s infinite normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
section.mainvisualSec div.copy-area{
  position: absolute;
  top: 52%;
  transform: translateY(-48%);
  left: 0;
  right: 0;
  text-align: center;  
  z-index: 1;
}
section.mainvisualSec div.copy-area div.img-area{
  width: 60rem;
  margin: 0 auto;
}
section.mainvisualSec div.copy-area div.img-area img{
  width: 100%;
  height: auto;
}
@media print, screen and (max-width: 1280px) {
  section.mainvisualSec div.copy-area div.img-area{
    width: 42rem;
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 960px) {
  section.mainvisualSec div.copy-area{
    top: 50%;
    transform: translateY(-50%);
  }
}
@media print, screen and (max-width: 767px) {
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div{
    background: url(../img/top/mainvisual01_sp.jpg) center center / cover no-repeat;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div{
    background: url(../img/top/mainvisual02_sp.jpg) center center / cover no-repeat;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div{
    background: url(../img/top/mainvisual03_sp.jpg) center center / cover no-repeat;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv04 div{
    background: url(../img/top/mainvisual04_sp.jpg) top center / cover no-repeat;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv05 div{
    background: url(../img/top/mainvisual05_sp.jpg) center center / cover no-repeat;
  }
}
@media print, screen and (max-width: 560px) {
  section.mainvisualSec div.copy-area div.img-area{
    width: 96%;
    margin: 0 auto;
  }
}

/* button
-------------------------------------------------- */
div.button-area{
  width: 20rem;
  margin: 0 auto;
}
a.button,
input.button{
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background: #51984d;
  border: 1px solid #51984d;
  display: inline-block;
  width: 20rem;  
  height: 5.4rem;
  line-height: 5.2rem;
  border-radius: 7rem;
}
input[type="submit"] {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background: #51984d;
  border: 1px solid #51984d;
  display: inline-block;
  width: 20rem;  
  height: 5.4rem;
  line-height: 5.2rem;
  border-radius: 7rem;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}
a.button:hover,
input.button:hover{
  background: #fff;
  color: #51984d;
  transition: .5s;
  cursor: pointer;
}
@media print, screen and (max-width: 767px) {
  div.button-area{
    width: 18rem;
  }
  a.button,
  input.button{
    width: 18rem;
    font-size: 1.5rem;
    height: 5.2rem;
    line-height: 5.0rem;
  }
  input[type="submit"] {
    width: 18rem;
    height: 5.2rem;
    line-height: 5.0rem;
  }
}

/* movieSec
-------------------------------------------------- */
section.movieSec{
  padding: 10rem 0 0;
}
section.movieSec div.moviewrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
section.movieSec div.moviewrap div.box{
  width: 48.5%;
}
section.movieSec div.moviewrap div.box p.time{
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
section.movieSec div.moviewrap div.box p.movie-title{
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.4;
}
section.movieSec div.button-area{
  margin: 7rem auto 0;
}
@media print, screen and (max-width: 767px) {
  section.movieSec div.moviewrap{
    display: block;
  }
  section.movieSec div.moviewrap div.box{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  section.movieSec div.moviewrap div.box.b02{
    margin-top: 5rem;
  }
  section.movieSec div.moviewrap div.box p.time{
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  section.movieSec div.moviewrap div.box p.movie-title{
    font-size: 1.6rem;
  }
  section.movieSec div.button-area{
    margin: 5rem auto 0;
  }
}

/* newsTopSec
-------------------------------------------------- */
section.newsTopSec{
  padding: 10rem 0 14rem;
}
section.newsTopSec dl{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #B5B5B5;
  padding: 1.5rem 0;
}
section.newsTopSec dl:first-child{
  padding: 0 0 1.5rem;
}
section.newsTopSec dl dt{
  width: 20rem;
}
section.newsTopSec dl dd{
  width: 100%;
} 
section.newsTopSec dl dd a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
section.newsTopSec div.button-area{
  margin: 5rem 0 0 auto;
}
@media print, screen and (max-width: 767px) {
  section.newsTopSec dl{
    display: block;
    border-bottom: 1px solid #B5B5B5;
    padding: 1.5rem 0;
  }
  section.newsTopSec dl.fst{
    padding: 0 0 1.5rem;
  }
  section.newsTopSec dl dt{
    width: 100%;
    font-weight: bold;
    padding-bottom: 0.5rem;
  }
  section.newsTopSec dl dd{
    width: 100%;
  }
  section.newsTopSec div.button-area{
    margin: 5rem auto 0;
  }
}

/* aboutSec
-------------------------------------------------- */
section.aboutSec{
  position: relative;
  margin-top: -4rem;
  padding: 15rem 0;
  background: url(../img/top/aboutSec_img01.jpg) center bottom / cover no-repeat;
}
section.aboutSec::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) !important;
  z-index: -1;
}
section.aboutSec h2.h2-cmn{
  color: #fff;
  line-height: 1.1;
}
section.aboutSec h2.h2-cmn span{
  font-size: 2.6rem;
}
section.aboutSec h2.h2-cmn::before{
  margin-bottom: 1.5rem;
}
section.aboutSec h3.h3-about-ttl{
  font-size: 2.6rem;
  line-height: 1.4;
  margin-bottom: 3.5rem;
  color: #fff;
}
section.aboutSec h3.h3-about{
  font-size: 2.6rem;
  line-height: 1.4;
  margin-bottom: 3rem;
  padding-bottom: 0.8rem;
  color: #fff;
  border-bottom: 1px solid #fff;
}
section.aboutSec div.aboutwrap{
  margin-bottom: 7rem;
}
section.aboutSec div.aboutwrap:last-child{
  margin-bottom: 0;
}
section.aboutSec div.aboutwrap ul{
  margin-bottom: 3rem;
}
section.aboutSec div.aboutwrap ul li{
  color: #fff;
  list-style-type: disc;
  margin-left: 2.1rem;
  font-size: 1.6rem;
}
section.aboutSec div.aboutwrap p.p-txt{
  color: #fff;
  font-size: 1.6rem;
}
section.aboutSec div.aboutwrap table{
  line-height: 1.8;
  color: #fff;
}
section.aboutSec div.aboutwrap table th{
  width: 13rem;
  text-align: left;
}
section.aboutSec div.aboutwrap table td{
  padding-left: 0.7rem;
}
@media print, screen and (max-width: 767px) {
  section.aboutSec h2.h2-cmn{
    margin-bottom: 5rem;
  }
  section.aboutSec h2.h2-cmn span{
    font-size: 2.2rem;
  }
  section.aboutSec h3.h3-about-ttl{
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 4.5rem;
    color: #fff;
  }
  section.aboutSec h3.h3-about{
    font-size: 2.2rem;
  }
  section.aboutSec{
    position: relative;
    margin-top: -4rem;
    padding: 12rem 0 10rem;
  }
  section.aboutSec div.aboutwrap ul li{
    font-size: 1.5rem;
  }
  section.aboutSec div.aboutwrap p.p-txt{
    font-size: 1.5rem;
  }
  section.aboutSec div.aboutwrap table{
    font-size: 1.5rem;
  }
  section.aboutSec div.aboutwrap table th{
    display: block;
  }
  section.aboutSec div.aboutwrap table td{
    display: block;
    margin-bottom: 1rem;
  }  
}

/* programSec
-------------------------------------------------- */
section.programSec{
  padding: 15rem 0 15rem;
  margin-top: -4rem;
}
section.programSec h3.h3-program{
  font-size: 2.4rem;
  line-height: 1.3;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #51984d;
  margin-bottom: 3.5rem;
}
section.programSec h3.h3-program span.ttl{
  color: #51984d;
  font-size: 2.8rem;
}
section.programSec p.time{
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
section.programSec div.program{
  margin-bottom: 4rem;
}
section.programSec div.program div.programwrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.programSec div.program div.programwrap div.box{
  width: 22%;
  margin-right: 4%;
  margin-bottom: 3rem;
}
section.programSec div.program div.programwrap div.box:last-child{
  margin-right: 0;
}
section.programSec div.program div.programwrap div.box div.img{
  margin-bottom: 2rem;
}
section.programSec div.program div.programwrap div.box div.img img{
  border-radius: 50%;
}
section.programSec div.program div.programwrap div.box p.position{
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
section.programSec div.program div.programwrap div.box p.com-name{
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
section.programSec div.program div.programwrap div.box p.title{
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
}
section.programSec div.program div.programwrap div.box p.name{
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.4;
}
@media print, screen and (max-width: 1024px) {
  section.programSec div.program div.programwrap div.box{
    width: 31%;
    margin-right: 3.5%;
  }
  section.programSec div.program div.programwrap div.box:nth-child(3){
    margin-right: 0;
  }
}
@media print, screen and (max-width: 767px) {
  section.programSec{
    padding: 12rem 0 12rem;
  }
  section.programSec h3.h3-program{
    font-size: 2.0rem;
    line-height: 1.55;
    margin-bottom: 3.5rem;
    padding-bottom: 0;
    text-align: center;
    border-bottom: none;
  }
  section.programSec h3.h3-program span.ttl{
    font-size: 2.2rem;
  }
  section.programSec p.time{
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  section.programSec div.program{
    margin-bottom: 5rem;
  }
  section.programSec div.program div.programwrap{
    border-bottom: 1px dotted #888;
  }
  section.programSec div.program div.programwrap div.box{
    width: 48%;
    margin-right: 4%;
  }
  section.programSec div.program div.programwrap div.box:nth-child(2){
    margin-right: 0;
  }
  section.programSec div.program div.programwrap div.box:nth-child(3){
    margin-right: 4%;
  }
  section.programSec div.program div.programwrap div.box:last-child{
    margin-bottom: 4rem;
  }
}
@media print, screen and (max-width: 480px) {
  section.programSec div.program div.programwrap div.box{
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
  }
  section.programSec div.program div.programwrap div.box:nth-child(2){
    margin-right: 10%;
  }
  section.programSec div.program div.programwrap div.box:nth-child(3){
    margin-right: 10%;
  }
}

/* exhibitorSec
-------------------------------------------------- */
/* "h"tag */
section.exhibitorSec h2.h2-cmn.exhibitor{
  margin-bottom: 3.5rem;
}
section.exhibitorSec h3.h3-exhibitor{
  font-size: 3.0rem;
  line-height: 1.4;
  margin-bottom: 3.5rem;
  color: #ed923f;
  text-align: center;
}
/* common */
section.exhibitorSec{
  margin-top: -4rem;
  padding: 13rem 0;
  background: #f5f5f5;
}
section.exhibitorSec div.exhibitor.e02,
section.exhibitorSec div.exhibitor.e03{
  margin-top: 5rem;
}
section.exhibitorSec div.profwrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.exhibitorSec p.p-txt{
  text-align: center;
}
section.exhibitorSec div.profwrap div.box{
  width: 31%;
}
section.exhibitorSec div.exhibitor div.profwrap div.box{
  margin-bottom: 5rem;
}
section.exhibitorSec div.exhibitor.e01 div.profwrap div.box.blank,
section.exhibitorSec div.exhibitor.e02 div.profwrap div.box.blank,
section.exhibitorSec div.exhibitor.e03 div.profwrap div.box.blank{
  margin-bottom: 0;
}
section.exhibitorSec div.profwrap div.box div.img{
  margin-bottom: 1rem;
}
section.exhibitorSec div.profwrap div.box div.img img{
  border-radius: 50%;
}
section.exhibitorSec div.profwrap div.box dl dt{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
section.exhibitorSec div.profwrap div.box dl dd{
  text-align: center;
  font-weight: bold;
  color: #51984d;
  font-size: 2.0rem;
  line-height: 1.4;
}
section.exhibitorSec div.profwrap div.box div.btn{
  width: 18rem;
  margin: 2.5rem auto 0;
}
section.exhibitorSec div.profwrap div.box div.btn a{
  position: relative;
  font-size: 1.5rem;
  color: #ed923f;
  text-align: center;
  background: #fff;
  border: 1px solid #ed923f;
  display: inline-block;
  width: 18rem;  
  height: 5.2rem;
  line-height: 5.0rem;
  border-radius: 7rem;
}
section.exhibitorSec div.profwrap div.box div.btn a:hover{
  background: #ed923f;
  color: #fff;
  transition: .5s;
  cursor: pointer;
}
section.exhibitorSec div.button-area{
  margin: 5rem auto 0;
}
@media print, screen and (max-width: 1024px) {
  /* section */
  section.exhibitorSec div.profwrap div.box{
    width: 32%;
  }
}
@media print, screen and (max-width: 767px) {
  /* "h"tag */
  section.exhibitorSec h3.h3-exhibitor{
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
  /* section */
  section.exhibitorSec{
    padding: 10rem 0 7em;
    margin-bottom: -2rem;
  }
  section.exhibitorSec p.p-txt{
    line-height: 1.6;
  }
  section.exhibitorSec div.exhibitor div.profwrap div.box{
    margin-bottom: 3rem;
  }
  section.exhibitorSec div.exhibitor.e02,
  section.exhibitorSec div.exhibitor.e03{
    margin-top: 5rem;
  }
  section.exhibitorSec div.profwrap div.box{
    width: 48%;
  }
  section.exhibitorSec div.profwrap div.box div.img{
    margin-bottom: 1.5rem;
  }
  section.exhibitorSec div.profwrap div.box dl dt{
    font-size: 1.5rem;
    line-height: 1.6;
  }
  section.exhibitorSec div.profwrap div.box dl dd{
    font-size: 1.6rem;
    line-height: 1.5;
  }
  section.exhibitorSec div.profwrap div.box div.btn{
    width: 15rem;
    margin: 2rem auto 0;
  }
  section.exhibitorSec div.profwrap div.box div.btn a{
    font-size: 1.4rem;
    width: 15rem;  
    height: 4.6rem;
    line-height: 4.2rem;
  }
}
@media print, screen and (max-width: 480px) {
  section.exhibitorSec div.profwrap div.box{
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
  }
}

/* sponsorSec
-------------------------------------------------- */
section.sponsorSec{
  padding: 14rem 0 0;
}
section.sponsorSec div.sponsorwrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 3rem;
}
section.sponsorSec div.sponsorwrap div.box{
  width: 23.5%;
  margin-bottom: 2rem;
}
section.sponsorSec div.sponsorwrap div.box.blank{
  margin-bottom: inherit;
}
section.sponsorSec div.sponsorwrap div.box img{
  border: 1px solid #CCC;
}
section.sponsorSec div.sponsorwrap div.box p.p-name{
  font-size: 1.5rem;
  margin-top: 2rem;
  line-height: 1.4;
  text-align: center;
}
section.sponsorSec div.sponsorwrap div.box p.url{
  margin-top: 0.5rem;
  text-align: center;
}
section.sponsorSec div.sponsorwrap div.box p.url a{
  color: #ed923f;
  text-decoration: underline;
  font-size: 1.4rem;
  line-height: 1.3;
}
section.sponsorSec div.sponsorwrap div.box p.url a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
@media print, screen and (max-width: 767px) {
  section.sponsorSec{
    padding: 10rem 0 0;
  }
  section.sponsorSec div.sponsorwrap div.box{
    width: 32%;
  }
  section.sponsorSec div.sponsorwrap div.box p.p-name{
    margin-top: 1.5rem;
  }
  section.sponsorSec div.sponsorwrap div.box p.url{
    margin-top: 0.5rem;
    text-align: center;
  }
  section.sponsorSec div.sponsorwrap div.box p.url a{
    font-size: 1.3rem;
    line-height: 1.3;
  }
}
@media print, screen and (max-width: 560px) {
  section.sponsorSec div.sponsorwrap div.box{
    width: 47.5%;
  }
}

/* accessSec
-------------------------------------------------- */
/* "h"tag */
h3.h3-access{
  font-size: 2.0rem;
}
section.accessSec{
  padding: 15rem 0 15rem;
  margin-top: -2rem;
}
section.accessSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.accessSec div.wrap div.gmap{
  width: 47%;
}
section.accessSec div.wrap div.gmap iframe{
  width: 100%;
  height: 55rem;
}
section.accessSec div.wrap div.imgarea img{
  width: 100%;
  height: auto;
}
section.accessSec div.wrap div.text-area{
  width: 47%;
}
section.accessSec div.wrap div.text-area div.accessDetail h3{
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
section.accessSec div.wrap div.text-area div.accessDetail i{
  margin-right: 0.6rem;
}
section.accessSec div.wrap div.text-area div.accessDetail p{
  margin-bottom: 2.5rem;
}
section.accessSec div.wrap div.text-area div.accessDetail p.btm{
  margin-bottom: 0;
}
section.accessSec div.wrap div.text-area div.accessDetail p a{
  color: #F29A76;
  text-decoration: underline;
}
section.accessSec div.wrap div.text-area div.accessDetail p a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
@media print, screen and (max-width: 767px) {
  /* "h"tag */
  h3.h3-access{
    font-size: 1.8rem;
  }
  section.accessSec{
    padding: 13rem 0 10rem;
  }
  section.accessSec div.wrap{
    display: block;
  }
  section.accessSec div.wrap div.gmap{
    width: 100%;
    margin-bottom: 3rem;
  }
  section.accessSec div.wrap div.text-area{
    width: 100%;
  }
}

/* wave
-------------------------------------------------- */
.custom-shape-divider-top-1705568110 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-top-1705568110 svg {
  position: relative;
  display: block;
  width: calc(140% + 1.3px);
  height: 130px; 
}
.custom-shape-divider-top-1705567976{
  background: rgba(81, 152, 77, 1)!important;
}
.custom-shape-divider-top-1705567976 .shape-fill {
  fill: #fff;
}

/* footer
-------------------------------------------------- */
/* "h"tag */
h3.h3-cmn-ftr {
  font-size: 2.0rem;
  margin-bottom: 0.5rem;  
  line-height: 1.3;
  font-weight: bold;
}
footer{
  background: rgba(81, 152, 77, 1);
  z-index:1;
  position: relative;
}
footer div.footer-area{  
  padding: 5rem 0 7rem;
  border-bottom: 1px solid #fff;
}
footer div.footer-area div.footer-menu ul.footernav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer div.footer-area div.footer-menu ul.footernav li{
  width: 25%;
  margin-bottom: 2rem;
  text-align: center;
}
footer div.footer-area div.footer-menu ul.footernav li a{
  color: #fff;
}
footer div.footer-area div.footer-menu ul.footernav li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.footer-area div.footer-logo{
  width: 30rem;
  height: auto;
  margin: 3.5rem auto;
}
footer div.footer-area div.footer-logo div.logo-area{
  width: 30rem;
  margin: 0 auto;
}
footer div.footer-area div.footer-logo div.logo-area img{
  width: 100%;
  height: auto;
}
footer div.footer-area div.footer-logo img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.footer-area div.footer-logo div.sns-area ul{
  width: 9.5rem;
  margin: 1.5rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer div.footer-area div.footer-logo div.sns-area ul li{
  margin-right: 1.2rem;
}
footer div.footer-area div.footer-logo div.sns-area ul li.facebook i{
  font-size: 4.0rem;
  color: #fff;
}
footer div.footer-area div.footer-logo div.sns-area ul li.instagram i{
  font-size: 4.0rem;
  color: #fff;
}
footer div.footer-area div.footer-logo div.sns-area ul li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.footer-area div.footer-logo div.sns-area ul li:last-child{
  margin-right: 0;
}
footer div.footer-area div.button-area{
  width: 37.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer div.footer-area div.button-area a.button.event{
  background: #fff;
  border: 1px solid #ed923f;
  color: #ed923f;
  margin-right: 1.5rem;
  width: 18rem;
  height: 4.8rem;
  line-height: 4.6rem;
}
footer div.footer-area div.button-area a.button.form{
  background: #fff;
  border: 1px solid #fff;
  color: #51984d;
  width: 18rem;
  height: 4.8rem;
  line-height: 4.6rem;
}
footer div.footer-area div.button-area a.button:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.copyright-area{
  padding: 2rem 0;
}
footer div.copyright-area div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer div.copyright-area div.list ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer div.copyright-area div.list ul li a{
  color: #fff;
}
footer div.copyright-area div.list ul li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.copyright-area p.p-txt{
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  footer div.footer-area{  
    padding: 7rem 0;
  }
  footer div.footer-area div.footer-menu ul.footernav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: inherit;
  }
  footer div.footer-area div.footer-menu ul.footernav li{
    width: 33.33333%;
    line-height: 2.5;
    margin-bottom: inherit;
  }
  footer div.footer-area div.footer-logo{
    margin: 3.5rem auto;
  }
  footer div.footer-area div.footer-logo div.sns-area ul{
    margin: 2rem auto 0;
  }
  footer div.copyright-area{
    text-align: center;    
  }
  footer div.copyright-area div.wrap{
    display: block;
  }
  footer div.copyright-area div.list ul{
    display: block;
    margin-bottom: 1rem;
  }
  footer div.copyright-area div.list ul li{
    text-align: center;
  }
  footer div.copyright-area div.list ul li:first-child{
    margin-right: 0;
  }
}
@media print, screen and (max-width: 560px) {
  footer div.footer-area div.footer-menu ul.footernav li{
    width: 50%;
  }
  footer div.footer-area div.button-area{
    width: 16rem;
    display: block;
    margin: 3.5rem auto 0;
  }
  footer div.footer-area div.button-area a.button.event{
    width: 16rem;
    margin-right: 0;
  }
  footer div.footer-area div.button-area a.button.form{
    width: 16rem;
    margin-top: 1.5rem;
  }
}

/* fadein
-------------------------------------------------- */
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 45px);
  transition : all 1000ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}