html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  color: #040000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
  }
}

section {
  overflow-x: hidden;
}

.inner {
  max-width: 1054px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .inner {
    max-width: 600px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.en {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.bold {
  font-weight: bold;
}

@media screen and (min-width: 801px) {
  .sp-only {
    display: none;
  }
}

.coming-soon {
  background-color: rgba(4, 0, 0, 0.05);
  text-align: center;
  padding: 60px 0;
  font-size: 4rem;
  color: rgba(4, 0, 0, 0.4);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.l-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(240, 248, 247, 0.8);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
@media screen and (max-width: 800px) {
  .l-header__bg {
    display: none;
  }
}
.l-header__nav {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 600px;
  height: 100vh;
  background-color: #fff;
  padding: 120px 128px 72px 72px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  z-index: 2;
  transform: translateX(100%);
  transition: transform 0.5s;
}
@media screen and (max-width: 800px) {
  .l-header__nav {
    width: 100%;
    max-width: 100%;
    background-color: rgba(240, 248, 247, 0.97);
    padding: 80px 15px 40px;
  }
}
.l-header__nav::-webkit-scrollbar {
  display: none;
}
.l-header__nav-list {
  border-top: 1px solid rgba(4, 0, 0, 0.18);
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .l-header__nav-list {
    max-width: 345px;
    margin: 0 auto 40px;
  }
}
.l-header__nav-item {
  border-bottom: 1px solid rgba(4, 0, 0, 0.18);
}
.l-header__nav-link {
  display: block;
  padding: 16px 40px 16px 10px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  transition: color 0.3s;
}
@media screen and (max-width: 800px) {
  .l-header__nav-link {
    font-size: 1.6rem;
    padding-right: 35px;
  }
}
.l-header__nav-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
}
.l-header__nav-link:hover {
  color: #19a59f;
}
.l-header__nav-btn {
  margin-bottom: 44px;
}
@media screen and (max-width: 800px) {
  .l-header__nav-btn {
    margin-bottom: 48px;
    max-width: 315px;
    margin: 0 auto 48px;
  }
}
@media screen and (max-width: 800px) {
  .l-header__logo {
    max-width: 345px;
    margin: 0 auto;
  }
}
.l-header__hamburger {
  position: fixed;
  display: block;
  right: 40px;
  top: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #84ccc9;
  border: 1px solid #fff;
  z-index: 3;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .l-header__hamburger {
    right: 10px;
    top: 10px;
    width: 48px;
    height: 48px;
  }
}
.l-header__hamburger::after {
  content: "Menu";
  font-size: 1.5rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 800px) {
  .l-header__hamburger::after {
    display: none;
  }
}
.l-header__hamburger__line {
  display: block;
  width: 24px;
  height: 4px;
  background-color: #040000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .l-header__hamburger__line {
    width: 20px;
    height: 3px;
  }
}
.l-header__hamburger__line:first-child {
  margin-top: -8px;
  margin-left: -2px;
}
@media screen and (max-width: 800px) {
  .l-header__hamburger__line:first-child {
    margin-left: 0;
  }
}
.l-header__hamburger__line:nth-child(2) {
  margin-left: 2px;
}
@media screen and (max-width: 800px) {
  .l-header__hamburger__line:nth-child(2) {
    margin-left: 4px;
  }
}
.l-header__hamburger__line:last-child {
  margin-top: 8px;
  margin-left: -2px;
}
@media screen and (max-width: 800px) {
  .l-header__hamburger__line:last-child {
    margin-left: 0;
  }
}
.l-header__hamburger.is-active::after {
  content: "Close";
}
.l-header__hamburger.is-active .l-header__hamburger__line:first-child {
  margin-left: 0;
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburger__line:nth-child(2) {
  margin-left: 0;
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger__line:last-child {
  margin-left: 0;
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header.is-active .l-header__bg {
  opacity: 1;
  visibility: visible;
}
.l-header.is-active .l-header__nav {
  transform: translateX(0);
}

.l-footer {
  background-color: #076baf;
  color: #fff;
  text-align: center;
  padding: 12px;
}
.l-footer__copyright small {
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .l-footer__copyright small {
    font-size: 1.4rem;
  }
}

.title1 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 800px) {
  .title1 {
    font-size: 2.4rem;
    text-align: center;
  }
}
.title1::before {
  content: attr(data-en);
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  text-transform: capitalize;
  display: block;
  margin-bottom: 8px;
  color: #84ccc9;
  font-family: "Quantico", sans-serif;
}
@media screen and (max-width: 800px) {
  .title1::before {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.title1--center {
  text-align: center;
}
.title1--white {
  color: #fff;
}
.title1--white::before {
  color: #fff;
}

.title2 {
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .title2 {
    font-size: 1.8rem;
  }
}

.title3 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #84ccc9;
  margin-bottom: 24px;
}
.title3::after {
  content: attr(data-en);
  font-size: 4.4rem;
  line-height: 1.5;
  font-weight: bold;
  text-transform: capitalize;
  display: block;
  color: #040000;
  font-family: "Quantico", sans-serif;
  margin-top: 8px;
}
@media screen and (max-width: 800px) {
  .title3::after {
    font-size: 2.8rem;
    margin-top: 0;
  }
}
.title3--center {
  text-align: center;
}

.btn-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 80px;
  font-size: 1.8rem;
  letter-spacing: 0;
  background-color: #999;
  color: #fff;
  border-radius: 40px;
  padding: 0 44px;
  transition: background-color 0.3s;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(4, 0, 0, 0.2);
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .btn-entry {
    font-size: 1.6rem;
    padding: 0 24px;
    gap: 8px;
  }
}
.btn-entry::before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .btn-entry::before {
    width: 15px;
  }
}
.btn-entry::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .btn-entry::after {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    right: 15px;
  }
}
.btn-entry:hover {
  background-color: #19a59f;
  box-shadow: 0 0 0 rgba(4, 0, 0, 0.2);
}
.btn-entry--large {
  max-width: 600px;
  height: 100px;
  border-radius: 50px;
  font-size: 2rem;
  gap: 16px;
  justify-content: center;
  padding: 0 20px 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .btn-entry--large {
    max-width: 315px;
    height: 80px;
    font-size: 15px;
    gap: 8px;
    padding-right: 40px;
  }
}
.btn-entry--large::after {
  width: 54px;
  height: 54px;
  font-size: 1.8rem;
  right: 30px;
}
@media screen and (max-width: 800px) {
  .btn-entry--large::after {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    right: 15px;
  }
}

.btn-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 450px;
  height: 80px;
  border-radius: 4px;
  background-color: #fff;
  border: 2px solid #040000;
  box-shadow: 0 4px 16px rgba(4, 0, 0, 0.2);
  transition: color 0.3s, box-shadow 0.3s;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 800px) {
  .btn-map {
    max-width: 315px;
    height: 60px;
    font-size: 1.5rem;
    gap: 8px;
  }
}
.btn-map:hover {
  color: #19a59f;
  box-shadow: 0 0 0 rgba(4, 0, 0, 0.2);
}
.btn-map::before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #040000;
}
@media screen and (max-width: 800px) {
  .btn-map::before {
    width: 15px;
  }
}

.hero {
  background-image: url(../images/hero_bg.png);
  background-size: 81vw;
  background-position: top 7.5vw right calc(50% + 23vw);
  background-repeat: no-repeat;
  background-color: #f0f8f7;
  padding: 3.4vw 0 4.8vw;
  position: relative;
}
@supports (background-image: url(../images/hero_bg.webp)) {
  .hero {
    background-image: url(../images/hero_bg.webp);
  }
}
@media screen and (max-width: 800px) {
  .hero {
    background-image: url(../images/hero_bg_sp.png);
    background-size: 100%;
    background-position: top center;
    padding: 12vw 0 13vw;
  }
  @supports (background-image: url(../images/hero_bg_sp.webp)) {
    .hero {
      background-image: url(../images/hero_bg_sp.webp);
    }
  }
}
.hero::after {
  content: "";
  width: calc(50% + 112px);
  height: 36.3vw;
  background-color: #84ccc9;
  position: absolute;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .hero::after {
    width: 100%;
    height: 119vw;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 80vw;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .hero__inner {
    width: 92%;
  }
}
.hero__title {
  margin-bottom: 3.4vw;
}
.hero__title img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .hero__title {
    margin-bottom: 65.6vw;
    position: relative;
    z-index: 2;
  }
}
.hero__date {
  margin-bottom: 3.4vw;
}
@media screen and (max-width: 800px) {
  .hero__date {
    margin-bottom: 5vw;
  }
}
.hero__date img {
  width: 33vw;
}
@media screen and (max-width: 800px) {
  .hero__date img {
    width: 88vw;
  }
}
.hero__img {
  position: absolute;
  right: -5.7vw;
  bottom: -15.8vw;
}
@media screen and (max-width: 800px) {
  .hero__img {
    width: 100%;
    right: 0;
    bottom: 41.6vw;
  }
}
.hero__img img {
  width: 48vw;
}
@media screen and (max-width: 800px) {
  .hero__img img {
    width: 100%;
  }
}
.hero .btn-entry {
  width: 32.8vw;
  height: 6.25vw;
  font-size: 1.5vw;
  border-radius: 4vw;
  padding: 0 3.2vw;
  gap: 1.25vw;
}
@media screen and (max-width: 800px) {
  .hero .btn-entry {
    width: 84vw;
    height: 16vw;
    border-radius: 8vw;
    font-size: 4vw;
    padding-left: 8.8vw;
    gap: 2vw;
    margin: 0 auto;
  }
}
.hero .btn-entry::before {
  width: 1.25vw;
}
@media screen and (max-width: 800px) {
  .hero .btn-entry::before {
    width: 4vw;
  }
}
.hero .btn-entry::after {
  width: 3.2vw;
  height: 3.2vw;
  font-size: 1.25vw;
  right: 1.25vw;
}
@media screen and (max-width: 800px) {
  .hero .btn-entry::after {
    width: 10vw;
    height: 10vw;
    font-size: 4vw;
    right: 2.6vw;
  }
}

.about {
  padding: 9.4vw 0 80px;
  background-color: #076baf;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about {
    padding: 60px 0 40px;
  }
}
.about::before {
  content: "";
  width: calc(50% + 280px);
  height: 100%;
  background-color: #0d67a4;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 330px) 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .about::before {
    width: calc(50% - 35px);
    clip-path: polygon(0 0, calc(100% - 125px) 0, 100% 100%, 0 100%);
  }
}
.about__flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 999px) {
  .about__flex {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
@media screen and (max-width: 800px) {
  .about__flex {
    margin-bottom: 56px;
  }
}
.about__text {
  max-width: 450px;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .about__text {
    max-width: 100%;
  }
}
.about__title {
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}
@media screen and (max-width: 800px) {
  .about__title {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}
.about__info {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  grid-template-columns: 94px 1fr;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .about__info {
    grid-template-columns: 75px 1fr;
  }
}
.about__info__title {
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
}
@media screen and (max-width: 800px) {
  .about__info__title {
    font-size: 1.5rem;
  }
}
.about__info__text {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.about__info__text .fz24 {
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .about__info__text .fz24 {
    font-size: 2.2rem;
  }
}
.about__info__text .fz18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 800px) {
  .about__info__text .fz18 {
    font-size: 1.5rem;
  }
}
.about__info__text .fz14 {
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .about__info__text .fz14 {
    font-size: 1.2rem;
  }
}
.about__description {
  max-width: 500px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 32px;
}
@media screen and (max-width: 800px) {
  .about__description {
    max-width: 100%;
    padding: 24px;
  }
}
.about__description__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .about__description__title {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4px;
  }
}
.about__description__text {
  line-height: 2;
}
@media screen and (max-width: 800px) {
  .about__description__text {
    line-height: 1.8;
  }
}
.about__slider {
  z-index: 1;
}
.about__slider .swiper-wrapper {
  transition-timing-function: linear;
}
.about__slider .swiper-slide {
  width: 420px;
  padding: 0 10px;
}
@media screen and (max-width: 800px) {
  .about__slider .swiper-slide {
    width: 250px;
    padding: 0 5px;
    border-radius: 4px;
    overflow: hidden;
  }
}

.merit {
  padding: 44px 0 124px;
  background-color: #e5f3f2;
  position: relative;
}
@media screen and (max-width: 800px) {
  .merit {
    padding: 32px 0 64px;
  }
}
.merit::after {
  content: "";
  width: calc(50% - 200px);
  height: 100%;
  background-color: #dbeeed;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  clip-path: polygon(320px 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .merit::after {
    width: calc(50% + 63px);
    clip-path: polygon(225px 0, 100% 0, 100% 100%, 0 100%);
  }
}
.merit .title1 {
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .merit .title1 {
    margin-bottom: 24px;
  }
}
.merit .title2 {
  margin-bottom: 24px;
}
.merit__list {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 66px;
}
@media screen and (max-width: 800px) {
  .merit__list {
    max-width: 325px;
    flex-direction: column;
    gap: 34px;
    margin: 0 auto 40px;
  }
}
.merit__list__item {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #040000;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.merit__list__item:nth-child(odd) {
  margin-top: 24px;
}
@media screen and (max-width: 800px) {
  .merit__list__item:nth-child(odd) {
    margin-top: 0;
  }
}
.merit__list__item::before {
  content: "";
  width: 32px;
  height: 28px;
  background: url(../images/polygon.png) no-repeat center center/contain;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.merit__list__item::after {
  content: "";
  width: 32px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.merit__list__item__img {
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .merit__list__item__img {
    margin-bottom: 8px;
  }
}
.merit__list__item__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 800px) {
  .merit__list__item__title {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
}

.schedule {
  padding: 44px 0 100px;
}
@media screen and (max-width: 800px) {
  .schedule {
    padding: 32px 0 56px;
  }
}
.schedule .title1 {
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .schedule .title1 {
    margin-bottom: 24px;
  }
}
.schedule__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .schedule__list {
    gap: 12px;
    margin-bottom: 40px;
  }
}
.schedule .title2 {
  margin-bottom: 24px;
}
.schedule__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 68px;
}
@media screen and (max-width: 800px) {
  .schedule__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 40px;
  }
}
.schedule__item__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 800px) {
  .schedule__item__title {
    font-size: 2rem;
    padding: 8px 10px;
  }
}
.schedule__item__time {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  padding: 8px 10px;
}
.schedule__item__box {
  padding: 24px 0;
  border-bottom: 1px solid rgba(4, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .schedule__item__box {
    padding: 16px 0;
    gap: 8px;
  }
}
.schedule__item__content {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 800px) {
  .schedule__item__content {
    grid-template-columns: 60px 1fr;
  }
}
.schedule__item__content__title {
  text-align: center;
  font-weight: bold;
  border: 1px solid rgba(4, 0, 0, 0.15);
}
.schedule__item__img {
  width: 120px;
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .schedule__item__img {
    width: 80px;
  }
}
.schedule__item__img--two {
  width: 200px;
}
@media screen and (max-width: 800px) {
  .schedule__item__img--two {
    width: 80px;
  }
}
.schedule__item--day1 .schedule__item__title {
  background-color: #009d85;
}
.schedule__item--day1 .schedule__item__time {
  background-color: #e5f3f2;
}
.schedule__item--day2 .schedule__item__title {
  background-color: #f08300;
}
.schedule__item--day2 .schedule__item__time {
  background-color: #fbefe2;
}

.exhibitors {
  padding: 44px 0 88px;
  background-color: #e5f3f2;
  position: relative;
}
@media screen and (max-width: 800px) {
  .exhibitors {
    padding: 32px 0 48px;
  }
}
.exhibitors::before {
  content: "";
  width: calc(50% + 650px);
  height: 100%;
  background-color: #dbeeed;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  clip-path: polygon(0 0, calc(100% - 940px) 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .exhibitors::before {
    width: calc(50% + 63px);
    clip-path: polygon(0 0, calc(100% - 225px) 0, 100% 100%, 0 100%);
  }
}
.exhibitors__titles {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .exhibitors__titles {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.exhibitors__title {
  border-bottom: 1px solid #040000;
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
}
.exhibitors__title::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #040000;
  position: absolute;
  left: 3px;
  top: 36%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  .exhibitors__title {
    padding-bottom: 8px;
    margin-bottom: 12px;
  }
}
.exhibitors__title.gold {
  border-color: #c4ba00;
}
.exhibitors__title.gold::before {
  background-color: #c4ba00;
}
.exhibitors__title.silver {
  border-color: rgba(4, 0, 0, 0.5);
}
.exhibitors__title.silver::before {
  background-color: rgba(4, 0, 0, 0.5);
}
.exhibitors__title.bronze {
  border-color: #ac6b25;
}
.exhibitors__title.bronze::before {
  background-color: #ac6b25;
}
.exhibitors__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  margin-bottom: 32px;
}
.exhibitors__list:last-child {
  margin-bottom: 48px;
}
@media screen and (max-width: 800px) {
  .exhibitors__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 5px;
    margin-bottom: 24px;
  }
  .exhibitors__list:last-child {
    margin-bottom: 32px;
  }
}
.exhibitors__list__item {
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  min-height: 48px;
  border: 1px solid rgba(4, 0, 0, 0.1);
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .exhibitors__list__item {
    font-size: 1.2rem;
    line-height: 1.3;
    text-align: center;
  }
}
.exhibitors__list__item.logo {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border: none;
}
.exhibitors__list__item.bold {
  font-weight: bold;
  font-size: 1.6rem;
  min-height: 60px;
}
@media screen and (max-width: 800px) {
  .exhibitors__list__item.bold {
    font-size: 1.4rem;
    min-height: 50px;
  }
}
.exhibitors .map {
  margin-bottom: 44px;
}
@media screen and (max-width: 800px) {
  .exhibitors .map {
    margin-bottom: 24px;
  }
}

.cv {
  padding: 32px 0 100px;
  position: relative;
  background-color: #076baf;
}
@media screen and (max-width: 800px) {
  .cv {
    padding-bottom: 50px;
  }
}
.cv::before, .cv::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: #0d67a4;
}
.cv::before {
  width: calc(50% - 195px);
  height: 445px;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .cv::before {
    width: calc(50% - 37px);
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 125px) 0, 100% 100%, 0 100%);
  }
}
.cv::after {
  width: calc(50% + 153px);
  height: 100%;
  right: 0;
  top: 0;
  clip-path: polygon(460px 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .cv::after {
    display: none;
  }
}
.cv__title {
  width: fit-content;
  font-size: 3.6rem;
  margin: 0 auto 16px;
  text-align: center;
  font-weight: bold;
  color: #fffb6a;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 800px) {
  .cv__title {
    margin-bottom: 12px;
    font-size: 2.8rem;
  }
}
.cv__title::before, .cv__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 50%;
  border-left: 2px dashed #fff;
}
.cv__title::before {
  left: 0;
  transform: rotate(-30deg);
}
.cv__title::after {
  right: 0;
  transform: rotate(30deg);
}
.cv__title__wrap {
  position: relative;
  display: block;
  padding: 0 75px;
}
@media screen and (max-width: 800px) {
  .cv__title__wrap {
    padding: 0 35px;
  }
}
.cv__title__wrap::before, .cv__title__wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 90%;
  border-left: 2px dashed #fff;
}
.cv__title__wrap::before {
  left: 7px;
  transform: rotate(-22deg);
}
.cv__title__wrap::after {
  right: 7px;
  transform: rotate(22deg);
}
.cv__title__sub {
  font-size: 3.2rem;
}
@media screen and (max-width: 800px) {
  .cv__title__sub {
    font-size: 2.4rem;
  }
}
.cv__title__sub__number {
  font-size: 4.4rem;
}
@media screen and (max-width: 800px) {
  .cv__title__sub__number {
    font-size: 3.8rem;
  }
}
.cv__box {
  background-color: #fff;
  border-radius: 8px;
  padding: 44px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid #040000;
}
@media screen and (max-width: 800px) {
  .cv__box {
    padding: 24px 5px 40px;
  }
}
.cv__list {
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin: 0 auto 44px;
}
@media screen and (max-width: 800px) {
  .cv__list {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.cv__list__item__img {
  text-align: center;
  margin-bottom: 16px;
}
.cv__list__item__text {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .cv__list__item__text {
    font-size: 1.6rem;
  }
}

.qa {
  padding: 44px 0;
}
@media screen and (max-width: 800px) {
  .qa {
    padding: 32px 0 0;
  }
}
.qa__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qa__item {
  position: relative;
}
.qa__item::before, .qa__item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #fff;
  top: 32px;
  right: 24px;
  pointer-events: none;
  transition: transform 0.4s ease;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .qa__item::before, .qa__item::after {
    width: 13px;
    height: 3px;
    right: 16px;
    top: 26px;
  }
}
.qa__item::before {
  transform: rotate(-90deg);
}
.qa__item::after {
  transform: rotate(-180deg);
}
.qa__item.is-active::before, .qa__item.is-active::after {
  transform: rotate(0deg);
}
.qa__item__title {
  list-style: none;
  padding: 20px 60px;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #19a59f;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .qa__item__title {
    padding: 16px 40px;
    font-size: 1.5rem;
  }
}
.qa__item__title::before {
  content: "Q";
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  font-family: "Quantico", sans-serif;
  position: absolute;
  left: 24px;
  top: 16px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .qa__item__title::before {
    font-size: 2.4rem;
    left: 16px;
    top: 15px;
  }
}
.qa__item__title::marker {
  display: none;
}
.qa__item__title::-webkit-details-marker {
  display: none;
}
.qa__item__text {
  overflow: hidden;
}
.qa__item__text__inner {
  padding: 40px 24px 30px 60px;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 800px) {
  .qa__item__text__inner {
    padding: 28px 16px 16px 40px;
    font-size: 1.4rem;
  }
}
.qa__item__text__inner::before {
  content: "A";
  font-size: 3.2rem;
  font-weight: bold;
  color: #19a59f;
  font-family: "Quantico", sans-serif;
  position: absolute;
  left: 24px;
  top: 40px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .qa__item__text__inner::before {
    font-size: 2.4rem;
    left: 16px;
    top: 27px;
  }
}

.access {
  padding: 44px 0 56px;
}
@media screen and (max-width: 800px) {
  .access {
    padding: 32px 0 0;
  }
}
.access .title1 {
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .access .title1 {
    margin-bottom: 24px;
  }
}
.access__flex {
  display: flex;
  gap: 30px;
  padding: 24px 22px;
  border-radius: 8px;
  border: 1px solid #040000;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .access__flex {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.access__flex .title2 {
  text-align: left;
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .access__flex .title2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.access__text {
  max-width: 450px;
}
@media screen and (max-width: 800px) {
  .access__text {
    max-width: 100%;
  }
}
.access__map {
  width: 60%;
  max-width: 500px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .access__map {
    width: 100%;
    max-width: 100%;
    height: 240px;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
}
.access__add {
  font-size: 1.8rem;
  margin-bottom: 44px;
}
@media screen and (max-width: 800px) {
  .access__add {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
.access__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .access__title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}
.access__list {
  border-top: 1px solid rgba(4, 0, 0, 0.1);
}
.access__list__item {
  border-bottom: 1px solid rgba(4, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}
@media screen and (max-width: 800px) {
  .access__list__item {
    padding: 12px 0;
    gap: 8px;
  }
}
.access__list__item__icon {
  width: 40px;
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .access__list__item__icon {
    width: 36px;
  }
}

.information {
  padding: 56px 0 80px;
}
@media screen and (max-width: 800px) {
  .information {
    padding-bottom: 32px;
  }
}
.information__logo {
  margin-bottom: 56px;
}
@media screen and (max-width: 800px) {
  .information__logo {
    margin-bottom: 24px;
  }
}
.information__list {
  padding: 32px 0;
  border-top: 1px solid rgba(4, 0, 0, 0.2);
  border-bottom: 1px solid rgba(4, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px 0;
}
@media screen and (max-width: 800px) {
  .information__list {
    padding: 24px 0;
    grid-template-columns: 70px 1fr;
  }
}
.information__list__title {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .information__list__title {
    font-size: 1.4rem;
  }
}
.information__list__text--main {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .information__list__text--main {
    font-size: 2rem;
  }
}

.contact {
  padding: 44px 0 122px;
  position: relative;
  background-color: #84ccc9;
}
@media screen and (max-width: 800px) {
  .contact {
    padding: 32px 0 300px;
    overflow: hidden;
  }
}
.contact::before, .contact::after {
  content: "";
  background-color: #7cc0bd;
  position: absolute;
  z-index: 1;
}
.contact::before {
  width: calc(50% - 306px);
  height: 100%;
  left: 0;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 250px) 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .contact::before {
    width: calc(50% + 63px);
    clip-path: polygon(0 0, calc(100% - 225px) 0, 100% 100%, 0 100%);
  }
}
.contact::after {
  width: calc(50% - 240px);
  height: 277px;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media screen and (max-width: 800px) {
  .contact::after {
    display: none;
  }
}
.contact__bg {
  position: absolute;
  width: 904px;
  height: auto;
  left: calc(50% - 155px);
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .contact__bg {
    width: 428px;
    left: calc(50% - 200px);
    bottom: -138px;
  }
}
.contact .title1 {
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .contact .title1 {
    margin-bottom: 24px;
  }
}
.contact__content {
  border-radius: 8px;
  border: 1px solid #040000;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 32px 24px;
  max-width: 450px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contact__content {
    padding: 24px 20px;
    margin: 0 auto;
    text-align: center;
  }
}
.contact__content::before {
  content: "";
  width: 32px;
  height: 28px;
  background: url(../images/polygon.png) no-repeat center center/contain;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .contact__content::before {
    bottom: -13px;
  }
}
.contact__content::after {
  content: "";
  width: 40px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.contact__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .contact__title {
    font-size: 2rem;
  }
}