/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tsukuhou";
  src: url("../font/Tsukuhou-35Point-Gothic.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes loopCircle {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loopCircle {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.bussantenList {
  --c-blue: #0071bc;
  --c-sky: #23a9bd;
  --c-yellow: #f8cf3f;
  --c-red: #e94b5f;
  --c-black: #111;
  --c-white: #fff;
  --c-dot: rgba(0, 113, 188, 0.11);
  position: relative;
  z-index: 1;
  color: var(--c-black);
}

.bussantenList__inner {
  margin-inline: auto;
}

.bussantenList__head {
  text-align: center;
  margin-bottom: clamp(42px, 7vw, 80px);
}

.bussantenList__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 clamp(18px, 2vw, 28px);
  padding: 8px 22px;
  border: 3px solid var(--c-black);
  border-radius: 999px;
  background: var(--c-blue);
  color: var(--c-white);
  -webkit-box-shadow: 4px 4px 0 var(--c-black);
          box-shadow: 4px 4px 0 var(--c-black);
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
}

.bussantenList__title {
  margin: 0;
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-shadow: 3px 3px 0 rgba(0, 113, 188, 0.18), 0 6px 0 rgba(0, 0, 0, 0.08);
}

.bussantenList__lead {
  display: inline-block;
  margin: clamp(22px, 3vw, 36px) auto 0;
  padding: 15px 26px;
  border: 3px solid var(--c-black);
  border-radius: 999px;
  background: var(--c-yellow);
  -webkit-box-shadow: 5px 5px 0 var(--c-black);
          box-shadow: 5px 5px 0 var(--c-black);
  font-size: clamp(15px, 1.9vw, 22px);
  font-weight: 900;
  line-height: 1.6;
}

.boothSection {
  margin-top: clamp(42px, 7vw, 80px);
  border: 4px solid var(--c-black);
  border-radius: 34px;
  background: radial-gradient(circle at 18px 18px, var(--c-dot) 0 4px, transparent 5px) 0 0/28px 28px, rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 8px 8px 0 var(--c-black);
          box-shadow: 8px 8px 0 var(--c-black);
}
@media screen and (min-width: 320px) {
  .boothSection {
    padding: 32px 16px;
  }
}
@media screen and (min-width: 600px) {
  .boothSection {
    padding: 56px 32px;
  }
}

.boothSection__head {
  margin-bottom: clamp(24px, 4vw, 40px);
  text-align: center;
}

.boothSection__head h2 {
  display: inline-block;
  margin: 0;
  padding: 10px clamp(20px, 4vw, 42px);
  border: 3px solid var(--c-black);
  border-radius: 999px;
  background: var(--c-blue);
  color: var(--c-white);
  -webkit-box-shadow: 5px 5px 0 var(--c-black);
          box-shadow: 5px 5px 0 var(--c-black);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
}

.boothSection__head p {
  margin: 18px 0 0;
  font-size: clamp(15px, 1.9vw, 21px);
  font-weight: 900;
  line-height: 1.7;
}

.boothGrid {
  display: grid;
}
@media screen and (min-width: 320px) {
  .boothGrid {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 600px) {
  .boothGrid {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.boothCard {
  overflow: hidden;
  border: 3px solid var(--c-black);
  border-radius: 24px;
  background: var(--c-white);
  -webkit-box-shadow: 6px 6px 0 var(--c-black);
          box-shadow: 6px 6px 0 var(--c-black);
}

.boothCard__figure {
  position: relative;
  aspect-ratio: 4/3;
  margin: 0;
  background: radial-gradient(circle at 18px 18px, rgba(0, 113, 188, 0.12) 0 4px, transparent 5px) 0 0/28px 28px, #effaff;
}

.boothCard__figure::before {
  content: "BOOTH";
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 6px 12px;
  border: 2px solid var(--c-black);
  border-radius: 999px;
  background: var(--c-yellow);
  color: var(--c-black);
  -webkit-box-shadow: 3px 3px 0 var(--c-black);
          box-shadow: 3px 3px 0 var(--c-black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.boothCard__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.boothCard__body {
  padding: clamp(16px, 2.4vw, 24px);
}

.boothCard__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.boothCard__name {
  margin: 0 0 10px;
  color: var(--c-blue);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 1.5px 1.5px 0 rgba(248, 207, 63, 0.8);
}

.boothCard__product {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 2px solid var(--c-blue);
  border-radius: 14px;
  background: #effaff;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 900;
  line-height: 1.5;
}

.boothCard__text {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .bussantenList {
    padding: 72px 6vw 96px;
  }
  .bussantenList__inner {
    width: 84vw;
  }
  .bussantenList__title {
    font-size: clamp(34px, 11vw, 52px);
  }
  .bussantenList__lead {
    border-radius: 22px;
    font-size: 15px;
  }
  .boothSection {
    border-width: 3px;
    border-radius: 24px;
    -webkit-box-shadow: 5px 5px 0 var(--c-black);
            box-shadow: 5px 5px 0 var(--c-black);
  }
  .boothSection__head h2 {
    width: 100%;
    border-radius: 22px;
  }
}
.boothCard__figure {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.boothCard__figure::before {
  content: "CLICK!";
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 7px 32px 7px 10px;
  border: 2px solid var(--c-black);
  border-radius: 999px;
  background: var(--c-yellow);
  color: var(--c-black);
  -webkit-box-shadow: 3px 3px 0 var(--c-black);
          box-shadow: 3px 3px 0 var(--c-black);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.boothCard__figure::after {
  content: "";
  position: absolute;
  left: 78px;
  top: 20px;
  z-index: 4;
  width: 17px;
  height: 17px;
  background-color: var(--c-black);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3Cline x1='11' y1='8' x2='11' y2='14'%3E%3C/line%3E%3Cline x1='8' y1='11' x2='14' y2='11'%3E%3C/line%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3Cline x1='11' y1='8' x2='11' y2='14'%3E%3C/line%3E%3Cline x1='8' y1='11' x2='14' y2='11'%3E%3C/line%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}

.boothCard__zoomLink {
  display: block;
  width: 100%;
  height: 100%;
}

.boothCard__zoomLink img {
  -webkit-transition: -webkit-transform 0.28s ease, -webkit-filter 0.28s ease;
  transition: -webkit-transform 0.28s ease, -webkit-filter 0.28s ease;
  transition: transform 0.28s ease, filter 0.28s ease;
  transition: transform 0.28s ease, filter 0.28s ease, -webkit-transform 0.28s ease, -webkit-filter 0.28s ease;
}

.boothCard__figure:hover .boothCard__zoomLink img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-filter: brightness(0.92);
          filter: brightness(0.92);
}

.bussantenFloatNav {
  --c-blue: #0071bc;
  --c-sky: #23a9bd;
  --c-yellow: #f8cf3f;
  --c-red: #e94b5f;
  --c-black: #111;
  --c-white: #fff;
  position: fixed;
  left: 50%;
  z-index: 5000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 3px solid var(--c-black);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-box-shadow: 6px 6px 0 var(--c-black);
          box-shadow: 6px 6px 0 var(--c-black);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  pointer-events: auto;
}
@media screen and (min-width: 320px) {
  .bussantenFloatNav {
    top: 8px;
    width: 95vw;
  }
}
@media screen and (min-width: 600px) {
  .bussantenFloatNav {
    top: 8px;
    width: 76vw;
  }
}

.bussantenFloatNav a {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 2px solid var(--c-black);
  border-radius: 999px;
  background: var(--c-blue);
  color: #fff;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  -webkit-box-shadow: 3px 3px 0 var(--c-black);
          box-shadow: 3px 3px 0 var(--c-black);
}

.bussantenFloatNav a:nth-child(2) {
  background: var(--c-red);
}

.bussantenFloatNav a:nth-child(3) {
  background: var(--c-yellow);
  color: var(--c-black);
}

.bussantenFloatNav a:nth-child(4) {
  background: #23a9bd;
}

.boothSection {
  scroll-margin-top: 120px;
}

@media (max-width: 600px) {
  .bussantenFloatNav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-radius: 22px;
    padding: 8px;
    z-index: 5000;
  }
  .bussantenFloatNav::-webkit-scrollbar {
    display: none;
  }
  .bussantenFloatNav a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 13px;
    font-size: 12px;
  }
  .boothSection {
    scroll-margin-top: 140px;
  }
}/*# sourceMappingURL=bussanten.css.map */