/*
Theme Name: Lightcone
Author: Atsushi Maeda
Version: 1.0
*/

/* =========================
   全体設定
========================= */
html,
body {
  margin: 0;
  padding: 0;

  width: 100%;
  min-height: 100%;

  background:
    radial-gradient(
      circle at top,
      rgba(255,255,255,0.82) 0%,
      rgba(248,248,248,1) 40%,
      rgba(238,238,238,1) 100%
    );

  background-attachment: fixed;

  color: #2f3135;

  overflow-x: hidden;

  font-family: 'Inter', sans-serif;
}

/* =========================
   Global Header
========================= */

.global-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 104px;
  z-index: 9999;

  display: flex;
  flex-direction: column;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-top {
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 44px;

  box-sizing: border-box;
}


/* =========================
   Logo
========================= */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
}

.nav-logo img {
  width: 42px;
  height: auto;

  opacity: 0.9;
}

.logo-text {
  display: flex;
  flex-direction: column;

  gap: 2px;
}


.logo-company {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;

  color: rgba(24,24,24,0.86);
}

/* =========================
   Navigation
========================= */

.global-nav {
  height: 46px;

  display: flex;
  align-items: center;

  gap: 32px;

  padding: 0 44px;

  border-top: 1px solid rgba(0,0,0,0.04);

  box-sizing: border-box;
}

.global-nav a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;

  text-decoration: none;

  color: rgba(30,30,30,0.74);
}

.global-nav a:hover {
  opacity: 0.45;
}

.menu-toggle {
  display: none;
}

.language-switch {
  display: flex;
  align-items: center;

  gap: 7px;

  font-size: 11px;

  font-weight: 300;

  letter-spacing: 0.16em;

  color: rgba(40,40,40,0.46);
}

.language-switch a {
  color: rgba(40,40,40,0.46);

  text-decoration: none;
}

.language-switch strong {
  font-weight: 400;

  color: rgba(24,24,24,0.78);
}

.language-switch span {
  color: rgba(40,40,40,0.28);
}

/* =========================
   Navigation Dropdown
========================= */

.nav-dropdown {
  position: relative;

  height: 46px;

  display: flex;
  align-items: center;
}

.nav-dropdown button {
  border: none;
  background: transparent;
  padding: 0;

  font: inherit;

  font-size: 12px;
  font-weight: 300;

  letter-spacing: 0.14em;

  color: rgba(30,30,30,0.74);

  cursor: pointer;
}

.nav-dropdown button:hover {
  opacity: 0.45;
}

.nav-dropdown-menu {
  display: none;

  position: absolute;

  top: 46px;
  left: -18px;

  min-width: 220px;

  padding: 18px 20px;

  background: rgba(255,255,255,0.94);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(0,0,0,0.06);

  border-radius: 18px;

  box-shadow:
    0 18px 48px rgba(0,0,0,0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;

  white-space: nowrap;

  font-size: 12px;

  letter-spacing: 0.12em;

  color: rgba(30,30,30,0.78);
}

.nav-dropdown-menu a:hover {
  opacity: 0.5;
}

/* =========================
   ノイズレイヤー
========================= */
body::before {
  content: "";

  position: fixed;
  inset: 0;

  background-image:
    repeating-radial-gradient(
      rgba(0,0,0,0.012) 0px,
      rgba(0,0,0,0.012) 1px,
      transparent 1px,
      transparent 4px
    );

  opacity: 0.04;

  pointer-events: none;

  z-index: 0;
}


/* =========================
   空間レイヤー
========================= */
.space {
  width: 100%;
  min-height: 100vh;
}


/* =========================
   光円錐ロゴ
========================= */
.lightcone-mark {
  position: fixed;

  top: 58%;
  left: 50%;

  width: min(44vw, 520px);

  transform: translate(-50%, -50%);

  z-index: 1;

  opacity: 0.11;

  pointer-events: none;
}


/* SVG */
.lightcone-mark svg {
  width: 100%;
  height: auto;
}


/* 光円錐の線 */
.lightcone-mark line,
.lightcone-mark ellipse {
  fill: none !important;

  stroke: rgba(0,0,0,0.24);

  stroke-width: 1;
}


/* =========================
   サイトタイトル
========================= */
.identity {
  position: relative;

  z-index: 2;

  padding-top: 18vh;
  padding-left: 10vw;

  color: #2f3135;
}


/* メインタイトル */
.identity h1 {
  margin: 0;

  font-size: clamp(38px, 11vw, 140px);

  font-weight: 350;

  letter-spacing: 0.02em;
  line-height: 1.05;

  color: rgba(24,24,24,0.92);

  text-shadow:
    0 0 24px rgba(255,255,255,0.25);
}


/* タグライン */
.identity p {
  margin-top: 48px;

  font-size: 13px;
  font-weight: 300;

  letter-spacing: 0.38em;

  text-transform: uppercase;

  color: rgba(80,80,80,0.68);
}


/* =========================
   時間のライン
========================= */
.time-line {
  position: fixed;

  top: 0;
  left: 52%;

  width: 1px;
  height: 100vh;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.04) 20%,
      rgba(0,0,0,0.015) 50%,
      rgba(0,0,0,0.04) 80%,
      rgba(0,0,0,0) 100%
    );

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;
}


/* =========================
   微粒子空間
========================= */
.particles {
  display: none;
}


/* =========================
   思想メッセージ
========================= */
.philosophy {
  position: relative;

  z-index: 2;

  margin-top: 38vh;

  padding-left: 12vw;

  color: rgba(70,70,70,0.78);
}


/* テキスト */
.philosophy p {
  margin: 0 0 42px 0;

  max-width: 900px;

  font-size: clamp(18px, 2vw, 34px);

  font-weight: 300;

  line-height: 1.7;
  letter-spacing: 0.05em;

  color: rgba(40,40,40,0.82);
}


/* =========================
   事業概要
========================= */
.fragments {
  position: relative;

  z-index: 2;

  width: 100%;

  margin-top: 34vh;
  padding-bottom: 24vh;

  display: flex;
  flex-direction: column;
  align-items: center;
}


/* セクションタイトル */
.fragments span {
  margin-bottom: 26px;

  font-size: clamp(24px, 2.4vw, 38px);

  font-weight: 400;

  letter-spacing: 0.04em;

  color: rgba(25,25,25,0.92);
}


/* 事業内容 */
.fragments p {
  margin: 0 0 14px 0;

  font-size: clamp(22px, 1.8vw, 30px);

  font-weight: 300;

  line-height: 1.35;
  letter-spacing: 0.03em;

  text-align: center;

  color: rgba(50,50,50,0.84);
}

/* =========================
   Projects
========================= */
.projects {
  position: relative;

  z-index: 2;

  width: 100%;

  margin-top: 28vh;
  padding-bottom: 24vh;

  display: flex;
  flex-direction: column;
  align-items: center;
}


/* タイトル */
.projects span {
  margin-bottom: 42px;

  font-size: clamp(24px, 2.4vw, 38px);

  font-weight: 400;

  letter-spacing: 0.04em;

  color: rgba(25,25,25,0.92);
}


/* プロジェクトカード */
.project-card {
  width: min(520px, 82vw);

  box-sizing: border-box;

  padding: 56px 42px;

  border:
    1px solid rgba(0,0,0,0.05);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.42) 0%,
      rgba(255,255,255,0.2) 100%
    );

  backdrop-filter: blur(10px);

  text-align: center;

  border-radius: 28px;

  box-shadow:
    0 10px 32px rgba(0,0,0,0.04);
}


/* ロゴ */
.project-card img {
  width: 120px;

  height: auto;

  margin-bottom: 28px;

  opacity: 0.92;
}


/* プロジェクト名 */
.project-card h2 {
  margin: 0 0 18px 0;

  font-size: clamp(30px, 3vw, 44px);

  font-weight: 350;

  letter-spacing: 0.03em;

  color: rgba(24,24,24,0.92);
}


/* 説明 */
.project-card p {
  margin: 0;

  font-size: 15px;

  font-weight: 300;

  line-height: 1.8;

  letter-spacing: 0.08em;

  color: rgba(70,70,70,0.74);
}

/* プロジェクト一覧 */
.projects-grid {
  display: flex;

  gap: 32px;

  justify-content: center;

  flex-wrap: wrap;
}

.project-link {
  display: block;

  text-decoration: none;

  color: inherit;
}

.project-link:hover {
  opacity: 0.72;

  transform: translateY(-2px);
}

/* =========================
   Company Page
========================= */

.company-page {
  position: relative;

  z-index: 2;

  min-height: 100vh;

  padding: clamp(120px, 16vw, 220px) clamp(24px, 6vw, 96px);
}

.company-hero {
  max-width: 960px;

  margin: 0 auto clamp(72px, 10vw, 140px);
}

.company-hero h1 {
  margin: 0;

  font-size: clamp(42px, 8vw, 104px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.95;

  color: rgba(24,24,24,0.94);
}

.company-lead {
  max-width: 620px;

  margin-top: clamp(28px, 4vw, 48px);

  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.9;

  color: rgba(70,70,70,0.66);
}

.company-info {
  max-width: 960px;

  margin: 0 auto;
}

.company-list {
  display: grid;

  gap: 0;

  margin: 0;
}

.company-list div {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;

  gap: clamp(24px, 4vw, 56px);

  padding: clamp(24px, 4vw, 42px) 0;

  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.company-list div:first-child {
  padding-top: 0;
}

.company-list div:last-child {
  padding-bottom: 0;

  border-bottom: none;
}

.company-list dt {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(80,80,80,0.48);
}

.company-list dd {
  margin: 0;

  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  line-height: 1.9;

  color: rgba(40,40,40,0.78);
}

/* =========================
   Contact
========================= */
.contact-minimal {
  position: relative;

  z-index: 2;

  width: 100%;

  margin-top: 4vh;
  padding-bottom: 18vh;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.contact-minimal p {
  margin: 0 0 28px 0;

  font-size: 14px;

  font-weight: 300;

  line-height: 1.9;
  letter-spacing: 0.08em;

  color: rgba(80,80,80,0.68);
}

.contact-minimal a {
  font-size: 12px;

  font-weight: 300;

  letter-spacing: 0.22em;

  text-transform: uppercase;

  text-decoration: none;

  color: rgba(30,30,30,0.82);

  transition: opacity 0.3s ease;
}

.contact-minimal a:hover {
  opacity: 0.5;
}


/* =========================
   Footer
========================= */
.minimal-footer {
  position: relative;

  z-index: 2;

  padding-bottom: 42px;

  text-align: center;
}

.minimal-footer p {
  margin: 0;

  font-size: 11px;

  font-weight: 300;

  letter-spacing: 0.18em;

  color: rgba(90,90,90,0.5);
}

/* =========================
   Contact Page
========================= */
.contact-page {
  position: relative;
  z-index: 2;

  min-height: 100vh;

  padding: clamp(120px, 16vw, 220px) clamp(24px, 6vw, 96px);

  max-width: 720px;
  margin: 0 auto;
}

.contact-page h1 {
  margin: 0 0 72px 0;

  font-size: clamp(42px, 6vw, 84px);

  font-weight: 300;

  letter-spacing: -0.05em;
  line-height: 1;

  color: rgba(24,24,24,0.92);
}

.contact-page label {
  display: block;

  margin-bottom: 34px;

  font-size: 11px;

  font-weight: 300;

  letter-spacing: 0.14em;

  color: rgba(25,25,25,0.92);
}

.contact-page input,
.contact-page textarea {
  width: 100%;

  margin-top: 12px;

  padding: 18px 20px;

  border:
    1px solid rgba(0,0,0,0.06);

  border-radius: 18px;

  background:
    rgba(255,255,255,0.52);

  backdrop-filter: blur(10px);

  font-size: 15px;
  font-weight: 300;

 color: rgba(20,20,20,0.94);

  outline: none;

  box-sizing: border-box;
}

.contact-page textarea {
  min-height: 240px;

  resize: vertical;
}

.contact-page input:focus,
.contact-page textarea:focus {
  border-color:
    rgba(0,0,0,0.14);
}

.contact-page input[type="submit"] {
  width: auto;

  margin-top: 18px;

  padding: 16px 34px;

  border:
    1px solid rgba(0,0,0,0.08);

  border-radius: 999px;

  background:
    rgba(255,255,255,0.68);

  backdrop-filter: blur(10px);

  font-size: 11px;

  font-weight: 300;

  letter-spacing: 0.22em;

  text-transform: uppercase;

  color: rgba(24,24,24,0.84);

  cursor: pointer;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.contact-page input[type="submit"]:hover {
  opacity: 0.72;

  transform: translateY(-1px);
}

/* =========================
   TimeValue ME Product Page
========================= */

.timevalue-product-page {
  position: relative;
  z-index: 2;

  min-height: 100vh;

  padding: 76px clamp(22px, 5vw, 72px) 32px;

  box-sizing: border-box;
}

.tv-hero {
  max-width: 1240px;
  min-height: calc(100vh - 108px);

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-areas:
    "copy visual"
    "buttons visual";

  gap: clamp(28px, 4vw, 64px);

  align-items: center;
}

.tv-copy {
  grid-area: copy;
}

.tv-label {
  margin: 0 0 24px 0;

  font-size: 16px;
  font-weight: 350;

  letter-spacing: 0.14em;

  color: rgba(70,70,70,0.52);
}

.tv-copy h1 {
  margin: 0;

  font-size: clamp(40px, 6.2vw, 86px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.06;

  color: rgba(24,24,24,0.94);
}

.tv-lead {
  margin: 28px 0 0 0;

  max-width: 520px;

  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 300;
  line-height: 1.9;

  color: rgba(50,50,50,0.72);
}

.tv-feature-buttons {
  grid-area: buttons;

  margin-top: -18px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 12px;

  max-width: 520px;
}

.tv-feature-buttons button {
  min-height: 46px;
  line-height: 1.4;
  white-space: nowrap;
}

.tv-feature-buttons button {
  padding: 16px 18px;

  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 999px;

  background: rgba(255,255,255,0.46);

  backdrop-filter: blur(10px);

  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;

  color: rgba(35,35,35,0.74);

  cursor: pointer;

  transition:
    background 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tv-feature-buttons button:hover {
  opacity: 0.72;

  transform: translateY(-1px);
}

.tv-feature-buttons button.active {
  background: rgba(24,24,24,0.86);

  color: rgba(255,255,255,0.92);
}

.tv-visual {
  grid-area: visual;

  position: relative;

  min-height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 34px 34px 62px;

  border-radius: 42px;

  border: 1px solid rgba(0,0,0,0.05);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.48) 0%,
      rgba(255,255,255,0.2) 100%
    );

  backdrop-filter: blur(12px);

  box-shadow:
    0 24px 80px rgba(0,0,0,0.05);

  overflow: hidden;
}

.tv-slide-area {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

.tv-slide-area img {
  width: min(250px, 26vw);

  max-height: 68vh;

  object-fit: contain;

  border-radius: 28px;

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 20px 54px rgba(0,0,0,0.08);
}

.tv-dots {
  position: absolute;

  left: 50%;
  bottom: 26px;

  transform: translateX(-50%);

  display: flex;
  gap: 10px;
}

.tv-dots button {
  width: 7px;
  height: 7px;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: rgba(0,0,0,0.18);

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.tv-dots button:hover {
  transform: scale(1.15);
}

.tv-dots button.active {
  background: rgba(0,0,0,0.58);
}

.tv-store-links {
  margin-top: 34px;
}

.tv-store-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 28px;

  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;

  background: rgba(24,24,24,0.86);

  color: rgba(255,255,255,0.92);

  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tv-store-links a:hover {
  opacity: 0.76;
  transform: translateY(-1px);
}

/* =========================
   TimeValue ME Plans
========================= */

.tv-plan-section {
  position: relative;
  z-index: 2;

  margin-top: 18vh;
  padding-bottom: 18vh;
}

.tv-plan-inner {
  width: min(980px, 92vw);

  margin: 0 auto;
}

.tv-plan-inner h2 {
  margin: 0 0 42px 0;

  font-size: clamp(28px, 4vw, 54px);

  font-weight: 300;

  letter-spacing: -0.04em;

  color: rgba(24,24,24,0.92);
}

.tv-plan-table-wrap {
  overflow-x: auto;
}

.tv-plan-table {
  width: 100%;

  border-collapse: collapse;

  background: rgba(255,255,255,0.32);

  border:
    1px solid rgba(0,0,0,0.05);

  backdrop-filter: blur(10px);
}

.tv-plan-table th,
.tv-plan-table td {
  padding: 18px 20px;

  border:
    1px solid rgba(0,0,0,0.05);

  font-size: 14px;

  font-weight: 300;

  color: rgba(35,35,35,0.82);
}

.tv-plan-table th {
  background:
    rgba(255,255,255,0.42);

  font-weight: 400;
}

.tv-plan-table {
  width: 100%;

  table-layout: fixed;

  border-collapse: collapse;

  background: rgba(255,255,255,0.32);

  border:
    1px solid rgba(0,0,0,0.05);

  backdrop-filter: blur(10px);
}

.tv-plan-table th:nth-child(1),
.tv-plan-table td:nth-child(1) {
  width: 52%;
}

.tv-plan-table th:nth-child(2),
.tv-plan-table td:nth-child(2) {
  width: 24%;
}

.tv-plan-table th:nth-child(3),
.tv-plan-table td:nth-child(3) {
  width: 24%;
}

/* =========================
   TimeValue ME Ending
========================= */

.tv-ending {
  position: relative;
  z-index: 2;

  padding-bottom: 24vh;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.tv-ending-mark {
  width: 2px;
  height: 82px;

  margin-bottom: 34px;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.08)
    );
}

.tv-ending h2 {
  margin: 0;

  font-size: clamp(42px, 6vw, 92px);

  font-weight: 300;

  letter-spacing: -0.06em;

  color: rgba(12,12,12,0.94);
}

.tv-ending p {
  margin-top: 18px;

  font-size: clamp(18px, 2vw, 34px);

  font-weight: 300;

  letter-spacing: 0.02em;

  color: rgba(30,30,30,0.84);
}

/* =========================
   Tablet
========================= */

@media (max-width: 900px) {

  /* ---------- TimeValue ME ---------- */

  .timevalue-product-page {
    padding-top: 128px;
    padding-bottom: 10vh;
  }

  .tv-hero {
    min-height: auto;

    display: grid;

    grid-template-columns: 1fr;

    grid-template-areas:
      "copy"
      "visual"
      "buttons";

    gap: 24px;
  }

  .tv-copy h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .tv-lead {
    margin-top: 22px;
  }

  .tv-feature-buttons {
    width: min(360px, 88vw);

    margin: 18px auto 0;

    grid-template-columns: 1fr;

    gap: 10px;

    max-width: none;
  }

  .tv-feature-buttons button {
    width: 100%;

    min-height: 44px;

    padding: 13px 16px;

    font-size: 12px;

    line-height: 1.45;

    white-space: normal;
  }

  .tv-visual {
    min-height: auto;

    padding: 18px 14px 54px;

    border-radius: 32px;
  }

  .tv-slide-area img {
    width: min(190px, 54vw);

    max-height: 58vh;
  }

}


/* =========================
   Mobile
========================= */

@media (max-width: 720px) {

  /* ---------- Header ---------- */

  .global-header {
    height: 64px;
  }

  .header-top {
    height: 64px;

    padding: 0 20px;
  }

  .nav-logo {
    gap: 10px;
  }

  .nav-logo img {
    width: 30px;
  }

  .lightcone-mark {
    position: fixed;

    top: 50%;
    left: 50%;

    width: 88vw;

    transform: translate3d(-50%, -50%, 0);

    opacity: 0.11;

    will-change: transform;
    backface-visibility: hidden;

    pointer-events: none;
  }

  .time-line {
    display: none;
  }

  .logo-company {
    font-size: 12px;

    letter-spacing: 0.06em;
  }

  .menu-toggle {
    display: flex;

    flex-direction: column;

    gap: 5px;

    width: 32px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;
  }

  .menu-toggle span {
    display: block;

    width: 22px;
    height: 1px;

    background: rgba(24,24,24,0.78);
  }


/* ---------- Navigation ---------- */

.global-nav {
  position: fixed;

  top: 64px;
  left: 0;

  width: 100%;

  height: auto;

  display: none;

  flex-direction: column;

  align-items: flex-start;

  gap: 0;

  padding: 18px 24px 20px;

  background: rgba(255,255,255,0.94);

  backdrop-filter: blur(18px);

  border-top:
    1px solid rgba(0,0,0,0.06);

  box-sizing: border-box;
}

.nav-dropdown {
  height: auto;
}

.global-nav > a,
.global-nav > .nav-dropdown,
.global-nav > .language-switch {
  padding: 4px 0;
}

body.menu-open .global-nav {
  display: flex;
}

.global-nav a {
  font-size: 12px;

  letter-spacing: 0.16em;
}

.language-switch {
  font-size: 11px;
}


  /* ---------- Home ---------- */

  .identity {
    padding-top: 24vh;

    padding-left: 7vw;
    padding-right: 7vw;
  }

  .identity h1 {
    font-size: clamp(34px, 10.5vw, 56px);

    letter-spacing: 0.01em;

    line-height: 1.08;
  }

  .identity p {
    margin-top: 28px;

    font-size: 10px;

    letter-spacing: 0.22em;
  }

  .philosophy {
    margin-top: 24vh;

    padding-left: 8vw;
    padding-right: 8vw;
  }

  .philosophy p {
    font-size: clamp(18px, 5vw, 26px);

    line-height: 1.8;
  }

  .fragments {
    margin-top: 24vh;
  }

  .fragments p {
    font-size: clamp(18px, 5vw, 24px);

    line-height: 1.6;

    padding:
      0 8vw;
  }

  .projects {
    margin-top: 22vh;
  }

  .project-card {
    width: min(520px, 82vw);

    padding: 42px 24px;

    border-radius: 24px;
  }

  /* ---------- TimeValue ME ---------- */

  .tv-visual {
    min-height: auto;
    padding: 18px 14px 44px;
    border-radius: 32px;
  }

  .tv-slide-area img {
    width: min(180px, 64vw);
    max-height: 52vh;
  }

  .tv-dots {
    bottom: 20px;
  }

  /* ---------- Company ---------- */

  .company-page {
    padding:
      120px 24px 80px;
  }

  .company-list div {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  /* ---------- Contact ---------- */

  .contact-page {
    padding:
      120px 24px 80px;
  }

}


/* =========================
   Small Mobile
========================= */

@media (max-width: 520px) {

  .tv-feature-buttons {
    width: min(320px, 92vw);
  }

  .tv-slide-area img {
    width: min(180px, 72vw);
  }

  .identity h1 {
    font-size: clamp(30px, 11vw, 48px);
  }

  .project-card h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

}