button {
  border: none;
  background: none;
  text-align: left;
}

body {
  background-color: #fff;
  font-family: YakuHanJP, "Open Sans", "Noto Sans JP", sans-serif;
  color: rgb(0, 0, 0);
  text-align: justify;
  /* width: 100vw;
  height: 100vh; */
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

#defaultCanvas0 {
  position: fixed; /* canvasを固定 */
  top: 0; /* canvasを上に固定 */
}

a {
  color: rgb(3, 0, 0);
}

/* フェードインアニメーション */
.scroll_fadein {
  opacity: 0;
}
.fadein_animation_start {
  /* キーフレームアニメーションを指定 */
  animation-name: fadein_animation;
  /* アニメーションの開始時間の遅延 */
  animation-delay: 0.3s;
  /* アニメーションの時間を指定 */
  animation-duration: 1s;
  /* アニメーション再生後のスタイルを指定 */
  animation-fill-mode: both;
}
@keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/* フェードインアニメーション */

/* トップ */

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* トップ */

/* メニューボタン */
.header {
  width: 100vw;
  height: 60px;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.openbtn1 {
  position: absolute;
  bottom: 0px;
  cursor: pointer;
}

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

.openbtn1 {
  width: 60px;
  height: 60px;
  top: 5px;
  right: 15px;
}

.openbtn1 p {
  top: -10px;
  left: 13px;
  color: rgba(253, 78, 13);
  font-weight: bold;
  font-size: 18.5px;
  display: inline-block;
  transition: all 0.4s;
  /* アニメーションの設定 */
  position: absolute;
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  background: rgba(253, 78, 13);
  width: 70%;
}

.openbtn1 span:nth-of-type(1) {
  top: 25%;
}
.openbtn1 span:nth-of-type(2) {
  top: 50%;
}
.openbtn1 span:nth-of-type(3) {
  top: 75%;
}

.openbtn1.active span:nth-of-type(1) {
  /* activeクラスが付与されると線が回転して×に */
  top: 43%;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
}

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

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

.openbtn1.active p {
  opacity: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }

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

  .openbtn1 p {
    top: -10px;
    left: 13px;
  }

  .openbtn1 span {
    left: 14px;
    height: 3px;
  }

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

  .openbtn1.active span:nth-of-type(3) {
    top: 58%;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
  }
}
/* メニューボタン */
/* メニュー */
.menubase {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.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;
  width: 60%;
  height: 100vh;
  top: 0px;
  right: -60%;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.4s;
  visibility: hidden;
}

.menu li {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  cursor: pointer;
  transition: 0.4s;
  color: rgba(253, 78, 13);
  border-top: 2px solid rgba(253, 78, 13);
}

.menu li:last-of-type {
  border-bottom: 2px solid rgba(253, 78, 13);
}

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

.menu ul {
  list-style: none;
  margin: 110px 0px 0px 10px;
  padding: 0px 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: 24px;
    font-weight: 500;
  }

  .menu ul {
    list-style: none;
    margin: 110px 0px 0px 20px;
  }
}
/* メニュー */

/* 共通項目 */
.wrapper {
  background: rgba(255, 255, 255, 0.55);
}

.title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 3px 30px 0px 0px;
  color: rgba(253, 78, 13);
}

.subtitle {
  font-size: 18px;
  font-weight: 600;
  /* letter-spacing: 0.07em; */
  line-height: 1;
  margin: 6px 0px 0px 1px;
  color: rgba(253, 77, 13, 0.697);
}

.subsubtitle {
  font-size: 20px;
  font-weight: 600;
  /* letter-spacing: 0.07em; */
  line-height: 1;
  margin: 6px 0px 0px 1px;
  color: rgb(0, 0, 0);
}

.content-wrapper {
  padding: 60px 8vw 0px 8vw;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.content-inner {
  width: 100%;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .title {
    font-size: 30px;
    margin: 3px 40px 0px 0px;
  }

  .content-wrapper {
    padding: 70px 40px 0px;
    max-width: 1160px;
    margin: 0px auto;
  }

  .content-inner {
    margin-top: 30px;
  }
}
/* 共通項目 */

/* 開催概要 */
.message {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 0px;
}

@media screen and (min-width: 768px) {
  .message {
    font-size: 18px;
  }
}

.message-line-height {
  display: block;
  content: "";
  margin: 15px 0 0;
}
/* 開催概要 */

/* 基本情報 */
.info-item {
  display: flex;
  align-items: start;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.info-item.interval {
  margin-top: 10px;
}

.info-title {
  display: inline-block;
  margin: 0;
  font-weight: 500;
  flex: 0 0 50px;
}

.info-body {
  flex-grow: 1;
  margin: 0;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .info-wrapper {
    margin-top: 1px;
  }

  .info-item {
    font-size: 18px;
  }

  .info-title {
    width: 60px;
    flex: none;
  }
}
/* 基本情報 */

/* 出展者 */
.exhibitor-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 6px;
}

.exhibitor-list-item,
.exhibitor-list-item-dummy {
  cursor: pointer;
  transition: 0.2s;
  width: calc(50% - 5px);
  margin: 0px 0px 25px 0px;
  box-sizing: border-box;
}

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

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

.exhibitor-name-jp {
  font-size: 17px;
  height: 25px;
  font-weight: 400;
  text-align: left;
  margin-top: 5px;
}

button.exhibitor-list-item {
  font-family: YakuHanJP, "Open Sans", "Noto Sans JP", sans-serif;
  color: rgb(0, 0, 0);
  /*  color:  rgba(253,78,13);*/
}
.exhibitor-name-en,
.exhibitor-name-en-dummy {
  color: rgba(253, 77, 13, 0.697);
  font-size: 13px;
  height: 13px;
  font-weight: 600;
  margin: 0px;
}

/*.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) {
  .exhibitor-list-item,
  .exhibitor-list-item-dummy {
    width: calc(33% - 10px);
    margin: 0px 0px 40px 0px;
  }
}

/* 出展者 */

/* モーダル */
.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: 90vh;
  visibility: hidden;
  opacity: 0;
  z-index: 110;
  transition: 0.5s;
  filter: blur(50px);

  text-align: left;
}

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

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

.modal-close {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100;
  cursor: pointer;
  border: none;
  background: none;
  display: block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  background-image: url("../images/modal-close.svg");
  color: #ffffff00;
}

.modal-close-bottom {
  cursor: pointer;
  color: rgba(253, 78, 13);
  text-decoration: underline;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 0;
  padding: 1.3em;
  margin-top: 3em;
}

.modal-contents {
  line-height: 1;
  margin: 40px 20px 100px 20px;
  top: 30px;
}

.works-text {
  font-size: 14px;
  letter-spacing: 0.04rem;
  margin-top: 10px;
  line-height: 1.5;
}

.img-profile {
  width: 50%;
  margin-top: 20px;
}

.modal-text.line-height {
  line-height: 1.5;
}

.modal-exhibitor-name-jp {
  font-size: 24px;
  font-weight: 400;
  margin-top: 30px;
}

.modal-exhibitor-name-en {
  color: rgba(253, 78, 13, 0.697);
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.modal-title {
  color: rgba(253, 78, 13);
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
}

.modal-text {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}
.modal-work-text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.modal-contents {
  position: relative;
}

/* PC */
@media screen and (min-width: 768px) {
  .modal-wrapper {
    width: 100vw;
    height: 100vh;
  }

  .modal.item {
    width: 80%;
    max-width: 1200px;
    height: 90vh;
  }

  .modal-close {
    width: 39px;
    height: 39px;
    top: 30px;
    right: 40px;
  }

  .modal-contents {
    margin: 40px 50px 100px 50px;
    top: 60px;
  }

  .img-works {
    width: 100%;
  }

  .img-profile {
    width: 35%;
    margin-top: 40px;
  }

  .works-text {
    font-size: 16px;
    margin-top: 10px;
  }

  .modal-exhibitor-name-jp {
    margin-top: 50px;
  }

  .modal-contents .exhibitor-name {
    margin-top: 20px;
    font-size: 32px;
    color: rgba(253, 78, 13);
  }

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

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

  .pastwork-image {
    margin-top: 10px;
    width: 100%;
    height: auto;
  }
}
/* モーダル */

.mention {
  margin: 0px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 768px) {
  .mention {
    font-size: 20px;
  }
}
/* イベント */

.event-img {
  width: 100%; /* 親要素の幅に合わせる */
  height: auto; /* 高さは自動で調整 */
  object-fit: contain; /* アスペクト比を保ちながら全体を表示 */
  margin-top: 5px;
}

.event-text {
  margin: 20px 0px;
  padding: 0px;
}

.event-title {
  font-size: 19px;
  font-weight: 500;
  margin-top: 30px;
}

.event-detail {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
}

.tour-info-item {
  display: flex;
  align-items: start;
  font-size: 15px;
  font-weight: 400;
}

.tour-info-item.first {
  margin-top: 20px;
}

.tour-info-item.interval {
  margin-top: 5px;
}

.tour-info-title {
  display: inline-block;
  flex: 0 0 50px;
  margin: 0px;
}

.tour-info-body {
  flex-grow: 1;
  margin: 0px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .event-img {
    width: 70%;
  }

  .event-text {
    margin-top: 20px;
    padding: 0px;
  }

  .event-title {
    font-size: 22px;
    line-height: 1.4;
  }

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

  .tour-info-item {
    font-size: 16px;
    font-weight: 400;
  }

  .tour-info-item.first {
    margin-top: 20px;
  }

  .tour-info-item.interval {
    margin-top: 7px;
  }

  .tour-info-title {
    display: inline-block;
    flex: 0 0 50px;
    margin: 0px 0px 0px 0px;
  }

  .tour-info-body {
    margin: 0px 20px 0px 0px;
    line-height: 1.6;
  }
}

/* イベント */

.map {
  width: 100%;
  height: calc(500vw / 767 * 100);
  margin-top: 0px;
  /* border-radius: 2%; */
}

.venue-title {
  margin-top: calc(24vw / 767 * 100);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.venue-detail {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.venue-access {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .map {
    height: calc(180vw / 767 * 100);
    /* border-radius: 2%; */
  }

  .venue-title {
    margin-top: 20px;
    font-size: 20px;
  }

  .venue-detail {
    margin-top: 3px;
    font-size: 17px;
  }

  .venue-access {
    margin-top: 15px;
    font-size: 16px;
  }
}
/* アクセス */

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

  width: 100%;
  margin: 0px auto;
  background: rgba(253, 78, 13);
  color: #fff;
}

.footer-wrapper {
  width: 100%;
  max-width: 1160px;
  padding: calc(70vw / 767 * 100) 8vw;
  margin: 0 auto;
}

.organizer-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0px;
}

.organizer-body {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 10px;
}

.organizer-notes {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 10px;
}

.contact-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 30px;
}

.contact-email {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 8px;
  color: #fff;
}

.icons-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  margin-top: 25px;

  a {
    margin-right: 16px;
  }

  img {
    width: 28px;
  }

  #tiktok-button {
    width: 34px;
  }
}

.credit-body {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .footer-wrapper {
    padding: 50px 40px;
  }

  .organizer-title {
    font-size: 17px;
  }

  .organizer-body {
    font-size: 17px;
    margin-top: 10px;
  }

  .organizer-notes {
    font-size: 14px;
    margin-top: 10px;
  }

  .contact-title {
    font-size: 17px;
    margin-top: 30px;
  }

  .contact-email {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-top: 10px;
  }

  .icons-wrapper {
    margin-top: 30px;

    a {
      margin-right: 20px;
    }

    img {
      width: 32px;
    }

    #tiktok-button {
      width: 40px;
    }
  }

  .credit-body {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin-top: 30px;
  }
}
/* フッター */

@media (prefers-reduced-motion: reduce) {
  .fadein_animation_start {
    animation: none;
    opacity: 1;
    transform: translate(0);
  }
  .modal-wrapper,
  .menu,
  .modalBackground {
    transition: none;
  }
  .exhibitor-list-item:hover,
  .menu li:hover {
    transform: none;
  }
}
