@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;
}

html body .form-top {
  color: #000;
  background: #fff;
  padding: 30px 50px;
}
@media screen and (max-width: 768px) {
  html body .form-top {
    padding: 20px 30px;
  }
}
html body .search-window {
  color: #000;
}
html body .accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: solid 2px #d9d9d9;
}
html body .accordion:last-child {
  border-bottom: solid 2px #d9d9d9;
}
html body .accordion.is-active .accordion__head-right img {
  rotate: 180deg;
}
html body .accordion__head {
  user-select: none;
  display: block;
}
html body .accordion__head::marker {
  display: none;
}
html body .accordion__head::-webkit-details-marker {
  display: none;
}
html body .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;
}
html body .accordion__head-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e60012;
  font-weight: normal;
}
html body .accordion__head-right img {
  width: 24px;
  transition: rotate 0.3s;
}
html body .accordion__body {
  overflow: hidden;
}
html body .accordion__body-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 18px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  html body .accordion__body-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1000px) and (max-width: 910px) {
  html body .accordion__body-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1000px) and (max-width: 910px) and (max-width: 768px) {
  html body .accordion__body-inner {
    gap: 8px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 910px) and (max-width: 768px) and (max-width: 480px) {
  html body .accordion__body-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
html body .accordion__body-inner .checkbox-tag:checked + label {
  background: #ffe3e8;
  color: #e60012;
  outline: 2px solid #e60012;
  outline-offset: -2px;
}
html body .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;
}
html body .accordion__body-inner .checkbox-category:checked + label {
  background: #ffe3e8;
  color: #e60012;
  outline: 2px solid #e60012;
  outline-offset: -2px;
}
html body .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;
}
html body .accordion__body-inner .check-box-wrap {
  position: relative;
}
html body .accordion__body-inner .check-box-wrap input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
html body .accordion__body-inner .check-box-wrap input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
html body .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) {
  html body .accordion__body-inner .check_label {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
html body .accordion__body-inner--1 .check_label {
  height: 50px;
}
html body .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) {
  html body .accordion__body-inner--1 .check_label::before {
    width: 28px !important;
  }
}
html body .accordion__body-inner--1 .check_label::before {
  content: "";
  background: #8f8f8f;
  max-width: 12px !important;
  min-width: 12px !important;
  display: block;
}
html body .accordion__body-inner--2 {
  padding-bottom: 8px;
}
html body .accordion__body-inner--2 .check_label, html body .accordion__body-inner--3 .check_label {
  height: 40px;
}
html body .accordion__body-inner--2 .check_label::before, html body .accordion__body-inner--3 .check_label::before {
  content: "";
  border-radius: 9999px;
  background: #8f8f8f;
  height: auto;
  width: 12px;
  aspect-ratio: 1;
  display: block;
}
html body .form-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  html body .form-tags {
    padding-bottom: 30px;
  }
}
html body .form-tags .check-label {
  cursor: pointer;
}
@media (hover) {
  html body .form-tags .check-label:hover span {
    color: #fff;
    background: #e60012;
    border: 1px solid #e60012;
  }
}
html body .form-tags .check-label input {
  display: none; /* デフォルトのinputは非表示にする */
}
html body .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) {
  html body .form-tags .check-label span {
    font-size: 12px;
    padding: 6px 10px;
  }
}
html body .form-tags .check-label input:checked + span {
  color: #fff;
  background: #e60012;
  border: 1px solid #e60012;
}
html body .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) {
  html body .form-title {
    font-size: 14px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
html body .form-title::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
html body .form-under {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  html body .form-under {
    flex-direction: column;
    gap: 15px;
  }
}
html body .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) {
  html body .reset-btn {
    font-size: 14px;
    width: 130px;
    height: 35px;
  }
}
html body .form-search {
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  html body .form-search {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
html body .form-search-title {
  color: #000;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body .form-search-title {
    font-size: 14px;
  }
}
html body .form-search-input-wrapper {
  width: 100%;
  height: 55px;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body .form-search-input-wrapper {
    height: 50px;
  }
}
html body .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) {
  html body .form-search-input-wrapper input {
    padding-left: 15px;
    padding-right: 100px;
  }
}
html body .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) {
  html body .form-search-input-wrapper .search-btn {
    width: 90px;
    font-size: 14px;
  }
}
html body .form-search-input-wrapper .search-btn img {
  margin-right: 5px;
  width: 15px;
}
@media screen and (max-width: 768px) {
  html body .form-search-input-wrapper .search-btn img {
    width: 12px;
  }
}
html body .form-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  html body .form-buttons {
    padding-bottom: 30px;
    gap: 15px;
  }
}
html body .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) {
  html body .form-buttons .form-button-clear {
    font-size: 14px;
    width: 80px;
    height: 35px;
  }
}
html body .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) {
  html body .form-buttons .form-button-narrow {
    font-size: 16px;
    width: 200px;
    height: 50px;
  }
}
html body .common-content {
  background: #fff;
  margin-bottom: 60px;
  padding: 0 50px 50px;
}
@media screen and (max-width: 768px) {
  html body .common-content {
    margin-bottom: 50px;
    padding: 0 20px 20px;
  }
}
html body .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;
}
html body .popup.is-active {
  transition: opacity 0.3s;
  visibility: visible;
  opacity: 1;
}
html body .popup.is-active .popup__inner .swiper {
  opacity: 1;
  visibility: visible;
}
html body .popup__close {
  transition: all 0.3s;
  top: 15px;
  right: 15px;
  position: absolute;
  z-index: 100;
  height: 30px;
  width: 30px;
}
html body .popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  height: 2px;
  width: 30px;
  background: #999999;
  transform-origin: center center;
}
html body .popup__close span:nth-child(1) {
  rotate: 45deg;
}
html body .popup__close span:nth-child(2) {
  rotate: -45deg;
}
html body .popup__overlay {
  z-index: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}
html body .popup__inner {
  transition: all 0.3s;
  background: #fff;
  position: relative;
  z-index: 5;
  max-width: 1040px;
  max-height: 720px;
  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) {
  html body .popup__inner {
    padding: 30px 20px;
  }
}
html body .popup .swiper-button-prev1 {
  top: 50%;
  position: absolute;
  left: 0;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  z-index: 50;
  background: #fff;
  border: var(--red) 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) {
  html body .popup .swiper-button-prev1 {
    width: 45px;
    translate: -40% -50%;
  }
}
html body .popup .swiper-button-prev1.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
html body .popup .swiper-button-prev1 span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  background-color: var(--red);
  border-radius: 50%;
  transition: width var(--transition) ease-in-out, height var(--transition) ease-in-out;
  transform: translate(-50%, -50%);
}
@media (hover) {
  html body .popup .swiper-button-prev1:hover {
    scale: 1.2;
  }
  html body .popup .swiper-button-prev1:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  html body .popup .swiper-button-prev1:hover span {
    width: 200px;
    height: 200px;
  }
}
html body .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 var(--red);
  border-right: 2px solid var(--red);
  transition: all 0.3s ease-in-out;
  transform: rotate(225deg);
}
@media screen and (max-width: 768px) {
  html body .popup .swiper-button-prev1::before {
    width: 10px;
    height: 10px;
  }
}
html body .popup .swiper-button-prev1::after {
  display: none;
}
html body .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: #fff;
  border: var(--red) 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) {
  html body .popup .swiper-button-next1 {
    width: 45px;
    translate: 40% -50%;
  }
}
html body .popup .swiper-button-next1.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
html body .popup .swiper-button-next1 span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  background-color: var(--red);
  border-radius: 50%;
  transition: width var(--transition) ease-in-out, height var(--transition) ease-in-out;
  transform: translate(-50%, -50%);
}
@media (hover) {
  html body .popup .swiper-button-next1:hover {
    scale: 1.2;
  }
  html body .popup .swiper-button-next1:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  html body .popup .swiper-button-next1:hover span {
    width: 200px;
    height: 200px;
  }
}
html body .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 var(--red);
  border-right: 2px solid var(--red);
  transition: all 0.3s ease-in-out;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body .popup .swiper-button-next1::before {
    width: 10px;
    height: 10px;
  }
}
html body .popup .swiper-button-next1::after {
  display: none;
}
html body .popup .swiper1 {
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.3s;
  opacity: 0;
  visibility: hidden;
}
html body .popup .swiper1 .swiper-wrapper {
  transition-timing-function: ease-in-out;
}
html body .popup .swiper1 .swiper-slide {
  width: 100%;
  font-size: 32px;
  height: 100%;
}
html body .popup .swiper1 .slide-inner {
  overscroll-behavior: contain;
  max-width: 860px;
  margin: 0 auto;
  overflow-y: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html body .popup .swiper1 .slide-inner::-webkit-scrollbar {
    display: none;
  }
}
html body .popup .swiper1 .slide-inner .person {
  margin-bottom: 35px;
  font-size: 32px;
  line-height: 1.375;
  letter-spacing: 0.06em;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .person {
    flex-direction: column;
    font-size: 22px;
    margin-bottom: 20px;
  }
}
html body .popup .swiper1 .slide-inner .person i {
  margin-right: 30px;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .person i {
    margin-right: 15px;
    order: 2;
    margin-right: auto;
  }
}
html body .popup .swiper1 .slide-inner .person span {
  display: inline-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) {
  html body .popup .swiper1 .slide-inner .person span {
    display: block;
    margin-top: 2px;
    margin-left: 0;
    margin-right: auto;
    font-size: 12px;
    order: 3;
  }
}
html body .popup .swiper1 .slide-inner .person span.company {
  color: #999999;
  background: #ededed;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 6px 10px;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .person span.company {
    margin-right: 0;
    order: 1;
  }
}
html body .popup .swiper1 .slide-inner .cred {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #666666;
  font-weight: normal;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .cred {
    margin-top: -35px;
    text-align: center;
    margin-bottom: 25px;
  }
}
html body .popup .swiper1 .slide-inner .info-wrap {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .info-wrap {
    flex-direction: column;
  }
}
html body .popup .swiper1 .slide-inner .info-wrap .info-left {
  height: auto;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 300/370;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .info-wrap .info-left {
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 80%;
    margin: 0 auto;
    max-width: 300px;
  }
}
html body .popup .swiper1 .slide-inner .info-wrap .info-left img {
  width: 100%;
  object-fit: cover;
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-details {
    gap: 15px;
  }
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dt {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dt {
    margin-bottom: 5px;
  }
}
html body .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) {
  html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dd {
    padding-right: 0;
  }
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-details .info-detail dd ul li:not(:last-child) {
  margin-bottom: 5px;
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-annotation {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.02em;
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-session-title {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-session-schedule {
  display: flex;
  align-items: center;
  gap: 30px;
}
html body .popup .swiper1 .slide-inner .info-wrap .info-right .info-session-schedule .day {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
}
html body .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;
}
html body .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;
}
html body .session-area {
  background: #ededed;
  padding: 10px 20px 30px;
  border-radius: 10px;
  position: relative;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  html body .session-area {
    padding: 10px 15px 20px;
  }
}
@media (hover) {
  html body .session-area:hover {
    opacity: 0.7;
  }
}
html body .session-area::after {
  content: "";
  position: absolute;
  table-layout: 10px;
  right: 10px;
  height: auto;
  width: 20px;
  aspect-ratio: 1;
  background: url(/2025/speakers/index/img/session-arrow.png) no-repeat;
  background-size: cover;
}
html body .session-area__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  html body .session-area__inner {
    gap: 5px;
  }
}
html body .session-area__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  html body .session-area__top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
html body .session-area__top-left {
  display: flex;
  align-items: center;
}
html body .session-area__top-day {
  font-weight: bold;
  font-family: var(--rubik);
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
  background: url(/2025/speakers/index/img/sushi-bg.png) no-repeat;
  background-size: cover;
  padding-top: 2px;
  height: auto;
  width: 50px;
  aspect-ratio: 75/47;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body .session-area__top-day {
    font-size: 12px;
    width: 46px;
  }
}
html body .session-area__top-time {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
  color: #999999;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #999999;
}
@media screen and (max-width: 768px) {
  html body .session-area__top-time {
    margin-right: 5px;
    padding-right: 5px;
  }
}
html body .session-area__top-stage {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
  color: #999999;
}
html body .session-area__top-right {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #999999;
  border: solid 1px #999999;
  border-radius: 4px;
  padding: 4px 6px;
}
@media screen and (max-width: 768px) {
  html body .session-area__top-right {
    margin-left: auto;
    font-size: 10px;
  }
}
html body .session-area__bottom {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html body .session-area__bottom {
    font-size: 14px;
  }
}
@media screen and (max-width: 1480px) {
  html body .content-left-top {
    display: none;
  }
}
html body .swiper-cont {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  html body .swiper-cont {
    margin-bottom: 30px;
  }
}
html body .swiper-cont .swiper-button-prev5 {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  inset: unset;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #000;
  border: #fff solid 2px;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1100px) {
  html body .swiper-cont .swiper-button-prev5 {
    width: 45px;
  }
}
html body .swiper-cont .swiper-button-prev5 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%);
}
@media (hover) {
  html body .swiper-cont .swiper-button-prev5:hover {
    scale: 1.2;
  }
  html body .swiper-cont .swiper-button-prev5:hover::before {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
  html body .swiper-cont .swiper-button-prev5:hover span {
    width: 200px;
    height: 200px;
  }
}
html body .swiper-cont .swiper-button-prev5::before {
  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) {
  html body .swiper-cont .swiper-button-prev5::before {
    width: 10px;
    height: 10px;
  }
}
html body .swiper-cont .swiper-button-prev5::after {
  display: none;
}
html body .swiper-cont .btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  html body .swiper-cont .btn-wrap {
    gap: 10px;
  }
}
html body .swiper-cont .swiper-button-next5 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  position: static;
  inset: unset;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #000;
  border: #fff solid 2px;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}
html body .swiper-cont .swiper-button-next5 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%);
}
@media (hover) {
  html body .swiper-cont .swiper-button-next5:hover {
    scale: 1.2;
  }
  html body .swiper-cont .swiper-button-next5:hover::before {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
  html body .swiper-cont .swiper-button-next5:hover span {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 1100px) {
  html body .swiper-cont .swiper-button-next5 {
    width: 45px;
  }
}
html body .swiper-cont .swiper-button-next5::before {
  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) {
  html body .swiper-cont .swiper-button-next5::before {
    width: 10px;
    height: 10px;
  }
}
html body .swiper-cont .swiper-button-next5::after {
  display: none;
}
html body .swiper-cont .swiper5 {
  margin-top: 50px;
  overflow: visible;
}
html body .swiper-cont .swiper5 .swiper--wrapper {
  width: 100%;
  height: 100%;
}
html body .swiper-cont .swiper5 .swiper-slide {
  width: 300px;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  html body .swiper-cont .swiper5 .swiper-slide {
    max-width: 100%;
  }
}
html body .swiper-cont .swiper5 .swiper-slide .img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
html body .swiper-cont .swiper5 .swiper-slide .img img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  translate: -50% 0;
}
html body .swiper-cont .swiper5 .swiper-slide .name {
  width: 80%;
  height: 40px;
  display: flex;
  align-items: center;
  background: #e60012;
  translate: -20px -10px;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: bold;
  padding-left: 20px;
}
html body .swiper-cont .swiper5 .swiper-slide .text {
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0.06em;
}
html body .main h2.section-title {
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  html body .main h2.section-title {
    font-size: 24px;
  }
}
html body .main h3.section-title {
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.04em;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body .main h3.section-title {
    padding-bottom: 8px;
    font-size: 22px;
  }
}
html body .main h3.section-title .alpha {
  position: absolute;
  display: block;
  white-space: nowrap;
  top: 25px;
  left: calc(100% + 30px);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  html body .main h3.section-title .alpha {
    font-size: 12px;
    left: 50%;
    top: 50px;
    translate: -50%;
  }
}
html body .main .section-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  html body .main .section-title {
    margin-bottom: 30px;
    padding-bottom: 12px;
  }
}
html body .main .section-text {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  html body .main .section-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
html body .main .example-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  html body .main .example-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
html body .main .exam-list {
  z-index: 15;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
  gap: 25px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  html body .main .exam-list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
    gap: 10px;
  }
}
html body .main .exam-list.reverse::after {
  transform: rotateY(180deg);
}
html body .main .exam-list::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: url(/2024/speakers/index/img/bg.png) no-repeat;
  background-size: contain;
  width: 100vw;
  height: auto;
  aspect-ratio: 1367/993;
}
html body .main .exam-list .exam-item {
  position: relative;
}
html body .main .exam-list .exam-item .exam-text {
  position: absolute;
  width: 100%;
  top: 50%;
  font-weight: bold;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
  font-size: 24px;
  line-height: 1.5833333333;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  html body .main .exam-list .exam-item .exam-text {
    font-size: 14px;
  }
}
html body .main .speak-title {
  font-size: 36px;
  line-height: 0.5555555556;
  letter-spacing: 0.06em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  html body .main .speak-title {
    margin-bottom: 40px;
    font-size: 24px;
  }
}
html body .first-text-wrap {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 60px;
}
html body .speaker {
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  html body .speaker {
    margin: 0;
    margin-top: 10px;
  }
}
html body .speaker__first {
  text-align: center;
  font-weight: bold;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  html body .speaker__first {
    font-size: 24px;
    margin-bottom: 50px;
  }
}
html body .speaker .links {
  margin-bottom: 160px;
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 20;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  html body .speaker .links {
    margin-bottom: 80px;
  }
}
html body .speaker .links .link {
  gap: 8px;
  margin: 0;
  width: auto;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0 20px 0 30px;
}
@media screen and (max-width: 768px) {
  html body .speaker .links .link {
    padding: 0 15px 0 25px;
  }
}
html body .speaker .links .link b {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  html body .speaker .links .link b {
    font-size: 16px;
  }
}
html body .speaker .links .link::after {
  content: "";
  width: 14px;
  height: auto;
  aspect-ratio: 14/8;
  -webkit-mask-image: url(/2024/speakers/index/img/anker.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(/2024/speakers/index/img/anker.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  transition: all 0.3s;
}
@media (hover) {
  html body .speaker .links .link:hover::after {
    background-color: #000;
  }
}
html body .speaker__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.563rem, -6.389rem + 16.57vw, 5rem);
}
@media screen and (max-width: 768px) {
  html body .speaker__list {
    justify-content: flex-start;
    gap: 45px 26px;
  }
}
html body .speaker__list.last-left {
  justify-content: flex-start;
}
html body .speaker__item {
  position: relative;
  width: 27%;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  html body .speaker__item {
    width: 46%;
  }
}
html body .speaker__item.is-filter {
  display: none;
}
@media (hover) {
  html body .speaker__item:has(> a):hover::after {
    rotate: -10deg;
  }
  html body .speaker__item:has(> a):hover .speaker__img {
    scale: 1.05;
  }
}
html body .speaker__item::after {
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: 5;
  width: 120%;
  transition: all 0.3s;
  height: auto;
  aspect-ratio: 509/484;
  content: "";
  background: url(/2024/speakers/index/img/speaker-bg.png) no-repeat;
  background-size: cover;
  translate: -50% 0;
}
@media screen and (max-width: 1100px) {
  html body .speaker__item::after {
    width: 112%;
  }
}
html body .speaker__item-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
html body .speaker__img {
  width: 73%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto 10px;
  overflow: hidden;
  background: #ccc;
  border-radius: 9999px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  html body .speaker__img {
    width: 95%;
  }
}
html body .speaker__img img {
  object-fit: cover;
  height: 100%;
}
html body .speaker__name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  width: 100%;
  margin-bottom: 10px;
  font-weight: bold;
  background: #e60012;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  html body .speaker__name {
    height: auto;
    padding: 5px 10px;
    font-size: 16px;
  }
}
html body .speaker__text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  html body .speaker__text {
    font-size: 14px;
  }
}
html body .speaker__text-devide {
  display: block;
}
html body .speaker__text-devide:not(:last-child) {
  margin-bottom: 10px;
}

.and-more {
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .and-more {
    margin-bottom: 75px;
  }
}
.and-more b {
  position: relative;
}

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