@charset "UTF-8";
/* =======================================
 ナレフルブース ページ
 ※ヘッダー構造は既存 .l-header を使用。ここはブース用の上書き
======================================= */

/* 全般 ------------------------------------------------------------ */
html {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Segoe UI",
    "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN",
    YuGothic,
    Meiryo,
    sans-serif !important;
  /* background: #f5f5f5; */
  color: #00004a;
  -webkit-tap-highlight-color: transparent;
  font-variant-ligatures: common-ligatures;
  font-size: 16px; /*以降em指定厳守*/
  font-weight: 400;
  text-overflow: ellipsis;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
img {
  object-fit: contain;
}
a {
  color: #2752b3;
  text-decoration: underline;
}
a:hover,
button:hover {
  opacity: 0.8;
  text-decoration: none;
  cursor: pointer;
}
body {
  line-height: 1.1;
  -webkit-tap-highlight-color: rgba(149, 117, 117, 0.5);
}

.wrapper {
  overflow: hidden !important;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

/* # =================================================================
   # header（ブース用上書き）
   # ※ .l-header--booth で specificity を上げ、style.css を確実に上書き
   # ================================================================= */

.l-header--booth {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.l-header--booth .l-header__inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.l-header--booth .l-header__lead {
  color: #475569;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.l-header--booth .l-header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.l-header--booth .l-header__nav .menu-item a {
  color: #475569;
  font-weight: 600;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (any-hover: hover) {
  .l-header--booth .l-header__nav .menu-item a:hover {
    color: #fe786b;
    opacity: 1;
    text-decoration: none;
    background: transparent;
  }
}

@media screen and (max-width: 768px) {
  .l-header {
    height: 90px;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .l-header--booth .l-header__inner {
    height: 70px;
    padding: 0 30px;
  }

  .l-header--booth .l-header__hgroup {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    position: relative;
  }

  .l-header--booth .l-header__logo {
    width: 250px;
    margin-bottom: 0;
  }

  .l-header--booth .l-header__lead {
    position: static;
    bottom: auto;
    width: auto;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .l-header--booth .l-header__nav {
    margin: 0 32px 0 0;
    height: 100%;
    opacity: 1;
    visibility: visible;
    position: static;
    overflow: visible;
    max-height: none;
    box-shadow: none;
    background: transparent;
    width: auto;
  }

  .l-header--booth .l-header__nav .menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .l-header--booth .l-header__nav .menu-item {
    font-size: 16px;
  }

  .l-header--booth .l-header__nav .menu-item a {
    border-left: none;
    padding: 0;
  }

  .l-header--booth .l-header__nav .menu-item:last-child a {
    border-right: none;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .l-header--booth .l-header__lead {
    font-size: 14px;
  }
  .l-header--booth .l-header__hgroup {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 4px;
  }
}

@media screen and (max-width: 1024px) {
  .l-header--booth .l-header__lead {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {

  .l-header--booth .l-header__nav {
    margin-right: 24px;
  }

  .l-header--booth .l-header__nav .menu {
    gap: 20px;
  }
}

@media screen and (max-width: 490px) {
  .l-header--booth .l-header__logo {
    width: auto;
    max-width: 150px;
  }
}

/* CTA（ブース固有: グラデーション丸ボタン） */
.l-header--booth .l-header__btn {
  display: block;
  background: linear-gradient(to bottom right, #ff4d4d, #ff8c00);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  width: 230px;
  height: 40px;
  padding: 6px 0;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  max-width: 230px;
  gap: 0;
}

.l-header--booth .l-header__btn-label {
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
}

.l-header--booth .l-header__btn-arrow {
  display: none;
}

.l-header--booth .l-header__btn .header-cta-br {
  display: none;
}

@media (any-hover: hover) {
  .l-header--booth .l-header__btn:hover {
    background: linear-gradient(to bottom right, #ff4d4d, #ff8c00);
    color: #fff;
    opacity: 0.8;
  }
}

@media screen and (max-width: 640px) {
  .l-header--booth .l-header__btn {
    width: auto;
    height: auto;
    min-height: 56px;
    max-width: none;
    padding: 8px 14px;
  }

  .l-header--booth .l-header__btn-label {
    font-size: 18px;
    line-height: 1.3;
  }

  .l-header--booth .l-header__btn .header-cta-br.only-sp {
    display: block;
  }
}

footer p {
  color: #fff;
}

.app-wrapper, footer {
  position: relative;
  z-index: 2;
}

.l-footer__nav .menu-item {
  letter-spacing: 0.06em;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.footer {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif !important;
}
/* .footer .inner {
  width: 1200px;
  z-index: 2;
  font-size: 28px;
  font-weight: 900;
} */
@media screen and (max-width: 1200px) {
  .footer .inner {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer .inner {
    font-size: 22px;
  }
}
