a {
  color: inherit;
}

@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP-Bold-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP-Bold-kana.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+3040-309F, U+30A0-30FF, U+30FC, U+3000-303F;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP-Bold-kanji.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+4E00-9FFF;
}

:root {
  font-size: 100px;
  --color-primary: #0046ff;
  --color-primary-dark: #002ea9;
  --color-navy: #0c1a49;
  --color-pickup: #e46196;
  --color-cat01: #4ab675;
  --color-cat02: #d5ab4e;
  --color-access: #9d78cc;
  --color-access-bg: #002b9e;
  --color-panel: #eff6f9;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  :root {
    font-size: 6.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  :root,
  html {
    font-size: 25.44529262086514vw;
  }
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--color-primary);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-primary);
  color: var(--color-navy);
  font-family: "LINE Seed JP", sans-serif;
  font-size: 0.16rem;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  border: 0;
}

button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.l-page {
  position: relative;
  min-width: 14.4rem;
  background: var(--color-primary);
}

.l-page__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background: var(--color-primary);
}

.l-page__bg-image {
  position: absolute;
  left: 2.52rem;
  right: -2.56rem;
  top: -5.1rem;
  aspect-ratio: 1856/1484;
}
.l-page__bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  height: 0.68rem;
  padding: 0 0 0 0.48rem;
}

.l-header__logo {
  display: block;
  width: 3.92rem;
  height: 0.35rem;
}
.l-header__logo img {
  width: 3.92rem;
  height: 0.35rem;
  max-width: none;
  object-fit: contain;
}

.l-main {
  position: relative;
  z-index: 1;
}

.slideUp {
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.slideUp.scrollIn {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .slideUp,
  .slideUp.scrollIn {
    opacity: 1;
    animation: none;
    transform: none;
    transition: none;
  }
}

.l-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  padding: 0.96rem 1.2rem 1.2rem;
  background: #fff;
  border-top: 1px solid #fff;
  content-visibility: auto;
  contain-intrinsic-size: auto 4rem;
  border-bottom: 1px solid #fff;
}

.l-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}

.l-footer__logo {
  display: block;
  width: 3.92rem;
  height: 0.35rem;
}
.l-footer__logo img {
  width: 3.92rem;
  height: 0.35rem;
  max-width: none;
  object-fit: contain;
}

.l-footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.48rem;
  list-style: none;
  font-size: 0.16rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.l-footer__nav a {
  color: #333;
  text-decoration: none;
}
@media screen and (hover: hover) and (pointer: fine) {
  .l-footer__nav a:hover {
    opacity: 0.7;
  }
}

.l-footer__copy {
  font-size: 0.14rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

.c-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  padding: 0.24rem 0.56rem;
  border-radius: 0.48rem;
  position: relative;
  isolation: isolate;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.16rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
@media screen and (hover: hover) and (pointer: fine) {
  .c-btn:hover:not(.c-btn--outline)::before {
    opacity: 1;
  }
}

.c-btn__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 0.24rem;
  background: #fff;
}
.c-btn__icon img {
  width: 0.16rem;
  height: 0.16rem;
  max-width: none;
}

.c-btn--outline {
  padding: 0.24rem 0.16rem 0.24rem 0.24rem;
  background: #fff;
  border: 1px solid var(--color-primary);
  box-shadow: none;
  color: var(--color-primary);
}
.c-btn--outline::before {
  content: none;
}
.c-btn--outline .c-btn__icon {
  background: var(--color-primary);
}
.c-btn--outline .c-btn__icon img {
  width: 0.12rem;
  height: 0.12rem;
}

.c-btn--sm {
  width: 1.27rem;
  padding: 0.08rem 0.16rem;
  border-radius: 0.3rem;
  box-shadow: none;
  background: var(--color-primary);
  font-size: 0.14rem;
  line-height: 1;
}
.c-btn--sm::before {
  content: none;
}
.c-btn--sm .c-btn__icon {
  position: relative;
  width: 0.16rem;
  height: 0.16rem;
  overflow: visible;
  border-radius: 0.16rem;
  background: transparent;
}
.c-btn--sm .c-btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  height: 0.2rem;
  background: #fff;
  transform: translate(-50%, -50%);
  mask: url("../img/icon/chevron-down.svg") center / contain no-repeat;
  -webkit-mask: url("../img/icon/chevron-down.svg") center / contain no-repeat;
}
.c-btn--sm.c-btn--outline {
  width: 1.29rem;
  background: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  transition: background-color 0.4s ease;
}
.c-btn--sm.c-btn--outline .c-btn__icon {
  overflow: visible;
  background: transparent;
}
.c-btn--sm.c-btn--outline .c-btn__icon::after {
  position: static;
  width: 0.16rem;
  height: 0.16rem;
  background: var(--color-primary);
  transform: none;
  mask: url("../img/icon/external-link.svg") center / contain no-repeat;
  -webkit-mask: url("../img/icon/external-link.svg") center / contain no-repeat;
}
@media screen and (hover: hover) and (pointer: fine) {
  .c-btn--sm.c-btn--outline:hover {
    background: #e8eaf7;
  }
}

.c-btn--access {
  height: 0.5rem;
  padding: 0 0.24rem;
}

.c-tab {
  --tab-accent: var(--color-pickup);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.24rem;
  border-radius: 0.24rem;
  background: #fff;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.c-tab--pickup {
  width: 4.82rem;
}

.c-tab--cat01 {
  --tab-accent: var(--color-cat01);
  width: 2.95rem;
}

.c-tab--cat02 {
  --tab-accent: var(--color-cat02);
  width: 3.97rem;
}

.c-tab__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
}

.c-tab__title {
  color: var(--tab-accent);
  font-size: 0.22rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.c-tab__arrow {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 0.34rem;
  height: 0.34rem;
  min-width: 0.34rem;
  min-height: 0.34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--tab-accent);
  transition: background-color 0.25s ease;
}
.c-tab__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.12rem;
  height: 0.12rem;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(90deg);
  mask-image: url("../img/icon/arrow-right-white.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 0.105rem 0.09rem;
  -webkit-mask-image: url("../img/icon/arrow-right-white.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0.105rem 0.09rem;
  transition: background-color 0.25s ease;
}

@media screen and (hover: hover) and (pointer: fine) {
  .c-tab:hover {
    background: var(--tab-accent);
  }
  .c-tab:hover .c-caption {
    background: var(--tab-accent);
  }
  .c-tab:hover .c-tab__title {
    color: #fff;
  }
  .c-tab:hover .c-tab__arrow {
    background: #fff;
  }
  .c-tab:hover .c-tab__arrow::after {
    background-color: var(--tab-accent);
  }
}
.c-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  color: var(--color-primary);
  font-size: 0.16rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.04rem;
  white-space: nowrap;
}
@media screen and (hover: hover) and (pointer: fine) {
  .l-header__logo:hover,
  .l-footer__logo:hover,
  .c-link:hover {
    opacity: 0.8;
  }
}

.c-link__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.16rem;
  height: 0.16rem;
  overflow: hidden;
  border-radius: 0.16rem;
  background: var(--color-primary);
}
.c-link__icon::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  background: #fff;
  mask: url("../img/icon/chevron-down.svg") center / contain no-repeat;
  -webkit-mask: url("../img/icon/chevron-down.svg") center / contain no-repeat;
}

.c-caption {
  --caption-accent: var(--color-pickup);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.04rem 0.08rem;
  border-radius: 0.24rem;
  background: var(--caption-accent);
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-size: 0.14rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}
.c-caption--pickup {
  --caption-accent: var(--color-pickup);
}
.c-caption--cat01 {
  --caption-accent: var(--color-cat01);
}
.c-caption--cat02 {
  --caption-accent: var(--color-cat02);
}
.c-caption--access {
  --caption-accent: var(--color-access);
}
.c-tab .c-caption {
  --caption-accent: var(--tab-accent);
}

.c-date {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.34rem;
  letter-spacing: 0.0102em;
  line-height: 1;
  white-space: nowrap;
}
.c-date__md,
.c-date__hyphen {
  font-size: 0.42rem;
  letter-spacing: 0.0126em;
}
.c-date__wd {
  font-size: 0.23rem;
  font-weight: 400;
  letter-spacing: 0.0069em;
}
.c-date__hyphen {
  font-weight: 400;
}

.c-date--sm {
  color: #000;
  font-size: 0.27rem;
  letter-spacing: 0.0081em;
}
.c-date--sm .c-date__md,
.c-date--sm .c-date__hyphen {
  font-size: 0.35rem;
  letter-spacing: 0.0105em;
}
.c-date--sm .c-date__wd {
  font-size: 0.19rem;
  letter-spacing: 0.0057em;
}

.c-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 2.5rem;
  padding: 0.24rem;
  overflow: hidden;
  border-radius: 0.16rem;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.c-card__main {
  display: flex;
  gap: 0.24rem;
  align-items: flex-start;
  width: 100%;
}

.c-card.is-open .c-card__main {
  align-items: center;
}

.c-card__img {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  overflow: hidden;
  border-radius: 0.05rem;
}
.c-card__img img {
  width: 1.6rem;
  height: 1.6rem;
  max-width: none;
  object-fit: cover;
}

.c-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  min-width: 0;
}

.c-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  width: 100%;
}

.c-card__catch {
  overflow: hidden;
  width: 100%;
  color: #000;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1.7;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-card__title {
  width: 100%;
  color: #333;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.35;
}

.c-card__company {
  width: 100%;
  color: #000;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1.7;
}

.c-card__actions {
  display: flex;
  gap: 0.16rem;
  align-items: center;
  width: 100%;
}

.c-card__actions .c-btn--outline {
  display: none;
}

.c-card__detail {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  color: #000;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.0064rem;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-card.is-open .c-card__detail {
  grid-template-rows: 1fr;
}

.c-card__detail-inner {
  min-height: 0;
  overflow: hidden;
}

.c-card__detail p {
  padding-top: 0.24rem;
  opacity: 0;
  transition: opacity 0.25s ease 0.05s;
}

.c-card.is-open .c-card__detail p {
  opacity: 1;
}

.c-card .js-card-toggle .c-btn__icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-card.is-open .js-card-toggle .c-btn__icon {
  transform: scaleY(-1);
}

.p-hero {
  position: relative;
  width: 100%;
  max-width: 19.2rem;
  margin: 0 auto;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--color-primary);
  container-type: inline-size;
}

.p-hero__container {
  position: absolute;
  inset: 0;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.p-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.p-hero__lead {
  position: absolute;
  top: calc(206 / 840 * 100%);
  left: calc(120 / 1440 * 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(8 / 1440 * 100cqi);
}

.p-hero__line {
  display: flex;
  align-items: center;
  padding: calc(8 / 1440 * 100cqi);
  background: var(--color-primary);
  color: #fff;
  font-size: calc(72 / 1440 * 100cqi);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(calc(-40 / 1440 * 100cqi));
  animation: p-hero-fade-in 0.8s ease-out both;
}
.p-hero__line:nth-child(1) {
  animation-delay: 0.2s;
}
.p-hero__line:nth-child(2) {
  animation-delay: 0.35s;
}
.p-hero__line:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes p-hero-fade-in {
  from {
    opacity: 0;
    transform: translateX(calc(-40 / 1440 * 100cqi));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__line {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.p-hero__butterfly {
  position: absolute;
  top: calc(170 / 840 * 100%);
  left: calc(88 / 1440 * 100%);
  z-index: 2;
  width: calc(51.66 / 1440 * 100%);
  height: calc(50 / 840 * 100%);
  overflow: hidden;
  pointer-events: none;
}
.p-hero__butterfly picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-hero__butterfly img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: rotate(-6.18deg);
}

.p-hero__mascot {
  position: absolute;
  top: calc(115 / 840 * 100%);
  left: calc(890 / 1440 * 100%);
  width: calc(468 / 1440 * 100%);
  height: calc(533 / 840 * 100%);
  pointer-events: none;
}
.p-hero__mascot.is-animated {
  animation: p-hero-float-y 2.8s ease-in-out infinite alternate-reverse;
}
.p-hero__mascot img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

@keyframes p-hero-float-y {
  from {
    transform: translateY(-5%);
  }
  to {
    transform: translateY(5%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__mascot,
  .p-hero__mascot.is-animated {
    animation: none;
  }
}

.p-hero__logo {
  position: absolute;
  top: calc(532 / 840 * 100%);
  left: calc(120 / 1440 * 100%);
  width: calc(254 / 1440 * 100%);
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
.p-hero__logo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-hero__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.p-summary {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.64rem;
  width: 12rem;
  margin: 1.2rem auto 1.73rem;
  padding: 1.2rem 0;
  border-radius: 0.48rem;
  background: #fff;
}

.p-summary__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.48rem;
  width: 100%;
}

.p-summary__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.56rem;
  width: 100%;
}

.p-summary__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  width: 100%;
}

.p-summary__logo {
  width: 5.84rem;
  height: 0.58rem;
}
.p-summary__logo img {
  width: 5.84rem;
  height: 0.58rem;
  max-width: none;
  object-fit: contain;
}

.p-summary__heading {
  width: 100%;
  color: var(--color-navy);
  font-size: 0.35rem;
  font-weight: 700;
  text-align: center;
}

.p-summary__lead {
  color: var(--color-navy);
  font-size: 0.24rem;
  font-weight: 700;
  text-align: center;
}

.p-summary__meta {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.24rem;
  width: 5.84rem;
  padding: 0.48rem 0;
  border-radius: 0.24rem;
  background: var(--color-panel);
}

.p-summary__time {
  color: var(--color-navy);
  font-size: 0.28rem;
  font-weight: 700;
  white-space: nowrap;
}

.p-summary__venue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  color: var(--color-navy);
  text-align: center;
  white-space: nowrap;
}

.p-summary__place {
  font-size: 0.32rem;
  font-weight: 400;
}

.p-summary__booth {
  font-size: 0.16rem;
  font-weight: 400;
}

.p-summary__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
}

.p-exhibit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.2rem;
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: auto 40rem;
}

.p-exhibit__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.24rem;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.p-exhibit__en {
  font-family: "Audiowide", sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1;
}

.p-exhibit__ja {
  font-size: 0.24rem;
  font-weight: 700;
}

.p-exhibit__nav {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 0;
}

.p-exhibit__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 12rem;
}

.p-exhibit__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.p-exhibit__pickup {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  width: 12rem;
  padding: 0.48rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
}

.p-exhibit__pickup-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
  width: 100%;
}

.p-exhibit__pickup-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.p-exhibit__pickup-title {
  width: 100%;
  font-size: 0.3rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-exhibit__pickup-en {
  font-family: "Audiowide", sans-serif;
  font-size: 0.28rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.p-exhibit__pickup-card {
  box-sizing: border-box;
  display: flex;
  gap: 0.24rem;
  align-items: flex-start;
  width: 100%;
  padding: 0.48rem;
  border-radius: 0.4rem;
  background: #fff;
}

.p-exhibit__pickup-img {
  flex-shrink: 0;
  width: 2.78rem;
  height: 2.78rem;
  overflow: hidden;
  border-radius: 0.05rem;
}
.p-exhibit__pickup-img img {
  width: 2.78rem;
  height: 2.78rem;
  max-width: none;
  object-fit: cover;
}

.p-exhibit__pickup-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
  min-width: 0;
  align-self: stretch;
}

.p-exhibit__pickup-heading {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  width: 100%;
}

.p-exhibit__pickup-catch {
  overflow: hidden;
  width: 100%;
  color: #000;
  font-size: 0.18rem;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-exhibit__pickup-name {
  overflow: hidden;
  width: 100%;
  color: #000;
  font-size: 0.32rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-exhibit__pickup-company {
  width: 100%;
  color: #000;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1.7;
}

.p-exhibit__pickup-desc {
  width: 100%;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1.7;
}

.p-exhibit__pickup-actions {
  display: none;
}

.p-exhibit__category {
  box-sizing: border-box;
  display: flex;
  gap: 0.32rem;
  align-items: flex-start;
  justify-content: center;
  width: 12rem;
  padding: 0.48rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
}

.p-exhibit__category-head {
  position: sticky;
  top: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
  width: 4.08rem;
  flex-shrink: 0;
}

.p-exhibit__category-ja {
  width: 100%;
  font-size: 0.3rem;
  font-weight: 700;
}

.p-exhibit__category-en {
  width: 100%;
  font-family: "Audiowide", sans-serif;
  font-size: 0.28rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.p-exhibit__category-list {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  width: 6.64rem;
  flex-shrink: 0;
}

.p-access {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.96rem 0;
  background: var(--color-access-bg);
  content-visibility: auto;
  contain-intrinsic-size: auto 8rem;
}

.p-access__panel {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 12rem;
  height: 4.7rem;
  overflow: hidden;
  padding-left: 0.72rem;
  border-radius: 0.4rem;
  background: #e8e8eb;
}

.p-access__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  flex-shrink: 0;
}

.p-access__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
}

.p-access__datetime {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
}

.p-access__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.24rem;
}

.p-access__logo {
  width: 4.4rem;
  height: 0.44rem;
}
.p-access__logo img {
  width: 4.4rem;
  height: 0.44rem;
  max-width: none;
  object-fit: contain;
}

.p-access__time {
  color: #000;
  font-size: 0.18rem;
  font-weight: 700;
}

.p-access__venue {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  white-space: nowrap;
}

.p-access__place {
  color: #000;
  font-size: 0.26rem;
  font-weight: 700;
}

.p-access__booth {
  color: var(--color-navy);
  font-size: 0.16rem;
  font-weight: 400;
}

.p-access__buttons {
  display: flex;
  align-items: flex-start;
  gap: 0.24rem;
}

.p-access__map {
  position: relative;
  width: 5.47rem;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0.4rem 0.4rem 0;
  flex-shrink: 0;
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-floating {
  position: fixed;
  top: auto;
  bottom: 0.25rem;
  right: 0.34rem;
  z-index: 100;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  width: 5.1rem;
  height: 0.8rem;
  padding: 0 0.4rem;
  border: 1px solid #ec6601;
  border-radius: 0.48rem;
  background: linear-gradient(90deg, #e40509 0%, #ec6601 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.p-floating::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ec6601 0%, #e40509 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.p-floating > * {
  position: relative;
  z-index: 1;
}
@media screen and (hover: hover) and (pointer: fine) {
  .p-floating:hover {
    border-color: #fff;
    box-shadow: none;
  }
  .p-floating:hover::before {
    opacity: 1;
  }
}

.p-floating__lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2.025rem;
  height: 0.48rem;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.p-floating__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 2.025rem;
  height: 0.36rem;
}

.p-floating__label {
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.p-floating__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 0.16rem;
  background: #fff;
  box-shadow: 0 2px 2px rgba(15, 23, 42, 0.1);
}
.p-floating__icon img {
  width: 0.16rem;
  height: 0.16rem;
  max-width: none;
}

.u-sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scrollbar-gutter: auto;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    overflow-x: hidden;
  }

  .u-sp-only {
    display: revert;
  }

  br.u-sp-only {
    display: block;
  }

  .l-page {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .l-page__bg-image {
    left: -1.26rem;
    right: auto;
    top: -2.63rem;
    width: 7.09rem;
    aspect-ratio: 709 / 567;
  }

  .l-header {
    display: flex;
    justify-content: center;
    height: 0.46rem;
    padding: 0.24rem 0 0;
  }

  .l-header__logo,
  .l-header__logo img {
    width: 2.42rem;
    height: 0.22rem;
  }

  .l-footer {
    box-sizing: border-box;
    min-height: 4.7rem;
    justify-content: center;
    gap: 0.32rem;
    padding: 0.16rem 0.24rem 0.76rem;
  }

  .l-footer__content {
    gap: 0.4rem;
  }

  .l-footer__logo,
  .l-footer__logo img {
    width: 2.42rem;
    height: 0.22rem;
  }

  .l-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.24rem;
    font-size: 0.14rem;
    white-space: normal;
  }

  .l-footer__copy {
    font-size: 0.1rem;
    white-space: normal;
  }

  .c-btn--sm {
    width: auto;
    gap: 0.04rem;
    padding: 0.06rem 0.08rem;
    font-size: 0.1rem;
  }

  .c-btn--sm .c-btn__icon {
    width: 0.1rem;
    height: 0.1rem;
  }

  .c-btn--sm .c-btn__icon::after {
    width: 0.2rem;
    height: 0.2rem;
  }

  .c-btn--sm.c-btn--outline {
    width: auto;
  }

  .c-btn--sm.c-btn--outline .c-btn__icon::after {
    position: static;
    width: 0.1rem;
    height: 0.1rem;
    transform: none;
  }

  .c-btn--access {
    height: 0.42rem;
    padding: 0 0.16rem;
    font-size: 0.13rem;
  }

  .c-tab,
  .c-tab--pickup,
  .c-tab--cat01,
  .c-tab--cat02 {
    width: 100%;
    min-height: 0.85rem;
    padding: 0.16rem;
    border-radius: 0.16rem;
  }

  .c-tab__body {
    gap: 0.08rem;
  }

  .c-tab__title {
    font-size: 0.16rem;
  }

  .c-caption {
    padding: 0.02rem 0.06rem;
    font-size: 0.11rem;
  }

  .c-card {
    min-width: 0;
    padding: 0.16rem;
  }

  .c-card__main {
    gap: 0.16rem;
  }

  .c-card.is-open .c-card__main {
    align-items: flex-start;
  }

  .c-card__img,
  .c-card__img img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .c-card__body {
    gap: 0.08rem;
    justify-content: flex-start;
  }

  .c-card__text {
    gap: 0.02rem;
  }

  .c-card__catch {
    font-size: 0.13rem;
  }

  .c-card__title {
    font-size: 0.16rem;
  }

  .c-card__company {
    font-size: 0.13rem;
    line-height: 1.4;
    white-space: normal;
  }

  .c-card__detail {
    font-size: 0.12rem;
    letter-spacing: 0;
  }

  .c-card__detail p {
    padding-top: 0.16rem;
  }

  .p-hero {
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
  }

  .p-hero__bg img {
    object-position: 68% top;
  }

  .p-hero__lead {
    top: calc(104 / 852 * 100%);
    left: calc(50% - 22 / 393 * 100%);
    transform: translateX(-50%);
    gap: calc(8 / 393 * 100cqi);
  }

  .p-hero__butterfly {
    top: calc(82 / 852 * 100%);
    left: calc(12 / 393 * 100%);
    width: calc(33 / 393 * 100%);
    height: calc(32 / 852 * 100%);
  }

  .p-hero__line {
    padding: calc(8 / 393 * 100cqi);
    font-size: calc(34 / 393 * 100cqi);
  }

  .p-hero__mascot {
    top: calc(367 / 852 * 100%);
    left: calc(50% + 10 / 393 * 100%);
    width: calc(301 / 393 * 100%);
    height: calc(343 / 852 * 100%);
    transform: translateX(-50%);
  }
  .p-hero__mascot.is-animated {
    animation-name: p-hero-float-y-sp;
  }

  .p-hero__logo {
    top: calc(280 / 852 * 100%);
    left: calc(236 / 393 * 100%);
    width: calc(125 / 393 * 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .p-summary {
    width: 100%;
    margin: 0.48rem auto 0;
    padding: 0.56rem 0;
    gap: 0.4rem;
    border-radius: 0.24rem;
  }

  .p-summary__content {
    gap: 0.4rem;
  }

  .p-summary__text {
    gap: 0.32rem;
  }

  .p-summary__description {
    gap: 0.32rem;
    padding: 0 0.24rem;
  }

  .p-summary__logo,
  .p-summary__logo img {
    width: 2.6rem;
    height: 0.26rem;
  }

  .p-summary__heading {
    font-size: 0.24rem;
  }

  .p-summary__lead {
    font-size: 0.16rem;
  }

  .p-summary__meta {
    width: 3.27rem;
    padding: 0.4rem 0;
    border-radius: 0.24rem;
  }

  .c-date {
    font-size: 0.21rem;
    letter-spacing: 0.03em;
  }

  .c-date__md,
  .c-date__hyphen {
    font-size: 0.29rem;
    letter-spacing: 0.03em;
  }

  .c-date__wd {
    font-size: 0.1rem;
    letter-spacing: 0.03em;
  }

  .p-summary__time {
    font-size: 0.2rem;
  }

  .p-summary__venue {
    flex-direction: column;
    gap: 0.16rem;
    white-space: normal;
  }

  .p-summary__place {
    font-size: 0.24rem;
  }

  .p-summary__booth {
    font-size: 0.14rem;
  }

  .p-exhibit {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-exhibit__title {
    gap: 0.16rem;
    padding: 0.48rem 0;
  }

  .p-exhibit__en {
    font-size: 0.38rem;
  }

  .p-exhibit__ja {
    font-size: 0.16rem;
  }

  .p-exhibit__nav {
    align-items: stretch;
    padding: 0 0.16rem;
  }

  .p-exhibit__tabs {
    flex-direction: column;
    gap: 0.16rem;
    width: 100%;
  }

  .p-exhibit__blocks {
    gap: 0.32rem;
    padding-top: 0.32rem;
  }

  .p-exhibit__pickup {
    width: 100%;
    gap: 0.24rem;
    padding: 0.24rem 0.16rem;
    border-radius: 0.24rem;
  }

  .p-exhibit__pickup-head {
    margin-bottom: 0;
  }

  .p-exhibit__pickup-title {
    font-size: 0.18rem;
  }

  .p-exhibit__pickup-en {
    font-size: 0.13rem;
    text-align: left;
  }

  .p-exhibit__pickup-card {
    display: grid;
    grid-template-columns: 0.9rem 1fr;
    gap: 0.16rem 0.08rem;
    padding: 0.16rem;
    border-radius: 0.16rem;
  }

  .p-exhibit__pickup-img,
  .p-exhibit__pickup-img img {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 0.16rem;
  }

  .p-exhibit__pickup-body {
    display: contents;
  }

  .p-exhibit__pickup-heading {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    min-width: 0;
    gap: 0.08rem;
  }

  .p-exhibit__pickup-catch {
    font-size: 0.13rem;
  }

  .p-exhibit__pickup-name {
    font-size: 0.16rem;
  }

  .p-exhibit__pickup-company {
    font-size: 0.13rem;
  }

  .p-exhibit__pickup-desc {
    grid-column: 1 / -1;
    font-size: 0.16rem;
    line-height: 1.9;
  }

  .p-exhibit__pickup-actions {
    grid-column: 1 / -1;
  }

  .p-exhibit__pickup-actions .c-btn--sm {
    font-size: 0.12rem;
  }

  .p-exhibit__category {
    flex-direction: column;
    width: 100%;
    padding: 0.32rem 0.16rem;
    gap: 0.24rem;
    border-radius: 0.24rem;
  }

  .p-exhibit__category-head {
    position: static;
    top: auto;
    width: 100%;
    padding: 0 0.08rem;
  }

  .p-exhibit__category-ja {
    font-size: 0.18rem;
  }

  .p-exhibit__category-en {
    font-size: 0.13rem;
  }

  .p-exhibit__category-list {
    width: 100%;
  }

  .p-access {
    padding: 0.24rem 0.16rem;
  }

  .p-access__panel {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    padding-left: 0;
    border-radius: 0.24rem;
  }

  .p-access__info {
    box-sizing: border-box;
    align-items: center;
    gap: 0.24rem;
    width: 100%;
    padding: 0.24rem 0.4rem;
  }

  .p-access__title {
    align-items: center;
    width: 100%;
  }

  .p-access__title .c-caption {
    align-self: flex-start;
  }

  .p-access__logo,
  .p-access__logo img {
    width: 2.5rem;
    height: 0.25rem;
  }

  .p-access__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
  }

  .c-date--sm {
    font-size: 0.17rem;
    letter-spacing: 0.03em;
  }

  .c-date--sm .c-date__md {
    font-size: 0.25rem;
    letter-spacing: 0.03em;
  }

  .c-date--sm .c-date__wd {
    font-size: 0.11rem;
    letter-spacing: 0.03em;
  }

  .c-date--sm .c-date__hyphen {
    font-size: 0.27rem;
    letter-spacing: 0.03em;
  }

  .p-access__time {
    margin-top: 0;
    font-size: 0.15rem;
  }

  .p-access__venue {
    flex-direction: column;
    gap: 0.04rem;
    margin-top: 0;
    white-space: normal;
  }

  .p-access__place {
    font-size: 0.22rem;
  }

  .p-access__booth {
    font-size: 0.13rem;
  }

  .p-access__buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.16rem;
  }

  .p-access__buttons .c-btn--access:not(.c-btn--outline) {
    width: 1.98rem;
    justify-content: space-between;
  }

  .p-access__buttons .c-btn--outline {
    width: 1.27rem;
  }

  .p-access__map {
    width: 100%;
    height: 3.75rem;
    border-radius: 0 0 0.24rem 0.24rem;
  }

  .p-floating {
    top: auto;
    right: auto;
    bottom: calc(0.24rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    width: calc(100% - 0.5rem);
    max-width: 3.43rem;
    height: 0.64rem;
    padding: 0.16rem 0.4rem;
    gap: 0.24rem;
    transform: translateX(-50%);
  }

  .p-floating__lead {
    width: auto;
    height: auto;
    font-size: 0.12rem;
  }

  .p-floating__action {
    width: auto;
    height: auto;
    gap: 0.08rem;
    justify-content: flex-start;
  }

  .p-floating__label {
    font-size: 0.16rem;
  }
}

@keyframes p-hero-float-y-sp {
  from {
    transform: translateX(-50%) translateY(-5%);
  }
  to {
    transform: translateX(-50%) translateY(5%);
  }
}

@media screen and (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .p-hero__mascot,
  .p-hero__mascot.is-animated {
    animation: none;
    transform: translateX(-50%);
  }
}
