/* ==============================================
   TikTok Ad Awards 2026 Japan — LP スタイル
   ファイル: webroot/css/lp2026.css
   ============================================== */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");

/* ---------- リセット・ベース ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ==============================================
   HEADER
   ============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* background: #000; */
  background: #00000000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 45px 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ */
.header-logo img {
  height: 44px;
  width: auto;
  position: relative;
  top: 0;
  left: 7px;
}

/* ナビ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 45px;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 0;
}

.header-nav-list a {
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.2s;
  font-weight: bold;
}

.header-nav-list a:hover {
  opacity: 0.7;
}

/* ヘッダー 応募ボタン */
.btn-nav-apply {
  display: block;
  flex: 1;
  padding: 5px 30px;
  background: #fe2c55;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s;
  margin-top: 5px;
}

.btn-nav-apply:hover {
  opacity: 0.85;
}

/* ハンバーガー（PC非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
}

/* ハンバーガー → X */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  background: #000 url(/asset2026/img/lp/kv_02.jpg) no-repeat;
  background-size: 100%;
  min-height: max(600px, 40vw);
  padding-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-position: 0px -50px;
}

/* 中央コンテンツ */
.hero-content {
  text-align: center;
  padding: 0 0px 100px;
  z-index: 1;
}
.hero-content .coming-soon {
  font-size: 22px;
}

/* PC: タイトル画像 */
.hero-title-pc {
  margin-bottom: 40px;
}

.hero-title-pc img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* SP: タイトルロゴ（PC非表示） */
.hero-title-sp {
  display: none;
}

/* SP: ロゴオーバーレイ（PC非表示） */
.hero-sp-logo {
  display: none;
}

/* SP: 募集期間（PC非表示） */
.hero-period {
  display: none;
}

/* Hero 応募ボタン */
.btn-hero-apply {
  flex: 1;
  background: #fe2c55;
  display: inline-block;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  padding: 16px 54px;
  border-radius: 48px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  text-align: center;
}

.btn-hero-apply:hover {
  opacity: 0.85;
}

/* ==============================================
   募集期間バー
   ============================================== */
.period-bar {
  background: #222;
  padding: 12px 24px;
  text-align: center;
}

.period-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 28px;
}

.period-label {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.period-dates {
  color: #fff;
  font-weight: 700;
}

/* ==============================================
   共通ユーティリティ
   ============================================== */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 80px;
}

/* PC/SP 改行制御 */
.sp-br {
  display: none;
}
.pc-br {
  display: inline;
}

/* ==============================================
   ABOUT（とは）
   ============================================== */
.about {
  padding: 170px 0 100px;
  overflow: hidden;
}

.about-wrap {
  position: relative;
}

.about-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 60px 60px 50px 86px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.about-title {
  margin-bottom: 10px;
}

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

.about-rule {
  border: none;
  border-top: 2px solid #fff;
  margin-bottom: 26px;
}

.about-catch {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
}

.about-body {
  font-size: 18px;
  color: #fff;
  line-height: 1.85em;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* about デコ（装飾目的のみ absolute） */
.about-deco {
  position: absolute;
  pointer-events: none;
}

.about-deco img {
  width: 100%;
}

.about-deco-tr {
  top: -61px;
  right: 6px;
  width: 126px;
}

.about-deco-bl {
  bottom: -84px;
  left: -47px;
  width: 126px;
}

.about-deco-br {
  bottom: -61px;
  right: 16px;
  width: 120px;
}

/* ==============================================
   CATEGORIES（部門紹介）
   ============================================== */
.categories {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.categories-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 87px;
  position: relative;
}

.categories-heading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
  display: block;
  flex: 1;
  padding-left: 15px;
}
.categories-heading span {
  color: #1adde2;
}

.categories-heading-deco {
  width: 124px;
  flex-shrink: 0;
  position: absolute;
  top: -20px;
  right: -6px;
}

.categories-heading-deco img {
  width: 100%;
}

/* 2-1-2 グリッド */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 30px;
}

/* 3枚目だけ中央寄せ */
.category-card-center {
  grid-column: 1 / 3;
  width: calc(50% - 10px);
  margin: 0 auto;
}

.category-card {
  background: #2f2f2f;
  border-radius: 12px;
  padding: 32px 32px 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.category-card-wrap:nth-child(2) .category-card {
  padding: 40px 26px 23px;
}
.category-card-wrap:nth-child(2) .category-card .category-name {
  font-size: 17px;
}

.category-card-wrap {
  position: relative;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}

.category-num {
  position: absolute;
  top: -20px;
  left: -15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 27px;
  font-weight: 700;
  color: #000;
}

.category-num-pink {
  background: #f82b51;
}

.category-num-teal {
  background: #1adde2;
}

.category-name {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  display: block;
  width: 100%;
}

.is-pink .category-name {
  color: #f82b51;
}

.is-teal .category-name {
  color: #1adde2;
}

.category-desc {
  font-size: 17px;
  color: #fff;
  line-height: 1.7em;
  margin-bottom: 33px;
  flex: 1;
}

.btn-category-apply {
  display: block;
  flex: 1;
  padding: 8px 20px;
  background: #fe2c55;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  align-self: center;
  transition: opacity 0.2s;
}

.btn-category-apply:hover {
  opacity: 0.85;
}

.btn-category-more {
  display: block;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 50px;
  border: none;
  align-self: center;
  cursor: pointer;
  background: #2f2f2f;
  color: #fff;
  transition: opacity 0.2s;
}

.btn-category-more::before {
  content: "▶";
  font-size: 15px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.btn-category-more:hover {
  opacity: 0.8;
}

/* .is-pink .btn-category-more {
  background: #f82b51;
}

.is-teal .btn-category-more {
  background: #1adde2;
} */

/* ==============================================
   CATEGORY MODAL
   ============================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(122, 122, 122, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-wrap {
  position: relative;
  width: 90%;
  max-width: 720px;
}

.modal-container {
  background: #000;
  border: 3px solid #fff;
  border-radius: 4px;
  padding: 64px 64px 56px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: -40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 70px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
  padding: 0px 0px;
  transition: opacity 0.2s;
}

.modal-close:hover {
  opacity: 0.6;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.5;
}

.modal-desc {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  text-align: center;
  margin-bottom: 48px;
}

.modal-fields-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-legend {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend-common {
  color: #fe2c55;
}

.legend-specific {
  color: #69c9d0;
}

.modal-fields-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-fields-list li {
  font-size: 16px;
  color: #fff;
  padding-left: 1.6em;
  position: relative;
}

.modal-fields-list li::before {
  position: absolute;
  left: 0;
}

.field-common::before {
  content: "■";
  color: #fe2c55;
}

.field-specific::before {
  content: "■";
  color: #69c9d0;
}

.field-note {
  font-size: 13px;
  opacity: 0.75;
  display: block;
  margin-top: 3px;
}

/* categories デコ（装飾目的のみ absolute） */
.categories-deco-crown {
  position: absolute;
  left: -20px;
  top: 52%;
  width: 160px;
  pointer-events: none;
}

.categories-deco-globe {
  position: absolute;
  right: -2px;
  bottom: 20px;
  width: 130px;
  pointer-events: none;
}

.categories-deco-crown img,
.categories-deco-globe img {
  width: 100%;
}

/* ==============================================
   OVERVIEW（応募概要）
   ============================================== */
.overview {
  padding: 120px 0 50px;
  position: relative;
  overflow: hidden;
}

.overview-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
}

.overview-heading {
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
  display: block;
  flex: 1;
  padding-left: 15px;
}
.overview-heading span {
  color: #1adde2;
}

.overview-heading-deco {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 123px;
}

.overview-heading-deco img {
  width: 100%;
}

/* 募集期間ライン */
.overview-period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.overview-period-label {
  color: #fe2c55;
  font-weight: 700;
  font-size: 24px;
}

.overview-period-dates {
  color: #fff;
  font-weight: 700;
  font-size: 34px;
}

/* タイムラインカード */
.overview-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 25px 100px 40px;
  margin-bottom: 57px;
}

/* タイムライン */
.timeline-list {
  list-style: none;
}

.timeline-item {
  display: flex;
  gap: 75px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 82px;
  flex-shrink: 0;
}

.timeline-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.timeline-badge-pink {
  background: #fe2c55;
}

.timeline-badge-teal {
  background: #69c9d0;
}

.timeline-connector {
  width: 3px;
  background: #fff;
  flex: 1;
  min-height: 44px;
}

.timeline-item:last-child .timeline-connector {
  display: none;
}

.timeline-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  padding: 23px 0;
}

.timeline-label {
  font-size: 22px;
  color: #fff;
}

.timeline-date {
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
  min-width: 9em;
}

/* 注意書き */
.overview-note {
  font-size: 18px;
  color: #fff;
  line-height: 1.9em;
}

/* deco（装飾のみ absolute） */
.overview-deco-headphones {
  position: absolute;
  left: 0;
  bottom: 261px;
  width: 132px;
  pointer-events: none;
}

.overview-deco-headphones img {
  width: 100%;
}

/* ==============================================
   APPLY（応募方法）
   ============================================== */
.apply {
  padding: 100px 0 100px;
  overflow: hidden;
}

.apply-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 68px;
  position: relative;
}

.apply-heading {
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
  display: block;
  flex: 1;
  padding-left: 15px;
}
.apply-heading span {
  color: #1adde2;
}

.apply-heading-deco {
  flex-shrink: 0;
  position: absolute;
  top: 14px;
  right: -9px;
  width: 114px;
}

.apply-heading-deco img {
  width: 100%;
}

/* リード文 */
.apply-lead-accent {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: #fff;
}

.apply-lead {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.8em;
  margin-bottom: 48px;
}

/* 注意事項カード */
.apply-notes {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.apply-note {
  font-size: 16px;
  color: #fff;
  line-height: 1.4em;
}

.apply-mail {
  color: #fff;
  text-decoration: underline;
}

.apply-mail:hover {
  opacity: 0.7;
}

/* ==============================================
   WINNERS（前回の受賞作品紹介）
   ============================================== */
.winners {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.winners-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.winners-heading {
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
  display: block;
  flex: 1;
  padding-left: 15px;
}

.winners-heading-accent {
  color: #69f0dc;
}

.winners-heading-deco {
  position: absolute;
  top: -18px;
  right: -26px;
  width: 113px;
}

.winners-heading-deco img {
  width: 100%;
}

/* ---------- Grand Prix ---------- */
.grand-prix {
  margin-bottom: 113px;
  padding: 0 34px;
}

.grand-prix-label {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.5em;
}

.grand-prix-g {
  color: #fe2c55;
  font-size: 48px;
}

.grand-prix-sub {
  font-size: 21px;
  color: #fff;
  margin-bottom: 42px;
  line-height: 1em;
}

.grand-prix-sub-accent {
  color: #fe2c55;
  font-weight: 700;
  font-size: 33px;
}

.grand-prix-sub b {
  font-size: 32px;
}

/* ---------- 部門賞 ---------- */
.category-award {
  margin-bottom: 56px;
  padding: 0 34px;
}

.category-award-label {
  font-size: 22px;
  font-weight: 700;
  color: #fe2c55;
  margin-bottom: 0;
}

.category-award-sub {
  font-size: 24px;
  font-weight: 700;
  color: #fe2c55;
  margin-bottom: 10px;
  display: block;
}

.category-award-name {
  font-size: 42px;
  margin-right: 12px;
  color: #fff;
}
.category-award-name b {
  color: #fe2c55;
}

.category-award-desc {
  font-size: 19px;
  color: #fff;
  line-height: 1.5em;
  margin-bottom: 34px;
  max-width: 100%;
  font-weight: 500;
}

/* ---------- 受賞エントリー共通 ---------- */
.winner-entry {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.winner-thumb img,
.winner-thumb video {
  width: 100%;
  border-radius: 8px;
}

.winner-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.5em;
}

.winner-desc {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  margin-bottom: 24px;
}

.winner-credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.winner-credit {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.winner-credit dt {
  color: #1adde2;
  white-space: nowrap;
  flex-shrink: 0;
  width: 180px;
}

.winner-credit dd {
  color: #1adde2;
  width: calc(100% - 180px);
}

/* ---------- 装飾 ---------- */

.winners-deco-hashtag {
  position: absolute;
  top: 1170px;
  left: 0;
  width: 130px;
  pointer-events: none;
  opacity: 1;
}

.winners-deco-hashtag img {
  width: 100%;
}

.winners-deco-blob {
  position: absolute;
  bottom: 35px;
  right: 0;
  width: 155px;
  pointer-events: none;
}

.winners-deco-blob img {
  width: 100%;
}
.winners-deco-heart {
  display: none;
}

/* ==============================================
   NOMINEES（前回のノミネート作品）
   ============================================== */
.nominees {
  position: relative;
  padding: 145px 0 40px;
  overflow: hidden;
}

.nominees-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
}

.nominees-heading {
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
  display: block;
  flex: 1;
  padding-left: 15px;
}

.nominees-heading-accent {
  color: #69f0dc;
}

.nominees-deco-star {
  position: absolute;
  top: -20px;
  right: -60px;
  width: 112px;
  pointer-events: none;
}

.nominees-deco-star img {
  width: 100%;
}

.nominees-lead {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 20px;
}

.nominees-note {
  font-size: 18px;
  color: #fff;
  line-height: 1.5em;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 4px;
  margin-left: 40px;
}

.nominees-btn-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-nominees {
  display: inline-block;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  padding: 16px 54px;
  border-radius: 48px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  text-align: center;
}

.btn-nominees:hover {
  opacity: 0.85;
}

.btn-nominees-primary {
  background: #f82b51;
}

.btn-nominees-past {
  background: #2a2a2a;
}

.nominees-past-wrap {
  margin-top: 68px;
  text-align: center;
}

.nominees-past-label {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.nominees-past-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ==============================================
   FAQ（よくある質問）
   ============================================== */
.faq {
  position: relative;
  padding: 100px 0 200px;
  overflow: hidden;
}

.faq-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
}

.faq-heading {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
  display: block;
  flex: 1;
  padding-left: 15px;
}
.faq-heading b {
  font-size: 34px;
  font-weight: 700;
  margin-right: 10px;
}

.faq-heading-q {
  color: #69f0dc;
}

.faq-deco-bubble {
  position: absolute;
  top: -20px;
  right: -60px;
  width: 108px;
  pointer-events: none;
}

.faq-deco-bubble img {
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Q ボタン */
.faq-q {
  width: 100%;
  background: #1a1a1a;
  border: none;
  border-radius: 50px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 26px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 18px;
  font-family: inherit;
}

.faq-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1em;
  padding-top: 5px;
}

.faq-q-badge {
  background: #69f0dc;
  color: #000;
}

.faq-a-badge {
  background: #fe2c55;
  color: #fff;
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  flex-shrink: 0;
}

/* A エリア */
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 40px;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.faq-item.is-open .faq-a {
  max-height: 400px;
  opacity: 1;
}

.faq-a-badge {
  margin-top: 37px;
  margin-bottom: 37px;
}

.faq-a-text {
  font-size: 17px;
  color: #fff;
  line-height: 1.6em;
  padding-top: 37px;
  padding-bottom: 37px;
}

/* ==============================================
   JUDGES（審査員紹介）
   ============================================== */
.judges {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
}

.judges-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 105px;
  position: relative;
}

.judges-heading {
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
  display: block;
  flex: 1;
  padding-left: 15px;
}

.judges-heading-accent {
  color: #69f0dc;
}

.judges-heading-sub {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-left: 4px;
}

.judges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 60px;
  width: 100%;
  margin: 0 auto;
}

.judge-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  line-height: 1em;
}

.judge-card-last {
  grid-column: 1 / 3;
  max-width: calc(50% - 20px);
}

.judge-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #333;
}

.judge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.judge-info {
  padding: 20px 0 0;
}

.judge-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.judge-badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 0px 0px;
  border-radius: 4px;
  white-space: nowrap;
}

.judge-detail {
  font-size: 15px;
  color: #fff;
  line-height: 1.6em;
}

.judges-deco-cloud {
  position: absolute;
  top: 0px;
  right: -50px;
  width: 120px;
  pointer-events: none;
}

.judges-deco-cloud img {
  width: 100%;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  position: relative;
  background: #000;
  padding: 72px 0 100px;
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-sns a {
  display: block;
  transition: opacity 0.2s;
}

.footer-sns a:hover {
  opacity: 0.7;
}

.footer-sns img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.footer-logo img {
  margin: 0 auto;
  height: 44px;
  width: auto;
}

.btn-footer-apply {
  display: none;
}

/* ==============================================
   アニメーション
   ============================================== */
.animation {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.4s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.animation.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   レスポンシブ（768px以下）
   ============================================== */
@media (max-width: 768px) {
  /* ベース */
  .section-inner {
    padding: 0 20px;
  }

  .pc-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }

  /* ヘッダー */
  .header-inner {
    padding: 0 13px;
    height: 48px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .header-logo img {
    height: 30px;
    width: auto;
    position: relative;
    top: 0;
    left: 0;
  }

  /* ナビ：フルスクリーンオーバーレイ（ヘッダー下から） */
  .header-nav {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100vh - 48px);
    background: #000;
    z-index: 98;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 60px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    pointer-events: none;
  }

  .header-nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header-nav-list a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }

  .btn-nav-apply {
    margin-top: 32px;
    margin-left: 0;
    padding: 14px 40px;
    display: block;
    height: auto;
    flex: none;
  }

  /* ナビ open 状態 */
  .header-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  /* Hero */
  .hero {
    background-image: url(/asset2026/img/lp/kv_sp.jpg);
    background-position: center top;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 126vw;
    padding-top: 0;
    position: relative;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title-pc {
    display: none;
  }

  .hero-content .coming-soon {
    position: absolute;
    width: 100%;
    font-size: 3.3vw;
    top: 43vw;
  }

  .btn-hero-apply {
    text-align: center;
    display: block;
    padding: 5px 0;
    margin: 0 auto;
    position: absolute;
    width: 36vw;
    font-size: 3vw;
    top: 42vw;
  }

  /* SPロゴオーバーレイ */
  .hero-sp-logo {
    display: block;
    position: absolute;
    top: 16vw;
    left: 50%;
    transform: translateX(-50%);
    width: 84%;
    z-index: 1;
  }

  /* SP hero内 募集期間（period-barから移動） */
  .hero-period {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 56vw;
    left: 0;
    width: 100%;
    z-index: 1;
    color: #fff;
  }

  /* 募集期間バー（SPは hero-period に移動したため非表示） */
  .period-bar {
    display: none;
  }

  .period-text {
    flex-direction: column;
    gap: 0px;
    font-size: 14px;
  }

  .period-label {
    color: #fff;
    font-size: 3.2vw;
    font-weight: 700;
  }

  .period-dates {
    color: #fff;
    font-size: 4.5vw;
    letter-spacing: 0.02em;
    line-height: 1.2em;
  }

  /* About */
  .about {
    padding: 30px 0 80px;
  }
  .about-wrap {
    position: relative;
    padding: 0 14px;
  }

  .about-card {
    padding: 20px 30px 22px;
  }
  .about-rule {
    border: none;
    border-top: 1px solid #fff;
    margin-bottom: 10px;
  }

  .about-catch {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .about-title {
    margin-bottom: 5px;
  }

  .about-body {
    font-size: 14px;
    line-height: 1.6em;
    letter-spacing: 0.02em;
  }

  .about-deco-tr {
    width: 48px;
    right: 17px;
    top: -25px;
  }

  .about-deco-bl {
    display: block;
    width: 48px;
    bottom: -29px;
    left: -6px;
  }

  .about-deco-br {
    width: 45px;
    right: 22px;
    bottom: -19px;
  }

  /* Categories */
  .categories {
    padding: 64px 0 0px;
  }

  .categories-heading {
    font-size: 19px;
    padding-left: 3px;
    border-bottom: 1px solid #fff;
    padding-bottom: 0;
  }

  .categories-heading-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
  }

  .categories-heading-deco {
    width: 50px;
    flex-shrink: 0;
    position: absolute;
    top: -9px;
    right: -1px;
  }
  .category-grid {
    width: 85%;
    display: block;
    margin: 0 auto;
  }

  .category-card-center {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  .category-num {
    position: absolute;
    top: -10px;
    left: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: #000;
  }

  .category-card {
    padding: 25px 20px 24px;
  }

  .category-card-wrap:nth-child(2) .category-card {
    padding: 25px 20px 24px;
  }

  .category-card-wrap:nth-child(2) .category-card .category-name {
    font-size: 15px;
  }

  .category-name {
    font-size: 16px;
    text-align: center;
    margin-bottom: 8px;
  }

  .category-card-wrap {
    position: relative;
    padding-top: 0;
    margin-bottom: 24px;
  }

  .category-desc {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 6px;
    line-height: 1.85em;
  }
  .btn-category-more {
    display: flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    border-radius: 50px;
    border: none;
    align-self: center;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .categories-deco-crown {
    display: block;
    width: 76px;
    left: -18px;
    top: 35.3%;
  }

  .categories-deco-globe {
    display: block;
    width: 92px;
    right: 0;
    bottom: 20%;
  }

  /* Overview */
  .overview {
    padding: 35px 0 10px;
  }

  .overview-heading-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    position: relative;
  }

  .overview-heading {
    font-size: 18px;
    padding-left: 10px;
    border-bottom: 1px solid #fff;
    padding-bottom: 0;
  }

  .overview-heading-deco {
    position: absolute;
    right: -4px;
    top: 2px;
    width: 48px;
  }

  .overview-period {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .overview-period-label {
    font-size: 17px;
    display: block;
  }

  .overview-period-dates {
    font-size: 17px;
    display: block;
  }

  .overview-card {
    padding: 14px 24px 18px 42px;
    margin-bottom: 58px;
  }

  .timeline-item {
    gap: 35px;
  }

  .timeline-step {
    width: 32px;
  }

  .timeline-badge {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .timeline-connector {
    min-height: 17px;
    width: 2px;
  }

  .timeline-content {
    padding: 5px 0;
  }

  .timeline-label {
    font-size: 13px;
  }

  .timeline-date {
    font-size: 13px;
  }

  .overview-note {
    font-size: 14px;
    line-height: 1.5em;
    width: 88%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }

  .overview-deco-headphones {
    display: block;
    width: 68px;
    left: -2px;
    bottom: 114px;
  }

  /* Apply */
  .apply {
    padding: 50px 0 0px;
  }

  .apply-heading-wrap {
    margin-bottom: 22px;
    position: relative;
  }

  .apply-heading {
    font-size: 18px;
    padding-left: 10px;
    border-bottom: 1px solid #fff;
    padding-bottom: 0;
  }
  .apply-heading-deco {
    flex-shrink: 0;
    position: absolute;
    top: 0px;
    right: -5px;
    width: 45px;
  }

  .apply-lead {
    font-size: 14px;
    text-align: center;
    line-height: 1.6em;
    margin-bottom: 25px;
  }
  .apply-lead-accent {
    color: #fe2c55;
    text-decoration-color: #fe2c55;
  }

  .apply-notes {
    /* padding: 36px 5px 26px; */
    background: #232323;
    border-radius: 20px;
    padding: 36px 15px;
  }
  .apply-note {
    font-size: 14px;
    color: #fff;
    line-height: 1.5em;
  }

  /* Winners（SP） */
  .winners {
    padding: 60px 0 50px;
    margin-bottom: 0px;
  }

  .winners-heading-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
    position: relative;
  }

  .winners-heading {
    font-size: 18px;
    padding-left: 10px;
    border-bottom: 1px solid #fff;
    padding-bottom: 0;
  }

  .winners-heading-deco {
    position: absolute;
    top: 1px;
    right: -6px;
    width: 43px;
  }

  .winner-body {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  .winner-entry {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .winner-credits {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .winner-thumb {
    margin: 0 auto;
    max-width: 57%;
  }

  .winner-thumb img,
  .winner-thumb video {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .grand-prix {
    padding: 0 7px;
    margin-bottom: 23px;
  }

  .grand-prix-label {
    font-size: 26px;
    margin-bottom: 0;
  }

  .grand-prix-g {
    font-size: 26px;
  }

  .grand-prix-sub b {
    font-size: 20px;
  }

  .grand-prix-sub {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5em;
  }

  .grand-prix-sub-accent {
    font-size: 18px;
    display: block;
    line-height: 1.5em;
  }

  .category-award {
    padding: 0;
    margin-bottom: 48px;
  }

  .category-award-name {
    font-size: 28px;
    padding-left: 8px;
    margin-right: 3px;
  }

  .category-award-label {
    font-size: 14px;
  }

  .category-award-desc {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .category-award-sub {
    font-size: 18px;
    font-weight: 700;
    color: #fe2c55;
    margin-bottom: 10px;
    display: block;
    padding-left: 0px;
  }

  .winner-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .winner-desc {
    font-size: 13px;
    line-height: 1.7em;
    margin-bottom: 20px;
  }

  .winner-credit {
    font-size: 11px;
    display: block;
    margin-bottom: 10px;
  }
  .winner-credit dt {
    width: 100%;
  }
  .winner-credit dd {
    width: 100%;
  }

  .winners-deco-hashtag {
    position: absolute;
    top: 23%;
    left: 0;
    width: 55px;
    pointer-events: none;
    opacity: 1;
  }
  .winners-deco-blob {
    position: absolute;
    bottom: 32%;
    right: 0;
    width: 86px;
    pointer-events: none;
  }
  .winners-deco-heart {
    display: block;
    position: absolute;
    bottom: 0.5%;
    left: 0;
    width: 86px;
    pointer-events: none;
  }

  /* Nominees（SP） */
  .nominees {
    position: relative;
    padding: 50px 0 40px;
    overflow: hidden;
  }
  .nominees-heading {
    font-size: 17px;
    border-bottom: 1px solid #fff;
    padding-bottom: 0;
    padding-left: 10px;
  }

  .btn-nominees {
    display: block;
    width: 60%;
    padding: 11px 0;
    margin: 0 auto;
    font-size: 12px;
  }
  .nominees-deco-star {
    position: absolute;
    top: -1px;
    right: -10px;
    width: 43px;
    pointer-events: none;
  }
  .nominees-heading-wrap {
    margin-bottom: 59px;
  }
  .nominees-lead {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5em;
    text-align: center;
    margin-bottom: 30px;
  }
  .nominees-note {
    font-size: 13px;
    color: #fff;
    line-height: 1.5em;
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 15px;
    margin-left: 0;
  }
  .nominees-btn-wrap {
    text-align: center;
    margin-top: 30px;
  }
  .nominees-past-wrap {
    margin-top: 60px;
    text-align: center;
  }
  .nominees-past-label {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  /* FAQ（SP） */
  .faq {
    padding: 40px 0 80px;
  }

  .faq-heading b {
    font-size: 21px;
    margin-right: 0;
  }

  .faq-heading {
    font-size: 14px;
    border-bottom: 1px solid #fff;
    padding-bottom: 0;
    display: block;
    padding-left: 10px;
  }

  .faq-deco-bubble {
    display: block;
    width: 56px;
    top: -10px;
    right: 2px;
  }

  .faq-q {
    padding: 10px 20px;
    gap: 10px;
    font-size: 14px;
  }

  .faq-a {
    padding: 0 20px;
    gap: 8px;
  }

  .faq-a-badge {
    margin-top: 10px;
    margin-bottom: 14px;
  }

  .faq-a-text {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 14px;
  }

  .faq-list {
    gap: 12px;
  }
  .faq-heading-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
    position: relative;
  }
  .faq-badge {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    line-height: 1em;
    padding-top: 1px;
  }
  .faq-toggle {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    flex-shrink: 0;
  }

  /* Judges（SP） */
  .judges {
    padding: 60px 0 30px;
  }

  .judges-heading {
    font-size: 18px;
    padding-left: 10px;
    border-bottom: 1px solid #fff;
    padding-bottom: 0;
  }
  .judges-heading-sub {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-left: 3px;
  }
  .judges-heading-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
  }

  .judges-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .judge-card-last {
    grid-column: auto;
    max-width: 100%;
  }

  .judges-deco-cloud {
    display: block;
    width: 80px;
    top: -10px;
    right: -10px;
  }

  .judge-photo {
    width: 100px;
    height: 100px;
  }

  .judge-info {
    padding: 8px 0 0;
  }

  .judge-name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .judge-detail {
    font-size: 12px;
    line-height: 1.8em;
  }

  /* Footer（SP） */
  .site-footer {
    padding: 60px 0 80px;
  }

  .footer-sns {
    gap: 18px;
    margin-bottom: 36px;
  }

  .footer-sns img {
    width: 38px;
    height: 30px;
  }

  .footer-logo img {
    height: 20px;
  }

  .btn-footer-apply {
    background: url("/asset2026/img/lp/bg_apply.png") center / cover no-repeat;
    color: #fff;
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin: 0;
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    z-index: 100;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .btn-footer-apply.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* モーダル SP */
  .modal-wrap {
    width: 95%;
  }

  .modal-container {
    padding: 56px 24px 40px;
    width: 100%;
    max-height: 84vh;
  }

  .modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 28px;
  }

  .modal-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .modal-desc {
    font-size: 14px;
    margin-bottom: 36px;
    text-align: left;
  }

  .modal-fields-heading {
    font-size: 14px;
    gap: 12px;
  }

  .modal-legend {
    font-size: 13px;
  }

  .modal-fields-list {
    gap: 18px;
  }

  .modal-fields-list li {
    font-size: 15px;
  }
}

/* ---- TikTok Sans ユーティリティ ---- */
.tiktok-sans {
  font-family: "TikTok Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0, "wdth" 100;
}
