body {
  font-family: 'Noto Serif JP','Noto Sans JP', sans-serif;
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;

  /* animation-name: fadein;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  overflow-x: hidden;
  transform: none; */
  overflow-x: hidden!important;
}

a{
  color: black;
}

@media screen and (min-width:1050px) {

}

/* TB */
@media screen and (min-width:768px) and ( max-width:1049px) {

}

/* SP */
@media screen and (max-width:767px) {

}

.fadeIn{
  animation-name: fadein;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  0% {
    filter: blur(50px);
  }
  70% {
    filter: blur(15px);
  }
  100% {
     filter: blur(0px);
  }
}a

hr {
  color: black;
  background-color: black;
}

#container1{
  width: 100vw;
  height: 100vh;
  position:fixed;
  top:0px;
  left:0px;
  z-index: -110;
}



@media screen and (min-width:1050px) {
  .header{
    height:80px;
    width:100vw;
    position: fixed;
    left:0px;
    top:0px;
    z-index: 100;
  }

  .openbtn1{
    position:absolute;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
      width: 70px;
      height:70px;
   right: 50px;
   bottom: 0px;
   cursor: pointer;
   cursor: hand;
  }

}

/* TB */
@media screen and (min-width:768px) and ( max-width:1049px) {
  .header{
    height:80px;
    width:100vw;
    position: fixed;
    left:0px;
    top:0px;
    z-index: 100;
  }

  .openbtn1{
    position:absolute;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
      width: 70px;
      height:70px;
   right: 50px;
   bottom: 0px;
   cursor: pointer;
   cursor: hand;
  }
}

/* SP */
@media screen and (max-width:767px) {
  .header{
    height:60px;
    width:100vw;
    position: fixed;
    left:0px;
    top:0px;
    z-index: 100;
  }

  .openbtn1{
    position:absolute;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
      width: 40px;
      height:40px;
   right: 20px;
   bottom: 0px;
   cursor: pointer;
   cursor: hand;
  }

}



/*ボタン内側*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    /* border-radius: 2px; */
    background: black;
    width: 70%;
  }

.openbtn1 span:nth-of-type(1) {
  top:25%;
  transform: translateY(6px) rotate(-4deg);
}

.openbtn1 span:nth-of-type(2) {
  top:50%;
  transform: translateY(6px) rotate(4deg);
}

.openbtn1 span:nth-of-type(3) {
  top:75%;
  transform: translateY(6px) rotate(-4deg);
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn1.active span:nth-of-type(1) {
    top: 50%;
    left: 18px;
    transform: translateY(6px) rotate(-42deg);
    width: 70%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3){
    top: 70%;
    left: 18px;
    transform: translateY(-6px) rotate(48deg);
    width: 80%;
}
/*========= レイアウトのためのCSS ===============*/

.menubase{
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left:0px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all .4s;
  overflow-y:hidden;
}

.menubase.active{
  opacity: 1;
  visibility: visible;
  display: block;
  background-color: rgba(0,0,0,0.5);
}

@media screen and (min-width:1050px) {
  .menu{
    position: fixed;
    z-index: 99;
    width: 400px;
    height: 100vh;
    right: -400px;
    top: 0px;
    background-color: white;
    transition: all .4s;
    visibility: hidden;
  }

  .menu li{
    font-size: 28px;
    margin: 10px 0px;
    cursor: pointer;
    cursor: hand;
    transition: .4s;
  }
}

/* TB */
@media screen and (min-width:768px) and ( max-width:1049px) {
  .menu{
    position: fixed;
    z-index: 99;
    width: 400px;
    height: 100vh;
    right: -400px;
    top: 0px;
    background-color: white;
    transition: all .4s;
    visibility: hidden;
  }
  .menu li{
    font-size: 28px;
    margin: 10px 0px;
    cursor: pointer;
    cursor: hand;
    transition: .4s;
  }
}

/* SP */
@media screen and (max-width:767px) {
  .menu{
    position: fixed;
    z-index: 99;
    width: 95vw;
    height: 100vh;
    right: -95vw;
    top: 0px;
    background-color: white;
    transition: all .4s;
    visibility: hidden;
  }
  .menu li{
    font-size: 20px;
    margin: 10px 0px;
    cursor: pointer;
    cursor: hand;
    transition: .4s;
  }
}



.menu.active{
  right: 0px;
  visibility: visible;
}

.menu ul{
  list-style: none;
  margin: 110px 0px 0px 20px;
}



.menu li:hover {
  transform: scale(1.1);
}



/*トップ*/
.top {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
}



@media screen and (min-width:1050px) {
  .topImage.pc{
    position: absolute;
    width: 85vw;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)
               translateY(-50%);
  }

  .topImage.sp{
    display: none
  }

  .pc{
    display: block;
  }
  .sp{
    display: none;
  }

  .pc-line1{
    position: absolute;
    z-index: -10;
    width: 70vw;
    height: auto;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%)
               translateY(0%);
  }
}

/* TB */
@media screen and (min-width:768px) and ( max-width:1049px) {
  .topImage.pc{
    position: absolute;
    width: 85vw;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)
               translateY(-50%);
  }
  .topImage.sp{
    display: none
  }
  .pc{
    display: block;
  }
  .sp{
    display: none;
  }

  .pc-line1{
    position: absolute;
    z-index: -10;
    width: 70vw;
    height: auto;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%)
               translateY(0%);
  }
}

/* SP */
@media screen and (max-width:767px) {
  .topImage.pc{
    display: none
  }
  .topImage.sp{
    position: absolute;
    width: auto;
    height: 85vh;
    left: 50%;
    top:50%;
    transform: translateX(-50%)
               translateY(-50%);
  }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }

  .sp-line1{
    position: absolute;
    z-index: -10;
    width: 90vw;
    height: auto;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%)
               translateY(0%);
  }
}

/* 概要 */

/* PC */
@media screen and (min-width:1050px) {
  .about.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px;
    background: none;
    color: black;
  }

  .about.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
  }

  .about.title{
    height: 60px;
    margin: 0px 0px 100px -100px;
  }

  .about.overview.wrappr{
    margin: 0px 0px 167px 0;
  }

  .about.overview.wrappr p{
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .about.overview {
    font-size: 20px;
    line-height: 1.9;
    margin: 0px 0px 80px 0px;

  }

  .info {
    width: 100%;
    height:auto;
  }

  .pc-line2{
    position: absolute;
    z-index: -10;
    width: 200px;
    height: auto;
    left: -270px;
    top:100px;
  }

  .pc-line2-2{
    position: absolute;
    z-index: -10;
    width: 200px;
    height: auto;
    right: -400px;
    top:500px;
    transform: rotate(10deg);
  }

}

/* TB */
@media screen and (min-width:768px) and ( max-width:1049px) {

  .about.overview.wrappr p{
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .about.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px;
    background: none;
    color: black;

  }

  .about.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
    position: relative;
  }

  .about.title{
    height: 60px;
    margin: 0px 0px 100px 0px;
  }

  .about.overview.wrappr{
    margin: 0px 0px 167px 0;
  }

  .about.overview {
    font-size: 20px;
    line-height: 1.9;
    margin: 0px 0px 80px 0px;
  }

  .info {
    width: 100%;
    height:auto;
  }
  .pc-line2{
    position: absolute;
    z-index: -10;
    width: 200px;
    height: auto;
    left: -270px;
    top:100px;
  }

  .pc-line2-2{
    position: absolute;
    z-index: -10;
    width: 200px;
    height: auto;
    right: -400px;
    top:500px;
    transform: rotate(10deg);
  }
}

/* SP */
@media screen and (max-width:767px) {

  .about.overview.wrappr p{
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .about.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;
    color: black;
    overflow: hidden;
  }

  .about.contents {
    margin: 0px auto;
    width: 90vw;
    max-width: 90%;
     position: relative;
  }

  .about.title{
    height: 30px;
    margin: 0px 0px 70px 0px;
  }

  .about.overview.wrappr{
    margin: 0px 0px 40px 0;
  }

  .about.overview {
    font-size: 13px;
    line-height: 1.9;
    margin: 0px 0px 80px 0px;
  }

  .info {
    width: 100%;
    height:auto;
  }

  .sp-line2{
    position: absolute;
    z-index: -10;
    width: 200px;
    height: auto;
    bottom: -400px;
    right:-50px;
    overflow: hidden;
  }
}

/* 出展者 */

@media screen and (min-width:1050px) {
  .exhibitor.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;
    position: relative;
  }

  .exhibitor.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
  }

  .exhibitor.title{
    height: 60px;
    margin: 0px 800px 100px -100px;
  }

  .exhibitor.title2 {
    height: 137px;
    margin: 53px 800px 100px -50px;
  }

  .exhibitor-list-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 0px 100px 0px;

  }

  .exhibitor-list-item {
    width: calc(33% - 44px); /* margin padding分を引く */
    margin: 1px 1px 50px 1px;
    cursor: pointer;
    cursor: hand;
    transition: .2s;
    position: relative;
  }

  .exhibitor-list-item:hover {
    transform: scale(1.1);
  }

  .exhibitor-list-item img{
    width:100%;
  }

  .exhibitor-list-item p{
    font-size: 20px;
    margin: 5px 0px 0px 0px;
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .pc-line3{
    position: absolute;
    z-index: -10;
    width: 1000px;
    height: auto;
    left: 500px;
    top:10px;
  }

  .pc-line4{
    position: absolute;
    z-index: -10;
    width: 1000px;
    height: auto;
    left: -500px;
    bottom:200px;
  }
}

@media screen and (min-width:768px) and ( max-width:1049px) {
  .exhibitor.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;
  }

  .exhibitor.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
  }

  .exhibitor.title{
    height: 60px;
    margin: 0px 800px 100px 0px;
  }

  .exhibitor.title2 {
    height: 100px;
    margin: 53px 800px 100px 0px;
  }

  .exhibitor-list-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position:relative;
  }

  .exhibitor-list-item {
    width: calc(33% - 28px); /* margin padding分を引く */
    margin: 1px 1px 30px 1px;
    cursor: pointer;
    cursor: hand;
    transition: .2s;
  }

  .exhibitor-list-item:hover {
    transform: scale(1.1);
  }

  .exhibitor-list-item img{
    width:100%;
  }

  .exhibitor-list-item p{
    font-size: 20px;
    margin: 5px 0px 0px 0px;
      background: linear-gradient(transparent 0%, #FFF 0%);
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
  }

  .pc-line3{
    position: absolute;
    z-index: -10;
    width: 1000px;
    height: auto;
    left: 500px;
    top:10px;
  }

  .pc-line4{
    position: absolute;
    z-index: -10;
    width: 1000px;
    height: auto;
    left: -500px;
    bottom:200px;
  }
}

@media screen and (max-width:767px) {
  .exhibitor.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;
  }

  .exhibitor.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
  }

  .exhibitor.title {
    height: 30px;
    margin: 0px 0px 18px 0px;
  }

  .exhibitor.title2 {
    height: 60px;
    margin: 0px 0px 70px 0px;
  }

  .exhibitor-list-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 0px 50px 0px;
    position: relative;
  }

  .exhibitor-list-item {
    width: calc(50% - 10px); /* margin padding分を引く */
    margin: 1px 1px 20px 1px;
    cursor: pointer;
    cursor: hand;
    transition: .2s;
  }

  .exhibitor-list-item:hover {
    transform: scale(1.1);
  }

  .exhibitor-list-item img{
    width:100%;
  }

  .exhibitor-list-item p{
    font-size: 15px;
    margin: 0px 0px 0px 0px;
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .sp-line5{
    position: absolute;
    z-index: -10;
    width: 300px;
    height: auto;
    left: 0px;
    bottom:-200px;
  }

  .sp-line6{
    position: absolute;
    z-index: -10;
    width: 300px;
    height: auto;
    left: 0px;
    bottom:-200px;
  }
}

/* モーダル */

.modalBackground{
  position:fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 110;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.modalBackground.active{
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width:1050px) {
  .modal.wrapper{
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    /* background-color: rgba(0,0,0,0.5); */
    visibility: hidden;
    opacity: 0;
    z-index: 110;
    transition: 0.5s;
    filter: blur(50px);
  }

  .modal.wrapper.active{
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
  }

  .modal.item{
    position:fixed;
    width: 1000px;
    max-width: 90%;
    height: 90vh;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)
               translateY(-50%);
    overflow: scroll;
  }

  .modal-close{
    position:fixed;
    width: 40px;
    height: auto;
    top: calc(50vh - 45vh + 20px);
    left: calc(50vw + 500px - 50px);
    z-index: 100;

    cursor: pointer;
    cursor: hand;
  }

  .modal-contents{
    position: relative;
    margin: 70px 70px 70px 70px;
  }
  .modal-contents p{
    font-size: 17px;
    line-height: 2;
  }

  .modal-icon{
    width: 300px;
    height: auto;
  }

  .pastwork-image{
    max-width: 700px;
    max-height: 400px:
  }
}
@media screen and (min-width:768px) and ( max-width:1049px) {
  .modal.wrapper{
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    /* background-color: rgba(0,0,0,0.5); */
    visibility: hidden;
    opacity: 0;
    z-index: 110;
    transition: 0.5s;
    filter: blur(50px);
  }

  .modal.wrapper.active{
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
  }

  .modal.item{
    position:fixed;
    width: 1000px;
    max-width: 90%;
    height: 90vh;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)
               translateY(-50%);
    overflow: scroll;
  }

  .modal-close{
    position:fixed;
    width: 40px;
    height: auto;
    top: calc(50vh - 45vh + 20px);
    left: calc(50vw + 400px - 50px);
    z-index: 100;

    cursor: pointer;
    cursor: hand;
  }

  .modal-contents{
    position: relative;
    margin: 70px 70px 70px 70px;
  }
  .modal-contents p{
    font-size: 17px;
    line-height: 2;
  }

  .modal-icon{
    width: 300px;
    height: auto;
  }

  .pastwork-image{
    max-width: 700px;
    max-height: 400px:
  }
}
@media screen and (max-width:767px) {
  .modal.wrapper{
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    /* background-color: rgba(0,0,0,0.5); */
    visibility: hidden;
    opacity: 0;
    z-index: 110;
    transition: 0.5s;
    filter: blur(50px);
  }

  .modal.wrapper.active{
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
  }

  .modal.item{
    position:fixed;
    width: 1000px;
    max-width: 90%;
    height: 90vh;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)
               translateY(-50%);
    overflow: scroll;
  }

  .modal-close{
    position:fixed;
    width: 40px;
    height: auto;
    top: calc(50vh - 45vh + 20px);
    left: calc(85vw);
    z-index: 100;

    cursor: pointer;
    cursor: hand;
  }

  .modal-contents{
    position: relative;
    margin: 15px 15px 15px 15px;
  }

  .modal-contents h1{
    font-size: 18px;
  }

  .modal-contents h2{
    font-size: 18px;
  }
  .modal-contents p{
    font-size: 12px;
    line-height: 2;
  }

  .modal-icon{
    width: 250px;
    height: auto;
  }

  .pastwork-image{
    max-width: 300px;
    max-height: 200px:
  }
}



/* スケジュール */

.commingsoon{
  text-align: center;
  text-decoration: none;
  font-weight: normal;
  background: linear-gradient(transparent 0%, #FFF 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media screen and (min-width:1050px) {
  .schedule.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;

  }

  .schedule.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
  }

  .schedule.title{
    height: 60px;
    margin: 0px 800px 100px -100px;
  }

  /* イベント */

  .event.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;
  }

  .event.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;

  }

  .event.title{
    height: 60px;
    margin: 0px 800px 100px -100px;
  }

  .event-item{
    margin: 100px 0px;
  }

  .event-item-title{
    font-size: 25px;
    font-weight: bold;
  }

  .event-item-icon{
    font-size: 25px;
    /* width: 100%; */
    height: auto;
    margin: 50px auto;
    display: block;
  }

  .event-item-about{
    font-size: 20px;
  }
}
@media screen and (min-width:768px) and ( max-width:1049px) {
  .schedule.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;

  }

  .schedule.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
  }

  .schedule.title{
    height: 60px;
    margin: 0px 100px 100px 0px;
  }

  /* イベント */

  .event.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;

  }

  .event.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;

  }

  .event.title{
    height: 60px;
    margin: 0px 0px 100px 0px;
  }

  .event-item{
    margin: 100px 0px;
  }

  .event-item-title{
    font-size: 25px;
    font-weight: bold;
  }

  .event-item-icon{
    font-size: 25px;
    width: 100%;
    height: auto;
    margin: 50px auto;
    display: block;
  }

  .event-item-about{
    font-size: 20px;
  }
}
@media screen and (max-width:767px) {
  .schedule.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;

  }

  .schedule.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
  }

  .schedule.title{
    height: 30px;
    margin: 0px 0px 100px 0px;
  }

  /* イベント */

  .event.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px 0px 0px;
    background: none;
  }

  .event.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;

  }

  .event.title{
    height: 60px;
    margin: 0px 800px 100px -100px;
  }

  .event-item{
    margin: 100px 0px;
  }

  .event-item-title{
    font-size: 20px;
    font-weight: bold;
  }

  .event-item-icon{
    width: 100%;
    height: auto;
    margin: 50px auto;
    display: block;
  }

  .event-item-about{
    font-size: 16px;
  }
}


/* アクセス */

@media screen and (min-width:1050px) {
  .access.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px;
  }

  .access.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
  }

  .access.contents {
    width: 1000px;
    position: relative;
  }

  .access.title {
    height: 60px;
    margin: 0px 0px 100px -100px;
  }

  .map{
    width:100%;
    height: 600px;
  }

  .access p{
    font-size: 20px;
    line-height: 2;
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .access p span{
    font-size: 25px;
  }
}
@media screen and (min-width:768px) and ( max-width:1049px) {
  .access.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px;
  }

  .access.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
    position: relative;
  }

  .access.contents {
    width: 1000px;
  }

  .access.title {
    height: 60px;
    margin: 0px 0px 100px 0px;
  }

  .map{
    width:100%;
    height: 400px;
  }

  .access p{
    font-size: 20px;
    line-height: 2;
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .access p span{
    font-size: 25px;
  }
}
@media screen and (max-width:767px) {
  .access.wrapper {
    width: 100vw;
    margin: 0px;
    padding: 128px 0px;
  }

  .access.contents {
    margin: 0px auto;
    width: 1000px;
    max-width: 90%;
  }

  .access.contents {
    width: 1000px;
  }

  .access.title {
    height: 30px;
    margin: 0px 0px 60px 0px;
  }

  .map{
    width:100%;
    height: 400px;
  }

  .access p{
    font-size: 15px;
    line-height: 2;
    background: linear-gradient(transparent 0%, #FFF 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .access p span{
    font-size: 18px;
  }
}





@media screen and (min-width:1050px) {

  /*フッター*/
  footer {
    background: black;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
  }

  footer #footer-wrapper {
    margin: 0vw 100px;
  }

  footer div #icons {
    margin: 26.67px 0vw;
  }

  footer div #icons img {
    width: 30px;
    padding-right: 6.67px;
  }

  footer div #contact {
    margin: 26.67px 0vw;
    color: white;
    font-size: 12pt;
    letter-spacing: 0.15em;
  }

  footer div #contact_title {
    font-weight: bolder;
  }

  footer div #contact_mail {
    font-size: 10pt;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  footer div #credit {
    margin: 26.67px 0vw;
    color: white;
    font-size: 10pt;
    letter-spacing: 0.15em;
  }

}

/* TB */
@media screen and (min-width:768px) and ( max-width:1049px) {

  /*フッター*/
  footer {
    background: black;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
  }

  footer #footer-wrapper {
    margin: 0vw 50px;
  }

  footer div #icons {
    margin: 26.67px 0vw;
  }

  footer div #icons img {
    width: 30px;
    padding-right: 6.67px;
  }

  footer div #contact {
    margin: 26.67px 0vw;
    color: white;
    font-size: 12pt;
    letter-spacing: 0.15em;
  }

  footer div #contact_title {
    font-weight: bolder;
  }

  footer div #contact_mail {
    font-size: 10pt;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  footer div #credit {
    margin: 26.67px 0vw;
    color: white;
    font-size: 10pt;
    letter-spacing: 0.15em;
  }

}


@media screen and (min-width:1050px) {
  .timeTableImage{
    width: 700px;
    margin: auto;
    display: block;
  }
}

/* TB */
@media screen and (min-width:768px) and ( max-width:1049px) {
  .timeTableImage{
    width: 70%;
    height: auto;
    margin: auto;
    display: block;
  }
}

/* SP */
@media screen and (max-width:767px) {
  .timeTableImage{
    width: 90%;
    height: auto;
    margin: auto;
    display: block;
  }
}

/* SP */
@media screen and (max-width:767px) {

  /*フッター*/
  footer {
    background: black;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
  }

  footer #footer-wrapper {
    margin: 0vw 50px;
  }

  footer div #icons {
    margin: 10px 0vw;
  }

  footer div #icons img {
    width: 25px;
    padding-right: 6.67px;
  }

  footer div #contact {
    margin: 10px 0vw;
    color: white;
    font-size: 10pt;
    letter-spacing: 0.15em;
  }

  footer div #contact_title {
    font-weight: bolder;
  }

  footer div #contact_mail {
    font-size: 7pt;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  footer div #credit {
    margin: 10px 0vw;
    color: white;
    font-size: 7pt;
    letter-spacing: 0.15em;
  }

}
