@charset "UTF-8";
/* CSS Document */
/* エキシビジョンCSS */
/*　=================

展示会TOPページCSS

=================*/
/*　=================

↓オープニングシャッター

=================*/
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ed0100;
  z-index: 9999;
  -webkit-animation: byeShutter 2.5s forwards;
          animation: byeShutter 2.5s forwards;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 2.5s forwards;
          animation: shutterOpen 2.5s forwards;
}

@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@-webkit-keyframes shutterOpen {
  0% {
    width: 1px;
    height: 0;
  }
  50% {
    width: 1px;
    height: 100%;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes shutterOpen {
  0% {
    width: 1px;
    height: 0;
  }
  50% {
    width: 1px;
    height: 100%;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

/*　=================

↓エキシビジョンTOPページ

=================*/
.wrap {
  overflow: hidden;
}

.rogo a {
  display: block;
  width: 110px;
  position: fixed;
  top: 25px;
  left: 35px;
  z-index: 900;
}

@media only screen and (max-width: 500px) {
  .rogo a {
    width: 90px;
    top: 15px;
    left: 15px;
  }
}

.rogo a img {
  margin-bottom: 10px;
}

.rogo a p {
  font-size: 12px;
  font-weight: 700;
}

@media only screen and (max-width: 500px) {
  .rogo a p {
    font-size: 10px;
  }
}

h1 {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  position: fixed;
  top: 45px;
  right: 35px;
  z-index: 900;
}

@media only screen and (max-width: 500px) {
  h1 {
    font-size: 14px;
    line-height: 1.5em;
    text-align: right;
    top: 40px;
    right: 15px;
  }
}

h1 span {
  color: #ed0100;
}

@media only screen and (max-width: 500px) {
  h1 span {
    display: block;
  }
}

/*h1*/
.scroll_arow {
  position: absolute;
  top: 45%;
  left: 0px;
  z-index: 10;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media only screen and (max-width: 500px) {
  .scroll_arow {
    top: auto;
    bottom: 110px;
  }
}

.scroll_arow:before {
  content: '';
  display: block;
  width: 90px;
  height: 2px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: -10px;
  -webkit-animation: arrow1 3s 0s ease-in-out infinite;
          animation: arrow1 3s 0s ease-in-out infinite;
}

.scroll_arow:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 20px 0px 0;
  border-color: transparent #000000 transparent transparent;
  position: absolute;
  right: 90px;
  bottom: -10px;
  -webkit-animation: arrow2 3s 0s ease-in-out infinite;
          animation: arrow2 3s 0s ease-in-out infinite;
}

@-webkit-keyframes arrow1 {
  0% {
    width: 90px;
  }
  20% {
    width: 110px;
  }
  40% {
    width: 90px;
  }
  100% {
    width: 90px;
  }
}

@keyframes arrow1 {
  0% {
    width: 90px;
  }
  20% {
    width: 110px;
  }
  40% {
    width: 90px;
  }
  100% {
    width: 90px;
  }
}

@-webkit-keyframes arrow2 {
  0% {
    right: 90px;
  }
  20% {
    right: 110px;
  }
  40% {
    right: 90px;
  }
  100% {
    right: 90px;
  }
}

@keyframes arrow2 {
  0% {
    right: 90px;
  }
  20% {
    right: 110px;
  }
  40% {
    right: 90px;
  }
  100% {
    right: 90px;
  }
}

nav {
  position: fixed;
  width: 100%;
  min-width: 1000px;
  height: 80px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  z-index: 10;
}

@media only screen and (max-width: 500px) {
  nav {
    height: 60px;
    min-width: 100%;
  }
}

nav #nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
}

nav li a {
  display: block;
  height: 100%;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

nav li.pagenav {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
      -ms-flex: 3;
          flex: 3;
  height: 100%;
  font-size: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav li.pagenav br {
  display: none;
}

@media only screen and (max-width: 500px) {
  nav li.pagenav {
    font-size: 4vw;
    line-height: 5vw;
  }
  nav li.pagenav br {
    display: block;
  }
}

nav li.pagenav:hover {
  opacity: 0.7;
}

nav li.pagenav:before {
  content: '';
  width: 26px;
  height: 26px;
  background: url("../img/move_icon.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 28px;
  left: 15px;
}

@media only screen and (max-width: 500px) {
  nav li.pagenav:before {
    display: none;
  }
}

nav li:nth-of-type(2) a {
  padding-top: 30px;
  background: #009fdb;
  background: -webkit-linear-gradient(45deg, #009fdb 0%, #7f08f5 100%);
  background: linear-gradient(45deg, #009fdb 0%, #7f08f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009fdb', endColorstr='#7f08f5', GradientType=1);
}

@media only screen and (max-width: 500px) {
  nav li:nth-of-type(2) a {
    padding-top: 3vw;
  }
}

nav li:nth-of-type(3) a {
  padding-top: 30px;
  background: #fc7f03;
  background: -webkit-linear-gradient(45deg, #fc7f03 0%, #ff0b56 100%);
  background: linear-gradient(45deg, #fc7f03 0%, #ff0b56 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7f03', endColorstr='#ff0b56', GradientType=1);
}

@media only screen and (max-width: 500px) {
  nav li:nth-of-type(3) a {
    padding-top: 3vw;
  }
}

nav li:nth-of-type(4) a {
  padding-top: 30px;
  background: #00adb4;
  background: -webkit-gradient(linear, left bottom, right top, from(#00adb4), to(#07ea81));
  background: -webkit-linear-gradient(bottom left, #00adb4 0%, #07ea81 100%);
  background: linear-gradient(to top right, #00adb4 0%, #07ea81 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adb4', endColorstr='#07ea81', GradientType=1);
}

@media only screen and (max-width: 500px) {
  nav li:nth-of-type(4) a {
    padding-top: 5vw;
  }
}

nav li.pagetop {
  width: 120px;
  background-color: #ed0100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 500px) {
  nav li.pagetop {
    display: none;
  }
}

nav li.pagetop:hover {
  opacity: 0.7;
}

nav li.pagetop a {
  padding-top: 32px;
}

nav li.contact {
  width: 80px;
  background-color: #000;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 500px) {
  nav li.contact {
    width: 60px;
  }
}

nav li.contact:hover {
  opacity: 0.7;
}

nav li.contact a {
  padding-top: 30px;
}

@media only screen and (max-width: 500px) {
  nav li.contact a {
    padding-top: 22px;
  }
}

nav li.contact img {
  width: 31px;
}

@media only screen and (max-width: 500px) {
  nav li.contact img {
    width: 25px;
  }
}

#section1,
#section2,
#section3,
#section4 {
  width: 100%;
  height: calc(100% - 80px);
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

@media only screen and (max-width: 500px) {
  #section1,
  #section2,
  #section3,
  #section4 {
    height: calc(100% - 60px);
  }
}

#section1 {
  background: url("../img/main_bg.jpg") no-repeat center top;
  background-size: cover;
}

@media only screen and (max-width: 500px) {
  #section1 {
    background: url("../img/main_bg_sp.jpg") no-repeat center bottom;
    background-size: cover;
  }
}

#section1 .main_seep {
  width: 145vh;
  position: absolute;
  top: 180%;
  left: 55%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: seep1 3s 2.5s ease-in-out forwards, seep2 1s 6.5s ease-in-out infinite;
          animation: seep1 3s 2.5s ease-in-out forwards, seep2 1s 6.5s ease-in-out infinite;
}

@media only screen and (max-width: 500px) {
  #section1 .main_seep {
    width: 70vh;
    -webkit-animation: seep1sp 1s 2s ease-in-out forwards, seep2sp 1s 3s ease-in-out infinite;
            animation: seep1sp 1s 2s ease-in-out forwards, seep2sp 1s 3s ease-in-out infinite;
  }
}

#section1 .coment {
  width: 22vw;
  position: absolute;
  top: 20%;
  right: 7%;
  opacity: 0;
  z-index: 3;
  -webkit-animation: coment 1s 6s ease-in-out;
          animation: coment 1s 6s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media only screen and (max-width: 500px) {
  #section1 .coment {
    width: 55vw;
    top: 12%;
    right: -20px;
    -webkit-animation: coment 1s 3s ease-in-out;
            animation: coment 1s 3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}

@-webkit-keyframes seep1 {
  0% {
    top: 180%;
  }
  20% {
    top: 150%;
  }
  80% {
    top: 150%;
  }
  90% {
    top: 48%;
  }
  100% {
    top: 52%;
  }
}

@keyframes seep1 {
  0% {
    top: 180%;
  }
  20% {
    top: 150%;
  }
  80% {
    top: 150%;
  }
  90% {
    top: 48%;
  }
  100% {
    top: 52%;
  }
}

@-webkit-keyframes seep1sp {
  0% {
    top: 180%;
  }
  90% {
    top: 48%;
  }
  100% {
    top: 58%;
  }
}

@keyframes seep1sp {
  0% {
    top: 180%;
  }
  90% {
    top: 48%;
  }
  100% {
    top: 58%;
  }
}

@-webkit-keyframes seep2 {
  0% {
    top: 52%;
  }
  50% {
    top: 52.5%;
  }
  100% {
    top: 52%;
  }
}

@keyframes seep2 {
  0% {
    top: 52%;
  }
  50% {
    top: 52.5%;
  }
  100% {
    top: 52%;
  }
}

@-webkit-keyframes seep2sp {
  0% {
    top: 58%;
  }
  50% {
    top: 58.5%;
  }
  100% {
    top: 58%;
  }
}

@keyframes seep2sp {
  0% {
    top: 58%;
  }
  50% {
    top: 58.5%;
  }
  100% {
    top: 58%;
  }
}

@-webkit-keyframes coment {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes coment {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

#section2 {
  background-color: #fff;
}

#section2:before {
  content: '';
  width: 146px;
  height: 100px;
  background: url("../img/section2_border.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 150px;
}

@media only screen and (max-width: 500px) {
  #section2:before {
    width: 117px;
    height: 80px;
    left: 100px;
  }
}

#section2:after {
  content: '';
  width: 35vw;
  height: 35vw;
  background: url("../img/section2_bg.svg") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

#section3 {
  background-color: #fff;
}

#section3:before {
  content: '';
  width: 146px;
  height: 100px;
  background: url("../img/section3_border.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 150px;
}

@media only screen and (max-width: 500px) {
  #section3:before {
    width: 117px;
    height: 80px;
    left: 100px;
  }
}

#section3:after {
  content: '';
  width: 35vw;
  height: 35vw;
  background: url("../img/section3_bg.svg") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

#section4 {
  background-color: #fff;
}

#section4:before {
  content: '';
  width: 146px;
  height: 100px;
  background: url("../img/section4_border.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 150px;
}

@media only screen and (max-width: 500px) {
  #section4:before {
    width: 117px;
    height: 80px;
    left: 100px;
  }
}

#section4:after {
  content: '';
  width: 35vw;
  height: 35vw;
  background: url("../img/section4_bg.svg") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

.contents {
  width: 1000px;
  padding-top: 25vh;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
  /*.info_area*/
  /*.movie_area*/
}

@media only screen and (max-width: 500px) {
  .contents {
    padding-top: 16vh;
    width: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse nowrap;
        -ms-flex-flow: column-reverse nowrap;
            flex-flow: column-reverse nowrap;
  }
}

.contents .info_area {
  width: 365px;
  /*.movie_link a*/
}

@media only screen and (max-width: 500px) {
  .contents .info_area {
    width: 100%;
  }
}

.contents .info_area h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
}

@media only screen and (max-width: 500px) {
  .contents .info_area h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.contents .info_area p {
  line-height: 2em;
  font-weight: 400;
  margin-bottom: 63px;
}

@media only screen and (max-width: 500px) {
  .contents .info_area p {
    font-size: 14px;
    line-height: 1.6em;
    margin-bottom: 20px;
  }
}

.contents .info_area .movie_link a {
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #009fdb;
  background: -webkit-linear-gradient(45deg, #009fdb 0%, #7f08f5 100%);
  background: linear-gradient(45deg, #009fdb 0%, #7f08f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009fdb', endColorstr='#7f08f5', GradientType=1);
}

@media only screen and (max-width: 500px) {
  .contents .info_area .movie_link a {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}

.contents .info_area .movie_link a dt {
  font-size: 20px;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 25px 0;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 500px) {
  .contents .info_area .movie_link a dt {
    font-size: 18px;
    padding: 10px 0;
  }
}

.contents .info_area .movie_link a dt:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9.5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 30px;
  right: 65px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 500px) {
  .contents .info_area .movie_link a dt:after {
    top: 14px;
    right: 45px;
  }
}

.contents .info_area .movie_link a dd {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 1.8em;
}

@media only screen and (max-width: 500px) {
  .contents .info_area .movie_link a dd {
    font-size: 12px;
    line-height: 1.5em;
    padding: 10px;
  }
}

.contents .info_area .movie_link a:hover {
  opacity: 0.7;
}

.contents .info_area .movie_link a:hover dt:after {
  right: 60px;
}

.contents .info_area .movie_link.btn2 a {
  background: #fc7f03;
  background: -webkit-linear-gradient(45deg, #fc7f03 0%, #ff0b56 100%);
  background: linear-gradient(45deg, #fc7f03 0%, #ff0b56 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7f03', endColorstr='#ff0b56', GradientType=1);
}

.contents .info_area .movie_link.btn3 a {
  background: #00adb4;
  background: -webkit-gradient(linear, left bottom, right top, from(#00adb4), to(#07ea81));
  background: -webkit-linear-gradient(bottom left, #00adb4 0%, #07ea81 100%);
  background: linear-gradient(to top right, #00adb4 0%, #07ea81 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adb4', endColorstr='#07ea81', GradientType=1);
}

.contents .movie_area {
  width: 600px;
  height: 387px;
  padding: 25px 0;
  background-color: #000;
  position: relative;
  -webkit-box-shadow: 30px 30px 40px rgba(0, 0, 0, 0.25);
          box-shadow: 30px 30px 40px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 501px) and (max-width: 1024px) {
  .contents .movie_area {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    overflow: hidden;
  }
  .contents .movie_area iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .contents .movie_area {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .contents .movie_area iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.contents .movie_area .sum {
  width: 100%;
  height: 337px;
  background-color: #aaa;
}

@media only screen and (max-width: 500px) {
  .contents .movie_area .sum {
    height: auto;
  }
}

.contents .movie_area .short {
  font-size: 12px;
  color: #fff;
  position: absolute;
  bottom: 8px;
  right: 8px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 500px) {
  .contents .movie_area .short {
    font-size: 10px;
    bottom: 3px;
    right: 3px;
  }
}

/*.contents*/
/*↓ipad用たてcss*/
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .rogo a {
    width: 140px;
  }
  #section1 .main_seep {
    width: 100vh;
    position: absolute;
    top: 180%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: seep1sp 1s 2s ease-in-out forwards, seep2sp 1s 3s ease-in-out infinite;
            animation: seep1sp 1s 2s ease-in-out forwards, seep2sp 1s 3s ease-in-out infinite;
  }
  #section1 .coment {
    width: 30vw;
    position: absolute;
    top: 8%;
    right: 7%;
    opacity: 0;
    -webkit-animation: coment 1s 3s ease-in-out;
            animation: coment 1s 3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .contents {
    padding-top: 35vh;
  }
  .contents .info_area p {
    margin-bottom: 43px;
  }
}

/*↓ipad用横css*/
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .rogo a {
    width: 140px;
  }
  .rogo a p {
    text-align: center;
  }
  .contents .info_area p {
    margin-bottom: 53px;
  }
}
/*# sourceMappingURL=exhibition.css.map */