/* 出展社・プレスの方へ — ヒーロー */

.pressHero {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.pressHero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pressHero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.pressHero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pressHero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 220px;
  padding: 36px var(--sp-pad-x, 16px) 40px;
  text-align: center;
}

.pressHero__title {
  margin: 0;
  color: #ffffff;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.pressHero__en {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

@media (min-width: 541px) {
  .pressHero {
    height: 240px;
    min-height: 240px;
  }

  .pressHero__inner {
    min-height: 100%;
    height: 100%;
    padding: 20px 24px 24px;
  }
}

@media (min-width: 951px) {
  .pressHero__inner {
    padding-left: 7%;
    padding-right: 7%;
  }
}

@media (max-width: 540px) {
  .pressHero__en {
    margin-top: 8px;
  }
}

/* プレスページ本文：ヒーロー直下の各セクションを交互の背景に（.pressHero は対象外） */
.pressSectionBand--light {
  background-color: #ffffff;
}

.pressSectionBand--muted {
  background-color: #f5f6fa;
}

/* 特別協力（プレス／出展社ページ Figma）：見出し＋二色ライン＋リード文。横幅は % 指定 */
.spCoopSec--pressLead {
  --press-pad-x: 40px;
  padding: 48px var(--press-pad-x) 56px;
}

.spCoopSec--pressLead .spCoopSec__head--pressLead {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.spCoopSec--pressLead .spCoopSec__headInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* 見出しタイポは .sectionTitleA（開催概要のセクション見出しと同一） */

.spCoopSec--pressLead .spCoopSec__rule--split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.spCoopSec--pressLead .spCoopSec__ruleSeg {
  display: block;
  width: 20px;
  height: 5px;
  transform: skewX(-28.6deg);
}

.spCoopSec--pressLead .spCoopSec__ruleSeg--dark {
  background-color: #231815;
}

.spCoopSec--pressLead .spCoopSec__ruleSeg--accent {
  background-color: #d80c18;
  margin-left: -1px;
}

.spCoopSec--pressLead .spCoopSec__lead {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.spCoopSec--pressLead .spCoopSec__leadPara {
  margin: 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  text-align: left;
}

/* 段落間は Figma の <br /> 相当 */
.spCoopSec--pressLead .spCoopSec__leadPara:not(:last-child) {
  margin-bottom: 0.6em;
}

@media (min-width: 951px) {
  .spCoopSec--pressLead {
    --press-pad-x: 7%;
  }

  .spCoopSec--pressLead .spCoopSec__leadPara {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .spCoopSec--pressLead {
    --press-pad-x: var(--sp-pad-x, 16px);
    padding-top: 40px;
    padding-bottom: 48px;
  }
}

/* 申し込みスケジュール（Figma 226:17975）— 灰背景・見出し・リード・画像・締切表示 */
.pressSchedule {
  --press-schedule-pad-x: 40px;
  box-sizing: border-box;
  width: 100%;
  padding: 60px var(--press-schedule-pad-x) 80px;
  background-color: #f5f6fa;
}

.pressSchedule__inner {
  box-sizing: border-box;
  max-width: none;
  margin: 0 auto;
}

.pressSchedule__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.pressSchedule__headInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pressSchedule__rule--split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.pressSchedule__ruleSeg {
  display: block;
  width: 20px;
  height: 5px;
  transform: skewX(-28.6deg);
}

.pressSchedule__ruleSeg--dark {
  background-color: #231815;
}

.pressSchedule__ruleSeg--accent {
  background-color: #d80c18;
  margin-left: -1px;
}

.pressSchedule__intro {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 32px;
}

.pressSchedule__introPara {
  margin: 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  text-align: left;
}

.pressSchedule__introPara + .pressSchedule__introPara {
  margin-top: 0.6em;
}

.pressSchedule__figure {
  margin: 0 auto 32px;
  padding: 0;
  max-width: 766px;
}

.pressSchedule__image {
  display: block;
  width: 100%;
  height: auto;
}

.pressSchedule__closed {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 336px;
  min-height: 60px;
  margin: 0 auto;
  padding: 16px 32px;
  background-color: #9b9b9b;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
}

@media (min-width: 951px) {
  .pressSchedule {
    --press-schedule-pad-x: 7%;
  }

  .pressSchedule__introPara {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .pressSchedule {
    --press-schedule-pad-x: var(--sp-pad-x, 16px);
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .pressSchedule__closed {
    max-width: 100%;
    font-size: 16px;
    min-height: 52px;
    padding: 14px 20px;
  }
}

/* プレスの方へ（Figma 226:17990）— 白背景・中央テキスト・ダークCTA */
.pressMedia {
  --press-media-pad-x: 40px;
  box-sizing: border-box;
  width: 100%;
  padding: 60px var(--press-media-pad-x) 80px;
}

.pressMedia__inner {
  box-sizing: border-box;
  max-width: none;
  margin: 0 auto;
}

.pressMedia__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.pressMedia__headInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pressMedia__rule--split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.pressMedia__ruleSeg {
  display: block;
  width: 20px;
  height: 5px;
  transform: skewX(-28.6deg);
}

.pressMedia__ruleSeg--dark {
  background-color: #231815;
}

.pressMedia__ruleSeg--accent {
  background-color: #d80c18;
  margin-left: -1px;
}

.pressMedia__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.pressMedia__note {
  box-sizing: border-box;
  width: 100%;
  max-width: 880px;
  margin: 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  text-align: center;
}

/* サイドメニュー .sideNav__ctaLink と同型（sidebar 外のため cqw を px で近似） */
.pressMedia__cta {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  min-height: 104px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid #000000;
  background-color: #141414;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.pressMedia__cta::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -220%;
  z-index: 0;
  width: 170%;
  height: 190%;
  background-color: #ffffff;
  transform: skewX(-24deg);
  transition: left 0.22s ease-out;
  pointer-events: none;
}

.pressMedia__cta::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-bottom: 12px solid #d80c18;
  border-left: 12px solid transparent;
  pointer-events: none;
}

.pressMedia__cta:hover,
.pressMedia__cta:focus-visible {
  color: #000000;
  opacity: 1;
}

.pressMedia__cta:hover::after,
.pressMedia__cta:focus-visible::after {
  left: -20%;
}

.pressMedia__cta:focus-visible {
  outline: 2px solid #d80c18;
  outline-offset: 2px;
}

.pressMedia__ctaLabel {
  position: relative;
  z-index: 1;
  display: block;
}

@media (min-width: 951px) {
  .pressMedia {
    --press-media-pad-x: 7%;
  }

  .pressMedia__note {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .pressMedia {
    --press-media-pad-x: var(--sp-pad-x, 16px);
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .pressMedia__body {
    gap: 40px;
  }

  .pressMedia__cta {
    max-width: 100%;
    min-height: 104px;
    padding: 13px 12px;
    font-size: 16px;
  }
}

/* 資料ダウンロード（Figma 226:18004）— auto-fit グリッドで件数増加に対応 */
.pressDownload {
  --press-download-pad-x: 40px;
  box-sizing: border-box;
  width: 100%;
  padding: 60px var(--press-download-pad-x) 80px;
}

.pressDownload__inner {
  box-sizing: border-box;
  max-width: none;
  margin: 0 auto;
}

.pressDownload__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.pressDownload__headInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pressDownload__rule--split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.pressDownload__ruleSeg {
  display: block;
  width: 20px;
  height: 5px;
  transform: skewX(-28.6deg);
}

.pressDownload__ruleSeg--dark {
  background-color: #231815;
}

.pressDownload__ruleSeg--accent {
  background-color: #d80c18;
  margin-left: -1px;
}

.pressDownload__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pressDownload__item {
  display: flex;
  flex: 1 1 16.875rem;
  max-width: 20.5rem;
  min-width: 0;
}

.pressDownloadCard {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  min-height: 100%;
}

.pressDownloadCard__thumbLink {
  display: block;
  flex-shrink: 0;
  margin: 0 0 12px;
  border: 1px solid #000000;
  aspect-ratio: 271 / 383;
  overflow: hidden;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.pressDownloadCard__thumbLink:hover,
.pressDownloadCard__thumbLink:focus-visible {
  opacity: 0.92;
}

.pressDownloadCard__thumbLink:focus-visible {
  outline: 2px solid #d80c18;
  outline-offset: 3px;
}

.pressDownloadCard__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pressDownloadCard__body {
  flex: 1 1 auto;
  min-width: 0;
}

.pressDownloadCard__title {
  margin: 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  text-align: center;
}

.pressDownloadCard__meta {
  margin: 6px 0 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}

.pressDownloadCard__btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 47px;
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid #000000;
  background-color: #141414;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.pressDownloadCard__btn::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -220%;
  z-index: 0;
  width: 170%;
  height: 190%;
  background-color: #ffffff;
  transform: skewX(-24deg);
  transition: left 0.22s ease-out;
  pointer-events: none;
}

.pressDownloadCard__btn::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-bottom: 10px solid #d80c18;
  border-left: 10px solid transparent;
  pointer-events: none;
}

.pressDownloadCard__btn:hover,
.pressDownloadCard__btn:focus-visible {
  color: #000000;
  opacity: 1;
}

.pressDownloadCard__btn:hover::after,
.pressDownloadCard__btn:focus-visible::after {
  left: -20%;
}

.pressDownloadCard__btn:focus-visible {
  outline: 2px solid #d80c18;
  outline-offset: 2px;
}

.pressDownloadCard__btnLabel {
  position: relative;
  z-index: 1;
}

@media (min-width: 951px) {
  .pressDownload {
    --press-download-pad-x: 7%;
  }

  .pressDownloadCard__title,
  .pressDownloadCard__meta {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .pressDownload {
    --press-download-pad-x: var(--sp-pad-x, 16px);
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .pressDownload__list {
    gap: 28px;
  }

  .pressDownload__item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pressDownloadCard__btn {
    min-height: 44px;
    font-size: 15px;
  }
}

/* 専用素材ダウンロード（Figma 226:18035 / Frame 1720）— リード・横並びCTA×2・右下タイヤ痕風デコ */
.pressAssets {
  --press-assets-pad-x: 40px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 60px var(--press-assets-pad-x) 80px;
  overflow: hidden;
}

.pressAssets__deco {
  position: absolute;
  right: -12%;
  bottom: -18%;
  z-index: 0;
  width: min(72vw, 560px);
  height: min(55vw, 440px);
  opacity: 0.16;
  pointer-events: none;
  background: repeating-linear-gradient(
    -28deg,
    rgba(34, 34, 34, 0) 0,
    rgba(34, 34, 34, 0) 16px,
    rgba(34, 34, 34, 0.11) 16px,
    rgba(34, 34, 34, 0.11) 22px
  );
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at 88% 72%, #000 32%, transparent 70%);
  mask-image: radial-gradient(ellipse 72% 78% at 88% 72%, #000 32%, transparent 70%);
}

.pressAssets__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: none;
  margin: 0 auto;
}

.pressAssets__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.pressAssets__headInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pressAssets__rule--split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.pressAssets__ruleSeg {
  display: block;
  width: 20px;
  height: 5px;
  transform: skewX(-28.6deg);
}

.pressAssets__ruleSeg--dark {
  background-color: #231815;
}

.pressAssets__ruleSeg--accent {
  background-color: #d80c18;
  margin-left: -1px;
}

.pressAssets__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.pressAssets__lead {
  box-sizing: border-box;
  width: 100%;
  max-width: 880px;
  margin: 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  text-align: center;
}

.pressAssets__lead ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
  text-align: left;
}

.pressAssets__sectionTitle {
  margin: 14px 0 8px;
  text-align: left;
}

.pressAssets__lead li {
  margin-bottom: 6px;
}

.pressAssets__lead li:last-child {
  margin-bottom: 0;
}

.pressAssets__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px 24px;
  width: 100%;
  max-width: 760px;
}

.pressAssets__btn {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 260px;
  max-width: 368px;
  min-height: 104px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid #000000;
  background-color: #141414;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.pressAssets__btn::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -220%;
  z-index: 0;
  width: 170%;
  height: 190%;
  background-color: #ffffff;
  transform: skewX(-24deg);
  transition: left 0.22s ease-out;
  pointer-events: none;
}

.pressAssets__btn::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-bottom: 12px solid #d80c18;
  border-left: 12px solid transparent;
  pointer-events: none;
}

.pressAssets__btn:hover,
.pressAssets__btn:focus-visible {
  color: #000000;
  opacity: 1;
}

.pressAssets__btn:hover::after,
.pressAssets__btn:focus-visible::after {
  left: -20%;
}

.pressAssets__btn:focus-visible {
  outline: 2px solid #d80c18;
  outline-offset: 2px;
}

.pressAssets__btnLabel {
  position: relative;
  z-index: 1;
  display: block;
}

@media (min-width: 951px) {
  .pressAssets {
    --press-assets-pad-x: 7%;
  }

  .pressAssets__lead {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .pressAssets {
    --press-assets-pad-x: var(--sp-pad-x, 16px);
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .pressAssets__body {
    gap: 36px;
  }

  .pressAssets__btn {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 104px;
    padding: 13px 12px;
    font-size: 16px;
  }

  .pressAssets__deco {
    right: -28%;
    opacity: 0.12;
  }
}
