   /* ========================================
  Hubspot用 干渉css 削除class
   ======================================== */
   .cSxHqw {
    margin-inline: 0px !important;
   }
   .dcc-lp {
    margin-top: -24px !important;
   }


/* ========================================
   DCC2026 Landing Page
   HubSpot対応: 全スタイルを .dcc-lp スコープ内で定義
   ======================================== */

/* ========== カスタムフォント ========== */
@font-face {
  font-family: "F1.8";
  src: url("https://21791923.fs1.hubspotusercontent-na2.net/hubfs/21791923/00_DATAFLUCT/02_%E3%82%BB%E3%83%9F%E3%83%8A%E3%83%BC%E3%83%BB%E3%82%AB%E3%83%B3%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/DataCrossConference/dcc2026/fonts/F1.8-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "MOBO";
  src: url("https://21791923.fs1.hubspotusercontent-na2.net/hubfs/21791923/00_DATAFLUCT/02_%E3%82%BB%E3%83%9F%E3%83%8A%E3%83%BC%E3%83%BB%E3%82%AB%E3%83%B3%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/DataCrossConference/dcc2026/fonts/MOBO-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "MOBO";
  src: url("https://21791923.fs1.hubspotusercontent-na2.net/hubfs/21791923/00_DATAFLUCT/02_%E3%82%BB%E3%83%9F%E3%83%8A%E3%83%BC%E3%83%BB%E3%82%AB%E3%83%B3%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/DataCrossConference/dcc2026/fonts/MOBO-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "MOBO";
  src: url("https://21791923.fs1.hubspotusercontent-na2.net/hubfs/21791923/00_DATAFLUCT/02_%E3%82%BB%E3%83%9F%E3%83%8A%E3%83%BC%E3%83%BB%E3%82%AB%E3%83%B3%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/DataCrossConference/dcc2026/fonts/MOBO-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

/* body デフォルト margin リセット */
body {
   margin: 0 !important;
   padding: 0 !important;
}

:root {
  --color-blue:      #507CCF;
  --color-red:       #EB6664;
  --color-dark:      #313038;
  --color-white:     #FFFFFF;
  --color-off-white: #F7F6F4;
  --color-gray:      #D0D0D0;
  --color-text:      #1c1c1d;
  --color-text-sub:  #3d3d3d;
}

/* ========== UTILITY ========== */
.br-show { display: none; }

@media (max-width: 768px) {
  .br-show { display: inline; }
}

.br-pc-show { display: inline; }

@media (max-width: 768px) {
  .br-show { display: inline; }
}
@media (max-width: 768px) {
  .br-pc-show { display: none; }
}

/* ========== RESET & BASE ========== */
.dcc-lp *,
.dcc-lp *::before,
.dcc-lp *::after {
  box-sizing: border-box;
  margin-top: 0;
  padding-top: 0;
}

.dcc-lp {
  position: relative; /* nav の絶対配置の基準 */
  font-family: "dnp-shuei-gokin-std", sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.dcc-lp a {
  color: inherit;
  text-decoration: none;
}

.dcc-lp h1,
.dcc-lp h2,
.dcc-lp h3,
.dcc-lp h4,
.dcc-lp h5,
.dcc-lp h6 {
  font-weight: 700;
  line-height: 1.2;
}

.dcc-lp p {
  margin: 0;
}

/* ========== ANIMATIONS ========== */
/* ゆっくりした揺れ（移動量を増やして視認性を向上） */
@keyframes dcc-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  35%       { transform: translateY(-20px) rotate(2.5deg); }
  70%       { transform: translateY(-10px) rotate(-1.2deg); }
}

@keyframes dcc-float-alt {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  30%       { transform: translateY(-14px) rotate(-2deg); }
  65%       { transform: translateY(-22px) rotate(1.5deg); }
}

@keyframes dcc-drift {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(12deg); }
}

/* star：控えめなサイズ変化（パルス） */
@keyframes dcc-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.35); }
}

@keyframes dcc-reveal-up {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dcc-slide-in-left {
  from { opacity: 0; transform: translateX(-56px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .dcc-lp .hero__deco { animation: none !important; }
  .dcc-lp .hero__title,
  .dcc-lp .hero__subtitle,
  .dcc-lp .hero__date { opacity: 1 !important; animation: none !important; transform: none !important; }
  .dcc-lp .about__deco { animation: none !important; }
  .dcc-lp .about__title .about__hl { opacity: 1 !important; animation: none !important; }
  .dcc-lp .whom__card { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* ========== NAV（追従なし：absolute） ========== */
.dcc-lp .nav {
  position: absolute; /* スクロール追従しない */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

/* メニューオープン時：ナビバーを fixed & 白背景に */
.dcc-lp .nav:has(.nav__mobile-menu.open) {
  position: fixed;
  background: var(--color-white);
}

.dcc-lp .nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dcc-lp .nav__logo img {
  height: 50px;
  width: auto;
  margin-right: 40px;
}

.dcc-lp .nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.dcc-lp .nav__links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.dcc-lp .nav__links a:hover {
  color: var(--color-blue);
}

.dcc-lp .nav__links .nav__cta,
.dcc-lp .nav__mobile-menu .nav__cta {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
  height: 42px;
}

.dcc-lp .nav__links .nav__cta:hover,
.dcc-lp .nav__mobile-menu .nav__cta:hover {
  opacity: 0.75;
  color: var(--color-white);
}

.dcc-lp .nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.dcc-lp .nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.dcc-lp .nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dcc-lp .nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.dcc-lp .nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dcc-lp .nav__mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--color-white);
  padding: 64px 24px 40px;
  overflow-y: auto;
}

.dcc-lp .nav__mobile-menu.open {
  display: flex;
}

.dcc-lp .nav__mobile-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcc-lp .nav__mobile-close span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
}

.dcc-lp .nav__mobile-close span:nth-child(1) {
  transform: rotate(45deg);
}

.dcc-lp .nav__mobile-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.dcc-lp .nav__mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-gray);
}

.dcc-lp .nav__mobile-menu .nav__cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
  padding: 12px 20px;
}

/* ========== HERO ========== */
.dcc-lp .hero {
  position: relative;
  overflow: hidden;
  background: var(--color-off-white);
  height: 760px;
  max-height: 760px;
}

.dcc-lp .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dcc-lp .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---- 装飾 SVG（1440px 基準） ---- */
.dcc-lp .hero__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.dcc-lp .hero__deco--ashirai-r {
  bottom: -20px;
  left: -55px;
  width: 340px;
  animation: dcc-float 11s ease-in-out infinite;
}

.dcc-lp .hero__deco--ashirai-l {
  top: 66%;
  right: 4%;
  width: 200px;
  animation: dcc-float-alt 13s ease-in-out infinite;
}

/* star：サイズが大きくなったり小さくなる控えめなパルス */
.dcc-lp .hero__deco--star1 {
  top: 370px;
  left: 80px;
  width: 70px;
  animation: dcc-pulse 4s ease-in-out infinite 0.5s;
}

.dcc-lp .hero__deco--star2 {
  top: 155px;
  right: 10%;
  width: 24px;
  animation: dcc-pulse 5s ease-in-out infinite 1.8s;
}

.dcc-lp .hero__deco--square {
  top: 54%;
  right: 16%;
  width: 18px;
  animation: dcc-drift 9s ease-in-out infinite 2.5s;
}

.dcc-lp .hero__deco--harf-circle {
  top: 0;
  right: 0;
  width: 180px;
}

/* ---- pill バッジ：PC では hero__content 基準で左下に絶対配置 ---- */
.dcc-lp .hero__badge {
  position: absolute;
  left: 10%;
  bottom: 32%;
  z-index: 3;
  /* text-area 内に HTML 上はあるが position:absolute で flow から外れる */
}

.dcc-lp .hero__pill {
  display: inline-block;
  background: var(--color-white);
  border: 1.5px solid var(--color-blue);
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ---- テキストコンテンツ：上部中央 ---- */
.dcc-lp .hero__content {
  position: absolute;
  inset: 0;          /* 全体を覆う → badge の absolute 基準にもなる */
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 86px;
}

.dcc-lp .hero__text-area {
  text-align: center;
  width: 100%;
  padding: 0 40px;
}

/* "Data Cross Conference" : MOBO SemiBold + 外側 1px stroke */
.dcc-lp .hero__title-name {
  font-family: 'MOBO', sans-serif;
  font-weight: 600;
  -webkit-text-stroke: 2px currentColor; /* 2px × paint-order で外側 1px のみ表示 */
  paint-order: stroke fill;
}

/* "2026" : F1.8 + 外側 1px stroke */
.dcc-lp .hero__title-year {
  font-family: 'F1.8', sans-serif;
  font-weight: 400;
  -webkit-text-stroke: 2px currentColor;
  paint-order: stroke fill;
}

.dcc-lp .hero__title {
  font-family: 'Noto Sans JP', sans-serif; /* フォールバック */
  font-size: clamp(2rem, 6.1vw, 5.5rem);
  font-weight: 900;
  color: var(--color-dark);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  animation: dcc-reveal-up 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards;
}

.dcc-lp .hero__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.875rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  opacity: 0;
  animation: dcc-reveal-up 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}

.dcc-lp .hero__date {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: dcc-reveal-up 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}

.dcc-lp .hero__date img {
  width: 64%;
  max-width: 640px;
}

/* ---- 登壇者コラージュ：MV 下部・水平中央に絶対配置 ---- */
.dcc-lp .hero__speakers {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dcc-lp .hero__speakers img {
  max-width: 740px;
  width: 64%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* ---- CTA ボタン（画面右下固定） ---- */
.dcc-lp .hero__cta-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
  background: #007AFF;
  color: var(--color-white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 21px;
  font-weight: 700;
  width: 250px;
  height: 84px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0, 122, 255, 0.4);
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}

.dcc-lp .hero__cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: var(--color-white);
}

/* ========== SPONSOR ========== */
.dcc-lp .sponsor {
  background: var(--color-white);
  padding: 72px 0;
}

.dcc-lp .sponsor__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.dcc-lp .sponsor__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.dcc-lp .sponsor__label {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.14em;
  text-align: center;
  margin: 0;
}

.dcc-lp .sponsor__label--gold   { color: #C08E51; }
.dcc-lp .sponsor__label--silver { color: #949494; }



.dcc-lp .sponsor__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 80px;
}

.dcc-lp .sponsor__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcc-lp .sponsor__logo-item img {
  max-width: 325px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dcc-lp .sponsor__group:has(.sponsor__label--gold) .sponsor__logo-item img {
  max-width: 380px;
}

@media (max-width: 768px) {
  .dcc-lp .sponsor {
    padding: 40px 16px;
  }
  .dcc-lp .sponsor__inner {
    padding: 0;
    gap: 44px;
  }
  .dcc-lp .sponsor__label {
    font-size: 18px;
  }
  .dcc-lp .sponsor__logos {
    flex-direction: column;
    gap: 16px;
  }
  .dcc-lp .sponsor__logo-item img {
    max-width: 200px;
  }
  .dcc-lp .sponsor__group:has(.sponsor__label--gold) .sponsor__logo-item img {
    max-width: 260px;
  }
}

/* ========== ABOUT ========== */
.dcc-lp .about {
  position: relative;
  padding: 100px 0 80px;
  max-height: 753px;
  overflow: hidden;
}

.dcc-lp .about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dcc-lp .about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 装飾 */
.dcc-lp .about__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* 右端：ashirai01（青） - コンテナで縦センタリング、imgにアニメーション */
.dcc-lp .about__deco--ashirai-r {
  right: -50px;
  top: 0;
  bottom: 0;
  width: 300px;
  display: flex;
  align-items: center;
  opacity: 0.5;
}

.dcc-lp .about__deco--ashirai-r img {
  animation: dcc-float 11s ease-in-out infinite;
}

/* 左端：ashirai02（赤） */
.dcc-lp .about__deco--ashirai-l {
  left: -40px;
  top: 0;
  bottom: 0;
  width: 240px;
  display: flex;
  align-items: center;
  opacity: 0.5;
}

.dcc-lp .about__deco--ashirai-l img {
  animation: dcc-float-alt 13s ease-in-out infinite;
}

/* 右端：半円アーク（大きくスケールアップ） */
.dcc-lp .about__deco--circle {
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  opacity: 0.7;
  animation: dcc-float-alt 10s ease-in-out infinite;
}

/* star：左下付近 */
.dcc-lp .about__deco--star {
  left: 60px;
  bottom: 100px;
  width: 28px;
  opacity: 0.5;
  animation: dcc-float 6s ease-in-out infinite 1.2s;
}

/* コンテンツ：max-width 800px に限定 */
.dcc-lp .about__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0;
}

.dcc-lp .about__main {
  margin-bottom: 48px;
}

/* タイトル 48px・センタリング */
.dcc-lp .about__title {
  font-family: "dnp-shuei-gokin-std", sans-serif;
  font-size: 3rem; /* 48px */
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
}

/* ハイライト共通 */
.dcc-lp .about__hl {
  font-style: normal;
  color: var(--color-blue);
}

/* タイトル内のハイライト：スクロール到達まで非表示 */
.dcc-lp .about__title .about__hl {
  display: inline-block;
  opacity: 0;
}

/* JS が .is-visible を付与したらふわっと表示 */
.dcc-lp .about__title .about__hl.is-visible {
  animation: dcc-reveal-up 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 本文 16px / line-height 32px */
.dcc-lp .about__body {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- 数字ステータス行：全体を border で囲む ---- */
.dcc-lp .about__stats {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  overflow: hidden; /* 角丸に縦 border をきれいに収める */
  margin: 0px 8px;
}

/* 各 stat：25% 幅、中央揃え、縦 border で仕切り */
.dcc-lp .about__stat {
  width: 25%;
  flex: 0 0 25%;
  padding: 28px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.dcc-lp .about__stat:last-child {
  border-right: none;
}

.dcc-lp .about__stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.75rem; /* ~44px */
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
}

.dcc-lp .about__stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

/* ========== WHOM ========== */
.dcc-lp .whom {
  position: relative;
  max-height: 538px;
  overflow: hidden;
}

.dcc-lp .whom__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dcc-lp .whom__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dcc-lp .whom__inner {
  position: relative;
  z-index: 2;
  max-width: 1090px;
  margin: 0 auto;
  padding: 72px 16px;
}

.dcc-lp .whom__title {
  font-family: "dnp-shuei-gokin-std", sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 40px;
}

/* 2×2 カードグリッド */
.dcc-lp .whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dcc-lp .whom__card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  /* 初期状態：非表示（スクロール reveal 用） */
  opacity: 0;
  transform: translateY(48px);
}

.dcc-lp .whom__card.is-visible {
  animation: dcc-reveal-up 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.dcc-lp .whom__num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.6; /* テキストの行頭に揃える */
  flex-shrink: 0;
}

.dcc-lp .whom__text {
  font-family: "dnp-shuei-gokin-std", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.75;
}

/* ========== SPEAKERS ========== */
.dcc-lp .speakers {
  position: relative;
  overflow: hidden;
}

.dcc-lp .speakers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dcc-lp .speakers__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dcc-lp .speakers__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 16px;
}

.dcc-lp .speakers__head {
  margin-bottom: 32px;
}

.dcc-lp .speakers__title {
  font-family: "dnp-shuei-gokin-std", sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.dcc-lp .speakers__lead {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

/* グリッド：flex 左寄せ */
.dcc-lp .speakers__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 20px;
}

/* カード：固定幅 150px でレスポンシブ段落ちを自動制御 */
.dcc-lp .speakers__card {
  width: 150px;
  flex-shrink: 0;
}

/* 写真：150×150・radius なし */
.dcc-lp .speakers__photo {
  width: 150px;
  height: 150px;
  overflow: hidden;
  background: var(--color-gray);
  border-radius: 0;
  margin-bottom: 12px;
}

.dcc-lp .speakers__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* お名前：16px */
.dcc-lp .speakers__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}

/* 会社名・役職：14px */
.dcc-lp .speakers__company {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.5;
  margin-bottom: 2px;
}

.dcc-lp .speakers__role {
  font-size: 12px;
  color: var(--color-text-sub);
  line-height: 1.5;
}

/* ========== FOOTER ========== */
.dcc-lp .footer {
  background: #1A1A1A;
  padding: 56px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.dcc-lp .footer__logo {
  display: inline-block;
  line-height: 0;
}

.dcc-lp .footer__logo img {
  width: 200px;
  height: auto;
}

.dcc-lp .footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* ========== TIMETABLE ========== */
.dcc-lp .tt {
  position: relative;
  overflow: hidden;
}

.dcc-lp .tt__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dcc-lp .tt__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dcc-lp .tt__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 16px;
}

.dcc-lp .tt__head {
  margin-bottom: 36px;
}

.dcc-lp .tt__title {
  font-family: "dnp-shuei-gokin-std", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.dcc-lp .tt__info {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.dcc-lp .tt__note {
  font-size: 14px;
  padding-top: 8px;
  color: var(--color-text-sub);
}


.dcc-lp .tt__row {
  display: flex;
  align-items: stretch;
  padding: 8px 0;
  /* border-bottom は不要 */
  cursor: pointer;
  transition: opacity 0.2s;
  gap: 20px;
}

.dcc-lp .tt__row:hover {
  opacity: 0.85;
}

/* 時刻列：縦積み Times New Roman */
.dcc-lp .tt__time {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  border-top: 1px solid var(--color-gray);
  padding-top: 16px;
}

.dcc-lp .tt__time span {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* 時刻の間の ▶ 矢印：縦積み対応でブロック表示 */
.dcc-lp .tt__time span:first-child::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid var(--color-blue);
  opacity: 0.8;
  margin: 8px auto;
}

/* セッション本体：白カード */
.dcc-lp .tt__body {
  flex: 1;
  min-width: 0;
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px 24px;
}

.dcc-lp .tt__body::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background:
    linear-gradient(90deg, rgba(80, 124, 207, 0.00) -18%, rgba(80, 124, 207, 0.60) 64.59%),
    rgba(235, 102, 100, 0.60);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* 偶数行：グラデーション左右反転 */
.dcc-lp .tt__row:nth-child(even) .tt__body::before {
  background:
    linear-gradient(270deg, rgba(80, 124, 207, 0.00) -18%, rgba(80, 124, 207, 0.60) 64.59%),
    rgba(235, 102, 100, 0.60);
}

.dcc-lp .tt__session-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* 登壇者リスト（複数対応） */
.dcc-lp .tt__speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.dcc-lp .tt__spk {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
  min-width: 240px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.dcc-lp .tt__spk:only-child {
  max-width: 100%;
  width: 100%;
}

/* 写真：80×80 */
.dcc-lp .tt__spk-photo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-gray);
}

.dcc-lp .tt__spk-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.dcc-lp .tt__spk-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 3px;
}


.dcc-lp .tt__spk-co {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.5;
  margin-bottom: 2px;
}

.dcc-lp .tt__spk-role {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.5;
}

/* ========== COMING SOON ROW ========== */
.dcc-lp .tt__row--coming-soon {
  cursor: default;
}
.dcc-lp .tt__row--coming-soon:hover {
  opacity: 1;
}
.dcc-lp .tt__row--coming-soon .tt__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 130px;
}
.dcc-lp .tt__row--coming-soon .tt__session-title {
  text-align: center;
  margin-bottom: 0;
}
.dcc-lp .tt__row--coming-soon .tt__speakers {
  display: flex;
}

/* ========== MODAL ========== */
.dcc-lp .modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dcc-lp .modal-overlay.is-open {
  display: flex;
}

/* モーダル本体：overflow:hidden で × ボタンを固定 */
.dcc-lp .modal {
  position: relative;
  background: var(--color-white);
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* グラデーション border（::before マスク技法） */
.dcc-lp .modal::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background:
    linear-gradient(90deg, rgba(80, 124, 207, 0.00) -18%, rgba(80, 124, 207, 0.60) 64.59%),
    rgba(235, 102, 100, 0.60);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}

/* × ボタン：absolute で常に右上に固定（スクロール非追従） */
.dcc-lp .modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}

.dcc-lp .modal__close:hover {
  background: var(--color-gray);
}

/* スクロール領域（ヘッダーも含めて全体がスクロール） */
.dcc-lp .modal__scroll {
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(147, 149, 154, 0.2) transparent;
}

.dcc-lp .modal__scroll::-webkit-scrollbar { width: 4px; }
.dcc-lp .modal__scroll::-webkit-scrollbar-track { background: transparent; }
.dcc-lp .modal__scroll::-webkit-scrollbar-thumb {
  background: rgba(80, 124, 207, 0.2);
  border-radius: 2px;
}

/* 時刻ヘッダー（スクロールする） */
.dcc-lp .modal__hd {
  padding: 16px 24px; /* 右側：× ボタン分の余白 */
}

.dcc-lp .modal__time-range {
  font-family: 'Times New Roman', Times, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.04em;
}

.dcc-lp .modal__arrow {
  font-size: 0.7em;
  color: rgba(235, 102, 100, 0.9);
  vertical-align: middle;
}

/* グラデーション下線（2px） */
.dcc-lp .modal__rule {
  height: 2px;
  width: 96%;
  margin: 0 auto;
  background:
    linear-gradient(90deg, rgba(80, 124, 207, 0.00) -18%, rgba(80, 124, 207, 0.60) 64.59%),
    rgba(235, 102, 100, 0.60);
}

/* ボディ */
.dcc-lp .modal__bd {
  padding: 16px 24px 40px;
}

.dcc-lp .modal__tag {
  display: inline-block;
  font-size: 21px;
  font-weight: 700;
  color: var(--color-blue);
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.dcc-lp .modal__title {
  font-family: "dnp-shuei-gokin-std", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.55;
  margin-bottom: 24px;
}

.dcc-lp .modal__desc { margin-bottom: 32px; }

.dcc-lp .modal__desc p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 16px;
}

.dcc-lp .modal__desc p:last-child { margin-bottom: 0; }

/* 登壇者セクション（複数対応）*/
.dcc-lp .modal__spk {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-gray);
}

/* 1人分の登壇者（写真＋情報を横並び） */
.dcc-lp .modal__spk-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* 130×130 */
.dcc-lp .modal__spk-photo {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-gray);
}

.dcc-lp .modal__spk-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.dcc-lp .modal__spk-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 6px;
}


.dcc-lp .modal__spk-co {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.6;
  margin-bottom: 12px;
}

.dcc-lp .modal__spk-bio {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.5;
}

/* ========== CONTACT / FORM ========== */
.dcc-lp .contact {
  position: relative;
  background: var(--color-white);
  padding: 100px 0 120px;
  overflow: hidden;
}

/* 左下装飾 */
.dcc-lp .contact__deco {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 240px;
  z-index: 1;
  pointer-events: none;
}

.dcc-lp .contact__deco img {
  width: 100%;
  height: auto;
}

/* 2カラム レイアウト */
.dcc-lp .contact__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

/* 左：イベント情報 */
.dcc-lp .contact__title {
  font-family: "dnp-shuei-gokin-std", sans-serif;
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 40px;
}

.dcc-lp .contact__rule {
  border: none;
  border-top: 1px solid var(--color-gray);
  margin: 0;
}

.dcc-lp .contact__details {
  margin: 0;
}

.dcc-lp .contact__detail-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-gray);
}

.dcc-lp .contact__detail-row dt {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-sub);
  min-width: 44px;
  flex-shrink: 0;
}

.dcc-lp .contact__detail-row dd {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
}

.dcc-lp .contact__note {
  font-size: 14px;
  padding-top: 16px;
  color: var(--color-text-sub);
}

/* 右：フォームカード */
.dcc-lp .contact__form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 16px;
  padding: 40px;
}

/* HubSpot フォーム内のスタイル上書き（.dcc-lp スコープ） */
.dcc-lp .contact__form-wrap .hs-form-frame {
  width: 100%;
}

/* ========================================
   RESPONSIVE — 1240px 以下
   ======================================== */
@media (max-width: 1240px) {
  .dcc-lp .hero {
    height: 580px;
    max-height: 580px;
  }

  .dcc-lp .hero__date img {
    width: 42%;
    margin-bottom: 20px;
  }

  .dcc-lp .hero__speakers img {
    width: 75%;
    max-width: 460px;
    height: auto;
  }
}

/* ========================================
   RESPONSIVE — 1340px 以下（pill 縮小）
   ======================================== */
@media (max-width: 1340px) {
  .dcc-lp .hero__badge {
    position: absolute;
    left: 10%;
    bottom: 32%;
  }
  .dcc-lp .hero__pill {
    font-size: 21px;
    padding: clamp(6px, 0.65vw, 10px) clamp(14px, 2vw, 28px);
  }
}

/* ========================================
   RESPONSIVE — SP ( max-width: 768px )
   ======================================== */
@media (max-width: 768px) {

  /* NAV */
  .dcc-lp .nav__inner {
    padding: 0 24px;
  }

  .dcc-lp .nav__links {
    display: none;
  }

  .dcc-lp .nav__hamburger {
    display: flex;
  }



  /* TIMETABLE SP */
  .dcc-lp .tt__inner { padding: 40px 16px; }
  .dcc-lp .tt__title { font-size: 1.75rem; }
  .dcc-lp .tt__row { gap: 8px; padding: 8px 0; }
  .dcc-lp .tt__time { width: 10%; padding-top:8px; }
  .dcc-lp .tt__time span { font-size: 12px; }
  .dcc-lp .tt__body { padding: 12px 14px; }
  .dcc-lp .tt__session-title { font-size: 18px; margin-bottom: 10px; }
  .dcc-lp .tt__spk-photo { width: 64px; height: 64px; }
  .dcc-lp .tt__speakers { flex-direction: column; }
  .dcc-lp .tt__spk { flex: none; width: 100%; max-width: 100%; }

  /* MODAL SP */
  .dcc-lp .modal-overlay { padding: 12px; }
  .dcc-lp .modal__scroll { max-height: 88vh; }
  .dcc-lp .modal__hd { padding: 16px 52px 16px 20px; }
  .dcc-lp .modal__time-range { font-size: 18px; }
  .dcc-lp .modal__close { top: 12px; right: 14px; }
  .dcc-lp .modal__bd { padding: 20px 20px 32px; }
  .dcc-lp .modal__title { font-size: 18px; }
  .dcc-lp .modal__spk-item { flex-direction: column; gap: 14px; }
  .dcc-lp .modal__spk-photo { width: 100px; height: 100px; }

  /* ABOUT */
  .dcc-lp .about__deco--star {
    left: 10px;
    bottom: 180px;
    width: 28px;
    opacity: 0.5;
    animation: dcc-float 6s ease-in-out infinite 1.2s;
  }

  /* SPEAKERS SP */
  .dcc-lp .speakers__inner {
    padding: 40px 16px;
  }

  .dcc-lp .speakers__title {
    font-size: 1.75rem;
  }

  /* SP：2列・%ベース */
  .dcc-lp .speakers__grid {
    gap: 24px 4%;
    justify-content: flex-start;
  }

  .dcc-lp .speakers__card {
    width: 48%;
    flex-shrink: 0;
  }

  .dcc-lp .speakers__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .about__stats {
    padding: 0px 8px;
  }
  /* WHOM SP */
  .dcc-lp .whom {
    max-height: none;
  }

  .dcc-lp .whom__inner {
    padding: 40px 16px;
  }

  .dcc-lp .whom__title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .dcc-lp .whom__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dcc-lp .whom__card {
    padding: 16px;
  }

  /* CONTACT SP */
  .dcc-lp .contact {
    padding: 72px 0 80px;
  }

  .dcc-lp .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .dcc-lp .contact__title {
    font-size: 1.75rem;
  }

  .dcc-lp .contact__form-wrap {
    padding: 24px 20px;
  }

  .dcc-lp .contact__deco {
    width: 140px;
  }

  /* ABOUT SP */
  .dcc-lp .about {
    padding: 72px 0 64px;
    max-height: none;
  }

  .dcc-lp .about__main {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .dcc-lp .about__title {
    font-size: 1.8rem;
    margin-bottom: 24px;
    text-align: left;
  }

  .dcc-lp .about__deco--circle {
    width: 240px;
    right: -80px;
  }

  /* SP でも 25%×4 を維持、数字を縮小 */
  .dcc-lp .about__stat {
    padding: 20px 8px;
  }

  .dcc-lp .about__stat-num {
    font-size: 1.75rem;
    margin-bottom: 6px;
  }

  .dcc-lp .about__stat-label {
    font-size: 10px;
  }
}

/* ========================================
   HERO のみ SP ( max-width: 768px )
   ======================================== */
@media (max-width: 768px) {

    /* Ashirai */
  .dcc-lp .hero__deco--harf-circle{
    display: none;
  }
  /* SP：縦幅を制限（背景下部はクリップ） */
  .dcc-lp .hero {
    max-height: 680px;
  }

  /* コンテンツ：背景全体に重なる */
  .dcc-lp .hero__content {
    position: absolute;
    inset: 0;
    padding: 68px 16px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .dcc-lp .hero__text-area {
    padding: 0;
    width: 100%;
    text-align: left;
  }

  /* タイトル：左寄せ・大きく・3行折り返し */
  .dcc-lp .hero__title {
    font-size: clamp(2.5rem, 11vw, 2.75rem);
    white-space: normal;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  /* サブタイトル：中央寄せ・小さく */
  .dcc-lp .hero__subtitle {
    font-size: clamp(0.8rem, 3.6vw, 0.95rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  /* pill：flow 内・中央寄せ */
  .dcc-lp .hero__badge {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .dcc-lp .hero__pill {
    font-size: 0.8rem;
    padding: 6px 16px;
    border-width: 1px;
    margin-bottom: 16px;
  }

  /* 日程画像：フロー内で縦積み */
  .dcc-lp .hero__date {
    width: 80%;
    margin: 0 auto 8px;
  }

  .dcc-lp .hero__date img {
    width: 100%;
    max-width: 100%;
  }

  /* 登壇者コラージュ：下部に配置 */
  .dcc-lp .hero__speakers {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }

  .dcc-lp .hero__speakers img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .dcc-lp .hero__cta-btn {
    bottom: 16px;
    right: 16px;
    font-size: 18px;
    width: 200px;
    height: 56px;
  }

  /* 装飾 */
  .dcc-lp .hero__deco--ashirai-r {
    width: 150px;
    right: -20px;
    top: -10px;
  }

  .dcc-lp .hero__deco--ashirai-l {
    display: none;
  }

  .dcc-lp .hero__deco--star1 {
    display: none;
  }

  .dcc-lp .hero__deco--star2,
  .dcc-lp .hero__deco--square {
    display: none;
  }
}
/* ========================================
   RESPONSIVE — SP ( max-width: 540px )
   ======================================== */
   @media (max-width: 540px) {
    .dcc-lp .hero__date  {
      width: 96%;
    }
   }

