@media screen and (min-width:831px) {
  .u-pc {
    display: block !important;
  }

  .u-tb {
    display: none !important;
  }

  .u-sp {
    display: none !important;
  }
}

@media screen and (min-width:768px) and (max-width:830px) {
  .u-pc {
    display: none !important;
  }

  .u-tb {
    display: block !important;
  }

  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width:767px) {
  .u-pc {
    display: none !important;
  }

  .u-tb {
    display: none !important;
  }

  .u-sp {
    display: block !important;
  }
}

body {
  background: #00A0E8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

@media screen and (max-width:767px) {
  body {
    /* font-weight: bold; */
  }
}

a {
  color: black;
  text-underline-offset: 0.5ex;
  text-decoration: underline 1px;
}

p {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  /* word-break: keep-all; */
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* text-align: justify; */
  text-justify: inter-ideograph;
}

/* フェードインアニメーション */
.fadeIn {
  animation-name: fadein;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  overflow-x: hidden;
}

.exhibitor-link{
  color: black;
  text-underline-offset: 0.5ex;
  text-decoration: underline 1px;
  cursor:pointer;
}

@keyframes fadein {
  0% {
    filter: blur(100px);
  }

  /* 40% {
    filter: blur(10px);
  } */

  100% {
    filter: blur(0px);
  }
}

hr {
  color: black;
  background: black;
}

#container1 {
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -110;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-user-drag: none;
}

/* ヘッダー */
.header {
  width: 100vw;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

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

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

/* PC & タブレット */
@media screen and (min-width:768px) {
  .header {
    height: 90px;
  }

  .openbtn1 {
    width: 90px;
    height: 90px;
    right: 10px;
  }

  .openbtn1 p {
    top: -10px;
    left: 13px;
    /* transform: translateY(6px) rotate(-4deg); */
    color: white;
    font-weight: bold;
    font-size: 18.5px;
    display: inline-block;
    transition: all .4s;
    /* アニメーションの設定 */
    position: absolute;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .header {
    height: calc(80vw / 767 * 100);
  }

  .openbtn1 {
    width: calc(70vw / 767 * 100);
    height: calc(70vw / 767 * 100);
    right: calc(30vw / 767 * 100);
  }

  .openbtn1 p {
    top: 0px;
    left: 13px;
    /* transform: translateY(6px) rotate(-4deg); */
    color: white;
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
    transition: all .4s;
    /* アニメーションの設定 */
    position: absolute;
  }
}

/* ヘッダー */
/* メニューボタン */
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  /* アニメーションの設定 */
  position: absolute;
  left: 14px;
  height: 2px;
  background: white;
  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%;
}

.openbtn1.active p {
  opacity: 0;
}

/* メニューボタン */
/* メニュー */
.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: rgba(0, 0, 0, 0.5);
}

.menu {
  position: fixed;
  z-index: 99;
  height: 100vh;
  top: 0px;
  background: #00A0E8;
  transition: all .4s;
  visibility: hidden;
}

.menu li {
  padding: 10px 0;
  cursor: pointer;
  cursor: hand;
  transition: .4s;
  color: white;
  border-top: 1px solid #ffffff;
}

.menu li:last-of-type {
  border-bottom: 1px solid #ffffff;
}

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

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

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

/* PC & タブレット */
@media screen and (min-width:768px) {
  .menu {
    width: 400px;
    right: -400px;
  }

  .menu li {
    font-size: 28px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .menu {
    width: 95vw;
    right: -95vw;
  }

  .menu li:hover {
    transform: none;
  }

  .menu li {
    font-size: calc(32vw / 767 * 100);
  }
}

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

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

  .topImage.sp {
    display: none
  }

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  .menton {
    margin: 20px 20px;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: white;
  }
}

/* TB */
@media screen and (min-width:768px) and (max-width:830px) {
  .topImage.pc {
    display: none
  }

  .topImage.up.sp {
    position: absolute;
    width: calc(100vw - 20px);
    height: auto;
    left: 10px;
    top: 10px;
  }

  .topImage.bottom.sp {
    position: absolute;
    width: calc(100vw - 20px);
    height: auto;
    left: 10px;
    bottom: 10px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .menton {
    margin: 20px 20px;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: white;
  }
}

/* SP */
@media screen and (max-width:767px) {
  .topImage.pc {
    display: none
  }

  .topImage.up.sp {
    position: absolute;
    width: calc(100vw - 20px);
    height: auto;
    left: 10px;
    top: 10px;
  }

  .topImage.bottom.sp {
    position: absolute;
    width: calc(100vw - 20px);
    height: auto;
    left: 10px;
    bottom: 10px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .menton {
    margin: 20px 20px;
    text-align: right;
    font-size: 15px;
    font-weight: bold;
    color: white;
  }
}

/*トップ*/
/* 共通項目 */
.title {
  display: inline-block;
  background: white;
  border: 1px solid black;
  vertical-align: middle;
}

/* PC */
@media screen and (min-width:768px) {
  .wrapper {
    margin-top: 160px;
  }

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

  .title {
    height: 60px;
    font-size: 28px;
    line-height: 60px;
    border-radius: 30px;
    margin: 0px 200px 0px 0px;
    padding: 0px 40px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .wrapper {
    margin-top: calc(120vw / 767 * 100);
  }

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

  .title {
    height: calc(60vw / 767 * 100);
    font-size: calc(28vw / 767 * 100);
    line-height: calc(60vw / 767 * 100);
    border-radius: calc(30vw / 767 * 100);
    padding: 0 calc(60vw / 767 * 100);
  }
}

/* 共通項目 */
/* 概要 */
.about-content-wrapper {
  /* background: #C6E2F8; */
  background: white;
}



.about-overview-name {
  text-align: right;
}

.about-info {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: justify;
  text-justify: inter-ideograph;
  margin-bottom: 50px;
}

/* PC & タブレット */
@media screen and (min-width:750px) {
  .about {
    /* font-size: 18px;
    line-height: 1.8; */
  }

  .about-overview {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    /* word-break: keep-all; */
    line-break: strict;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 20px;
  }

  .about-title {
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    border-radius: 30px;
    margin: 0px 200px 0px 0px;
    padding: 0px 40px;
  }

  .about-content-wrapper {
    margin-top: 60px;
    padding: 70px 80px;
  }

  .about-overview-name {
    margin: 50px 0px 0px 0px;
  }

  .about-info-wrapper {
    margin: 80px 0px 0px 0px;
  }

  .arrow-container {
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 0px 0px 6px 10px;
  }

  .arrow-container1 {
    width: calc(100% - 400px);
  }

  .arrow-container2 {
    width: calc(100% - 224px);
  }

  .arrow-container3 {
    width: calc(100% - 170px);
  }

  .arrow-container4 {
    width: calc(100% - 300px);
  }

  .arrow {
    width: 100%;
    height: 8px;
    object-fit: cover;
    object-position: right;
  }

  .info-title {
    font-size: 28px;
    line-height: 60px;
    border-radius: 30px;
    margin: 0px 200px 0px 0px;
    padding: 0px 0px;
  }

  .info-text {
    font-size: 25px;
    line-height: 30px;
    border-radius: 30px;
    /* margin: 0px 200px 0px 200px; */
    padding: 40px 0px 60px 30px;
  }

  .info-notion {
    font-size: 20px;

  }

  .info-container{
    margin-top: 50px;
  }

  .info-container dl {
    display: flex;
    flex-wrap: wrap;
  }
  .info-container dl dt {
    width: 35%;

    display: inline-block;
    background: white;
    border: 1px solid black;
    vertical-align: middle;
    text-align: center;

    height: 60px;
    font-size: 20px;
    line-height: 60px;
    border-radius: 30px;
    margin: 0px 50px 40px 0px;
    padding: 0px 40px;
  }
  .info-container dl dd {
    width: 55%;
    height: 60px;
    font-size: 25px;
    margin-top:15px;
  }
}

/* スマホ */
@media screen and (max-width:749px) {
  .about {
    font-size: calc(24vw / 767 * 100);
    letter-spacing: 0;
    line-height: 1.7;
  }

  .about-overview {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    /* word-break: keep-all; */
    line-break: strict;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: calc(28vw / 767 * 100);
  }

  .about-content-wrapper {
    margin-top: calc(60vw / 767 * 100);
    padding: calc(60vw / 767 * 100);
  }

  .about-overview-name {
    margin-top: calc(50vw / 767 * 100);
  }

  .about-info-wrapper {
    margin-top: calc(80vw / 767 * 100);
  }

  .about-info {
    line-height: 1.3;
    margin-top: calc(20vw / 767 * 100);
  }

  .arrow-container {
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 0;
  }

  div:has(+ .arrow-container1),
  div:has(+ .arrow-container2),
  div:has(+ .arrow-container3),
  div:has(+ .arrow-container4) {
    width: 15%;
  }

  .arrow-container1 {
    width: 40%;
  }

  .arrow-container1+div {
    width: 45%;
    text-align: right;
  }

  .arrow-container2 {
    width: 53%;
  }

  .arrow-container2+div {
    width: 37%;
    text-align: right;
  }

  .arrow-container3 {
    width: 54%;
  }

  .arrow-container3+div {
    width: 31%;
    text-align: right;
  }

  .arrow-container4 {
    width: 25%;
  }

  .arrow-container4+div {
    width: 60%;
    text-align: right;
  }

  .arrow {
    width: 100%;
    height: calc(8vw / 767 * 100);
    object-fit: cover;
    object-position: right;
  }

  .info-title {
    font-size: 18px;
    line-height: 30px;
    border-radius: 30px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px;
  }

  .info-text {
    font-size: 13px;
    line-height: 30px;
    border-radius: 30px;
    /* margin: 0px 200px 0px 200px; */
    padding: 10px 0px 30px 10px;
  }

  .info-notion {
    font-size: 13px
  }

  .info-container{
    margin-top: 50px;
  }

  .info-container dl {
  /* display: flex;
  flex-wrap: wrap; */
  }
  .info-container dl dt {
    /* width: 40%; */

    display: inline-block;
    background: white;
    border: 1px solid black;
    vertical-align: middle;
    text-align: center;


    height: calc(60vw / 767 * 100);
    font-size: calc(28vw / 767 * 100);
    line-height: calc(60vw / 767 * 100);
    border-radius: calc(30vw / 767 * 100);
    padding: 0 calc(60vw / 767 * 100);
    margin: 0px 0px 0px 0px;
  }
  .info-container dl dd {
    /* width: 50%; */
    height: 60px;
    font-size: calc(30vw / 767 * 100);
    margin-top:10px;
    margin-left: 5px;
    margin-bottom:10px;
  }
}

/* 概要 */
/* 出展者 */
.title-grade {
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  /* 垂直方向の中央揃え */
}

.title-grade span {
  position: relative;
  background: url('../images/ui/title-grade.svg') no-repeat center / cover;
}

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

.exhibitor-list-item {
  cursor: pointer;
  transition: .2s;
}

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

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

.exhibitor-venue-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.exhibitor-venue {
  display: flex;
  border: solid black;
  border-width: 0px 1px 1px 1px;
  min-width: 120px;
  width: 50%;
  height: 26px;
  margin: 0px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-sizing: border-box;
}

.exhibitor-venue-motomachi {
  background: white;
  color: black;
}

.exhibitor-venue-bankart {
  background: black;
  color: white;
}

.exhibitor-list-item p {
  color: black;
}

/* PC */
@media screen and (min-width:768px) {
  .title-grade {
    margin-top: 60px;
  }

  .title-grade span {
    font-size: 28px;
    letter-spacing: 1.5px;
    line-height: 1.6;
    padding: 10px 20px;
  }

  .exhibitor-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
  }

  .exhibitor-list-item {
    width: calc(33% - 40px);
    margin: 0px 0px 50px 0px;
    box-sizing: border-box;
  }

  .exhibitor-list-item p {
    font-size: 20px;
    line-height: 1;
    margin: 10px 0px 10px 0px;
    padding: 9px 20px;
    display: flex;
    border: 1px solid black;
    min-width: 120px;
    width: 100%;
    height: 40px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: white;
  }
}

/* タブレット */
@media screen and (min-width:768px) and (max-width:1049px) {
  .exhibitor-list-item {
    width: calc(33% - 15px);
    /* margin padding分を引く */
    margin: 1px 1px 50px 1px;
    position: relative;
  }

  .exhibitor-list-item p {
    font-size: 20px;
    line-height: 1;
    margin: 10px 0px 10px 0px;
    padding: 9px 20px;
    display: flex;
    border: 1px solid black;
    min-width: 120px;
    width: 100%;
    height: 40px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: white;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .title-grade {
    width: 100%;
    height: calc(110vw / 767 * 100);
    margin-top: calc(60vw / 767 * 100);
  }

  .title-grade span {
    position: absolute;
    font-size: calc(28vw / 767 * 100);
    letter-spacing: 1.2px;
    line-height: 1.6;
    padding: calc(10vw / 767 * 100) calc(20vw / 767 * 100);
  }

  .exhibitor-list-container {
    margin-top: calc(40vw / 767 * 100);
    position: relative;
  }

  .exhibitor-list-item {
    width: calc(50% - 10px);
    /* margin padding分を引く */
    margin-bottom: calc(50vw / 767 * 100);
  }

  .exhibitor-list-item p {
    font-size: calc(24vw / 767 * 100);
    line-height: 1;
    margin-top: calc(15vw / 767 * 100);
    display: flex;
    border: 1px solid black;
    min-width: 120px;
    width: 100%;
    height: 30px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: white;
  }

  .exhibitor-venue {
    height: calc(30vw / 767 * 100);
    font-size: calc(20vw / 767 * 100);
  }
}

/* 出展者 */
/* モーダル */
.no-scroll {
  overflow: hidden;
}

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

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

.modal-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  /* background: 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: white;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  overflow: scroll;
}

.modal-contents .exhibitor-statement,
.modal-contents .exhibitor-links,
.modal-contents .exhibitor-history {
  border-top: 1px solid #333;
}

.modal-close {
  position: fixed;
  width: 50px;
  height: auto;
  top: 20px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  cursor: hand;
}

.modal-contents {
  position: relative;
}

/* PC & タブレット */
@media screen and (min-width:768px) {
  .modal-close {}

  .modal-contents {
    margin: 80px;
  }

  .modal-contents p {
    font-size: 17px;
    line-height: 2.0;
  }

  .modal-contents .exhibitor-statement,
  .modal-contents .exhibitor-links,
  .modal-contents .exhibitor-history {
    margin-top: 20px;
    padding-top: 20px;
  }

  .modal-contents .exhibitor-name {
    margin-top: 20px;
    font-size: 32px;
  }

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

  #pastwork-title1 {
    margin-top: 50px;
    font-size: 32px;
  }

  .pastwork-image {
    margin-top: 10px;
    width: 100%;
    height: auto;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .modal-close {
    right: 2vw;
  }

  .modal-contents {
    margin: 3vw;
  }

  .modal-contents p {
    font-size: calc(25vw / 767 * 100);
    line-height: 1.75;
  }

  .modal-contents .exhibitor-statement,
  .modal-contents .exhibitor-links,
  .modal-contents .exhibitor-history {
    margin-top: calc(20vw / 767 * 100);
    padding-top: calc(20vw / 767 * 100);
  }

  .modal-contents .exhibitor-name {
    font-size: calc(36vw / 767 * 100);
    margin-top: 3vw;
  }

  .modal-icon {
    width: calc(420vw / 767 * 100);
    height: auto;
  }

  .pastwork-image {
    margin-top: 30px;
    width: 100%;
    height: auto;
  }
}

/* モーダル */
/* イベント */
/* PC & タブレット */
@media screen and (min-width:768px) {
  .event-content-wrapper {
    /* background: #C6E2F8; */
    background: white;
    margin-top: 60px;
    padding: 60px 80px;
  }

  .event-img {
    width: 100%;
    margin-top: 20px;
  }

  .event-title {
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
  }

  .event-detail {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .event-content-wrapper {
    background: white;
    /* background: #C6E2F8; */
    margin-top: calc(40vw / 767 * 100);
    padding: calc(30vw / 767 * 100);
  }

  .event-img {
    width: 100%;
    margin-top: calc(20vw / 767 * 100)
  }

  .event-title {
    font-size: calc(28vw / 767 * 100);
    line-height: 1.4;
  }

  .event-detail {
    font-size: calc(20vw / 767 * 100);
    line-height: 1.7;
    margin-top: calc(20vw / 767 * 100);
  }
}

/* タイムテーブル */
.timetable-wrapper {
  margin: 60px 0px 0px 0px;
}

.timetable-title {
  color: white;
  text-align: center;
  margin: 60px 0px 0px 0px;
}

.timetable-program {
  font-weight: normal;
  line-height: 1;
  width: fit-content;
  margin: 0px;
}

.timetable-program.-programA {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.timetable-program.-programB {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.timetable-year {
  font-weight: normal;
  box-sizing: border-box;
  margin: 0;
  line-height: 1;
  width: fit-content;
}

.timetable-year.-second {
  background-color: #000000;
  color: #ffffff;
}

.timetable-year.-first {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.timetable-listWrapper.-performance {
  display: flex;
  color: #ffffff;
}

.timetable-listWrapper.-performance .time {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.timetable-listWrapper.-performance .chinaWrap,
.timetable-listWrapper.-performance .bankWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timetable-listWrapper.-performance .china {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1.4fr 0.6fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  grid-auto-flow: row;
  grid-template-areas:
    ". ."
    ". ."
    "china-b12 china-b12"
    ". ."
    "china-c1234 china-c1234"
    "china-c1234 china-c1234"
    "china-d12 china-d12"
    "china-d34 china-d34"
    "china-e12 china-e12"
    ". ."
    "china-f1 china-f24"
    ". china-f24"
    "china-g12 china-g12"
    "china-g34 china-g34"
    "china-h12 china-h12"
    ". .";
  border: 1px solid #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 5px;
  padding: 5px;
}

.china-b12 {
  grid-area: china-b12;
}

.china-c1234 {
  grid-area: china-c1234;
}

.china-d12 {
  grid-area: china-d12;
}

.china-d34 {
  grid-area: china-d34;
}

.china-e12 {
  grid-area: china-e12;
}

.china-f1 {
  grid-area: china-f1;
}

.china-f24 {
  grid-area: china-f24;
}

.china-g12 {
  grid-area: china-g12;
}

.china-g34 {
  grid-area: china-g34;
}

.china-h12 {
  grid-area: china-h12;
}

.timetable-listWrapper.-performance .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 8px 10px;
  color: #000000;
  font-size: 12px;
}

.timetable-listWrapper.-performance .bankart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  grid-auto-flow: row;
  grid-template-areas:
    ". ."
    ". ."
    ". ."
    ". ."
    ". ."
    ". ."
    "bank-d12 bank-d12"
    ". ."
    ". ."
    ". ."
    ". ."
    ". ."
    "bank-g12 bank-g12"
    ". ."
    ". ."
    ". .";
  border: 1px solid #ffffff;
  border-left: none;
  width: 100%;
  height: 100%;
  margin-top: 5px;
  padding: 5px;
}

.bank-d12 {
  grid-area: bank-d12;
}

.bank-g12 {
  grid-area: bank-g12;
}

.timetable-note {
  color: #ffffff;
}

/* PC */
@media screen and (min-width:1025px) {
  .timetable-wrapper {
    /* margin: 60px 0px 0px 50px; */
  }

  .timetable-title {
    margin: 60px 0px 0px 0px;

    /* display: inline-block; */
    /* background: white; */

  }

  .timetable-name {
    font-size: 28px;
    border: 1px solid white;
    /* vertical-align: middle; */
    text-align: center;

    /* height: 60px; */
    /* font-size: 20px; */
    line-height: 60px;
    border-radius: 30px;
    margin: 0px 300px;
    padding: 0px 40px;
  }

  .timetable-text {
    font-size: 18px;
    margin: 10px 0px 0px 0px;
  }

  .timetable-text.-black {
    color: #000000;
    font-size: 16px;
    margin: 20px 0px 0px 0px;
  }

  .timetable-program {
    border-radius: 20px;
    font-size: 18px;
    margin: 0px;
    padding: 7px 18px;
  }

  .timetable-schedule {
    margin: 15px 0px 0px 0px;
  }

  .timetable-year.-second {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 14px;
  }

  .timetable-year.-first {
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 14px;
  }

  .timetable-listWrapper.-film .timetable-year {
    margin-left: -10px;
  }

  .timetable-listWrapper.-film {
    background: #ffffff;
    margin-top: 30px;
    padding: 60px 200px
  }

  .timetable-listWrapper.-film .timetable-list {
    margin: 15px auto;
  }

  .timetable-listWrapper.-film .timetable-item {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .timetable-listWrapper.-film .timetable-item:first-of-type {
    margin-top: 0;
  }

  .timetable-listWrapper.-film .timetable-item span {
    text-align: left;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(1) {
    width: 75%;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(2) {
    width: 15%;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(3) {
    text-align: right;
    width: 10%;
  }

  .timetable-listWrapper.-performance {
    margin-top: 30px;
  }

  .timetable-listWrapper.-performance .time {
    width: 4%;
    padding-top: 20px;
    margin-right: 5px;
  }

  .timetable-listWrapper.-performance .time.-bank {
    display: none;
  }

  .timetable-listWrapper.-performance .chinaWrap,
  .timetable-listWrapper.-performance .bankWrap {
    width: 48%;
    padding-bottom: 15px;
  }

  .timetable-listWrapper.-performance .grid-item.-studentwork {
    background-color: #ffffff;
  }

  .timetable-listWrapper.-performance .grid-item.-tour {
    background-color: #C6E2F8;
    justify-content: center;
    align-items: center;
  }

  .timetable-listWrapper.-performance .grid-item.-tour span:last-of-type {
    text-align: center;
    font-size: 10px;
    font-weight: bold;
  }

  .timetable-listWrapper.-performance .grid-item .timetable-year {
    font-size: 10px;
  }

  .timetable-listWrapper.-performance .grid-item span:last-of-type {
    margin-top: 5px;
    text-align: right;
  }

  .timetable-note {
    margin-top: 30px;
  }
}

/*
/* タブレット */
@media screen and (min-width:768px) and (max-width:1024px) {
  .timetable-wrapper {
    margin: 60px 0px 0px 0px;
  }

  .timetable-title {
    margin: 60px 0px 0px 0px;
  }

  .timetable-name {
    font-size: 28px;
    margin: 30px 0px 0px 0px;

    /* vertical-align: middle; */
    text-align: center;
    border: 1px solid white;

    /* height: 60px; */
    /* font-size: 20px; */
    line-height: 60px;
    border-radius: 30px;
    margin: 0px 100px;
    padding: 0px 40px;
  }

  .timetable-text {
    font-size: 18px;
    margin: 10px 0px 0px 0px;
  }

  .timetable-program {
    border-radius: 20px;
    font-size: 18px;
    margin: 0px;
    padding: 7px 18px;
  }

  .timetable-schedule {
    margin: 10px 0px 0px 10px;
  }

  .timetable-year.-second {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 14px;
  }

  .timetable-year.-first {
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 14px;
  }

  .timetable-listWrapper.-film .timetable-year {
    margin-left: -10px;
  }

  .timetable-listWrapper.-film {
    background: #ffffff;
    margin-top: 30px;
    padding: 30px 60px;
  }

  .timetable-listWrapper.-film .timetable-list {
    margin: 12px auto;
  }

  .timetable-listWrapper.-film .timetable-item {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .timetable-listWrapper.-film .timetable-item:first-of-type {
    margin-top: 0;
  }

  .timetable-listWrapper.-film .timetable-item span {
    text-align: left;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(1) {
    width: 75%;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(2) {
    width: 15%;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(3) {
    text-align: right;
    width: 10%;
  }

  .timetable-listWrapper.-performance {
    margin-top: 30px;
  }

  .timetable-listWrapper.-performance .time {
    width: 4%;
    padding-top: 13px;
    margin-right: 5px;
    font-size: 12px;
  }

  .timetable-listWrapper.-performance .time.-bank {
    display: none;
  }

  .timetable-listWrapper.-performance .chinaWrap,
  .timetable-listWrapper.-performance .bankWrap {
    width: 48%;
  }

  .timetable-listWrapper.-performance .grid-item.-studentwork {
    background-color: #ffffff;
  }

  .timetable-listWrapper.-performance .grid-item.-tour {
    background-color: #C6E2F8;
    justify-content: center;
    align-items: center;
  }

  .timetable-listWrapper.-performance .grid-item.-tour span:last-of-type {
    text-align: center;
    font-size: 10px;
    font-weight: bold;
  }

  .timetable-listWrapper.-performance .grid-item .timetable-year {
    font-size: 10px;
  }

  .timetable-listWrapper.-performance .grid-item span:last-of-type {
    margin-top: 5px;
    text-align: right;
  }

  .timetable-note {
    margin-top: 30px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .timetable-wrapper {
    margin: 0;
    font-size: calc(24vw / 767 * 100);
  }

  .timetable-title {
    margin-top: calc(60vw / 767 * 100);
  }

  .timetable-name {
    font-size: calc(28vw / 767 * 100);
    margin-top: calc(30vw / 767 * 100);

    border: 1px solid white;

    line-height: 30px;
    border-radius: 30px;
    margin: 0px 30px;
    padding: 0px 40px;
  }

  .timetable-text {
    font-size: calc(24vw / 767 * 100);
    margin-top: calc(10vw / 767 * 100);
  }

  .timetable-program {
    border-radius: 20px;
    font-size: 14px;
    margin: 10px 0px 0px 0px;
    padding: 7px 18px;
  }

  .timetable-schedule {
    margin: 10px 0px 0px 10px;
  }

  .timetable-year.-second {
    padding: calc(6vw / 767 * 100) calc(14vw / 767 * 100);
    border-radius: calc(20vw / 767 * 100);
    font-size: calc(18vw / 767 * 100);
  }

  .timetable-year.-first {
    padding: calc(5vw / 767 * 100) calc(14vw / 767 * 100);
    border-radius: calc(20vw / 767 * 100);
    font-size: calc(18vw / 767 * 100);
  }

  .timetable-listWrapper.-film .timetable-year {
    margin-left: calc(-10vw / 767 * 100);
  }

  .timetable-listWrapper.-film {
    background: #ffffff;
    margin-top: calc(30vw / 767 * 100);
    padding: calc(30vw / 767 * 100) calc(60vw / 767 * 100);
  }

  .timetable-listWrapper.-film .timetable-list {
    margin: calc(12vw / 767 * 100) auto;
  }

  .timetable-listWrapper.-film .timetable-item {
    display: flex;
    justify-content: space-between;
    margin-top: calc(10vw / 767 * 100);
  }

  .timetable-listWrapper.-film .timetable-item:first-of-type {
    margin-top: 0;
  }

  .timetable-listWrapper.-film .timetable-item span {
    text-align: left;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(1) {
    width: 65%;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(2) {
    width: 25%;
  }

  .timetable-listWrapper.-film .timetable-item span:nth-of-type(3) {
    text-align: right;
    width: 10%;
  }

  .timetable-listWrapper.-performance {
    flex-wrap: wrap;
    margin-top: calc(30vw / 767 * 100);
  }

  .timetable-listWrapper.-performance .time {
    width: 10%;
    padding: calc(50vw / 767 * 100) calc(10vw / 767 * 100) 0 0;
    margin-right: 0;
    font-size: 3vw;
  }

  .timetable-listWrapper.-performance .time.-bank {
    margin-top: 5vw;
  }

  .timetable-listWrapper.-performance .chinaWrap,
  .timetable-listWrapper.-performance .bankWrap {
    width: 90%;
  }

  .timetable-listWrapper.-performance .chinaWrap span.venue,
  .timetable-listWrapper.-performance .bankWrap span.venue {
    font-size: calc(24vw / 767 * 100);
  }

  .timetable-listWrapper.-performance .chinaWrap span,
  .timetable-listWrapper.-performance .bankWrap span {
    font-size: calc(17vw / 767 * 100);
  }

  .timetable-listWrapper.-performance .bankWrap {
    margin-top: 5vw;
  }

  .timetable-listWrapper.-performance .china {
    margin-top: calc(10vw / 767 * 100);
    padding: calc(5vw / 767 * 100);
    gap: calc(5vw / 767 * 100);
  }

  .timetable-listWrapper.-performance .bankart {
    border: 1px solid #ffffff;
    margin-top: calc(10vw / 767 * 100);
    padding: calc(5vw / 767 * 100);
    gap: calc(5vw / 767 * 100);
  }

  .timetable-listWrapper.-performance .grid-item {
    padding: calc(8vw / 767 * 100) calc(10vw / 767 * 100);
    font-size: calc(24vw / 767 * 100);
  }

  .timetable-listWrapper.-performance .grid-item.-studentwork {
    background-color: #ffffff;
  }

  .timetable-listWrapper.-performance .grid-item.-tour {
    background-color: #C6E2F8;
    justify-content: center;
    align-items: center;
  }

  .timetable-listWrapper.-performance .grid-item.-tour span:last-of-type {
    text-align: center;
    font-size: calc(14vw / 767 * 100);
    font-weight: bold;
  }

  .timetable-listWrapper.-performance .grid-item .timetable-year {
    font-size: calc(16vw / 767 * 100);
  }

  .timetable-listWrapper.-performance .grid-item span:last-of-type {
    margin-top: calc(5vw / 767 * 100);
    text-align: right;
  }

  .timetable-note {
    margin-top: calc(30vw / 767 * 100);
  }
}

/* タイムテーブル */
/* アクセス */
.map {
  width: 100%;
}

.access-text {
  color: white;
  line-height: 1;
}

.access-detail {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* PC & タブレット */
@media screen and (min-width:768px) {
  .venue-title {
    display: flex;
    align-items: baseline;
    margin: 60px 0px 0px 0px;
  }

  .venue-name {
    font-size: 28px;
    letter-spacing: 0.04em;
  }

  .venue-text {
    font-size: 22px;
    margin-left: 25px;
  }

  .map {
    height: 600px;
    margin-top: 25px;
  }

  .venue-detail {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin-top: 10px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .venue-title {
    margin-top: calc(60vw / 767 * 100);
  }

  .venue-name {
    font-size: calc(28vw / 767 * 100);
    letter-spacing: 0.04em;
  }

  .venue-text {
    font-size: calc(24vw / 767 * 100);
    letter-spacing: 0.04em;
    margin-top: calc(25vw / 767 * 100);
  }

  .map {
    height: calc(600vw / 767 * 100);
    margin-top: calc(25vw / 767 * 100);
  }

  .venue-detail {
    font-size: calc(24vw / 767 * 100);
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin-top: calc(10vw / 767 * 100);
  }
}

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

.footer-text {
  color: white;
}

.contact-title {
  font-weight: bolder;
  letter-spacing: 0.10em;
  margin: 0px;
}

footer #icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* PC & タブレット */
@media screen and (min-width:768px) {
  footer {
    margin-top: 120px;
    padding: 35px 5vw;
  }

  .footer-text {
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 1.3;
  }

  #icons img {
    width: 30px;
    padding-right: 8px;
  }

  .notes {
    margin-top: 15px;
  }

  .press {
    margin-top: 15px;
  }

  #contact {
    margin-top: 20px;
  }

  #contact-title {
    font-size: 16px;
  }

  .contact-mail {
    margin-top: 5px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  footer {
    margin-top: calc(120vw / 767 * 100);
    padding: calc(35vw / 767 * 100) 5vw;
  }

  .footer-text {
    font-size: calc(22vw / 767 * 100);
    letter-spacing: 0.12em;
  }

  footer #icons a {
    margin-right: 3vw;
  }

  #icons img {
    width: 7vw;
    padding-right: calc(10vw / 767 * 100);
  }

  .notes {
    margin-top: calc(20vw / 767 * 100);
  }

  .press {
    margin-top: calc(10vw / 767 * 100);
  }

  #contact {
    margin-top: calc(20vw / 767 * 100);
  }

  #contact-title {
    font-size: calc(16vw / 767 * 100);
  }

  .contact-mail {
    margin-top: calc(5vw / 767 * 100);
  }

  .footer-credit {
    margin-top: calc(10vw / 767 * 100);
  }
}

/* フッター */
