@charset "UTF-8";
/* ------------------------------------------------
会場マップ
------------------------------------------------ */

/* 共通 */
#floorMap {
  background: rgba(235, 246, 255, 0.05);
}

#floorMap .wrapTabMap {
  max-width: 1200px;
  margin: 0 auto;
}

#floorMap .wrapFlex {
  display: grid;
  align-items: start;
}

#floorMap .ulTabBtn {
  grid-area: tabs;
  display: grid;
  margin: 0;
}

#floorMap .ulTabBtn li {
  min-width: 0;
}

#floorMap .map-tab {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  color:#BFBFBF;
  background: transparent;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}
#floorMap .map-tab:hover{
  color: #fff;
}

#floorMap .map-tab .txtTabBtn{
  font-weight: 500 !important;
  line-height: 1;
}

#floorMap .map-tab[aria-selected="true"] {
  color: #fff;
  background: #0c83df;
}

#floorMap .map-tab:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid #fff;
  outline-offset: 3px;
}

#floorMap .map-panel {
  grid-area: panel;
  width: 100%;
  min-width: 0;
}

#floorMap .map-panel[hidden] {
  display: none;
}

#floorMap .boxImg {
  overflow: hidden;
  background: #fff;
}

#floorMap .boxImg img {
  display: block;
  width: 100%;
  height: auto;
}




/* PC */
@media screen and (min-width: 768px) {
  #floorMap .wrapFlex {
    grid-template-columns:
      minmax(0, 840px)
      minmax(180px, 320px);

    grid-template-areas:
      "panel tabs";
    gap: clamp(24px, 3vw, 40px);
  }

  #floorMap .ulTabBtn {
    grid-template-columns: 1fr;
    align-self: start;

    padding: 8px;
    background: rgba(235, 246, 255, .1);
    border-radius: 4px;
  }

  #floorMap .map-tab {
    min-height: clamp(64px, 5.2vw, 80px);
    border-radius: 2px;
    font-size: clamp(22px, 2vw, 32px);
  }
#floorMap .map-tab .txtTabBtn{
  font-size: 40px;
}

  #floorMap .boxImg {
    border-radius: 8px;
  }

  
}


/* SP */
@media screen and (max-width: 767.98px) {


  #floorMap .wrapFlex {
    grid-template-columns: minmax(0, 1fr);

    grid-template-areas:
      "tabs"
      "panel";

    gap: 6.5vw;
  }

  #floorMap .ulTabBtn {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1vw;
    background: rgba(235, 246, 255, .1);
    border-radius: 999px;
  }

  #floorMap .map-tab {
    min-height: 12vw;
    border-radius: 999px;
    font-size: clamp(16px, 4.8vw, 20px);
  }
   #floorMap .map-tab .txtTabBtn{font-size: 5vw;}

  #floorMap .boxImg {
    border-radius: 1.2vw;
  }

  
}