/* nomal */
@font-face {
  font-family: 'LINESeedJP';
  src: url('/assets/font/LINESeedJP_OTF_Rg.woff') format('woff'),
    url('/assets/font/LINESeedJP_OTF_Rg.woff2') format('woff2');
  font-weight: normal;
  font-weight: 400;
  font-style: normal;
}

/* bold */
@font-face {
  font-family: 'LINESeedJP';
  src: url('/assets/font/LINESeedJP_OTF_Bd.woff') format('woff'),
    url('/assets/font/LINESeedJP_OTF_Bd.woff2') format('woff2');
  font-weight: bold;
  font-weight: 700;
  font-style: normal;
}

/* EX bold */
@font-face {
  font-family: 'LINESeedJP';
  src: url('/assets/font/LINESeedJP_OTF_Eb.woff') format('woff'),
    url('/assets/font/LINESeedJP_OTF_Eb.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: 'LINESeedJP', sans-serif;
  line-height: 1.6;
  color: #000;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  background: #acacac;
}

main {
  width: 100%;
  transform-origin: left top;
  transform-origin: left top;
  padding-top: 60px;
  position: relative;
  height: calc(100svh - 100px);
  overflow-y: hidden;
}

#scale_cont {
  max-height: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  overflow-x: hidden;
}

.single #scale_cont {
  max-height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
}

.single #scale_cont.big {
  top: 60px;
}

#scale_cont.big {
  height: auto;
}

.tab{
  display: none;
}


main svg {
  /* height:auto; */
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  /* overflow:visible; */
}

#scale_cont.big svg {
  height: auto;
}

/* 1枚表示 */
main.single {
  /* overflow-x: hidden; */
}

main.single svg {
  /* overflow: visible; */
  width: 200%;
  height: auto;
  position: absolute;
  top: 60px;
}

main.single .big svg {
  position: unset;
  padding-bottom: 60px;
}

image {
  height: 99%;
  width: 100%;
  transition: 0.25s linear;
  transform-origin: center;
}

.navbar {
  height: 60px;
  padding: 0.5rem;
  align-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 990;
}

.navbar-brand {
  width: 20%;
  white-space: unset;
  padding: 0;
  margin: 0;
  line-height: 1.2;
}



.navbar-brand img {
  max-height: 40px !important;
}

.btn_list {
  display: flex;
  justify-content: flex-start;
  width: max-content;
  padding-left: 0;
  margin-left: 30px;
  margin-bottom: 0;
  gap: 10px;
}

.btn_list li {
  direction: unset;
  list-style: none;
}

.btn_list li a {
  width: 100%;
  max-width: 300px;
  margin-left: 0;
  margin-right: 0;
  transition: all .2s;
  border: 1px solid #d61818;
  background-color: #d61818;
  line-height: 1.2;
  position: relative;
  border-radius: 150px;
  padding: 5px 20px 5px 35px;
  color: #fff;
  text-decoration: unset;
  font-weight: bold;
  font-size: .8rem;
  display: block;
}

.btn_list li a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f390';
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border-radius: 100px;
  line-height: 30px;
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all .2s;
}

.btn_list li:nth-child(2) a::before {
  top: -2px;
  content: '\f145';
  font-weight: 700;
  transform: rotate(-45deg);
  display: inline-block;
  margin-right: 3px;
  font-size: 0.7rem;
}



.d-flex {
  max-width: 500px;
  aspect-ratio: 10/1;
}

.d-flex img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

#left_img image {
  clip-path: url(#left_clip);
  transform: rotateY(-90deg) skewY(20deg);
}

#right_img image {
  clip-path: url(#right_clip);
  transform: rotateY(90deg) skewY(-20deg);
}

#left_img image.active,
#right_img image.active {
  transform: rotateY(0deg) skewY(0deg);
}




#left_cover image {
  clip-path: polygon(0 42.5px, 100% 42.5px, 100% 162.5px, 0% 162.5px);
  transform: rotateY(-90deg) skewY(20deg);
}

#right_cover image {
  clip-path: polygon(49.9% 42.5px, 100% 42.5px, 100% 162.5px, 49.9% 162.5px);
  transform: rotateY(90deg) skewY(-20deg);
}

#left_cover image,
#right_cover image {
  width: 50%;
}

#left_cover image.active,
#right_cover image.active {
  transform: rotateY(0deg) skewY(0deg);
}

#left_cover image.hidden,
#right_cover image.hidden {
  display: none;
}


main.single #left_img image.active {
  transform: translateX(0%);
}

main.single #left_img.single image.active {
  transform: translateX(-50%);
}

main.single #left_img.single image.first_pg.active {
  transform: translateX(-25%);
}



.controlpanel_cont {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding-bottom: 50px;
}

#button_area {
  display: flex;
  /* width:80%; */
  width: 100%;
  margin: 0 auto;
}

button {
  width: 100%;
  background-color: transparent;
  border: none;
  /* margin-top:1em; */
  /* padding:0; */
  font-size: 3em;
  /* color:#222; */
  padding: 0;
  /* line-height: 1.2; */
  line-height: 50px;
  height: 50px;
  color: #fff;
  background: #192B4D;
}


button.deactivate {
  color: #ccc;
  background: #777;
  cursor: default;
  pointer-events: none;
}



button i {
  font-size: 1.5rem;
}

button#prev {
  border-right: 1px solid;
}

button:focus,
button:hover {
  background: #375690;
  outline: none;
}

#page_index,
#view_switch,
#scale {
  padding: 0;
}

/* #page_index li,
#view_switch li,
#scale li {
  cursor: pointer;
  list-style: none;
} */

#page_index li.active,
#view_switch li.active {
  /* font-weight: bold; */
}

/*リストのレイアウト設定*/
.controlpanel_list {
  margin: 0;
  display: flex;
  padding: 0;
  position: relative;
}

.controlpanel_list>li {
  list-style: none;
  text-align: center;
  width: calc(100% / 2);
  /* position:fixed; */
  z-index: 999;
  /* height: auto; */
  height: 50px;
  background: #999;
  /*動き*/
  transition: all 0.2s;
  position: absolute;
  overflow: hidden;
  bottom: -50px;
}

.controlpanel_list:hover>li {
  opacity: 0.7;
  box-shadow: none;
}

.controlpanel_list>li:hover {
  opacity: 1;
  box-shadow: 0px 6px 16px 0px rgba(48, 48, 48, 0.30);
}

/*アクティブクラスがついたら位置を0に*/
.controlpanel_list>li.active {
  overflow: unset;
}

.controlpanel_list li h2 {
  height: 50px;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 50px;
  cursor: pointer;
}

.controlpanel_list li h2:before {
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  vertical-align: middle;
  margin-right: 5px;
  display: inline-block;
  transition: all 0.2s;
}

.controlpanel_list>li.active h2::before {
  transform: rotate(180deg);
}

.controlpanel_list>li>ul li {
  width: 100%;
  height: 50px;
  background: #fff;
  cursor: pointer;
  transition: all 0.6s;
  list-style: none;
  font-weight: normal;
}

.controlpanel_list>li>ul li.active,
.controlpanel_list li#openbtn1 li:not(.deactivate) {
  font-weight: bold;
}


/* 拡大縮小 */
.controlpanel_list li#openbtn1 h2 {
  background: #ffbcbc;
  color: #6d2222;
}

.controlpanel_list li#openbtn1 {
  left: 0;
  /* bottom:-50px; */
}

.controlpanel_list li#openbtn1.active,
.controlpanel_list li#openbtn2.active {
  bottom: 0;
}

.controlpanel_list li#openbtn1>ul li {
  width: calc(100% / 3);
}

.controlpanel_list li#openbtn1 li[data-view="big"] {
  background: #ffbcbc;
  color: #6d2222;
}

.controlpanel_list li#openbtn1 li[data-view="fit"] {}

.controlpanel_list li#openbtn1 li[data-view="small"] {
  background: #bcd4ff;
  color: #102854;
}

.controlpanel_list li#openbtn1 li span {
  font-size: 1.3rem;
  vertical-align: middle;
}

.controlpanel_list li#openbtn1 li.deactivate {
  background: #c9c9c9;
  color: #717171;
  pointer-events: none;
}

/* 表示方法 */
.controlpanel_list li#openbtn2 h2 {
  background: #77d2d3;
  color: #0e4d4e;
}

.controlpanel_list li#openbtn2 li.btn.active {
  background: #77d2d3;
  color: #0e4d4e;
  pointer-events: none;
}

.controlpanel_list li#openbtn2 {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* bottom:-50px; */
}

.controlpanel_list li#openbtn2>ul li {
  width: calc(100% / 2);
}

/* 目次 */
.controlpanel_list li#openbtn3 {
  right: 0;
  /* bottom: -200px; */
}

.controlpanel_list li#openbtn3.active {
  bottom: 430px;
}

.en .controlpanel_list li#openbtn3.active {
  bottom: 110px;
}

.controlpanel_list li#openbtn3 h2 {
  background: #78aad0;
  color: #0d395b;
}

.controlpanel_list li#openbtn3>ul li {
  height: 40px;
  font-size: 0.8rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-left: 20px;
}

.controlpanel_list li#openbtn3>ul li.active {
  color: #4b7ba0;
  background: #e9f5fe;
  pointer-events: none;
}

.controlpanel_list li#openbtn3>ul li:hover {
  background: #e6e6e6;
}

.controlpanel_list li#openbtn3>ul li.active::before {
  vertical-align: bottom;
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  margin-right: 5px;
  display: inline-block;
  margin-top: 3px;
}


#view_switch,
#scale {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0;
}

#view_switch li {
  width: calc(100% / 2);
}


.btn {
  display: block;
  background: #ddd;
  border-radius: 0;
  padding: 10px 0;
  transition: 0.25s all;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.5;
}

.btn.active {
  background: #182b4d;
  color: #fff;
}

/* ローディング */
#js-loading {
  /* 画面全体を、半透明の黒で覆う */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  color: #fff;
  text-align: center;

  /* 画面の中央に要素を表示させる */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar-dark .navbar-brand {
  margin-left: 15px;
}




@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}



@media screen and (max-width: 900px) {

  /* .single #scale_cont,#scale_cont.big {
    max-height: 90svh;
    height: calc(100svh - 100px);
    max-height: unset;
} */
  .navbar-brand {
    font-size: 0.8rem;
    /* width: 130px; */
    width: 40%;
  }

  .d-flex {
    /* width: calc(100% - 150px); */
    width: 58%;
  }
}

@media screen and (max-width: 630px) {
  main {
    height: calc(100% - 80px);
  }

  .en main {
    height: calc(100svh - 100px);
  }

  #scale_cont {
    max-height: calc(100svh - 60px - 40px - 40px);
  }

  button {
    font-size: 1.5em;
  }

  .navbar {
    justify-content: center;
    min-height: 60px;
  }

  .navbar-brand {
    /* font-size: 0.8rem; */
    width: 100%;
    text-align: center;
    order: 2;
  }

  .pls_btn .navbar-brand {
    width: 30%;
    margin-left: 0;
  }

  .navbar.pls_btn {
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .btn_list li a {
    padding: 3px 20px 3px 35px;
  }

  .btn_list {
    width: 60%;
    justify-content: flex-end;
  }

  .d-flex {
    /* width: calc(100% - 120px); */
    max-width: 350px;
    width: 100%;
    margin-bottom: 5px;
  }

  button {
    height: 40px;
    line-height: 40px;
  }

  .controlpanel_cont {
    padding-bottom: 40px;
  }

  .controlpanel_list>li {
    height: 40px;
    bottom: -40px;
  }

  .controlpanel_list li h2 {
    height: 40px;
    line-height: 38px;
    font-size: 0.9rem;
  }

  .controlpanel_list li#openbtn1,
  .controlpanel_list li#openbtn2,
  .controlpanel_list li#openbtn3 {
    z-index: 50;
  }

  .controlpanel_list li#openbtn1.active {
    bottom: 100px;
  }

  .controlpanel_list li#openbtn2.active {
    bottom: 50px;
    width: 100%;
    z-index: 100;
    bottom: 40px;

  }




  .controlpanel_list>li>ul li {
    width: 100% !important;
    font-size: 0.8rem;
    height: 40px;
    line-height: initial;
  }

  .controlpanel_list li#openbtn1.active {
    bottom: 80px;
    width: 100%;
    z-index: 100;
  }

  .controlpanel_list li#openbtn3>ul li {
    justify-content: left;
    text-align: left;
    padding-left: 1.8em;
    padding-right: 1em;
    height: 35px;
  }



  .controlpanel_list li#openbtn3.active {
    bottom: 450px;
    width: 100%;
  }

  .en .controlpanel_list li#openbtn3.active {
    bottom: 170px;
  }

  .controlpanel_list li#openbtn3>ul li.active {
    text-indent: 0;
    padding-left: 0;
  }

  .controlpanel_list li#openbtn3>ul li.active::before {
    margin-left: 5px;
  }
}


@media screen and (max-width: 480px) {

  .navbar {
    display: none;
  }

  main {
    padding-top: 0;
  }

  main.single svg {
    top: 0;
  }


}

#openbtn3 .sp_link {
  padding: 0;
}

/*---- .exhibitor_invitation ------------------------------------*/
.exhibitor_invitation main {
  padding-top: 80px;
}


.exhibitor_invitation .navbar-dark .navbar-brand {
  margin-left: 0;
  margin-right: 20px;
  display: block;
  width: max-content;
  font-size: .9rem;
}

.exhibitor_invitation .navbar-dark a.navbar-brand:hover {
  opacity: .5;
}

.exhibitor_invitation .navbar {
  justify-content: space-between;
  height: auto;
  max-height: 80px;
}


.exhibitor_invitation .r_col {
  display: flex;
  width: calc(100% - 520px);
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}

.exhibitor_invitation .btn_list {
  margin-left: 0;
}

.exhibitor_invitation .openbtn3 .sp_link {
  display: none;
}

@media screen and (max-width: 850px) {
  .controlpanel_list>li {
  
    width: calc(100% / 3);
  }
  .tab{
    display: block;
  }
  .exhibitor_invitation .btn_list {
    display: none;
  }

  .exhibitor_invitation .r_col {
    width: 100%;
    justify-content: center;
  }

  .exhibitor_invitation .d-flex {
    margin: 5px auto 0;
  }

  .exhibitor_invitation .navbar-dark .navbar-brand {
    margin-right: 0;
    font-size: .8rem;
  }

  .exhibitor_invitation .controlpanel_list li#openbtn3.active {
    bottom: 430px;
  }

  .exhibitor_invitation #openbtn3 .sp_link {
    display: block;
    width: 100%;
    padding: 0;
  }

  #openbtn3 .sp_link li {
    background: #d50000;
  }

  #openbtn3 .sp_link li:last-of-type {
    background: #0034d1;
  }

  #openbtn3 .sp_link li a {
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
  }


  #openbtn3 .sp_link li a::before {
    font-family: "Font Awesome 5 Free";
    content: '\f390';
    font-weight: 700;
    color: #fff;
    display: inline-block;
    border-radius: 100px;
    line-height: 30px;
    font-size: 0.8rem;
    padding-right: 5px;
  }

  #openbtn3 .sp_link li:last-of-type a::before {
    content: '\f145';
    font-weight: 700;
    transform: rotate(-45deg);
    display: inline-block;
    margin-right: 3px;
    margin-bottom: 5px;
    font-size: 0.7rem;
  }

  #openbtn3 .sp_link li:hover {
    background: #f07d7d !important;
    color: #d50000;
  }

  #openbtn3 .sp_link li:last-of-type:hover {
    background: #6b8df3 !important;
    color: #0034d1;
  }

  #openbtn3 .sp_link li a:hover {
    text-decoration: unset;
  }

  .exhibitor_invitation.en .controlpanel_list li#openbtn3.active {
    bottom: 270px;

  }
}


@media screen and (max-width: 630px) {
  .exhibitor_invitation .navbar-dark .navbar-brand {
    margin-left: 0;
    width: 100%;
  }

  .exhibitor_invitation .navbar {
    justify-content: center;
  }

  .exhibitor_invitation .controlpanel_list li#openbtn3.active {
    bottom: 440px;
  }

  .exhibitor_invitation.en .controlpanel_list li#openbtn3.active {
    bottom: 280px;
  }
}


@media screen and (max-width: 480px) {
  .navbar {
    display: none;
  }

  #openbtn3 .sp_link {
    display: block;
    width: 100%;
    padding: 0;
  }

  .controlpanel_list li#openbtn3.active {
    bottom: 450px;
  }

  .exhibitor_invitation .navbar {
    display: flex;
    align-content: flex-start;
  }

  .exhibitor_invitation .single #scale_cont {
    top: 60px;
  }

  /* .controlpanel_list li#openbtn3.active ul {
    overflow: scroll;
    background: #ffffffcf;
    max-height: 380px;
  } */

}