@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --noto: "Noto Sans JP", sans-serif;
  --rubik: "Rubik", sans-serif;
  --red: #e60012;
  --transition: 0.4s;
}

.rubik {
  font-family: var(--rubik);
}

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

.sp-b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-ib {
    display: inline-block !important;
  }
}

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

.sp-f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-f {
    display: flex !important;
  }
}

.img-wrap {
  width: fit-content;
}
.img-wrap img {
  width: 100%;
  height: auto;
}

html {
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

body {
  margin: 0;
  font-family: var(--noto);
  font-weight: 400;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin: 0;
  overflow: visible;
  clear: both;
  color: inherit;
  border-top-width: 1px;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 100%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

.form-top {
  background: #fff;
  padding: 30px 50px;
}
@media screen and (max-width: 768px) {
  .form-top {
    padding: 20px 30px;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: solid 2px #d9d9d9;
}
.accordion:last-child {
  border-bottom: solid 2px #d9d9d9;
}
.accordion.is-active .accordion__head-right img {
  rotate: 180deg;
}
.accordion__head {
  user-select: none;
  display: block;
}
.accordion__head::marker {
  display: none;
}
.accordion__head::-webkit-details-marker {
  display: none;
}
.accordion__head-inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
}
.accordion__head-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e60012;
  font-weight: normal;
}
.accordion__head-right img {
  width: 24px;
  transition: rotate 0.3s;
}
.accordion__body {
  overflow: hidden;
}
.accordion__body-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 18px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .accordion__body-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1000px) and (max-width: 910px) {
  .accordion__body-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1000px) and (max-width: 910px) and (max-width: 768px) {
  .accordion__body-inner {
    gap: 8px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 910px) and (max-width: 768px) and (max-width: 480px) {
  .accordion__body-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.accordion__body-inner .checkbox-tag:checked + label {
  background: #ffe3e8;
  color: #e60012;
  outline: 2px solid #e60012;
  outline-offset: -2px;
}
.accordion__body-inner .checkbox-tag:checked + label::before {
  height: auto;
  width: 14px;
  aspect-ratio: 24/17;
  background: url(/2025/exhibitors/index/img/check.png) no-repeat;
  background-size: cover;
  border: unset;
}
.accordion__body-inner .checkbox-category:checked + label {
  background: #ffe3e8;
  color: #e60012;
  outline: 2px solid #e60012;
  outline-offset: -2px;
}
.accordion__body-inner .checkbox-category:checked + label::before {
  height: auto;
  width: 14px;
  aspect-ratio: 24/17;
  background: url(/2025/exhibitors/index/img/check.png) no-repeat;
  background-size: cover;
}
.accordion__body-inner .check-box-wrap {
  position: relative;
}
.accordion__body-inner .check-box-wrap input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.accordion__body-inner .check-box-wrap input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.accordion__body-inner .check_label {
  display: block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.06em;
  outline: 1px solid #d9d9d9;
  outline-offset: -1px;
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .accordion__body-inner .check_label {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.accordion__body-inner--1 .check_label {
  height: 50px;
}
.accordion__body-inner--1 .check_label--startups::before {
  background: url(/2025/exhibitors/index/img/startups.png) no-repeat !important;
  background-size: cover !important;
  aspect-ratio: 1 !important;
}
.accordion__body-inner--1 .check_label--corporate::before {
  background: url(/2025/exhibitors/index/img/corporate.png) no-repeat !important;
  background-size: cover !important;
  aspect-ratio: 1 !important;
}
.accordion__body-inner--1 .check_label--cities::before {
  background: url(/2025/exhibitors/index/img/cities.png) no-repeat !important;
  background-size: cover !important;
  aspect-ratio: 1 !important;
}
.accordion__body-inner--1 .check_label--other::before {
  background: url(/2025/exhibitors/index/img/other.png) no-repeat !important;
  background-size: cover !important;
  aspect-ratio: 1 !important;
}
.accordion__body-inner--1 .check_label::before {
  content: "";
  width: 36px !important;
  height: auto;
  border-radius: 9999px;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .accordion__body-inner--1 .check_label::before {
    width: 28px !important;
  }
}
.accordion__body-inner--1 .check_label--all::before {
  content: "";
  background: #8f8f8f;
  width: 12px !important;
  display: block;
}
.accordion__body-inner--2 {
  padding-bottom: 8px;
}
.accordion__body-inner--3 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 2px #d9d9d9;
}
.accordion__body-inner--2 .check_label, .accordion__body-inner--3 .check_label {
  height: 40px;
}
.accordion__body-inner--2 .check_label::before, .accordion__body-inner--3 .check_label::before {
  content: "";
  border-radius: 9999px;
  background: #8f8f8f;
  height: auto;
  width: 12px;
  aspect-ratio: 1;
  display: block;
}
.accordion__body-inner--2 .check_label.outline::before, .accordion__body-inner--3 .check_label.outline::before {
  content: "";
  border-radius: 9999px;
  background: transparent;
  border: 2px solid #8f8f8f;
  height: auto;
  width: 12px;
  aspect-ratio: 1;
  display: block;
}

.form-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .form-tags {
    padding-bottom: 30px;
  }
}
.form-tags .check-label {
  cursor: pointer;
}
@media (hover) {
  .form-tags .check-label:hover span {
    color: #fff;
    background: #e60012;
    border: 1px solid #e60012;
  }
}
.form-tags .check-label input {
  display: none; /* デフォルトのinputは非表示にする */
}
.form-tags .check-label span {
  transition: all 0.3s;
  display: block;
  color: #000000;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 8px 14px;
}
@media screen and (max-width: 768px) {
  .form-tags .check-label span {
    font-size: 12px;
    padding: 6px 10px;
  }
}
.form-tags .check-label input:checked + span {
  color: #fff;
  background: #e60012;
  border: 1px solid #e60012;
}

.form-title {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form-title {
    font-size: 14px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
.form-title::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.is-active {
  visibility: visible;
  opacity: 1;
}
.popup.is-active .popup__inner .swiper {
  opacity: 1;
  visibility: visible;
}
.popup__close {
  transition: all 0.3s;
  top: 15px;
  right: 15px;
  position: absolute;
  z-index: 100;
  height: 30px;
  width: 30px;
}
.popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  height: 2px;
  width: 30px;
  background: #999999;
  transform-origin: center center;
}
.popup__close span:nth-child(1) {
  rotate: 45deg;
}
.popup__close span:nth-child(2) {
  rotate: -45deg;
}
.popup__overlay {
  z-index: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}
.popup__inner {
  transition: all 0.3s;
  background: #fff;
  position: relative;
  z-index: 5;
  max-width: 1040px;
  max-height: 580px;
  height: 80vh;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .popup__inner {
    padding: 30px 20px;
  }
}
.popup .swiper-button-prev1 {
  top: 50%;
  position: absolute;
  left: 0;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  z-index: 50;
  background: #e60012;
  border: #fff solid 2px;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
  translate: -50% -50%;
  transition: opacity 0.3s visibility 0.3s;
}
@media screen and (max-width: 1100px) {
  .popup .swiper-button-prev1 {
    width: 45px;
    translate: -40% -50%;
  }
}
.popup .swiper-button-prev1.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.popup .swiper-button-prev1 span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  transition: width var(--transition) ease-in-out, height var(--transition) ease-in-out;
  transform: translate(-50%, -50%);
}
.popup .swiper-button-prev1:hover {
  scale: 1.2;
}
.popup .swiper-button-prev1:hover::before {
  border-top: 2px solid #e60012;
  border-right: 2px solid #e60012;
}
.popup .swiper-button-prev1:hover span {
  width: 200px;
  height: 200px;
}
.popup .swiper-button-prev1::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.3s ease-in-out;
  transform: rotate(225deg);
}
@media screen and (max-width: 768px) {
  .popup .swiper-button-prev1::before {
    width: 10px;
    height: 10px;
  }
}
.popup .swiper-button-prev1::after {
  display: none;
}
.popup .swiper-button-next1 {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 50;
  left: auto;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #e60012;
  border: #fff solid 2px;
  border-radius: 9999px;
  transition: opacity 0.3s visibility 0.3s;
  transition: all 0.3s ease-in-out;
  translate: 50% -50%;
}
@media screen and (max-width: 1100px) {
  .popup .swiper-button-next1 {
    width: 45px;
    translate: 40% -50%;
  }
}
.popup .swiper-button-next1.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.popup .swiper-button-next1 span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  transition: width var(--transition) ease-in-out, height var(--transition) ease-in-out;
  transform: translate(-50%, -50%);
}
.popup .swiper-button-next1:hover {
  scale: 1.2;
}
.popup .swiper-button-next1:hover::before {
  border-top: 2px solid #e60012;
  border-right: 2px solid #e60012;
}
.popup .swiper-button-next1:hover span {
  width: 200px;
  height: 200px;
}
.popup .swiper-button-next1::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.3s ease-in-out;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .popup .swiper-button-next1::before {
    width: 10px;
    height: 10px;
  }
}
.popup .swiper-button-next1::after {
  display: none;
}
.popup .swiper1 {
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.3s;
  opacity: 0;
  visibility: hidden;
}
.popup .swiper1 .swiper-wrapper {
  transition-timing-function: ease-in-out;
}
.popup .swiper1 .swiper-slide {
  width: 100%;
  font-size: 32px;
  height: 100%;
}
.popup .swiper1 .slide-inner {
  overscroll-behavior: contain;
  max-width: 860px;
  margin: 0 auto;
  overflow-y: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .popup .swiper1 .slide-inner::-webkit-scrollbar {
    display: none;
  }
}
.popup .swiper1 .slide-inner .person {
  margin-bottom: 35px;
  font-size: 32px;
  line-height: 1.375;
  letter-spacing: 0.06em;
  font-weight: bold;
  position: relative;
  padding-right: 120px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .person {
    padding-right: 0;
    padding-top: 40px;
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.popup .swiper1 .slide-inner .person span {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #666666;
  font-weight: normal;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .person span {
    top: 25px;
    right: 10px;
    display: block;
    font-size: 12px;
  }
}
.popup .swiper1 .slide-inner .info-wrap {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap {
    flex-direction: column;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-other {
  width: fit-content;
  color: #666666;
  padding: 0 5px;
  border: solid 1px #666666;
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
}
.popup .swiper1 .slide-inner .info-wrap .info-left {
  height: auto;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-left {
    width: 80%;
    margin: 0 auto;
    max-width: 300px;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-left img {
  width: 100%;
}
.popup .swiper1 .slide-inner .info-wrap .info-right {
  width: 100%;
  max-width: 520px;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details {
    gap: 15px;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: -5px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-top {
    gap: 15px;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-top .info-floormap {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0em;
  font-family: var(--rubik);
  font-weight: bold;
  color: #e60113;
  border: solid 2px #e60113;
  border-radius: 4px;
  padding: 2px 6px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-top .info-floormap {
    font-size: 16px;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-top .info-award {
  width: 42px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-top .info-award {
    width: 36px;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dt {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dt {
    margin-bottom: 5px;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dd {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dd {
    padding-right: 0;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-floor {
  margin-top: -18px;
  width: fit-content;
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
  color: #e60012;
  position: relative;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-floor {
    font-size: 12px;
    margin-top: -14px;
  }
}
@media (hover) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-floor:hover::before {
    scale: 0 1;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-floor::before {
  transform-origin: top right;
  transition: all 0.3s;
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #e60012;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-web {
  width: fit-content;
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
  color: #e60012;
  padding-right: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-web {
    font-size: 12px;
  }
}
@media (hover) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-web:hover::before {
    scale: 0 1;
  }
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-web::before {
  transform-origin: top right;
  transition: all 0.3s;
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #e60012;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-web::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(/2024/index/img/blank.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(/2024/index/img/blank.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #e60012;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-annotation {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.02em;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-session-title {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-session-schedule {
  display: flex;
  align-items: center;
  gap: 30px;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-session-schedule .day {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-session-schedule .day span {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
  border: solid 1px #000;
  padding: 2px 8px;
  margin-right: 10px;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-session-schedule .place {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 2px 10px;
  border-radius: 13px;
  background: #e60012;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-pavilion {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #666;
}
.popup .swiper1 .slide-inner .info-wrap .info-right .info-pavilion span {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .popup .swiper1 .slide-inner .info-wrap .info-right .info-pavilion span {
    display: block;
    margin-left: 0;
  }
}

.exhibitors__first {
  width: 90%;
  max-width: 820px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .exhibitors__first {
    width: 100%;
  }
}
.exhibitors__first-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .exhibitors__first-text {
    font-size: 14px;
    line-height: 1.85;
  }
}
.exhibitors__first-translation {
  margin-top: 5px;
  font-size: 14px;
  line-height: 2.2857142857;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .exhibitors__first-translation {
    font-size: 12px;
  }
}
.exhibitors__first-translation span {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #fff;
  background: #999999;
  padding: 3px 8px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .exhibitors__first-translation span {
    font-size: 14px;
    padding: 2px 6px;
  }
}
.exhibitors .form-under {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-under {
    flex-direction: column;
    gap: 15px;
  }
}
.exhibitors .reset-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 150px;
  background: #999999;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .exhibitors .reset-btn {
    font-size: 14px;
    width: 130px;
    height: 35px;
  }
}
.exhibitors .form-search {
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-search {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.exhibitors .form-search-title {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-search-title {
    font-size: 14px;
  }
}
.exhibitors .form-search-input-wrapper {
  width: 100%;
  height: 55px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-search-input-wrapper {
    height: 50px;
  }
}
.exhibitors .form-search-input-wrapper input {
  padding-right: 110px;
  border: solid 1px #cccccc;
  padding-left: 25px;
  background: #fff;
  border-radius: 26px;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-search-input-wrapper input {
    padding-left: 15px;
    padding-right: 100px;
  }
}
.exhibitors .form-search-input-wrapper .search-btn {
  background: #000;
  width: 100px;
  height: 38px;
  border-radius: 19px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-search-input-wrapper .search-btn {
    width: 90px;
    font-size: 14px;
  }
}
.exhibitors .form-search-input-wrapper .search-btn img {
  margin-right: 5px;
  width: 15px;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-search-input-wrapper .search-btn img {
    width: 12px;
  }
}
.exhibitors .common-content {
  background: #fff;
  margin-bottom: 60px;
  padding: 0 50px 50px;
}
@media screen and (max-width: 768px) {
  .exhibitors .common-content {
    margin-bottom: 50px;
    padding: 0 20px 20px;
  }
}
.exhibitors .pt-20 {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .exhibitors .pt-20 {
    padding-top: 10px;
  }
}
.exhibitors .radio__input {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.exhibitors .radio__label {
  margin-bottom: 10px;
  border-left: #cccccc solid 1px;
  display: inline-block;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  padding: 0 20px;
  font-weight: bold;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .exhibitors .radio__label {
    font-size: 12px;
    padding: 0 10px;
  }
}
.exhibitors .radio__label:last-child {
  border-right: #cccccc solid 1px;
}
.exhibitors .radio__input:checked + .radio__label {
  color: #e60012;
}
.exhibitors .form-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-buttons {
    padding-bottom: 30px;
    gap: 15px;
  }
}
.exhibitors .form-buttons .form-button-clear {
  width: 90px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background: #999999;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-buttons .form-button-clear {
    font-size: 14px;
    width: 80px;
    height: 35px;
  }
}
.exhibitors .form-buttons .form-button-narrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.06em;
  width: 240px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  background: #000;
}
@media screen and (max-width: 768px) {
  .exhibitors .form-buttons .form-button-narrow {
    font-size: 16px;
    width: 200px;
    height: 50px;
  }
}
.exhibitors__result {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .exhibitors__result {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.exhibitors__result::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -20px;
  width: 45px;
  height: 6px;
  background: #e60012;
}
@media screen and (max-width: 768px) {
  .exhibitors__result::after {
    height: 4px;
    bottom: -16px;
  }
}
.exhibitors__result-text {
  font-size: 24px;
  line-height: 0.8333333333;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .exhibitors__result-text {
    font-size: 20px;
  }
}
.exhibitors__result-text span {
  margin: 0 5px;
  font-size: 40px;
  line-height: 0.5;
  letter-spacing: 0.06em;
  color: #e60012;
}
@media screen and (max-width: 768px) {
  .exhibitors__result-text span {
    font-size: 36px;
  }
}
.exhibitors__award {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .exhibitors__award {
    flex-direction: column;
  }
}
.exhibitors__award-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 30px;
  padding-right: 30px;
  border-right: solid 1px #000;
}
@media screen and (max-width: 768px) {
  .exhibitors__award-texts {
    align-items: center;
    gap: 8px;
    border-right: none;
    margin-bottom: 20px;
    margin-right: 0;
    padding-right: 0;
  }
}
.exhibitors__award-text {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: bold;
  font-family: var(--rubik);
}
.exhibitors__award-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.exhibitors__award-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.exhibitors__award-item img {
  width: 30px;
}
.exhibitors__award-item p {
  font-weight: bold;
}
.exhibitors .time-table__title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .exhibitors .time-table__title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}

.filter__pavilion {
  color: #000;
  position: absolute;
  width: 80px;
  left: 0% !important;
  top: 35% !important;
  height: auto;
  aspect-ratio: 8/5;
  background: url(/2025/exhibitors/index/img/pavilion-bg.png) no-repeat center center;
  background-size: contain;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .filter__pavilion {
    margin-bottom: 5px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    left: -60%;
    width: 92%;
  }
}
.filter__pavilion span {
  display: block;
  white-space: nowrap;
}
.filter__source {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #999999;
  word-break: break-all;
}
.filter__source span {
  margin-right: 5px;
}
.filter__source i {
  display: inline-block;
  font-style: normal;
}
.filter__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media screen and (max-width: 1200px) {
  .filter__items {
    gap: 30px 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .filter__items {
    gap: 20px 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.filter__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, #fff 20%, #111 20%, #111);
}
.filter__item.is-filter {
  display: none;
}
.filter__item::after {
  pointer-events: none;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: solid 3px #e60012;
  outline-offset: -3px;
  position: absolute;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.15s;
}
@media (hover) {
  .filter__item:hover::after {
    opacity: 1;
  }
}
.filter__popup {
  display: block;
}
.filter__top {
  padding: 12px 20px 20px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .filter__top {
    padding: 8px 10px 10px;
  }
}
.filter__top-info {
  top: 10px;
  left: 10px;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .filter__top-info {
    top: 8px;
    left: 8px;
    gap: 5px;
  }
}
.filter__top-floor {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
  border-radius: 4px;
  font-weight: 900;
  color: var(--red);
  padding: 3px 6px;
  border: solid var(--red) 2px;
}
@media screen and (max-width: 768px) {
  .filter__top-floor {
    font-size: 14px;
  }
}
.filter__top-award {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .filter__top-award {
    width: 26px;
  }
}
.filter__date {
  color: #666666;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .filter__date {
    font-size: 12px;
  }
}
.filter__place {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  right: 0;
  width: 80px;
  height: auto;
  aspect-ratio: 8/5;
  background: url(/2025/exhibitors/index/img/filter-place-bg.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .filter__place {
    top: -10px;
    width: 68px;
  }
}
.filter__place p {
  translate: 0 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .filter__place p {
    font-size: 12px;
  }
}
.filter__logo {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 94px;
}
@media screen and (max-width: 768px) {
  .filter__logo {
    height: 80px;
  }
}
.filter__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.filter__title {
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .filter__title {
    font-size: 14px;
  }
}
.filter__title.is-small {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .filter__title.is-small {
    font-size: 12px;
  }
}
.filter__genre {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 5px;
  gap: 4px;
}
.filter__genre-text {
  color: #e60012;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
}
.filter__genre-img {
  max-width: 44px;
}
@media screen and (max-width: 768px) {
  .filter__genre-img {
    max-width: 32px;
  }
}
.filter__area {
  background: #f2f2f2;
  color: #000000;
  padding: 4px 8px;
  width: fit-content;
  margin: 10px 0;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.filter__bottom {
  color: #fff;
  padding: 3px 20px 65px;
  background: #111 url(/2024/exhibitors/index/img/filter-item-bg.jpg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .filter__bottom {
    padding: 8px 10px 45px;
  }
}
.filter__text {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media screen and (max-width: 768px) {
  .filter__text {
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
    font-size: 12px;
  }
}
.filter__exhi {
  bottom: 30px;
  right: 20px;
  position: absolute;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .filter__exhi {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .filter__exhi {
    bottom: 20px;
    right: 10px;
  }
}
@media (hover) {
  .filter__exhi:hover::before {
    scale: 0 1;
  }
}
.filter__exhi::before {
  transform-origin: top right;
  transition: all 0.3s;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #fff;
}
.filter__web {
  bottom: 30px;
  left: 20px;
  position: absolute;
  padding-right: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .filter__web {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .filter__web {
    bottom: 20px;
    left: 10px;
  }
}
@media (hover) {
  .filter__web:hover::before {
    scale: 0 1;
  }
}
.filter__web::before {
  transform-origin: top right;
  transition: all 0.3s;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #fff;
}
.filter__web::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -35%;
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(/2024/index/img/blank.png) no-repeat;
  background-size: contain;
}
.filter__tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
@media screen and (max-width: 768px) {
  .filter__tags {
    margin-top: 20px;
  }
}
.filter__tag {
  padding: 5px 10px;
  border: solid 1px #fff;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
}

/*# sourceMappingURL=style.css.map */
