:root {
  --bg: #101114;
  --bg2: #0c0d10;
  --text: #f4f6ff;
  --muted: rgba(244, 246, 255, .68);
  --line: rgba(244, 246, 255, .14);
  --line2: rgba(244, 246, 255, .08);
  --accent: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, .55);
  --r: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans JP", system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(1200px 800px at 55% 15%, rgba(255, 255, 255, .08), transparent 55%),
    radial-gradient(900px 600px at 20% 45%, rgba(255, 255, 255, .05), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  letter-spacing: .01em;
  overflow-x: hidden;
}

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

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.container-70 {
  width: 70%;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  padding: .5rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(10px);
}

.swoosh {
  position: fixed;
  inset: -20vh -20vw auto -20vw;
  height: 70vh;
  pointer-events: none;
  opacity: .55;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
  transform: translateZ(0);
  z-index: -1;
}

.swoosh svg {
  width: 100%;
  height: 100%
}

.grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to right, var(--line2) 1px, transparent 1px) 0 0/72px 72px,
    linear-gradient(to bottom, var(--line2) 1px, transparent 1px) 0 0/72px 72px;
  mask-image: radial-gradient(650px 420px at 50% 18%, #000 40%, transparent 70%);
  opacity: .38;
  pointer-events: none;
  z-index: -2;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(16, 17, 20, .75), rgba(16, 17, 20, .35));
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand img {
  width: 92px;
  height: auto;
  opacity: .95;
}

.brand .name {
  font-weight: 600;
  letter-spacing: .44em;
  font-size: .99rem;
  color: rgba(244, 246, 255, .9);
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a {
  font-size: .92rem;
  color: rgba(244, 246, 255, .82);
  padding: .55rem .7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s ease;
}

nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .62rem .88rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  transition: .2s ease;
  font-size: .92rem;
}

.btn:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .18)
}

.btn.primary {
  background: rgba(255, 255, 255, .92);
  color: #0e0f12;
  border-color: transparent;
}

.btn.primary:hover {
  background: #fff
}

.hero {
  padding: 70px 0 28px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: stretch;
}

.card {
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-left {
  padding: 34px 34px 30px;
}

.kicker {
  color: var(--muted);
  font-size: .92rem;
  letter-spacing: .16em;
  text-transform: uppercase
}

h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .02em;
}

.lead {
  margin: 0 0 20px;
  color: rgba(244, 246, 255, .74);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 52ch;
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(244, 246, 255, .70);
  font-size: .92rem;
}

.hero-right {
  position: relative;
  padding: 0;
  min-height: 280px;
}

.hero-right .frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-right .frame-inner {
  width: min(430px, 80%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.hero-right .frame-inner img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 0px 40px rgba(0, 0, 0, .55));
}

.hero-right .caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(244, 246, 255, .66);
  font-size: .9rem;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  border-radius: 999px;
  padding: .45rem .7rem;
}

section {
  padding: 56px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 1.45rem;
  margin: 0;
  letter-spacing: .06em;
}

.mini-container{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.con-box{
  width: 50%;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 60ch;
}

.cols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

.col-8 {
  grid-column: span 8;
}

.col-12 {
  grid-column: span 12;
}

.about {
  padding: 26px
}

.about .stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.stat .box {
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, .02);
}

.box .label {
  color: var(--muted);
  font-size: .86rem;
}

.box .value {
  font-size: 1.05rem;
  margin-top: 6px;
  letter-spacing: .06em;
}

.embed {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .25);
  min-height: 260px;
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.shot {
  grid-column: span 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  position: relative;
  cursor: pointer;
  transform: translateZ(0);
  transition: .22s ease;
  aspect-ratio: 4 / 3;
}

.shot:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .18)
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
  filter: contrast(1.02) saturate(1.02);
  transform: scale(1.02);
}

.shot .tag {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: .82rem;
  color: rgba(244, 246, 255, .74);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .26);
  border-radius: 999px;
  padding: .35rem .6rem;
  backdrop-filter: blur(10px);
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
}

.table th,
.table td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(244, 246, 255, .84);
  font-size: .95rem;
}

.table th {
  color: rgba(244, 246, 255, .62);
  font-weight: 600;
  letter-spacing: .08em;
}

.table tr:last-child td {
  border-bottom: none
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: rgba(244, 246, 255, .78);
  font-size: .82rem;
  white-space: nowrap;
}

.contact {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  color: var(--text);
  outline: none;
}

textarea.input {
  min-height: 130px;
  resize: vertical;
}

.fine {
  color: rgba(244, 246, 255, .60);
  font-size: .9rem;
  line-height: 1.7;
}

footer {
  padding: 44px 0 60px;
  color: rgba(244, 246, 255, .58);
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .25));
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 22px;
}

.modal.open {
  display: grid;
}

.modal .viewer {
  width: min(1100px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 10, 12, .65);
  box-shadow: 0 30px 120px rgba(0, 0, 0, .65);
  position: relative;
}

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

.modal .close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .35);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 940px) {
  .hero-top {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 260px;
  }

  .container-70{
    width: 100%;
  }

  .mini-container{
    flex-direction: column;
  }

  .con-box{
    width: 100%;
  }
  
  .col-6 {
    grid-column: span 12;
  }

  .col-4 {
    grid-column: span 12;
  }

  .col-8 {
    grid-column: span 12;
  }

  .shot {
    grid-column: span 6;
  }

  nav ul {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-left {
    padding: 26px 22px;
  }

  .shot {
    grid-column: span 12;
  }

  .brand img {
    width: 84px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: .6s ease;
}

[data-reveal].show {
  opacity: 1;
  transform: translateY(0);
}

.frame-inner img {
  border-radius: 50%;
}

<<<<<<< HEAD:public/news/2026/01.15/style.css
=======

/* OS / Browser Light Theme (auto) */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f7fb;
    --bg2: #eef1f7;
    --text: #0f1220;
    --muted: rgba(15, 18, 32, .68);
    --line: rgba(15, 18, 32, .14);
    --line2: rgba(15, 18, 32, .08);
    --accent: #0f1220;
    --shadow: 0 22px 70px rgba(0, 0, 0, .18);
  }

  body {
    background: radial-gradient(1200px 800px at 55% 15%, rgba(0, 0, 0, .06), transparent 55%),
      radial-gradient(900px 600px at 20% 45%, rgba(0, 0, 0, .035), transparent 60%),
      linear-gradient(180deg, var(--bg), var(--bg2));
  }

  .kicker,
  .lead {
    color: var(--muted);
  }

  .btn.primary {
    background: rgba(15, 18, 32, .92);
    color: #f6f7fb;
  }

  .btn.primary:hover {
    background: rgba(15, 18, 32, .98);
  }

  /* Fix: ensure text has contrast in light mode */
  .brand .name { color: var(--text); }
  nav a { color: rgba(15, 18, 32, .82); }
  .meta-row,
  .hero-right .caption,
  .shot .tag,
  .fine,
  footer { color: var(--muted); }

  .table td { color: var(--text); }
  .table th { color: rgba(15, 18, 32, .62); }
  .badge { color: rgba(15, 18, 32, .78); }
}

>>>>>>> 55cdc2d9f871cc289d6c46a842e110b5815e55c7:public/news/2026/01.16-2/style.css
