:root {
  --tv-bg: #000;
  --tv-text: #fff;
  --tv-muted: rgba(255, 255, 255, 0.62);
  --tv-card: #0f0f0f;
  --tv-card2: #1f1f1f;
  --tv-border: rgba(255, 255, 255, 0.12);
  --tv-font-ja: "LINE Seed JP_OTF", "LINE Seed JP", sans-serif;
  --tv-font-en: "LINE Seed Sans Local", "LINE Seed Sans", sans-serif;
  --tv-font-ko: "LINE Seed KR", sans-serif;
  --tv-font-body: var(--tv-font-ja);
}

@font-face {
  font-family: "LINE Seed Sans Local";
  src:
    local("LINE Seed Sans"),
    url("../fonts/LINESeedSans_W_Rg.woff2") format("woff2"),
    url("../fonts/LINESeedSans_W_Rg.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed Sans Local";
  src:
    local("LINE Seed Sans Bold"),
    url("../fonts/LINESeedSans_W_Bd.woff2") format("woff2"),
    url("../fonts/LINESeedSans_W_Bd.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed Sans Local";
  src:
    local("LINE Seed Sans ExtraBold"),
    url("../fonts/LINESeedSans_W_XBd.woff2") format("woff2"),
    url("../fonts/LINESeedSans_W_XBd.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed KR";
  src:
    local("LINE Seed Sans KR"),
    url("../fonts/LINESeedKR-Rg.woff2") format("woff2"),
    url("../fonts/LINESeedKR-Rg.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed KR";
  src:
    local("LINE Seed Sans KR Bold"),
    url("../fonts/LINESeedKR-Bd.woff2") format("woff2"),
    url("../fonts/LINESeedKR-Bd.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed KR";
  src:
    local("LINE Seed Sans KR Bold"),
    url("../fonts/LINESeedKR-Bd.woff2") format("woff2"),
    url("../fonts/LINESeedKR-Bd.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--tv-bg);
  color: var(--tv-text);
  font-family: var(--tv-font-body);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html[lang="ja"] {
  --tv-font-body: var(--tv-font-ja);
}

html[lang="en"] {
  --tv-font-body: var(--tv-font-en);
}

html[lang="ko"] {
  --tv-font-body: var(--tv-font-ko);
}

.tv-header,
.tv-mobile-menu,
.tv-footer,
.tv-terms-footer {
  font-family: var(--tv-font-ja);
}

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

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

.tv-container {
  width: min(1920px, calc(100% - 80px));
  margin: 0 auto;
}

.tv-header {
  position: fixed;
  inset: 0 0 auto;
  height: 80px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000d9;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.tv-header__inner {
  position: relative;
  height: 80px;
  width: 100%;
  max-width: none;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.tv-brand,
.tv-nav,
.tv-lang,
.tv-menu {
  pointer-events: auto;
}

.tv-brand {
  display: block;
  line-height: 0;
}

.tv-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 60px;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 27px;
  white-space: nowrap;
}

.tv-nav__link {
  opacity: 1;
  transition: opacity 160ms ease;
}

.tv-nav__link:hover,
.tv-nav__link:focus-visible {
  opacity: 0.7;
}

.tv-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  height: 56px;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.tv-lang-wrap {
  position: relative;
  pointer-events: auto;
}

.tv-lang__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.tv-lang-panel {
  position: absolute;
  top: calc(100% - 8px);
  right: 0;
  width: 200px;
  background: #242428;
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 40;
}

.tv-lang-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.tv-lang-panel a {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 19px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tv-lang-panel .is-active {
  color: #47bcff;
  font-weight: 700;
}

.tv-lang-panel .is-active::before {
  content: "";
  width: 12.943px;
  height: 8.747px;
  flex: 0 0 auto;
  background: url("../images/c1134c040aac2712cf934e7a00a4f5df1b9b9ea3.svg") center / contain no-repeat;
}

.tv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.tv-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tv-icon--24 {
  width: 24px;
  height: 24px;
}

.tv-lang .tv-icon--24,
.tv-mobile-menu__lang-toggle .tv-icon--24 {
  box-sizing: border-box;
  padding: 2.75px 2.8945px;
}

.tv-icon--28 {
  width: 28px;
  height: 28px;
}

.tv-hero {
  position: relative;
  max-width: 1920px;
  height: max(700px, 100svh);
  margin: 0 auto;
  padding-top: 80px;
}

.tv-hero__visual {
  position: absolute;
  inset: 80px 0 0;
  pointer-events: none;
}

.tv-hero__asset {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-43%, -50%);
  width: 1524px;
  max-height: 1063px;
  padding: 70px 0 90px 190px;
}

.tv-hero__inner {
  position: absolute;
  left: 50%;
  top: calc(50% + 40px);
  transform: translate(-100%, -50%);
  width: min(593px, calc(100vw - 80px));
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tv-hero__title {
  margin: 0;
  line-height: 0;
}

.tv-hero__title-image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 593 / 200;
  height: auto;
}

.tv-hero__meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.tv-dot {
  width: 8px;
  height: 8px;
}

.tv-dot img {
  width: 100%;
  height: 100%;
}

.tv-contents {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}

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

.tv-bg__ring {
  position: absolute;
  left: calc(50% + var(--ring-x, 0px));
  top: var(--ring-top, 0px);
  width: var(--ring-width, 0px);
  height: var(--ring-height, 0px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.96;
  transform: translateX(-50%) rotate(var(--ring-rotate, 0deg));
}

.tv-bg__ring--left-top {
  background-image: url("../images/home-bg-ring01.svg");
  --ring-x: -720px;
  --ring-top: 80px;
  --ring-width: 1256px;
  --ring-height: 785px;
}

.tv-bg__ring--right-mid {
  background-image: url(../images/home-bg-ring02.svg);
  --ring-x: 710px;
  --ring-top: 430px;
  --ring-width: 2415px;
  --ring-height: 1603px;
}

.tv-bg__ring--left-mid {
  background-image: url("../images/home-bg-ring03.svg");
  --ring-x: -770px;
  --ring-top: 1660px;
  --ring-width: 1466px;
  --ring-height: 892px;
}

.tv-bg__ring--right-bottom {
  background-image: url("../images/home-bg-ring04.svg");
  --ring-x: 770px;
  --ring-top: 2690px;
  --ring-width: 1021px;
  --ring-height: 1371px;
}

.tv-bg__ring--left-bottom {
  background-image: url("../images/home-bg-ring05.svg");
  --ring-x: -930px;
  top: auto;
  bottom: 1754px;
  --ring-width: 1942px;
  --ring-height: 1438px;
}

.tv-section {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tv-section--gap64 {
  gap: 64px;
}

.tv-text-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.tv-section__title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.tv-section__desc {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.tv-overview {
  min-height: 800px;
  justify-content: center;
}

.tv-countdown-section {
  min-height: 800px;
  justify-content: center;
}

.tv-countdown-wrap {
  width: 1200px;
  min-height: 600px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  background: radial-gradient(ellipse at center, #000000cc 0%, #00000000 68%);
}

.tv-countdown {
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--tv-font-ja);
  font-size: 80px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}

.tv-countdown__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  font-family: var(--tv-font-ja);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.tv-countdown__sep {
  display: inline-flex;
  width: 30px;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--tv-font-ja);
  font-size: 80px;
  font-weight: 400;
  line-height: 1.2;
}

.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

.tv-btn--ghost {
  background: #fff;
  color: #000;
  transition: background-color 180ms ease;
}

.tv-btn--ghost:hover,
.tv-btn--ghost:focus-visible {
  background: #64c6ff;
}

.tv-btn--w360 {
  min-width: 310px;
  max-width: 360px;
  width: 100%;
  padding: 0 56px;
}

.tv-btn--w310 {
  min-width: 310px;
  width: 310px;
  padding: 0 28px;
}

.tv-btnrow {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tv-btn--icon {
  justify-content: center;
}

.tv-sessions {
  min-height: 800px;
  justify-content: center;
}

.tv-sessions__desc {
  text-wrap: pretty;
  line-break: strict;
}

.tv-sessions__desc .tv-br-mobile {
  display: none;
}

.tv-sessions__desc .tv-br-desktop {
  display: inline;
}

.tv-sessions__list {
  width: 100%;
  max-width: 920px;
}

.tv-sessions__list section {
  margin-top: 40px;
}

.tv-sessions__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.tv-sessions__list li {
  font-size: 16px;
  line-height: 26px;
  color: var(--tv-muted);
}

.tv-calendar {
  min-height: 800px;
  justify-content: center;
}

.tv-calendar .tv-btn--icon .tv-icon {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
}

.tv-calendar .tv-btn--icon .tv-icon img {
  width: 100%;
  height: 100%;
}

.tv-calendar .tv-btn--icon .tv-icon:not(.tv-icon--calendar-ics) {
  padding: 3.5px 3.89px 3.94px 4px;
}

.tv-calendar .tv-btn--icon .tv-icon--calendar-ics {
  padding: 3.81px 4.345px;
}

.tv-calendar .tv-btn--icon .tv-icon--calendar-ics img {
  width: 100%;
  height: 100%;
}

.tv-articles {
  padding-top: 200px;
}

.tv-articles__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tv-card {
  min-width: 0;
  border-radius: 20px;
  background: var(--tv-card2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}

.tv-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.tv-card__tag {
  margin: 0;
  color: #03ec83;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

.tv-card__tag--core {
  color: #9d6cff;
}

.tv-card__title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.tv-card__date {
  margin: 0;
  color: #868686;
  font-size: 14px;
  line-height: 17px;
}

.tv-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-top: auto;
}

.tv-card__byline {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 17px;
  min-width: 0;
}

.tv-card__byline-row {
  display: flex;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.tv-card__byline-name {
  display: block;
  color: #fff;
  flex: 0 0 auto;
}

.tv-card__byline-org {
  display: block;
  flex: 1 1 auto;
  color: #868686;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tv-news {
  min-height: 1200px;
  justify-content: center;
}

.tv-news__hashtag {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.tv-btn--news {
  min-width: 310px;
  max-width: 360px;
  width: 100%;
  height: auto;
  padding: 16px 56px;
  flex-direction: column;
  gap: 4px;
}

.tv-btn--news-main {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.tv-btn--news-sub {
  color: #4d4d4d;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
}

.tv-follow {
  gap: 64px;
}

.tv-follow__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tv-follow__item {
  height: 160px;
  border-radius: 12px;
  background: var(--tv-card2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.tv-follow__item:hover,
.tv-follow__item:focus-visible {
  color: #000;
}

.tv-follow__item:nth-child(3n + 1):hover,
.tv-follow__item:nth-child(3n + 1):focus-visible {
  background: #03ec83;
}

.tv-follow__item:nth-child(3n + 2):hover,
.tv-follow__item:nth-child(3n + 2):focus-visible {
  background: #9d6cff;
}

.tv-follow__item:nth-child(3n):hover,
.tv-follow__item:nth-child(3n):focus-visible {
  background: #fe7237;
}

.tv-follow__item .tv-icon {
  position: relative;
  transform: rotate(180deg);
  overflow: visible;
}

.tv-follow__icon--light,
.tv-follow__icon--dark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.46);
  transform-origin: center;
}

.tv-follow__icon--dark {
  opacity: 0;
}

.tv-follow__item:hover .tv-follow__icon--dark,
.tv-follow__item:focus-visible .tv-follow__icon--dark {
  opacity: 1;
}

.tv-follow__item:hover .tv-follow__icon--light,
.tv-follow__item:focus-visible .tv-follow__icon--light {
  opacity: 0;
}

.tv-corpmark {
  min-height: 680px;
  justify-content: center;
}

.tv-corpmark__ja {
  width: 520px;
  max-width: 100%;
  height: auto;
}

.tv-corpmark__ly {
  width: 520px;
  max-width: 100%;
  height: auto;
  display: none;
}

html[lang="en"] .tv-corpmark__ja,
html[lang="ko"] .tv-corpmark__ja {
  display: none;
}

html[lang="en"] .tv-corpmark__ly,
html[lang="ko"] .tv-corpmark__ly {
  display: block;
}

@media (max-width: 1080px) {
  .tv-corpmark__ja,
  .tv-corpmark__ly {
    width: clamp(320px, calc(25.64vw + 123px), 400px);
  }
}

.tv-footer {
  border-top: 1px solid var(--tv-border);
}

.tv-footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.tv-footer__links {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  color: #d9d9d9;
}

.tv-footer__links a,
.tv-terms-footer__links a {
  transition: opacity 160ms ease;
}

.tv-footer__links a:hover,
.tv-footer__links a:focus-visible,
.tv-terms-footer__links a:hover,
.tv-terms-footer__links a:focus-visible {
  opacity: 0.6;
}

.tv-footer__copyright {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  width: 210px;
  text-align: right;
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  color: #d9d9d9;
}

.tv-menu {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  width: 28px;
  height: 28px;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tv-menu .tv-icon--28 {
  box-sizing: border-box;
  padding: 6.398px 6.241px;
}

.tv-mobile-menu {
  position: fixed;
  inset: 0;
  background: #000000d9;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  display: flex;
  flex-direction: column;
}

.tv-mobile-menu[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tv-mobile-menu__header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 20px;
}

.tv-mobile-menu__lang-toggle,
.tv-mobile-menu__close {
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  cursor: pointer;
}

.tv-mobile-menu__lang-toggle {
  width: 60px;
  height: 56px;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.tv-mobile-menu__close {
  width: 28px;
  height: 28px;
  justify-content: center;
  padding: 0;
  position: relative;
}

.tv-mobile-menu__close .tv-icon--28 {
  box-sizing: border-box;
  padding: 5.824px;
}

.tv-mobile-menu__lang-panel {
  position: absolute;
  left: 20px;
  top: 68px;
  width: 200px;
  background: #242428;
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  z-index: 2;
}

.tv-mobile-menu__lang-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.tv-mobile-menu__lang-panel a.is-active {
  color: #47bcff;
  font-weight: 700;
}

.tv-mobile-menu__lang-panel a {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12.5px 16px;
  line-height: 19px;
  transition: opacity 160ms ease;
}

.tv-mobile-menu__lang-panel a.is-active::before {
  content: "";
  width: 12.943px;
  height: 8.747px;
  flex: 0 0 auto;
  background: url("../images/c1134c040aac2712cf934e7a00a4f5df1b9b9ea3.svg") center / contain no-repeat;
}

.tv-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 80px 20px 0;
  gap: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 34px;
  position: relative;
  z-index: 1;
}

.tv-mobile-menu__nav a {
  padding: 16px 0;
  transition: opacity 160ms ease;
}

.tv-mobile-menu__lang-panel a:hover,
.tv-mobile-menu__lang-panel a:focus-visible,
.tv-mobile-menu__nav a:hover,
.tv-mobile-menu__nav a:focus-visible {
  opacity: 0.6;
}

body.tv-menu-open {
  overflow: hidden;
}


@media (max-width: 1439px) {
  .tv-hero__inner {
    left: 50%;
    top: calc(50% + 40px);
  }

  .tv-section {
    width: min(1200px, calc(100% - 80px));
  }

  .tv-countdown-wrap {
    width: 100%;
  }
}

@media (max-width: 1280px) {
  .tv-container {
    width: calc(100% - 80px);
  }

  .tv-header__inner {
    width: 100%;
    max-width: none;
    padding: 0 20px;
  }

  .tv-hero {
    height: max(700px, 100svh);
  }

  .tv-hero__asset {
    /* padding: 60px 0 159.381px 175px;
    aspect-ratio: 311/217;
    height: auto; */
  }

  .tv-hero__inner {
    padding: 0 0 0 80px;
    width: auto;
  }

  .tv-hero__meta {
    font-size: 24px;
    line-height: 29px;
  }

  .tv-section {
    width: calc(100% - 80px);
  }

  .tv-countdown-wrap {
    width: 100%;
  }

  .tv-follow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tv-container {
    width: calc(100% - 32px);
  }

  .tv-header__inner {
    width: 100%;
    max-width: none;
    padding: 0 16px 0 20px;
  }

  .tv-nav,
  .tv-lang-wrap {
    display: none;
  }

  .tv-menu {
    display: inline-flex;
  }

  .tv-hero {
    --tv-hero-mobile-pad: clamp(16px, 5.2083vw, 40px);
    --tv-hero-mobile-width: calc(100% - (var(--tv-hero-mobile-pad) * 2));
    --tv-hero-asset-width-rate: 1.1;
    height: auto;
    min-height: 100svh;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .tv-hero__visual {
    position: static;
    inset: auto;
    display: flex;
    justify-content: center;
  }

  .tv-hero__asset {
    position: static;
    left: auto;
    top: auto;
    max-width: none;
    width: calc(var(--tv-hero-mobile-width) * var(--tv-hero-asset-width-rate));
    max-height: none;
    height: auto;
    padding: 0;
    transform: none;
    width: 110%;
    margin-left: -15%;
    min-width: 425px;
  }

  .tv-hero__inner {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    padding: 0;
    width: var(--tv-hero-mobile-width);
    max-width: 688px;
    gap: 40px;
  }
  .tv-hero__title {
    margin:0 24px;
  }

  .tv-hero__title-image {
    width: min(100%, 400px);
    max-width: 400px;
  }

  .tv-hero__meta {
    font-size: 20px;
    line-height: 24px;
    margin: 0 24px;
  }

  .tv-contents {
    padding-bottom: 0;
  }

  .tv-bg {
    overflow: hidden;
  }

  .tv-bg__ring {
    opacity: 0.72;
  }

  .tv-bg__ring--left-top {
    --ring-x: -320px;
    --ring-top: 143px;
    --ring-width: 637px;
    --ring-height: 398px;
  }

  .tv-bg__ring--right-mid {
    --ring-x: 360px;
    --ring-top: 250px;
    --ring-width: 1268px;
    --ring-height: 838px;
  }

  .tv-bg__ring--left-mid {
    --ring-x: 320px;
    --ring-top: 1650px;
    --ring-width: 710px;
    --ring-height: 432px;
  }

  .tv-bg__ring--right-bottom {
    --ring-x: 320px;
    --ring-top: 2020px;
    --ring-width: 612px;
    --ring-height: 822px;
  }

  .tv-bg__ring--left-bottom {
    --ring-x: -390px;
    top: auto;
    bottom: 1721px;
    --ring-width: 920px;
    --ring-height: 680px;
  }

  .tv-section {
    width: calc(100% - 32px);
  }

  .tv-section--gap64 {
    gap: 40px;
  }

  .tv-section__title {
    font-size: 32px;
    line-height: 38px;
  }

  .tv-section__desc {
    font-size: 16px;
    line-height: 26px;
  }

  .tv-sessions__desc .tv-br-mobile {
    display: inline;
  }

  .tv-sessions__desc .tv-br-desktop {
    display: none;
  }

  .tv-overview,
  .tv-countdown-section {
    min-height: 400px;
  }

  .tv-sessions {
    min-height: 520px;
  }

  .tv-calendar {
    min-height: 520px;
  }

  .tv-countdown-wrap {
    min-height: 400px;
    gap: 40px;
  }

  .tv-countdown {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 48px;
    line-height: 58px;
  }

  .tv-countdown__value {
    width: 72px;
    font-size: 48px;
    line-height: 58px;
  }

  .tv-countdown__sep {
    width: 16px;
    height: 58px;
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    align-items: flex-start;
  }

  .tv-countdown-section .tv-btn--w360 {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    height: 52px;
    padding: 0 28px;
  }

  #top .tv-btn--ghost {
    font-size: 16px;
    line-height: 19px;
  }

  .tv-sessions .tv-btn--w360 {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    height: 52px;
    padding: 0 28px;
  }

  .tv-btnrow {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .tv-btn--w310 {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    height: 52px;
    padding: 0 28px;
  }

  .tv-calendar .tv-btn--w310 {
    width: 230px;
    min-width: 230px;
    max-width: 230px;
  }

  .tv-articles {
    padding-top: 120px;
  }

  .tv-articles__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tv-card {
    border-radius: 16px;
    padding: 20px;
  }

  .tv-card__title {
    font-size: 16px;
    line-height: 26px;
  }

  .tv-news {
    min-height: 400px;
    gap: 40px;
    margin: 200px 16px;
    padding: 0;
  }

  .tv-news__hashtag {
    font-size: 20px;
    line-height: 24px;
  }

  .tv-btn--news {
    width: fit-content;
    min-width: 180px;
    max-width: 100%;
    height: auto;
    padding: 16px 28px;
    gap: 2px;
  }

  .tv-btn--news-main {
    font-size: 16px;
    line-height: 19px;
  }

  .tv-follow__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tv-follow__item {
    height: 120px;
    padding: 0 28px;
    font-size: 16px;
    line-height: 19px;
  }

  .tv-corpmark {
    min-height: 400px;
  }

  .tv-corpmark__ja,
  .tv-corpmark__ly {
    width: clamp(240px, calc(20.36vw + 164px), 320px);
  }

  .tv-footer__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .tv-footer__links,
  .tv-footer__copyright {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }
}

.tv-sessions-page {
  position: relative;
  background: #000;
}

.tv-sessions-main {
  position: relative;
  overflow: visible;
  padding-top: 80px;
}

.tv-sessions-shell {
  position: relative;
  width: 100%;
  min-height: 0;
  padding-bottom: 120px;
}

.tv-sessions-shell__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.tv-sessions-shell__ring {
  position: absolute;
  left: calc(50% + var(--sessions-ring-x, 0px));
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-50%);
}

.tv-sessions-shell__ring--01 {
  width: 1332px;
  height: 1443px;
  --sessions-ring-x: 750px;
  top: -120px;
  background-image: url("../images/sessions-bg-ring01.svg");
}

.tv-sessions-shell__ring--02 {
  width: 2957px;
  height: 1777px;
  --sessions-ring-x: -1105px;
  top: auto;
  bottom: -417px;
  background-image: url("../images/sessions-bg-ring02.svg");
}

.tv-sessions-shell__ring--03 {
  display: none;
}

.tv-sessions-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 100px 0 140px;
}

.tv-sessions-top__title {
  margin: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 77px;
}

.tv-sessions-anchor-nav {
  display: none;
}

.tv-sessions-anchor-sentinel {
  display: none;
}

#sessions-category-ai,
#sessions-category-core {
  scroll-margin-top: 96px;
}

.tv-sessions-grid {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 12px;
}

.tv-sessions-grid__item {
  display: flex;
}

.tv-sessions-grid__item > .tv-session-card {
  width: 100%;
  height: 100%;
}

.tv-sessions-grid__item--ai {
  grid-column: 1;
  grid-row: var(--session-row);
}

.tv-sessions-grid__item--core {
  grid-column: 2;
  grid-row: var(--session-row);
}

.tv-session-card {
  background: #1f1f1f;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tv-session-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 8px;
}

.tv-session-card__category {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

.tv-session-card__title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.tv-session-card__speakers {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.tv-session-card__speaker {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.tv-session-card__name {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  white-space: nowrap;
}

.tv-session-card__org {
  min-width: 0;
  color: #868686;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tv-session-card__category {
  color: #03ec83;
}

.tv-session-card .tv-session-card__category + .tv-session-card__title {
  word-break: break-word;
}

.tv-session-card .tv-session-card__speaker + .tv-session-card__speaker {
  margin-top: 0;
}

.tv-session-card .tv-session-card__speaker {
  text-wrap: nowrap;
}

.tv-session-card .tv-session-card__name:empty,
.tv-session-card .tv-session-card__org:empty {
  display: none;
}

.tv-session-card .tv-session-card__org:empty + .tv-session-card__name {
  flex: 1 1 auto;
}

.tv-session-card__category:is(:where(.tv-session-card__category)) {
  text-wrap: pretty;
}

.tv-sessions-grid__item--core .tv-session-card__category {
  color: #9d6cff;
}

@media (max-width: 1280px) {
  .tv-sessions-grid {
    width: min(1000px, calc(100% - 80px));
  }
}

@media (max-width: 768px) {
  .tv-sessions-shell {
    padding-bottom: 80px;
  }

  .tv-sessions-shell__ring--01 {
    width: 944px;
    height: 1021px;
    --sessions-ring-x: 339px;
    top: -106px;
  }

  .tv-sessions-shell__ring--02 {
    display: none;
  }

  .tv-sessions-shell__ring--03 {
    display: block;
    background-image: url("../images/sessions-bg-ring03.svg");
    width: 850px;
    height: 495px;
    --sessions-ring-x: 249px;
    bottom: -200px;
  }

  .tv-sessions-top {
    padding: 80px 0 100px;
  }

  .tv-sessions-top__title {
    font-size: 48px;
    line-height: 58px;
  }

  .tv-sessions-anchor-sentinel {
    display: block;
    height: 1px;
    width: 100%;
  }

  .tv-sessions-anchor-nav {
    z-index: 20;
    width: 100%;
    margin: 0 0 8px;
    padding: 8px 16px 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 80px;
  }

  .tv-sessions-anchor-nav.is-stuck {
    background: rgb(0 0 0 / 85%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .tv-sessions-anchor-nav__link {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    transition: opacity 160ms ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .tv-sessions-anchor-nav__link:hover {
      opacity: 0.7;
    }
  }

  .tv-sessions-anchor-nav__link:focus-visible {
    opacity: 1;
    color: #fff;
  }

  #sessions-category-ai,
  #sessions-category-core {
    scroll-margin-top: 140px;
  }

  .tv-sessions-grid {
    width: min(736px, calc(100% - 32px));
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 12px;
  }

  .tv-sessions-grid__item--ai,
  .tv-sessions-grid__item--core {
    grid-column: auto;
    grid-row: auto;
  }

  .tv-session-card {
    border-radius: 16px;
    padding: 20px;
    gap: 32px;
  }

  .tv-session-card__body {
    gap: 4px;
  }

  .tv-session-card__title {
    font-size: 16px;
    line-height: 26px;
  }

  .tv-session-card__speakers {
    gap: 6px;
  }
}

.tv-terms-page {
  position: relative;
  background: #000;
}

.tv-terms-shell {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.tv-terms-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tv-terms-bg__ring {
  position: absolute;
  left: calc(50% + var(--terms-ring-x, 0px));
  top: var(--terms-ring-top, auto);
  bottom: var(--terms-ring-bottom, auto);
  width: var(--terms-ring-width, 0px);
  height: var(--terms-ring-height, 0px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.96;
  transform: translateX(-50%);
}

.tv-terms-bg__ring--01 {
  --terms-ring-x: -831px;
  --terms-ring-top: -38px;
  --terms-ring-width: 1340px;
  --terms-ring-height: 740px;
  background-image: url("../images/terms-bg-ring01.png");
}

.tv-terms-bg__ring--02 {
  --terms-ring-x: 969px;
  --terms-ring-bottom: -481px;
  --terms-ring-width: 1562px;
  --terms-ring-height: 1625px;
  background-image: url("../images/terms-bg-ring02.png");
}

.tv-terms {
  min-height: 0;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.tv-terms__inner {
  width: min(800px, calc(100% - 80px));
  margin: 0 auto;
}

.tv-terms__title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-align: center;
}

.tv-terms__lead {
  margin: 80px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.tv-terms__section {
  margin-top: 40px;
}

.tv-terms__heading {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}

.tv-terms__section p,
.tv-terms__section li {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.tv-terms__section p {
  margin-top: 12px;
}

.tv-terms__section ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.tv-terms__section li + li {
  margin-top: 8px;
}

.tv-terms__closing {
  margin: 40px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.tv-terms-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.tv-terms-footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tv-terms-footer__brand {
  width: 210px;
  height: 28px;
  display: inline-flex;
  align-items: center;
}

.tv-terms-footer__logo-mark {
  width: 24px;
  height: 28px;
  flex: 0 0 24px;
}

.tv-terms-footer__logo-word {
  width: 168px;
  height: 16px;
  margin-left: 12px;
  flex: 0 0 168px;
}

.tv-terms-footer__logo-mark img,
.tv-terms-footer__logo-word img {
  display: block;
  width: 100%;
  height: 100%;
}

.tv-terms-footer__links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  line-height: 19px;
  color: #d9d9d9;
}

.tv-terms-footer__copyright {
  width: 210px;
  margin: 0;
  text-align: right;
  font-size: 16px;
  line-height: 19px;
  color: #d9d9d9;
}

@media (max-width: 1280px) {

  .tv-terms-footer__inner {
    width: 100%;
    padding: 40px;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
  }

  .tv-terms-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .tv-terms-footer__copyright {
    width: auto;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .tv-terms-bg__ring--01 {
    --terms-ring-x: -507px;
    --terms-ring-top: -13px;
    --terms-ring-width: 655px;
    --terms-ring-height: 362px;
    transition: none;
    left: -100px;
    background-image: url("../images/terms-bg-ring01.png");
  }

  .tv-terms-bg__ring--02 {
    --terms-ring-width: 1065px;
    --terms-ring-height: 1108px;
    --terms-ring-x: -50px;
    --terms-ring-bottom: -370px;
    transform: none;
  }

  .tv-terms {
    padding: 80px 0;
  }

  .tv-terms__inner {
    width: min(736px, calc(100% - 32px));
  }

  .tv-terms__title {
    font-size: 32px;
    line-height: 38px;
  }

  .tv-terms__lead {
    margin-top: 80px;
  }

  .tv-terms-footer__inner {
    width: 100%;
    padding: 40px 16px;
  }
}
